-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpta.html
1070 lines (931 loc) · 78.9 KB
/
pta.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en-US">
<meta https-equiv="content-type" content="text/html;charset=UTF-8" />
<head>
<script src="httpss://use.fontawesome.com/a56eba16fc.js"></script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="profile" href="https://gmpg.org/xfn/11">
<link rel="icon" href="wp-content/themes/sayidan/favicon.ico" type="image/ico" />
<link rel="pingback" href="xmlrpc.php">
<title>Department Of Applied Chemistry</title>
<link rel='dns-prefetch' href='https://maps.googleapis.com/' />
<link rel='dns-prefetch' href='https://fonts.googleapis.com/' />
<link rel='dns-prefetch' href='https://s.w.org/' />
<link rel="alternate" type="application/rss+xml" title="Sayidan » Feed" href="feed/index.html" />
<link rel="alternate" type="application/rss+xml" title="Sayidan » Comments Feed" href="comments/feed/index.html" />
<script type="text/javascript">
window._wpemojiSettings = {"baseUrl":"httpss:\/\/s.w.org\/images\/core\/emoji\/12.0.0-1\/72x72\/","ext":".png","svgUrl":"httpss:\/\/s.w.org\/images\/core\/emoji\/12.0.0-1\/svg\/","svgExt":".svg","source":{"concatemoji":"https:\/\/sayidan.kenzap.com\/wp-includes\/js\/wp-emoji-release.min.js?ver=5.4.2"}};
!function(e,a,t){var r,n,o,i,p=a.createElement("canvas"),s=p.getContext&&p.getContext("2d");function c(e,t){var a=String.fromCharCode;s.clearRect(0,0,p.width,p.height),s.fillText(a.apply(this,e),0,0);var r=p.toDataURL();return s.clearRect(0,0,p.width,p.height),s.fillText(a.apply(this,t),0,0),r===p.toDataURL()}function l(e){if(!s||!s.fillText)return!1;switch(s.textBaseline="top",s.font="600 32px Arial",e){case"flag":return!c([127987,65039,8205,9895,65039],[127987,65039,8203,9895,65039])&&(!c([55356,56826,55356,56819],[55356,56826,8203,55356,56819])&&!c([55356,57332,56128,56423,56128,56418,56128,56421,56128,56430,56128,56423,56128,56447],[55356,57332,8203,56128,56423,8203,56128,56418,8203,56128,56421,8203,56128,56430,8203,56128,56423,8203,56128,56447]));case"emoji":return!c([55357,56424,55356,57342,8205,55358,56605,8205,55357,56424,55356,57340],[55357,56424,55356,57342,8203,55358,56605,8203,55357,56424,55356,57340])}return!1}function d(e){var t=a.createElement("script");t.src=e,t.defer=t.type="text/javascript",a.getElementsByTagName("head")[0].appendChild(t)}for(i=Array("flag","emoji"),t.supports={everything:!0,everythingExceptFlag:!0},o=0;o<i.length;o++)t.supports[i[o]]=l(i[o]),t.supports.everything=t.supports.everything&&t.supports[i[o]],"flag"!==i[o]&&(t.supports.everythingExceptFlag=t.supports.everythingExceptFlag&&t.supports[i[o]]);t.supports.everythingExceptFlag=t.supports.everythingExceptFlag&&!t.supports.flag,t.DOMReady=!1,t.readyCallback=function(){t.DOMReady=!0},t.supports.everything||(n=function(){t.readyCallback()},a.addEventListener?(a.addEventListener("DOMContentLoaded",n,!1),e.addEventListener("load",n,!1)):(e.attachEvent("onload",n),a.attachEvent("onreadystatechange",function(){"complete"===a.readyState&&t.readyCallback()})),(r=t.source||{}).concatemoji?d(r.concatemoji):r.wpemoji&&r.twemoji&&(d(r.twemoji),d(r.wpemoji)))}(window,document,window._wpemojiSettings);
</script>
<style type="text/css">
img.wp-smiley,
img.emoji {
display: inline !important;
border: none !important;
box-shadow: none !important;
height: 1em !important;
width: 1em !important;
margin: 0 .07em !important;
vertical-align: -0.1em !important;
background: none !important;
padding: 0 !important;
}
</style>
<link rel='stylesheet' id='wp-block-library-css' href='wp-includes/css/dist/block-library/style.min7661.css?ver=5.4.2' type='text/css' media='all' />
<link rel='stylesheet' id='contact-form-7-css' href='wp-content/plugins/contact-form-7/includes/css/styles6725.css?ver=5.1.7' type='text/css' media='all' />
<link rel='stylesheet' id='siteorigin-panels-front-css' href='wp-content/plugins/siteorigin-panels/css/front-flex.min1542.css?ver=2.10.15' type='text/css' media='all' />
<link rel='stylesheet' id='animate-css' href='wp-content/themes/sayidan/css/animate8233.css?ver=1.6.8' type='text/css' media='all' />
<link rel='stylesheet' id='bootstrap-css' href='wp-content/themes/sayidan/css/bootstrap8233.css?ver=1.6.8' type='text/css' media='all' />
<link rel='stylesheet' id='font-awesome-css' href='wp-content/themes/sayidan/css/font-awesome.min8233.css?ver=1.6.8' type='text/css' media='all' />
<link rel='stylesheet' id='meanmenu-css' href='wp-content/themes/sayidan/css/meanmenu8233.css?ver=1.6.8' type='text/css' media='all' />
<link rel='stylesheet' id='owl.carousel-css' href='wp-content/themes/sayidan/css/owl.carousel8233.css?ver=1.6.8' type='text/css' media='all' />
<link rel='stylesheet' id='icon-font-css' href='wp-content/themes/sayidan/css/icon-font.min8233.css?ver=1.6.8' type='text/css' media='all' />
<link rel='stylesheet' id='superfish-css' href='wp-content/themes/sayidan/css/superfish8233.css?ver=1.6.8' type='text/css' media='all' />
<link rel='stylesheet' id='sayidan-fonts-css' href='httpss://fonts.googleapis.com/css?family=Montserrat%3A200%2C400%2C700&subset=latin%2Clatin-ext' type='text/css' media='all' />
<link rel='stylesheet' id='sayidan-core-css' href='wp-content/themes/sayidan/css/core8233.css?ver=1.6.8' type='text/css' media='all' />
<link rel='stylesheet' id='sayidan-style-css' href='wp-content/themes/sayidan/style8233.css?ver=1.6.8' type='text/css' media='all' />
<style id='sayidan-style-inline-css' type='text/css'>
.top-nav, .footer-wrapper, .instagream .instagram-feed-user, .our-history .history-content .list-history li .history-dot span, .event .dark_overlay, .program-upcoming-event .dark_overlay, .page-links a { background-color:#1a265c }.um-profile-nav { background-color:#1a265c!important; }.menu .nav > li > a, .alumni-dashboard .area-content .icon, .newsletter.type2 .form-inline button, h1.page-title { color:#1a265c }.footer-wrapper.type2{border-color:#1a265c }.bg-popup{ background-color:rgba(26,38,92,0.9); }.program-upcoming-event .area-img-cont:after{ background:linear-gradient(rgba(26,38,92,0.7), rgba(26,38,92,0.7)); }blockquote {border-left:4px solid rgba(26,38,92,0.7); }.top-nav ul .login a{background-color:#4c588e }.top-nav ul .login a, .top-nav ul li a, .top-nav ul li a .icon{color:#929ed4}.input-search::-moz-placeholder{color:#929ed4}.input-search:-ms-input-placeholder{color:#929ed4}.input-search::-webkit-input-placeholder{color:#929ed4}.input-search:-moz-placeholder{color:#929ed4}.color-theme,.post__meta-item .fa, .mean-container .mean-nav ul li a:hover,.footer-wrapper .foooter-container .footer-middle .contact-footer .contact-phone-email .contact-email a:hover,.footer-wrapper .foooter-container .footer-middle .links-footer ul li a:hover,.footer-wrapper .foooter-container .footer-middle .links-social ul li a:hover,.twitter-stream .twitter-content .twitter-desc a,.job-detail .brand .brand-content a:hover, .event-calendar .event-list-content .event-list-item .date-desc-wrapper .place a:hover,.event-calendar .event-list-content .event-list-item .sold-out a:hover,.career-opportunity .top-section .sellect-career-opportunity .list-item .select .select-box li:hover,.blog-content .articles .article-item .area-content .article-right h3 a:hover, a:hover { color:#f7ca18!important }.bg-color-theme, .bnt-theme,.slider-hero .content-block .read-story,.alumni-interview .interview-wrapper .interview-see-story a:hover,.programs-services .services-content #tab_services .tab-content .list-item li:before,.our-history .history-content .list-history:before,.event-calendar .event-list-content .event-list-item .register a:hover,.career-opportunity .top-section .sellect-career-opportunity .list-item .button-set .bnt:hover,.latst-article .area-content .category a:hover,.blog-right .tag .list-inline li a:hover, .blog-content .articles .sticky .area-content .article-left .catetory-title{ background-color:#f7ca18}.programs-services .services-content #tab_services .nav-tabs > li.active > a, .programs-services .services-content #tab_services .nav-tabs > li.active > a:hover, .programs-services .services-content #tab_services .nav-tabs > li.active > a:focus,.menu .nav > li.current-menu-itema { border-bottom:2px solid #f7ca18 !important; }.slider-hero .content-block .read-story,.alumni-interview .interview-wrapper .interview-see-story a,textarea:focus, input:focus,.alumni-story .alumni-story-wrapper .alumni-story-content h3 a:hover,.event-calendar .event-list-content .event-list-item .register a,.desc-border,.career-opportunity .top-section .sellect-career-opportunity .list-item .button-set .bnt,.pagination > li > a:hover, .pagination > li > span.current, .pagination > li > span:hover, .pagination > li > a:focus, .pagination > li > span:focus{border-color:#f7ca18!important;}.galery-wrapper .galery-content ul li .galery-item .galery-content{ background-color:rgba(247,202,24,0.9);}.list-item li:before, .um-2012.um input[type=submit].um-button, .um-2012.um input[type=submit].um-button:focus, .um-2012.um a.um-button, .um-2012.um a.um-button.um-disabled:hover, .um-2012.um a.um-button.um-disabled:focus, .um-2012.um a.um-button.um-disabled:active{background-color:#f7ca18!important;}.bg-color-theme:hover,.date-links a:hover,.bnt-theme:hover,.list-inline a:hover,a.see-story:hover{color:#ffffff!important;}.alumni-interview .interview-wrapper .interview-see-story a { border:3px solid #f7ca18;}.sticky .area-content .article-left {border-right:1px solid #f7ca18 !important; }.sayidan-fact { border:2px dashed #f7ca18; }.top-section .sellect-career-opportunity .list-item .button-set .bnt{border:2px solid #f7ca18;}.alumni-directory .list-item li:before { background-color:#e5e5e5!important; }.sticky .blog-post .area-content h2{border-left:4px solid #f7ca18;}.um-2012.um .um-field-group-head, .picker__box, .picker__nav--prev:hover, .picker__nav--next:hover, .um-2012.um .um-members-pagi span.current, .um-2012.um .um-members-pagi span.current:hover, .um-2012.um .um-profile-nav-item.active a, .um-2012.um .um-profile-nav-item.active a:hover, .upload, .um-modal-header, .um-modal-btn, .um-modal-btn.disabled, .um-modal-btn.disabled:hover, div.uimob800 .um-account-side li a.current, div.uimob800 .um-account-side li a.current:hover{background-color:#566298!important;}.um-left input[type=submit].um-button, .um-left input[type=submit].um-button:focus, .um-left a.um-button, .um-lefta.um-button.um-disabled:hover, .um-lefta.um-button.um-disabled:focus, .um-left a.um-button.um-disabled:active, .um-password .um-button,.um-2013.um .um-members-pagi span.current{background:#f7ca18!important;}.um-2011.um .um-tip:hover, .um-2011.um .um-field-radio.active i, .um-2011.um .um-field-checkbox.active i, .um-2011.um .um-member-name a:hover, .um-2011.um .um-member-more a:hover, .um-2011.um .um-member-less a:hover, .um-2011.um .um-members-pagi a:hover, .um-2011.um .um-cover-add:hover, .um-2011.um .um-profile-subnav a.active, .um-2011.um .um-item-meta a, .um-account-name a:hover, .um-account-nav a.current, .um-account-side li a.current span.um-account-icon, .um-account-side li a.current:hover span.um-account-icon, .um-dropdown li a:hover, i.um-active-color, span.um-active-color{color:#f7ca18!important;}
</style>
<link rel='stylesheet' id='um_fonticons_ii-css' href='wp-content/plugins/ultimate-member/assets/css/um-fonticons-iid63f.css?ver=2.1.5' type='text/css' media='all' />
<link rel='stylesheet' id='um_fonticons_fa-css' href='wp-content/plugins/ultimate-member/assets/css/um-fonticons-fad63f.css?ver=2.1.5' type='text/css' media='all' />
<link rel='stylesheet' id='select2-css' href='wp-content/plugins/ultimate-member/assets/css/select2/select2.mind63f.css?ver=2.1.5' type='text/css' media='all' />
<link rel='stylesheet' id='um_crop-css' href='wp-content/plugins/ultimate-member/assets/css/um-cropd63f.css?ver=2.1.5' type='text/css' media='all' />
<link rel='stylesheet' id='um_modal-css' href='wp-content/plugins/ultimate-member/assets/css/um-modald63f.css?ver=2.1.5' type='text/css' media='all' />
<link rel='stylesheet' id='um_styles-css' href='wp-content/plugins/ultimate-member/assets/css/um-stylesd63f.css?ver=2.1.5' type='text/css' media='all' />
<link rel='stylesheet' id='um_profile-css' href='wp-content/plugins/ultimate-member/assets/css/um-profiled63f.css?ver=2.1.5' type='text/css' media='all' />
<link rel='stylesheet' id='um_account-css' href='wp-content/plugins/ultimate-member/assets/css/um-accountd63f.css?ver=2.1.5' type='text/css' media='all' />
<link rel='stylesheet' id='um_misc-css' href='wp-content/plugins/ultimate-member/assets/css/um-miscd63f.css?ver=2.1.5' type='text/css' media='all' />
<link rel='stylesheet' id='um_fileupload-css' href='wp-content/plugins/ultimate-member/assets/css/um-fileuploadd63f.css?ver=2.1.5' type='text/css' media='all' />
<link rel='stylesheet' id='um_datetime-css' href='wp-content/plugins/ultimate-member/assets/css/pickadate/defaultd63f.css?ver=2.1.5' type='text/css' media='all' />
<link rel='stylesheet' id='um_datetime_date-css' href='wp-content/plugins/ultimate-member/assets/css/pickadate/default.dated63f.css?ver=2.1.5' type='text/css' media='all' />
<link rel='stylesheet' id='um_datetime_time-css' href='wp-content/plugins/ultimate-member/assets/css/pickadate/default.timed63f.css?ver=2.1.5' type='text/css' media='all' />
<link rel='stylesheet' id='um_raty-css' href='wp-content/plugins/ultimate-member/assets/css/um-ratyd63f.css?ver=2.1.5' type='text/css' media='all' />
<link rel='stylesheet' id='um_scrollbar-css' href='wp-content/plugins/ultimate-member/assets/css/simplebard63f.css?ver=2.1.5' type='text/css' media='all' />
<link rel='stylesheet' id='um_tipsy-css' href='wp-content/plugins/ultimate-member/assets/css/um-tipsyd63f.css?ver=2.1.5' type='text/css' media='all' />
<link rel='stylesheet' id='um_responsive-css' href='wp-content/plugins/ultimate-member/assets/css/um-responsived63f.css?ver=2.1.5' type='text/css' media='all' />
<link rel='stylesheet' id='um_default_css-css' href='wp-content/plugins/ultimate-member/assets/css/um-old-defaultd63f.css?ver=2.1.5' type='text/css' media='all' />
<link rel='stylesheet' id='um_old_css-css' href='wp-content/uploads/ultimatemember/um_old_settings7661.css?ver=5.4.2' type='text/css' media='all' />
<script type='text/javascript' src='wp-includes/js/jquery/jquery4a5f.js?ver=1.12.4-wp'></script>
<script type='text/javascript' src='wp-includes/js/jquery/jquery-migrate.min330a.js?ver=1.4.1'></script>
<script type='text/javascript' src='wp-content/plugins/ultimate-member/assets/js/um-gdpr.mind63f.js?ver=2.1.5'></script>
<link rel='httpss://api.w.org/' href='wp-json/index.html' />
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="xmlrpc0db0.php?rsd" />
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="wp-includes/wlwmanifest.xml" />
<meta name="generator" content="WordPress 5.4.2" />
<link rel='shortlink' href='index.html' />
<link rel="alternate" type="application/json+oembed" href="wp-json/oembed/1.0/embed5f5d?url=https%3A%2F%2Fsayidan.kenzap.com%2F" />
<link rel="alternate" type="text/xml+oembed" href="wp-json/oembed/1.0/embedb989?url=https%3A%2F%2Fsayidan.kenzap.com%2F&format=xml" />
<style type="text/css"></style> <style type="text/css"></style> <style type="text/css"></style> <style type="text/css"></style> <style type="text/css"></style> <style type="text/css"></style> <style type="text/css"></style> <style type="text/css"></style> <style type="text/css">
.um_request_name {
display: none !important;
}
</style>
<style type="text/css" media="all"
id="siteorigin-panels-layouts-head">/* Layout 2146 */ #pgc-2146-0-0 { width:100%;width:calc(100% - ( 0 * 30px ) ) } #pl-2146 #panel-2146-0-0-0 , #pl-2146 #panel-2146-0-0-1 , #pl-2146 #panel-2146-0-0-2 , #pl-2146 #panel-2146-0-0-3 , #pl-2146 #panel-2146-0-0-4 , #pl-2146 #panel-2146-0-0-5 , #pl-2146 #panel-2146-0-0-6 , #pl-2146 #panel-2146-0-0-7 { } #pl-2146 .so-panel , #pl-2146 .so-panel:last-child { margin-bottom:0px } @media (max-width:780px){ #pg-2146-0.panel-no-style, #pg-2146-0.panel-has-style > .panel-row-style { -webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column } #pg-2146-0 > .panel-grid-cell , #pg-2146-0 > .panel-row-style > .panel-grid-cell { width:100%;margin-right:0 } #pl-2146 .panel-grid-cell { padding:0 } #pl-2146 .panel-grid .panel-grid-cell-empty { display:none } #pl-2146 .panel-grid .panel-grid-cell-mobile-last { margin-bottom:0px } } </style></head>
<a id="back2topbutton"></a>
<body class="home page-template-default page page-id-2146 siteorigin-panels siteorigin-panels-before-js siteorigin-panels-home" >
<div id="page" class="site main-wrapper">
<!--Begin header wrapper header-position-->
<div class="header-wrapper">
<header id="header" class="container-header type1">
<div class="top-nav">
<div class="container">
<div class="row">
<div class="top-left col-sm-6 hidden-xs">
<ul class="list-inline list-inline-top">
<li>
<a href="mailto:[email protected]">
<span class="icon mail-icon"></span>
<span class="text">[email protected]</span>
</a>
</li>
<li>
<a href="tel:+0484 257 5804">
<span class="icon phone-icon"></span>
<span class="text">0484 257 5804</span>
</a>
</li>
</ul>
</div>
<div class="top-right col-sm-6 col-xs-12">
<ul class="list-inline">
<li class="top-search">
<form class="navbar-form search no-margin no-padding" action="">
<input type="text" name="s" class="form-control input-search" placeholder="search..." autocomplete="off">
<button type="submit" class="lnr lnr-magnifier"></button>
</form>
</li>
<li class="login">
<a href="#" title="Login">Login</a>
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="header-middle">
<div class="container">
<div class="logo hidden-sm hidden-xs">
<a href='index.html' title='Sayidan' rel='home'><img style="border-radius: 10px;padding-top: 30px;" src='wp-content/uploads/2016/07/logo-4.png' alt='Sayidan'></a>
</div>
<div class="area-desktop-content menu">
<nav>
<ul class="nav navbar-nav sf-menu">
<li id="menu-item-2177" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-2177"><a href="index.html">Home</a>
</li>
<li id="menu-item-2177" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-2177"><a href="https://cusat.ac.in/">university</a>
</li>
<li id="menu-item-2180" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-2180"><a href="#">About Us</a>
<ul class="sub-menu">
<li id="menu-item-2173" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2173"><a href="research.html">Research</a></li>
<li id="menu-item-2174" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2174"><a href="facilities/index.html">facilities</a></li>
<li id="menu-item-2175" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2175"><a href="pta.html">PTA</a></li>
<li id="menu-item-2176" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2176"><a href="alumni-home.html">Alumni</a></li>
<!-- <li id="menu-item-1857" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1857"><a href="../markup-html-tags-and-formatting/index.html">Typography</a></li> -->
</ul>
</li>
<li id="menu-item-2180" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-2180"><a href="academics/index.html">Academic</a>
</li>
<li id="menu-item-2179" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-2179"><a href="#">People</a>
<ul class="sub-menu">
<li id="menu-item-2173" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2173"><a href="facultyhome.html">Faculty</a></li>
<li id="menu-item-2174" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2174"><a href="about.html">Staff</a></li>
<!-- <li id="menu-item-2175" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2175"><a href="pta.html">PTA</a></li>
<li id="menu-item-2176" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2176"><a href="alumni-home.html">Alumni</a></li> -->
<!-- <li id="menu-item-1857" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1857"><a href="../markup-html-tags-and-formatting/index.html">Typography</a></li> -->
</ul>
</li>
<li id="menu-item-2181" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-2181"><a href="university-gallery/index.html">Gallery</a>
</li>
<li id="menu-item-2177" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-2177"><a href="anti-ragging.html">Anti-Ragging</a>
</li>
<li id="menu-item-2177" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-2177"><a href="students-corner.html">Student's corner</a>
</li>
</ul>
</nav>
</div>
<div class="area-mobile-content visible-sm visible-xs">
<div class="header-container">
<div class="row">
<div class="logo-mobile ol-md-8">
<a href='index.html' title='Sayidan' rel='home'><img src='wp-content/uploads/2016/07/logo-small-3.png' alt='Sayidan'></a>
</div>
<div class="col-md-4">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar-mobile">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
</div>
</div>
<div class="mobile-navigation">
<div class="container">
<nav id="site-navigation-mobile">
<div id="navbar-mobile" class="navbar-collapse collapse">
<ul id="menu-main-menu-1" class="nav navbar-mob">
<li id="menu-item-2177" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-2177"><a href="index.html">Home</a>
</li>
<li id="menu-item-2177" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-2177"><a href="research.html">Research</a>
</li>
<li id="menu-item-2177" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-2177"><a href="https://cusat.ac.in/">university</a>
</li>
<li id="menu-item-2180" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-2180"><a href="about.html">About Us</a>
</li>
<li id="menu-item-2180" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-2180"><a href="pta.html">PTA</a>
</li>
<li id="menu-item-2180" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-2180"><a href="alumni-home.html">Alumni</a>
</li>
<li id="menu-item-2180" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-2180"><a href="academics/index.html">Academic</a>
</li>
<li id="menu-item-2179" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-2179"><a href="facultyhome.html">Faculty</a>
</li>
<li id="menu-item-2179" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-2179"><a href="facilities/index.html">Facilities</a>
</li>
<li id="menu-item-2181" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-2181"><a href="university-gallery/index.html">Gallery</a>
</li>
<li id="menu-item-2177" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-2177"><a href="anti-ragging.html">Anti-Ragging</a>
</li>
<li id="menu-item-2177" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-2177"><a href="students-corner.html">Student's corner</a>
</li>
</ul>
</div>
</nav>
</div>
</div>
<div class="mobile-menu ">
</div>
</div>
</div>
</div>
</header>
</div>
<!--End header wrapper-->
<!--Begin content wrapper-->
<div id="content" class="site-content content-wrapper page-content">
<article id="post-2146" class="post-2146 page type-page status-publish hentry">
<div class="entry-content">
<div class="page-content-body">
<div id="pl-2146" class="panel-layout" >
<div id="pg-2146-0" class="panel-grid panel-no-style" >
<div id="pgc-2146-0-0" class="panel-grid-cell" data-weight="1" >
<div id="panel-2146-0-0-0" class="so-panel widget_sayidan_slider_widget panel-first-child" data-index="0" data-style="{"background_image_attachment":false,"background_display":"tile"}" ><div class="so-widget-sayidan_slider_widget so-widget-sayidan_slider_widget-default-d75171398898"><!--begin slider-->
<div class="slider-hero">
<div class="sliders-wrap columns1" data-autoplay="1" data-loop="" data-autoplaytimeout="500" >
<div class="item">
<img src="wp-content/uploads/2016/07/slider2-3.jpg" alt="HEARTY WELCOMES WITH">
<div class="owl-caption">
<div class="container">
<div class="content-block">
<h2>
<span class="text-bold">PTA</span> <br />
</h2>
<!-- <a href="hannah-my-interview-was-extraordinary-and-educative/index.html" class="bnt bnt-theme read-story">READ STORY</a> -->
</div>
</div>
</div>
</div>
<!-- <div class="item">
<img src="wp-content/uploads/2016/07/slider4-3.jpg" alt="Alumni Interview">
<div class="owl-caption">
<div class="container">
<div class="content-block">
<h2>
<span class="text-bold">PTA</span> <br />
</h2>
<a href="hannah-my-interview-was-extraordinary-and-educative/index.html" class="bnt bnt-theme read-story">READ STORY</a>
</div>
</div>
</div>
</div> -->
<!-- <div class="item">
<img src="wp-content/uploads/2016/07/slider1-3.jpg" alt="Alumni Interview">
<div class="owl-caption">
<div class="container">
<div class="content-block">
<h2>
<span class="text-bold">PTA</span> <br />
</h2>
<a href="#" class="bnt bnt-theme read-story">READ STORY</a>
</div>
</div>
</div>
</div> -->
</div>
</div>
<!--end slider-->
<!-- begin upcoming event
<div class="upcoming-event">
<div class="container">
<div class="row">
<div class="area-img col-md-5 col-sm-12 col-xs-12">
<img width="569" height="331" src="wp-content/uploads/2016/07/galery-popup-16-4-569x331.jpg" class="img-responsive animate zoomIn wp-post-image" alt="" /> </div>
<div class="area-content col-md-7 col-sm-12 col-xs-12">
<div class="area-top">
<div class="row">
<div class="col-sm-10 col-xs-9">
<h5 class="heading-light no-margin animated fadeInRight">UPCOMING EVENT</h5>
<h2 class="heading-bold animated fadeInLeft">Soap Sporting at Clean The World</h2>
<span>
<span class="icon map-icon"></span>
<span class="text-place text-light animated fadeInRight">363 Oakwood Avenue Irmo, SC 29063</span>
</span>
</div>
<div class="col-sm-2 col-xs-3">
<div class="area-calendar calendar animated slideInRight">
<span class="day text-bold">15</span>
<span class="month text-light">Jul</span>
<span class="year text-light bg-year">2020</span>
</div>
</div>
</div>
</div>
<div class="area-bottom">
<div id="time-event" class="pull-left animated slideInLeft"></div>
<script>
jQuery(document).ready(function () {
jQuery('#time-event').syotimer({
effectType: 'none',
year: 2020,
month: 07,
day: 15,
hour: 19,
minute: 50,
layout: 'smhd',
});
});
</script>
<a href="event/soap-sporting-at-clean-the-world/index.html" class="bnt bnt-theme join-now pull-right animated fadeIn">Join Now</a>
</div>
</div>
</div>
</div>
</div> -->
<!--end upcoming event-->
<!-- <div class="block-career col-md-4 col-sm-12 col-xs-12">
<div class="column-career">
<div class="title-links">
<h3 class="heading-regular">Career Opportunity</h3>
</div>
<div class="career-content">
<div class="company-item clearfix">
<div class="company-logo">
<a href="career/procera/index.html"><img width="391" height="67" src="wp-content/uploads/2016/07/procera-logo-edited-3.png" class="img-responsive wp-post-image" alt="" srcset="https://sayidan.kenzap.com/wp-content/uploads/2016/07/procera-logo-edited-3.png 391w, https://sayidan.kenzap.com/wp-content/uploads/2016/07/procera-logo-edited-3-300x51.png 300w" sizes="(max-width: 391px) 100vw, 391px" /></a>
</div>
<div class="company-desc-wrapper">
<div class="company-desc">
<div class="company-title"><h6 class="heading-regular"><a href="career/procera/index.html">Technical Director</a></h6></div>
<div class="company-excerpt">
<p>Claritas est etiam processus dynamicus, qui sequitur mutationem[...]</p>
</div>
</div>
</div>
</div>
<div class="company-item clearfix">
<div class="company-logo">
<a href="career/salsify/index.html"><img width="350" height="113" src="wp-content/uploads/2016/07/Salsify_Logo_Blue_Flower_Gray_Text-01-3.png" class="img-responsive wp-post-image" alt="" srcset="https://sayidan.kenzap.com/wp-content/uploads/2016/07/Salsify_Logo_Blue_Flower_Gray_Text-01-3.png 350w, https://sayidan.kenzap.com/wp-content/uploads/2016/07/Salsify_Logo_Blue_Flower_Gray_Text-01-3-300x97.png 300w" sizes="(max-width: 350px) 100vw, 350px" /></a>
</div>
<div class="company-desc-wrapper">
<div class="company-desc">
<div class="company-title"><h6 class="heading-regular"><a href="career/salsify/index.html">Assistant</a></h6></div>
<div class="company-excerpt">
<p>Claritas est etiam processus dynamicus, qui sequitur mutationem[...]</p>
</div>
</div>
</div>
</div>
<div class="company-item clearfix">
<div class="company-logo">
<a href="career/navia/index.html"><img width="350" height="115" src="wp-content/uploads/2016/07/navia-logo-final-300-rgb_gradient-fullcolor-mark-type-tag-3.png" class="img-responsive wp-post-image" alt="" srcset="https://sayidan.kenzap.com/wp-content/uploads/2016/07/navia-logo-final-300-rgb_gradient-fullcolor-mark-type-tag-3.png 350w, https://sayidan.kenzap.com/wp-content/uploads/2016/07/navia-logo-final-300-rgb_gradient-fullcolor-mark-type-tag-3-300x99.png 300w" sizes="(max-width: 350px) 100vw, 350px" /></a>
</div>
<div class="company-desc-wrapper">
<div class="company-desc">
<div class="company-title"><h6 class="heading-regular"><a href="career/navia/index.html">Developer</a></h6></div>
<div class="company-excerpt">
<p>Claritas est etiam processus dynamicus, qui sequitur mutationem[...]</p>
</div>
</div>
</div>
</div>
<div class="company-item clearfix">
<div class="company-logo">
<a href="career/chargify/index.html"><img width="350" height="105" src="wp-content/uploads/2016/07/chargify-logo-dark-37df595c-3.png" class="img-responsive wp-post-image" alt="" srcset="https://sayidan.kenzap.com/wp-content/uploads/2016/07/chargify-logo-dark-37df595c-3.png 350w, https://sayidan.kenzap.com/wp-content/uploads/2016/07/chargify-logo-dark-37df595c-3-300x90.png 300w" sizes="(max-width: 350px) 100vw, 350px" /></a>
</div>
<div class="company-desc-wrapper">
<div class="company-desc">
<div class="company-title"><h6 class="heading-regular"><a href="career/chargify/index.html">Manager</a></h6></div>
<div class="company-excerpt">
<p>Claritas est etiam processus dynamicus, qui sequitur mutationem[...]</p>
</div>
</div>
</div>
</div>
</div>
<div class="view-all"><a href="career-opportunity/index.html">View All Career Opportunities</a></div>
</div>
</div> -->
<!-- <div class="block-event-calendar col-md-4 col-sm-12 col-xs-12">
<div class="column-calendar">
<div class="title-links">
<h3 class="heading-regular">Event Calendar</h3>
</div>
<div class="content-calendar bg-calendar no-padding">
<div class="top-section">
<h6 class="heading-light">December 2020</h6>
<span class="icon calendar-icon pull-right"></span>
</div>
<div class="list-view">
<div class="view-item">
<div class="date-item">
<span class="dates text-light">Sun</span>
<span class="day text-bold color-theme">20</span>
<span class="month text-light">Dec</span>
</div>
<div class="date-desc-wrapper">
<div class="date-desc">
<div class="date-title"><h6 class="heading-regular"><a href="event/club-sponsorship-2015-2016/index.html">Club Sponsorship 2020-2021</a></h6></div>
<div class="date-excerpt">
<p>Duis autem vel eum iriure dolor in hendrerit[...]</p>
</div>
<div class="place">
<span class="icon map-icon"></span>
<span class="text-place">727 South Roehampton Ave. Fuquay Varina, NC 27526</span>
</div>
</div>
</div>
</div>
<div class="view-item">
<div class="date-item">
<span class="dates text-light">Tue</span>
<span class="day text-bold color-theme">18</span>
<span class="month text-light">Aug</span>
</div>
<div class="date-desc-wrapper">
<div class="date-desc">
<div class="date-title"><h6 class="heading-regular"><a href="event/weekend-at-sayidan-sierra-camp/index.html">Weekend at Sayidan Sierra Camp</a></h6></div>
<div class="date-excerpt">
<p>Duis autem vel eum iriure dolor in hendrerit[...]</p>
</div>
<div class="place">
<span class="icon map-icon"></span>
<span class="text-place">160 Market St. Mays Landing, NJ 08330</span>
</div>
</div>
</div>
</div>
<div class="view-item">
<div class="date-item">
<span class="dates text-light">Wed</span>
<span class="day text-bold color-theme">15</span>
<span class="month text-light">Jul</span>
</div>
<div class="date-desc-wrapper">
<div class="date-desc">
<div class="date-title"><h6 class="heading-regular"><a href="event/soap-sporting-at-clean-the-world/index.html">Soap Sporting at Clean The</a></h6></div>
<div class="date-excerpt">
<p>Duis autem vel eum iriure dolor in hendrerit[...]</p>
</div>
<div class="place">
<span class="icon map-icon"></span>
<span class="text-place">363 Oakwood Avenue Irmo, SC 29063</span>
</div>
</div>
</div>
</div>
<div class="view-item">
<div class="date-item">
<span class="dates text-light">Tue</span>
<span class="day text-bold color-theme">07</span>
<span class="month text-light">Apr</span>
</div>
<div class="date-desc-wrapper">
<div class="date-desc">
<div class="date-title"><h6 class="heading-regular"><a href="event/soap-sporting-at-clean-the-world-2/index.html">Soap Sporting at Clean The</a></h6></div>
<div class="date-excerpt">
<p>Duis autem vel eum iriure dolor in hendrerit[...]</p>
</div>
<div class="place">
<span class="icon map-icon"></span>
<span class="text-place">44 Arrowhead Street Londonderry, NH 03053</span>
</div>
</div>
</div>
</div>
<div class="view-item">
<div class="date-item">
<span class="dates text-light">Wed</span>
<span class="day text-bold color-theme">18</span>
<span class="month text-light">Mar</span>
</div>
<div class="date-desc-wrapper">
<div class="date-desc">
<div class="date-title"><h6 class="heading-regular"><a href="event/annual-meetup-at-luncheon/index.html">Annual Meetup at Luncheon</a></h6></div>
<div class="date-excerpt">
<p>Duis autem vel eum iriure dolor in hendrerit[...]</p>
</div>
<div class="place">
<span class="icon map-icon"></span>
<span class="text-place">15 Blackburn Dr. Southgate, MI 48195</span>
</div>
</div>
</div>
</div>
<div class="view-item">
<div class="date-item">
<span class="dates text-light">Tue</span>
<span class="day text-bold color-theme">03</span>
<span class="month text-light">Mar</span>
</div>
<div class="date-desc-wrapper">
<div class="date-desc">
<div class="date-title"><h6 class="heading-regular"><a href="event/an-evening-with-sayidan-professor-jack-dorovan/index.html">An Evening with Sayidan Professor</a></h6></div>
<div class="date-excerpt">
<p>Duis autem vel eum iriure dolor in hendrerit[...]</p>
</div>
<div class="place">
<span class="icon map-icon"></span>
<span class="text-place">273 Honey Creek Street Kaukauna, WI 54130</span>
</div>
</div>
</div>
</div>
<div class="view-item">
<div class="date-item">
<span class="dates text-light">Tue</span>
<span class="day text-bold color-theme">31</span>
<span class="month text-light">Dec</span>
</div>
<div class="date-desc-wrapper">
<div class="date-desc">
<div class="date-title"><h6 class="heading-regular"><a href="event/annual-meet-up-and-scholarship-presentations/index.html">Annual Meet Up And Scholarship</a></h6></div>
<div class="date-excerpt">
<p>Duis autem vel eum iriure dolor in hendrerit[...]</p>
</div>
<div class="place">
<span class="icon map-icon"></span>
<span class="text-place">Sayidan Street, Gondomanan, 8993, San Francisco, CA</span>
</div>
</div>
</div>
</div>
<div class="view-item">
<div class="date-item">
<span class="dates text-light">Tue</span>
<span class="day text-bold color-theme">24</span>
<span class="month text-light">Dec</span>
</div>
<div class="date-desc-wrapper">
<div class="date-desc">
<div class="date-title"><h6 class="heading-regular"><a href="event/alumni-association-white-hall-exhibition/index.html">Alumni Association White Hall Exhibition</a></h6></div>
<div class="date-excerpt">
<p>Duis autem vel eum iriure dolor in hendrerit[...]</p>
</div>
<div class="place">
<span class="icon map-icon"></span>
<span class="text-place">Findlancer Terrace, Gondosuli, California</span>
</div>
</div>
</div>
</div>
<div class="view-item">
<div class="date-item">
<span class="dates text-light">Fri</span>
<span class="day text-bold color-theme">29</span>
<span class="month text-light">Nov</span>
</div>
<div class="date-desc-wrapper">
<div class="date-desc">
<div class="date-title"><h6 class="heading-regular"><a href="event/annual-meetup-and-scholarship-presentation/index.html">Annual meetup and scholarship presentation</a></h6></div>
<div class="date-excerpt">
<p>Duis autem vel eum iriure dolor in hendrerit[...]</p>
</div>
<div class="place">
<span class="icon map-icon"></span>
<span class="text-place">363 Oakwood Avenue Irmo, SC 29063</span>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="view-all"><a href="#">View All Events</a></div>
</div>
</div> -->
<div class="alumni-interview" >
<div class="container">
<div class="row">
<div >
<div class="interview-wrapper">
<div class="interview-title animated lightSpeedIn">
<h1 class="heading-light text-capitalize">Description</h1>
</div>
<div class="">
<p >The Department of Applied Chemistry was established in 1976 with the support of UGC envisaged to play an important role in the further development of the industrial belt in the Greater Cochin area by providing scientific support and trained personnel to the existing industries and by acting as a catalyst for starting up of new industries. The Department started M.Sc. programme in Applied Chemistry in 1977, M. Phil. programme in Chemistry in 1986, M.Tech. programme in Industrial Catalysis in 1996 (approved by UGC and AICTE), M. Sc. programme in Chemistry in 2015, 5-year Integrated M. Sc. programme in and M. Sc. in forensic science in collaboration with other departments including Law, Computer Applications & Biotechnology and Kerala Police in 2020.
</p>
</div>
<!-- <div class="interview-see-story animated zoomInLeft">
<a class="see-story bnt text-uppercase" href="about.html">READ MORE</a>
</div> -->
</div>
</div>
</div>
</div>
</div>
<div style="padding-top: 0px;" class="alumni-dashboard">
<div class="container">
<div class="title title-dashboard type1">
<h1 class="heading-light no-margin">COMMITTEE MEMBERS</h1>
</div>
<div class="area-content">
<div class="row">
<div class="col-md-3 col-sm-6 col-xs-12">
<h2>PRESIDENT</h2>
<div class="user-avatar"><img style="border-radius: 50%;" alt="" src="https://0.gravatar.com/avatar/f72c502e0d657f363b5f2dc79dd8ceea?s=80&d=mm&r=g" srcset="https://0.gravatar.com/avatar/f72c502e0d657f363b5f2dc79dd8ceea?s=160&d=mm&r=g 2x" class="avatar avatar-80 photo" height="80" width="80"></div>
<div class="box-content">
<h4 class="heading-regular">NAME :</h4>
<h5 style="padding-top:0px;" class="text-content text-margin text-light ">
TENURE : </h5>
</div>
</div>
</div>
<div class="col-md-3 col-sm-6 col-xs-12">
<h2>EXECUTIVE COMMITTEE MEMBERS</h2>
</div>
<div class="col-md-3 col-sm-6 col-xs-12">
<h2></h2>
<div class="user-avatar"><img style="border-radius: 50%;" alt="" src="https://0.gravatar.com/avatar/f72c502e0d657f363b5f2dc79dd8ceea?s=80&d=mm&r=g" srcset="https://0.gravatar.com/avatar/f72c502e0d657f363b5f2dc79dd8ceea?s=160&d=mm&r=g 2x" class="avatar avatar-80 photo" height="80" width="80"></div>
<div class="box-content">
<h4 class="heading-regular">NAME</h4>
<h5 style="padding-top:0px;" class="text-content text-margin text-light ">
</h5>
</div>
</div>
<div class="col-md-3 col-sm-6 col-xs-12">
<h2></h2>
<div class="user-avatar"><img style="border-radius: 50%;" alt="" src="https://0.gravatar.com/avatar/f72c502e0d657f363b5f2dc79dd8ceea?s=80&d=mm&r=g" srcset="https://0.gravatar.com/avatar/f72c502e0d657f363b5f2dc79dd8ceea?s=160&d=mm&r=g 2x" class="avatar avatar-80 photo" height="80" width="80"></div>
<div class="box-content">
<h4 class="heading-regular">NAME</h4>
<h5 style="padding-top:0px;" class="text-content text-margin text-light ">
</h5>
</div>
</div>
<div class="col-md-3 col-sm-6 col-xs-12">
<h2></h2>
<div class="user-avatar"><img style="border-radius: 50%;" alt="" src="https://0.gravatar.com/avatar/f72c502e0d657f363b5f2dc79dd8ceea?s=80&d=mm&r=g" srcset="https://0.gravatar.com/avatar/f72c502e0d657f363b5f2dc79dd8ceea?s=160&d=mm&r=g 2x" class="avatar avatar-80 photo" height="80" width="80"></div>
<div class="box-content">
<h4 class="heading-regular">NAME</h4>
<h5 style="padding-top:0px;" class="text-content text-margin text-light ">
</h5>
</div>
</div>
<div class="col-md-3 col-sm-6 col-xs-12">
<h2></h2>
<div class="user-avatar"><img style="border-radius: 50%;" alt="" src="https://0.gravatar.com/avatar/f72c502e0d657f363b5f2dc79dd8ceea?s=80&d=mm&r=g" srcset="https://0.gravatar.com/avatar/f72c502e0d657f363b5f2dc79dd8ceea?s=160&d=mm&r=g 2x" class="avatar avatar-80 photo" height="80" width="80"></div>
<div class="box-content">
<h4 class="heading-regular">NAME</h4>
<h5 style="padding-top:0px;" class="text-content text-margin text-light ">
</h5>
</div>
</div>
<div class="login-dashboard text-center col-sm-12 col-xs-12">
</div>
</div>
</div>
</div>
<div style="padding-top: 0px;" class="alumni-dashboard">
<div class="container">
<div class="area-content">
<div class="row">
<h2>MEMBERS</h2>
<div class="col-md-3 col-sm-6 col-xs-12">
<ul><li><li><li><li><li><li></li></li></li></li></li></li></ul>
</div>
<div class="login-dashboard text-center col-sm-12 col-xs-12">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div></div>
<!-- <div id="panel-2146-0-0-4" class="so-panel widget_sayidan_banner_widget" data-index="4" data-style="{"background_display":"tile"}" ><div class="so-widget-sayidan_banner_widget so-widget-sayidan_banner_widget-default-d75171398898">
<div class="alumni-interview" style="background: url('wp-content/uploads/2016/07/bg-home-3.jpg') no-repeat;">
<div class="container">
<div class="row">
<div class="col-sm-6 col-xs-12 pull-right">
<div class="interview-wrapper">
<div class="interview-title animated lightSpeedIn">
<h1 class="heading-light text-capitalize">Message from Principal</h1>
</div>
<div class="interview-desc text-left animated rollIn">
<p class="text-light">The Department of Applied Chemistry was established in 1976 with the support of UGC envisaged to play an important role in the further development of the industrial belt in the Greater Cochin area by providing scientific support and trained personnel to the existing industries and by acting as a catalyst for starting up of new industries. The Department started M.Sc. programme in Applied Chemistry in 1977, M. Phil. programme in Chemistry in 1986, M.Tech. programme in Industrial Catalysis in 1996 (approved by UGC and AICTE), M. Sc. programme in Chemistry in 2015, 5-year Integrated M. Sc. programme in and M. Sc. in forensic science in collaboration with other departments including Law, Computer Applications & Biotechnology and Kerala Police in 2020.
</p>
</div>
<div class="interview-see-story animated zoomInLeft">
<a class="see-story bnt text-uppercase" href="about.html">READ MORE</a>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- end alumni stories </div></div> -->
<!-- <div id="panel-2146-0-0-5" class="so-panel widget_sayidan_twitter2_widget" data-index="5" data-style="{"background_image_attachment":false,"background_display":"tile"}" ><div class="so-widget-sayidan_twitter2_widget so-widget-sayidan_twitter2_widget-default-d75171398898"> <div class="twitter-stream">
<div class="container">
<div class="twitter-wrapper text-center">
<div class="twitter-icon color-theme">
<i class="fa fa-twitter" aria-hidden="true"></i>
</div>
<div class="twitter-content">
<div class="twitter-desc">
<div class="text-light text-center">
<div class="twitter-desc">
<p class="text-light text-center">“<a href="httpss://t.co/zTyh7nOmZ4" target="_blank">httpss://t.co/zTyh7nOmZ4</a> <a href="httpss://t.co/AdOGeEbKli" target="_blank">httpss://t.co/AdOGeEbKli</a>“</p>
</div>
</div>
<div class="twitter-user"> -->
<!--<span class="avatar-user"><img src="images/avatar.png" alt=""></span>-->
<!-- <span class="name">@kenzap</span>
</div>
</div>
</div>
</div>
</div>
</div>
</div></div> -->
<div id="panel-2146-0-0-6" class="so-panel widget_sayidan_gallery_widget" data-index="6" data-style="{"background_image_attachment":false,"background_display":"tile"}" ><div class="so-widget-sayidan_gallery_widget so-widget-sayidan_gallery_widget-default-d75171398898">
<!--begin instagream-->
<div class="instagream">
<div class="instagram-feed clearfix">
<ul class="list-item no-margin">
<li class="no-padding no-margin no-style" style="width:16.666666666667%"><a href="university-gallery/index.html"><img width="290" height="290" src="wp-content/uploads/2016/07/galery-popup-15-3-290x290.jpg" class="img-responsive wp-post-image" alt="" srcset="https://sayidan.kenzap.com/wp-content/uploads/2016/07/galery-popup-15-3-290x290.jpg 290w, https://sayidan.kenzap.com/wp-content/uploads/2016/07/galery-popup-15-3-150x150.jpg 150w, https://sayidan.kenzap.com/wp-content/uploads/2016/07/galery-popup-15-3-93x93.jpg 93w" sizes="(max-width: 290px) 100vw, 290px" /></a></li>
<li class="no-padding no-margin no-style" style="width:16.666666666667%"><a href="university-gallery/index.html"><img width="290" height="290" src="wp-content/uploads/2016/07/single-event-img-3-290x290.jpg" class="img-responsive wp-post-image" alt="" srcset="https://sayidan.kenzap.com/wp-content/uploads/2016/07/single-event-img-3-290x290.jpg 290w, https://sayidan.kenzap.com/wp-content/uploads/2016/07/single-event-img-3-150x150.jpg 150w, https://sayidan.kenzap.com/wp-content/uploads/2016/07/single-event-img-3-93x93.jpg 93w" sizes="(max-width: 290px) 100vw, 290px" /></a></li>
<li class="no-padding no-margin no-style" style="width:16.666666666667%"><a href="university-gallery/index.html"><img width="290" height="290" src="wp-content/uploads/2016/07/galery-popup-10-3-290x290.jpg" class="img-responsive wp-post-image" alt="" srcset="https://sayidan.kenzap.com/wp-content/uploads/2016/07/galery-popup-10-3-290x290.jpg 290w, https://sayidan.kenzap.com/wp-content/uploads/2016/07/galery-popup-10-3-150x150.jpg 150w, https://sayidan.kenzap.com/wp-content/uploads/2016/07/galery-popup-10-3-93x93.jpg 93w" sizes="(max-width: 290px) 100vw, 290px" /></a></li>
<li class="no-padding no-margin no-style" style="width:16.666666666667%"><a href="university-gallery/index.html"><img width="290" height="290" src="wp-content/uploads/2016/07/galery-popup-16-1-3-290x290.jpg" class="img-responsive wp-post-image" alt="" srcset="https://sayidan.kenzap.com/wp-content/uploads/2016/07/galery-popup-16-1-3-290x290.jpg 290w, https://sayidan.kenzap.com/wp-content/uploads/2016/07/galery-popup-16-1-3-150x150.jpg 150w, https://sayidan.kenzap.com/wp-content/uploads/2016/07/galery-popup-16-1-3-93x93.jpg 93w" sizes="(max-width: 290px) 100vw, 290px" /></a></li>
<li class="no-padding no-margin no-style" style="width:16.666666666667%"><a href="university-gallery/index.html"><img width="290" height="290" src="wp-content/uploads/2016/07/galery-popup-11-3-290x290.jpg" class="img-responsive wp-post-image" alt="" srcset="https://sayidan.kenzap.com/wp-content/uploads/2016/07/galery-popup-11-3-290x290.jpg 290w, https://sayidan.kenzap.com/wp-content/uploads/2016/07/galery-popup-11-3-150x150.jpg 150w, https://sayidan.kenzap.com/wp-content/uploads/2016/07/galery-popup-11-3-93x93.jpg 93w" sizes="(max-width: 290px) 100vw, 290px" /></a></li>
<li class="no-padding no-margin no-style" style="width:16.666666666667%"><a href="university-gallery/index.html"><img width="290" height="290" src="wp-content/uploads/2016/07/galery-popup-12-3-290x290.jpg" class="img-responsive wp-post-image" alt="" srcset="https://sayidan.kenzap.com/wp-content/uploads/2016/07/galery-popup-12-3-290x290.jpg 290w, https://sayidan.kenzap.com/wp-content/uploads/2016/07/galery-popup-12-3-150x150.jpg 150w, https://sayidan.kenzap.com/wp-content/uploads/2016/07/galery-popup-12-3-93x93.jpg 93w" sizes="(max-width: 290px) 100vw, 290px" /></a></li>
</ul>
<div class="instagram-feed-user text-center">
<div class="user-wrapper">
<span class="icon-instagram"><i class="fa fa-instagram" aria-hidden="true"></i></span>
<span class="name-user">@CUSAT</span>
</div>
</div>
</div>
</div>
<!--end instagream-->
</div></div>
<div id="panel-2146-0-0-7" class="so-panel widget_sayidan_newsletter_widget panel-last-child" data-index="7" data-style="{"background_display":"tile"}" ><div class="so-widget-sayidan_newsletter_widget so-widget-sayidan_newsletter_widget-default-d75171398898">
<!--begin newsletter
<div class="newsletter newsletter-parallax type2" data-parallax="scroll" data-image-src="wp-content/uploads/2016/07/bg-newsletter4-3.jpg" style="padding-top: 0px;" >
<div class="container">
<h1 align="center" style="color:white;">PTA</h1> <br>
<h1 align="center" style="color:white;margin-top:0px;">Department of Applied Chemistry</h1>
<div class="newsletter-wrapper text-center">
<div class="newsletter-title">
<h2 class="heading-light">Aims & Objectives</h2>
</div>
<script>(function() {
window.mc4wp = window.mc4wp || {
listeners: [],
forms: {
on: function(evt, cb) {
window.mc4wp.listeners.push(
{
event : evt,
callback: cb
}
);
}
}
}
})();
<form id="mc4wp-form-1" class="mc4wp-form mc4wp-form-600" method="post" data-id="600" data-name="Subscription" ><div class="mc4wp-form-fields"><div class="form-inline">
<ul style="text-align:left;"><li style="color:white;">To foster and promote cordial relationship among the parents, teaches and studentsof the department.</li> <br>
<li style="color:white;">To help guide and participate in various developmental activities of the department.</li> <br>
<li style="color:white;">To render all possible assistance for smooth working of the Department and for maintaining good discipline in the department.</li> <br>
<li style="color:white;">To institute scholarships/awards for deserving students of the department.</li> <br>
<li style="color:white;">To provide and ensure essential amenities to the students of the department.</li>
</ul>
</div></div><label style="display: none !important;">Leave this field empty if you're human: <input type="text" name="_mc4wp_honeypot" value="" tabindex="-1" autocomplete="off" /></label><input type="hidden" name="_mc4wp_timestamp" value="1593870189" /><input type="hidden" name="_mc4wp_form_id" value="600" /><input type="hidden" name="_mc4wp_form_element_id" value="mc4wp-form-1" /><div class="mc4wp-response"></div></form><!-- / Mailchimp for WordPress Plugin </div>
</div>
</div>
-->
</div></div>
</div>
</div>
</div>
</div>
</div><!-- .entry-content -->
</article><!-- #post-## -->
</div><!-- #primary -->
</div><!-- #content -->
<!--Begin footer wrapper-->
<div align="center" class="responsive-map-container">
<iframe src="httpss://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d15714.678411756759!2d76.327021!3d10.044099!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0x83497fa6cb0e123a!2sDepartment%20of%20Applied%20Chemistry%20and%20Physics!5e0!3m2!1sen!2sin!4v1604245400497!5m2!1sen!2sin"></iframe> </div>
<div class="footer-wrapper type2">
<footer class="foooter-container">
<div class="container">
<div class="footer-middle">
<div class="row">
<div class="col-md-4 col-sm-12 col-xs-12 animated footer-col">
<div class="contact-footer">
<div class="logo-footer">
<a href='index.html' title='Sayidan' rel='home'><img src='wp-content/uploads/2016/07/logo-footer-3.png' alt='Sayidan'></a>
</div>
<div class="contact-desc">
<p class="text-light">Cochin University of Science and Technology
<br>
Kalamassery, Kochi-22
</p>
</div>
<div class="contact-phone-email">
<span class="contact-phone"><a href="tel:+37125664445">0484 257 5804</a> | <a href="tel:+37125664444">0484 257 5804</a>
</span>
<span class="contact-email"><a href="mailito:[email protected]">[email protected]</a></span>
</div>
</div>
</div>
<div class="col-md-5 col-sm-12 col-xs-12 animated footer-col">
<div class="links-footer">
<div class="row">
<div class="col-sm-4 col-xs-12 menu-item menu-item-type-post_type menu-item-object-page menu-item-home current-menu-item page_item page-item-2146 current_page_item menu-item-has-children">
<h6 class="heading-bold"></h6>
<ul class="list-unstyled no-margin sub-menu menu-odd menu-depth-1">
<li class="menu-item menu-item-type-post_type menu-item-object-page"><a href="https://cusat.ac.in/" class="menu-link sub-menu-link">the University</a> <li class="menu-item menu-item-type-post_type menu-item-object-page"><a href="facultyhome.html" class="menu-link sub-menu-link">Faculty</a> <li class="menu-item menu-item-type-post_type menu-item-object-page"><a href="students-corner.html" class="menu-link sub-menu-link">Students</a> <li class="menu-item menu-item-type-post_type menu-item-object-page"><a href="university-gallery/index.html" class="menu-link sub-menu-link">Gallery</a></ul>
</div>
<div class="col-sm-4 col-xs-12 menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children"><h6 class="heading-bold"></h6>
<ul class="list-unstyled no-margin sub-menu menu-odd menu-depth-1">
<li class="menu-item menu-item-type-post_type menu-item-object-page"><a href="alumni-home.html" class="menu-link sub-menu-link">Alumni</a> <li class="menu-item menu-item-type-post_type menu-item-object-page"><a href="about.html" class="menu-link sub-menu-link">About US</a> <li class="menu-item menu-item-type-post_type menu-item-object-page"><a href="" class="menu-link sub-menu-link">Contact Us</a> <li class="menu-item menu-item-type-post_type menu-item-object-page"><a href="" class="menu-link sub-menu-link">News</a></ul>
</div>
<!-- <div class="col-sm-4 col-xs-12 menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children"><h6 class="heading-bold"></h6>
<ul class="list-unstyled no-margin sub-menu menu-odd menu-depth-1">
<li class="menu-item menu-item-type-custom menu-item-object-custom"><a href="alumni-list.html" class="menu-link sub-menu-link">Anti Ragging</a> <li class="menu-item menu-item-type-post_type menu-item-object-page"><a href="alumni-stories/index.html" class="menu-link sub-menu-link">Facilities</a> <li class="menu-item menu-item-type-post_type menu-item-object-page"><a href="password-reset/index.html" class="menu-link sub-menu-link">PTA</a> <li class="menu-item menu-item-type-post_type menu-item-object-page"><a href="alumni-materials/index.html" class="menu-link sub-menu-link">academics</a></ul>
</div> -->
</div>
</div>
</div>
<div class="col-md-3 col-sm-12 col-xs-12 animated footer-col">
<div class="links-social">
<ul class="list-inline text-center">
<li><a rel="nofollow" href="#"><i class="fa fa-facebook" aria-hidden="true"></i></a></li> <li><a rel="nofollow" href="#"><i class="fa fa-twitter" aria-hidden="true"></i></a></li> <li><a rel="nofollow" href="#"><i class="fa fa-linkedin" aria-hidden="true"></i></a></li> <li><a rel="nofollow" href="#"><i class="fa fa-pinterest" aria-hidden="true"></i></a></li> <li><a target="blank" rel="nofollow" title="Create website" href="https://kenzap.com/"><i class="fa fa-cloud hvr-wobble-top txcolor" aria-hidden="true"></i></a></li> </ul>
</div>
</div>
</div>
</div>
<div class="footer-bottom text-center">
<button id="scrollToTopBtn"><i class="fa fa-arrow-up" aria-hidden="true"></i></button>
<p class="copyright text-light">©2020 School Of Engineering</p>
</div>
</div>
</footer>
</div>
<!--End footer wrapper-->
<div id="um_upload_single" style="display:none"></div>
<div id="um_view_photo" style="display:none">
<a href="javascript:void(0);" data-action="um_remove_modal" class="um-modal-close"><i class="um-faicon-times"></i></a>
<div class="um-modal-body photo">
<div class="um-modal-photo"></div>
</div>
</div><script>(function() {function maybePrefixUrlField() {
if (this.value.trim() !== '' && this.value.indexOf('https') !== 0) {
this.value = "https://" + this.value;
}
}
var urlFields = document.querySelectorAll('.mc4wp-form input[type="url"]');
if (urlFields) {
for (var j=0; j < urlFields.length; j++) {
urlFields[j].addEventListener('blur', maybePrefixUrlField);
}
}
})();</script><script type='text/javascript'>