-
Notifications
You must be signed in to change notification settings - Fork 0
/
index-cpy.html
1335 lines (1001 loc) · 49.4 KB
/
index-cpy.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">
<head>
<!-- Basic Page Needs
================================================== -->
<meta charset="utf-8">
<!-- Mobile Specific Metas
================================================== -->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=0">
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Expires" content="-1">
<meta http-equiv="CACHE-CONTROL" content="NO-CACHE">
<!-- Site Title -->
<title>CENTENNIAL CELEBRATION</title>
<!--Favicon-->
<link rel="shortcut icon" href="images/logo-tab.png" type="image/x-icon">
<link rel="icon" href="images/logo-tab.png" type="image/x-icon">
<!-- CSS
================================================== -->
<!-- Bootstrap -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<!-- Template styles-->
<link rel="stylesheet" href="css/style.css">
<!-- Responsive styles-->
<link rel="stylesheet" href="css/responsive.css">
<!-- FontAwesome -->
<link rel="stylesheet" href="css/font-awesome.min.css">
<!-- Animation -->
<link rel="stylesheet" href="css/animate.css">
<!-- Colorbox -->
<link rel="stylesheet" href="css/colorbox.css">
<link rel="stylesheet" href="css/styles.css">
<style type="text/css">
.ts-speaker-info {
text-align: center;
height: 100px;
padding: 0;
color: #303030;
background-color: #fff;
}
</style>
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<!-- <div class="preload"></div> -->
<div class="body-inner">
<!-- Header start -->
<header id="header" class="header header-transparent fixed-top">
<div class="container">
<div class="row">
<div class="navbar-header">
<div class="logo">
<a href="index.html">
<img src="images/logo-dark.png" alt="" class="img-responsive">
</a>
</div><!-- logo end -->
</div><!-- Navbar header end -->
<div class="site-nav-inner">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<nav class="collapse navbar-collapse navbar-responsive-collapse pull-right">
<ul class="nav navbar-nav">
<li><a href="index.html">Home</a></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">About Us <i class="fa fa-angle-down"></i></a>
<ul class="dropdown-menu" role="menu">
<li><a href="overview.html">Overview</a> </li>
<li><a href="https://biochem.iisc.ac.in/faculty.php" target="_blank">Faculty Profile</a> </li>
<li><a href="latest-news.html">Latest News</a> </li>
</ul>
</li><!-- Speakers li end -->
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Event <i class="fa fa-angle-down"></i></a>
<ul class="dropdown-menu" role="menu">
<!-- <li><a href="opening-lecture.html">Opening Lecture</a> </li> -->
<li><a href="formal-inauguration.html">Formal Inauguration</a> </li>
<li><a href="international-conference.html">International Conference</a> </li>
<li><a href="concluding-session.html">Concluding Session</a> </li>
</ul>
</li><!-- Speakers li end -->
<li><a href="speakers.html">Speakers</a> </li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Nostalgia <i class="fa fa-angle-down"></i></a>
<ul class="dropdown-menu" role="menu">
<li><a href="alumni-meet.html">Alumni Meet</a> </li>
<li><a href="memories-forever.html">Memories Forever</a> </li>
</ul>
</li><!-- Speakers li end -->
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Alumni <i class="fa fa-angle-down"></i></a>
<ul class="dropdown-menu" role="menu">
<li><a href="alumni-activities.html">Alumni Activities</a></li>
<li><a href="list-of-alumini.html">List of Alumni</a></li>
</ul>
</li><!-- About li end -->
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Get Involved <i class="fa fa-angle-down"></i></a>
<ul class="dropdown-menu" role="menu">
<li><a href="reminiscence.html">Reminiscence</a></li>
<li><a href="volunteer.html">Volunteer</a></li>
<li><a href="feedback.html">Feedback</a></li>
</ul>
</li><!-- Speakers li end -->
<li><a href="contact-us.html">Contact Us</a></li>
</ul>
</nav><!--/ Collapse end -->
</div><!--/ Site nav inner end -->
</div><!--/ Row end -->
</div><!--/ Container end -->
</header><!--/ Header end -->
<div id="banner">
<!-- Slider begins here -->
<div id="homepage_slider" class="carousel slide">
<ol class="carousel-indicators">
<li data-target="#homepage_slider" data-slide-to="0" class="active"></li>
<li data-target="#homepage_slider" data-slide-to="1"></li>
<li data-target="#homepage_slider" data-slide-to="2"></li>
</ol>
<!-- Carousel items -->
<div class="carousel-inner">
<!-- slide #1 -->
<div data-slide="0" class="item active">
<div class="slider-hide-on-mobile">
<video title="1" id="bgvid" autoplay loop muted poster="images/slider/VID1.mp4"><source src="images/slider/VID1.mp4" type="video/webm">Your browser does not support the video tag.</video>
</div>
</div>
<!-- slide #2 (image) -->
<div data-slide="1" class="item">
<img title="2" alt="image of hotel" src="images/slider/banner1.jpg">
</div>
<!-- slide #3 (image) -->
<div data-slide="2" class="item">
<img title="3" alt="image of apartment" src="images/slider/banner2.jpg">
</div>
<div data-slide="3" class="item">
<img title="4" alt="image of apartment" src="images/slider/banner3.jpg">
</div>
<div data-slide="4" class="item">
<img title="5" alt="image of apartment" src="images/slider/banner4.jpg">
</div>
<div data-slide="5" class="item">
<img title="6" alt="image of apartment" src="images/slider/banner5.jpg">
</div>
<div data-slide="6" class="item">
<img title="7" alt="image of apartment" src="images/slider/banner6.jpg">
</div>
</div> <!-- end of '.carousel-inner' -->
<!-- Carousel nav -->
<!-- <div id="slider-play-button"><button class="play-video-button" type="button" title="Play Video"></button></div> -->
<a class="carousel-control left" href="#homepage_slider" data-slide="prev">‹</a>
<a class="carousel-control right" href="#homepage_slider" data-slide="next">›</a>
</div> <!-- end of '#homepage_slider' -->
<!-- Slider ends here -->
</div> <!-- end of "#banner" -->
<div class="main-text hidden-xs">
<div class="container">
<div class="banner-content text-center">
<div align="center">
<img src="images/Centenary Logo.jpg" class="img-responsive">
</div>
<div class="countdown classic-style">
<div class="counter-day">
<span class="days">0</span>
<div class="smalltext">Days</div>
</div>
<div class="counter-hour">
<span class="hours">0</span>
<div class="smalltext">Hours</div>
</div>
<div class="counter-minute">
<span class="minutes">00</span>
<div class="smalltext">Minutes</div>
</div>
<div class="counter-second">
<span class="seconds">0</span>
<div class="smalltext">Seconds</div>
</div>
</div><!-- Countdown end -->
<h1 class="banner-title">CENTENARY CONFERENCE AND ALUMNI REUNION</h1>
<h2 class="banner-desc">DEC 10-DEC 12, 2020 . VENUE : Faculty hall, IISc. </h2>
<p class="banner-btn">
<a href="formal-inauguration.html" class="btn btn-border">Learn More</a>
</p>
</div><!-- Banner content end -->
</div><!-- Container end -->
</div>
<!-- <section id="banner">
<div class="banner-item" style="background-image:url(images/background-home-page.jpg)">
<div class="container">
<div class="banner-content text-center">
<div align="center">
<img src="images/Centenary Logo.jpg" class="img-responsive">
</div>
<div class="countdown classic-style">
<div class="counter-day">
<span class="days">0</span>
<div class="smalltext">Days</div>
</div>
<div class="counter-hour">
<span class="hours">0</span>
<div class="smalltext">Hours</div>
</div>
<div class="counter-minute">
<span class="minutes">00</span>
<div class="smalltext">Minutes</div>
</div>
<div class="counter-second">
<span class="seconds">0</span>
<div class="smalltext">Seconds</div>
</div>
</div>Countdown end
<h1 class="banner-title">Centenary celebrations</h1>
<h2 class="banner-desc">IISc Bangalore, 21 Feb 2020 - 19 Feb, 2021</h2>
<p class="banner-btn">
<a href="formal-inauguration.html" class="btn btn-border">Learn More</a>
</p>
</div>Banner content end
</div>Container end
</div>Banner item end
</section>Section banner end -->
<section id="ts-intro" class="ts-intro">
<div class="container">
<div class="row text-center">
<h2 class="section-title">Centenary celebrations of Department of Biochemistry, IISc</h2>
<p class="section-sub-title"> </p>
</div><!--/ Title row end -->
<div class="row">
<div class="col-xs-12 col-sm-12 col-md-6">
<div class="intro-video">
<img class="img-responsive" src="images/new/iisc-2.jpg" alt="" />
<!-- <a class="popup" href="https://www.youtube.com/embed/XhveHKJWnOQ?autoplay=1&loop=1">
<div class="video-icon">
<i class="fa fa-play"></i>
</div>
</a> -->
</div>
</div><!-- Col end -->
<div class="col-xs-12 col-sm-12 col-md-6">
<div class="featured-tab">
<ul class="nav nav-tabs">
<li class="active">
<a class="animated fadeIn" href="#tab_a" data-toggle="tab">
Overview
</a>
</li>
<li>
<a class="animated fadeIn" href="#tab_b" data-toggle="tab">
<span class="tab-head">
<span class="tab-text-title">Key Dates</span>
</span>
</a>
</li>
<li>
<a class="animated fadeIn" href="#tab_c" data-toggle="tab">
<span class="tab-head">
<span class="tab-text-title">Venue</span>
</span>
</a>
</li>
</ul>
<div class="tab-content">
<div class="tab-pane active animated fadeInRight" id="tab_a">
<h3 class="tab-content-title"></h3>
<p class="sppb-cta-text"> Indian Institute of Science (IISc) was founded in the year 1909 at Bangalore and it started functioning from 24 July 1911 with three departments: General Chemistry, Applied Chemistry and Electrical technology. Gilbert Fowler, a professor at the Applied Chemistry Department, was appointed as the first Chair of Biochemistry on 16 February 1921, almost nineteen years after Benjamin Moore was appointed as the first Chair of Biochemistry in U.K. at the University of Liverpool in England in 1902. It is interesting to note that the Biochemical Journal and the Journal of Biological Chemistry were started in 1906 and 1905 respectively. Thus, Biochemistry as a distinct discipline was gaining momentum in the first quarter of 20th century. </p>
<div class="text-left"><a class="btn btn-primary" href="overview.html">Read More</a></div>
</div><!-- Tab pane 1 end -->
<div class="tab-pane animated fadeInRight" id="tab_b">
<!-- <p><blockquote>20 Jan 2020 <b>Opening Lecture</b><br></blockquote></p> -->
<p><blockquote>21 Feb 2020 <b>Formal Inauguration</b>
<br>Centenary celebrations will be formally inaugurated by Prof. C N R Rao, Bharat Ratna and Dr. Renu Swarup, Secretary, Dept. Of Biotechnology, Govt. Of India </blockquote></p>
<p><blockquote>10-12 Dec 2020 <b>International Conference</b><br>Includes lectures in frontier areas of biochemistry by invited speakers and Alumni</blockquote></p>
<p><blockquote>19 Feb 2021 <b>Concluding Session</b><br>Lecture by Nobel Laureate Venkatraman Ramakrishnan</blockquote></p>
</p>
</div><!-- Tab pane 2 end -->
<div class="tab-pane animated fadeInRight" id="tab_c">
<h3 class="tab-content-title"></h3>
<p class="sppb-cta-text">Biological Sciences Auditorium / Faculty Hall,<br> IISc,
Bangalore<br>
Email: [email protected]</p>
</div><!-- Tab pane 3 end -->
</div><!-- tab content -->
</div><!-- Featured tab end -->
</div><!-- Col end -->
</div><!-- Content Row end -->
</div><!-- Container end -->
</section><!-- Intro area end -->
<div class="tentitive">
<div class="container">
<div class="row text-center">
<h2 class="section-title title-white">Formal Inauguration</h2>
</div>
<div class="row">
<div class="col-sm-12">
<h2 class="schedule-date">Venue : Ground floor Auditorium, Biological Sciences Building IISc, Bangalore<br>
21 Feb 2020</h2>
<p><b>Centenary celebrations will be formally inaugurated by Prof. C N R Rao, Bharat Ratna and Dr. Renu Swarup, Secretary, Dept. Of Biotechnology, Govt. Of India</b></p><br>
<div class="panel-group panel-classic" id="accordionA">
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a data-toggle="collapse" data-parent="#accordionA, #accordionB" href="#collapseOne">
Session 1</a>
</h4>
</div>
<div id="collapseOne" class="panel-collapse collapse">
<div class="panel-body">
<div class="row">
<div class="col-md-12">
<div class="schedule-listing bg">
<span class="schedule-slot-time">10.00 - 10.10</span>
<div class="schedule-slot-info">
<a href="#"> <img class="schedule-slot-speakers" src="images/P-N-Rangarajan.jpg" alt=""> </a>
<div class="schedule-slot-info-content">
<h3 class="schedule-slot-title">Welcome by <b>Prof P N Rangarajan</b><br>
Chair, Department of Biochemistry</h3>
</div><!--Info content end -->
</div><!-- Slot info end -->
</div><!-- Slot listing 1 end -->
<div class="schedule-listing">
<span class="schedule-slot-time">10.10 - 10.15</span>
<div class="schedule-slot-info">
<a href="#">
<img class="schedule-slot-speakers" src="images/Desirazu-N-Rao.jpg" alt="">
</a>
<div class="schedule-slot-info-content">
<h3 class="schedule-slot-title">Opening Remarks by <b>Prof D N Rao</b><br>
Chair, Centenary Celebrations Committee</h3>
</div><!--Info content end -->
</div><!-- Slot info end -->
</div><!-- Slot listing 2 end -->
<div class="schedule-listing bg">
<span class="schedule-slot-time">10.15 - 10.20</span>
<div class="schedule-slot-info">
<a href="#"> <img class="schedule-slot-speakers" src="images/speaker/anurag.jpg" alt=""> </a>
<div class="schedule-slot-info-content">
<h3 class="schedule-slot-title">Remarks by <b>Prof. Anurag Kumar</b><br>
Director, IISc</h3>
</div><!--Info content end -->
</div><!-- Slot info end -->
</div><!-- Slot listing 1 end -->
<div class="schedule-listing">
<span class="schedule-slot-time">10.20 - 11.00</span>
<div class="schedule-slot-info">
<a href="#"> <img class="schedule-slot-speakers" src="images/cnr.jpg" alt=""> </a>
<div class="schedule-slot-info-content">
<h3 class="schedule-slot-title">Inaugural address<br>
<b>Prof. C N R Rao,</b> Bharat Ratna<br>
Chairperson: <b>Prof. M. R. S. Rao</b></h3>
</div><!--Info content end -->
</div><!-- Slot info end -->
</div><!-- Slot listing 2 end -->
<div class="schedule-listing bg">
<span class="schedule-slot-time">11.00 - 11.30</span>
<div class="schedule-slot-info">
<div class="schedule-slot-info-content">
<h3 class="schedule-slot-title">Tea<br> </h3>
</div><!--Info content end -->
</div><!-- Slot info end -->
</div><!-- Slot listing 1 end -->
<div class="schedule-listing">
<span class="schedule-slot-time">11.30 - 12.15</span>
<div class="schedule-slot-info">
<a href="#"> <img class="schedule-slot-speakers" src="images/renu.jpg" alt=""> </a>
<div class="schedule-slot-info-content">
<h3 class="schedule-slot-title"><b>Keynote address<br>
Dr. Renu Swarup,</b> Secretary<br>
Department of Biotechnology, Govt. of India<br>
Chairperson: <b> Prof. G Padmanaban</b></h3>
</div><!--Info content end -->
</div><!-- Slot info end -->
</div><!-- Slot listing 2 end -->
<div class="schedule-listing bg">
<span class="schedule-slot-time">12.15 - 12.30 </span>
<div class="schedule-slot-info">
<a href="#"> <img class="schedule-slot-speakers" src="images/speaker/krishnaswamy.jpg" alt=""> </a>
<div class="schedule-slot-info-content">
<h3 class="schedule-slot-title">Remarks by<br> Dr. P. R. Krishnaswamy</h3>
</div><!--Info content end -->
</div><!-- Slot info end -->
</div><!-- Slot listing 1 end -->
<div class="schedule-listing">
<span class="schedule-slot-time">12.30-12.45 PM</span>
<div class="schedule-slot-info">
<a href="#"> <img class="schedule-slot-speakers" src="images/speaker/mahtab.jpg" alt=""> </a>
<div class="schedule-slot-info-content">
<h3 class="schedule-slot-title">Remarks by<br> Dr. Mahtab Bamji</h3>
</div><!--Info content end -->
</div><!-- Slot info end -->
</div><!-- Slot listing 2 end -->
<div class="schedule-listing bg">
<span class="schedule-slot-time">12.45 - 12.50 </span>
<div class="schedule-slot-info">
<div class="schedule-slot-info-content">
<h3 class="schedule-slot-title">Vote of thanks <br> </h3>
</div><!--Info content end -->
</div><!-- Slot info end -->
</div><!-- Slot listing 1 end -->
<div class="schedule-listing">
<span class="schedule-slot-time">12.50 - 13.20</span>
<div class="schedule-slot-info">
<a href="#"> <img class="schedule-slot-speakers" src="images/renu.jpg" alt=""> </a>
<div class="schedule-slot-info-content">
<h3 class="schedule-slot-title">Inauguration of Exhibition by <br> Dr. Renu Swarup</h3>
</div><!--Info content end -->
</div><!-- Slot info end -->
</div><!-- Slot listing 2 end -->
</div><!-- Col end -->
</div>
</div>
</div>
</div><!--/ Panel 1 end-->
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a data-toggle="collapse" class="collapsed" data-parent="#accordionA, #accordionB" href="#collapseTwo">Session 2</a>
</h4>
</div>
<div id="collapseTwo" class="panel-collapse collapse">
<div class="panel-body">
<div class="row">
<div class="col-md-12">
<div class="schedule-listing bg">
<!-- <span class="schedule-slot-time">10.00 - 10.10 AM</span> -->
<div class="schedule-slot-info">
<a href="#"> <img class="schedule-slot-speakers" src="images/speaker/umesh.jpg" alt=""> </a>
<div class="schedule-slot-info-content">
<h3 class="schedule-slot-title">Chair: Prof. Umesh Varshney<br> </h3>
</div><!--Info content end -->
</div><!-- Slot info end -->
</div><!-- Slot listing 1 end -->
<div class="schedule-listing">
<span class="schedule-slot-time">14.30 - 15.15</span>
<div class="schedule-slot-info">
<a href="#"> <img class="schedule-slot-speakers" src="images/speaker/graham.jpg" alt=""> </a>
<div class="schedule-slot-info-content">
<h3 class="schedule-slot-title"><b>Prof. Graham Walker,</b> Dept. of Biology, MIT, Boston, USA<br>
Unravelling Mutagenic Translesion DNA Synthesis:<br>
A Journey from the Ames test to Cancer Chemotherapy</h3>
</div><!--Info content end -->
</div><!-- Slot info end -->
</div><!-- Slot listing 2 end -->
<div class="schedule-listing bg">
<span class="schedule-slot-time">15.15 - 16.00</span>
<div class="schedule-slot-info">
<a href="#"> <img class="schedule-slot-speakers" src="images/speaker/anandswarrop.jpg" alt=""> </a>
<div class="schedule-slot-info-content">
<h3 class="schedule-slot-title"><b>Dr. Anand Swaroop,</b> National Eye Institute, NIH, Bethesda, USA<br>
Rediscovering mitochondria through neurodegeneration, gene networks and epigenome</h3>
</div><!--Info content end -->
</div><!-- Slot info end -->
</div><!-- Slot listing 1 end -->
<div class="schedule-listing">
<span class="schedule-slot-time">16.00 - 16.30</span>
<div class="schedule-slot-info">
<div class="schedule-slot-info-content">
<h3 class="schedule-slot-title">Tea<br> </h3>
</div><!--Info content end -->
</div><!-- Slot info end -->
</div><!-- Slot listing 2 end -->
</div><!-- Col end -->
</div>
</div>
</div>
</div><!--/ Panel 2 end-->
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a data-toggle="collapse" class="collapsed" data-parent="#accordionA, #accordionB" href="#collapseThree">Session 3</a>
</h4>
</div>
<div id="collapseThree" class="panel-collapse collapse">
<div class="panel-body">
<div class="row">
<div class="col-md-12">
<div class="schedule-listing bg">
<!-- <span class="schedule-slot-time">10.00 - 10.10 AM</span> -->
<div class="schedule-slot-info">
<div class="schedule-slot-info-content">
<h3 class="schedule-slot-title">Chairs: <b>Dr. Ajith Kamath and Dr. Y. V. B. K. Subrahmanyam</b></h3>
</div><!--Info content end -->
</div><!-- Slot info end -->
</div><!-- Slot listing 1 end -->
<div class="schedule-listing">
<span class="schedule-slot-time">16.30 - 16.50</span>
<div class="schedule-slot-info">
<a href="#"> <img class="schedule-slot-speakers" src="images/speaker/neetugupta.jpg" alt=""></a>
<div class="schedule-slot-info-content">
<h3 class="schedule-slot-title"><b>Dr. Neetu Gupta,</b> Associate Professor, <br>Dept. of Inflammation & Immunity, Cleveland Clinic, Cleveland, USA <br>Systems biology analysis of healthy and pathogenic B lymphocytes at the bench and bedside</h3>
</div><!--Info content end -->
</div><!-- Slot info end -->
</div><!-- Slot listing 2 end -->
<div class="schedule-listing bg">
<span class="schedule-slot-time">16.50 - 17.10</span>
<div class="schedule-slot-info">
<a href="#"> <img class="schedule-slot-speakers" src="images/speaker/bvravikumar.jpg" alt=""> </a>
<div class="schedule-slot-info-content">
<h3 class="schedule-slot-title"><b>Dr. B V Ravi kumar,</b> CEO, Xcyton Diagnostics,<br>
Bangalore, India<br>
Molecular Diagnostics for Data Driven Insights for<br>
Management of Critical Infections</h3>
</div><!--Info content end -->
</div><!-- Slot info end -->
</div><!-- Slot listing 1 end -->
<div class="schedule-listing">
<span class="schedule-slot-time">17.10 - 17.30</span>
<div class="schedule-slot-info">
<a href="#"> <img class="schedule-slot-speakers" src="images/speaker/cs-ramesh.jpg" alt=""> </a>
<div class="schedule-slot-info-content">
<h3 class="schedule-slot-title"><b>Dr. C S Ramesha,</b> CEO, Medhus Bio, LLC.,<br>
Mountain View, CA, USA<br>
Biomarkers for Wearable devises</h3>
</div><!--Info content end -->
</div><!-- Slot info end -->
</div><!-- Slot listing 2 end -->
<div class="schedule-listing bg">
<span class="schedule-slot-time">17.30 - 17.50</span>
<div class="schedule-slot-info">
<a href="#"> <img class="schedule-slot-speakers" src="images/speaker/shyam.jpg" alt=""> </a>
<div class="schedule-slot-info-content">
<h3 class="schedule-slot-title"><b>Dr. Shama Bhat,</b> CEO, Bhat Biotech,<br>
Bangalore , India</h3>
</div><!--Info content end -->
</div><!-- Slot info end -->
</div><!-- Slot listing 1 end -->
<div class="schedule-listing">
<span class="schedule-slot-time">17.50 - 18.10</span>
<div class="schedule-slot-info">
<a href="#"> <img class="schedule-slot-speakers" src="images/speaker/krishnan.jpg" alt=""> </a>
<div class="schedule-slot-info-content">
<h3 class="schedule-slot-title"><b>Dr. K. Nandabalan,</b> CEO, InveniAI,<br>
Guilford, CT, USA<br>
The Nexus of Technology and Biology in Drug Discovery:<br>
An Entrepreneurial Journey</h3>
</div><!--Info content end -->
</div><!-- Slot info end -->
</div><!-- Slot listing 2 end -->
<div class="schedule-listing bg">
<span class="schedule-slot-time">18.10 - 18.30</span>
<div class="schedule-slot-info">
<a href="#"> <img class="schedule-slot-speakers" src="images/speaker/george.jpg" alt=""></a>
<div class="schedule-slot-info-content">
<h3 class="schedule-slot-title"><b>Dr. George Thomas,</b> Director, R&D,<br>
SciGenom, Cochin India<br>
Next-Gen Technologies for Crop Improvement</h3>
</div><!--Info content end -->
</div><!-- Slot info end -->
</div><!-- Slot listing 2 end -->
<div class="schedule-listing">
<span class="schedule-slot-time">18.30 - 18.50</span>
<div class="schedule-slot-info">
<a href="#"> <img class="schedule-slot-speakers" src="images/speaker/ramarajshekaran.jpg" alt=""> </a>
<div class="schedule-slot-info-content">
<h3 class="schedule-slot-title"><b>Prof. Ram Rajasekharan,</b> Dean,<br>
School of Life Sciences,<br>
Central University of Tamil Nadu, India<br>
My adventures with lipids</h3>
</div><!--Info content end -->
</div><!-- Slot info end -->
</div><!-- Slot listing 2 end -->
<div class="schedule-listing bg">
<span class="schedule-slot-time">18.50 - 19.10</span>
<div class="schedule-slot-info">
<a href="#"> <img class="schedule-slot-speakers" src="images/speaker/girish-sahani.jpg" alt=""> </a>
<div class="schedule-slot-info-content">
<h3 class="schedule-slot-title"><b>Dr. Girish Sahni,</b> <br>CSIR - Institute of Microbial Technology , Chandigarh,India<br>Tangy-sweet memories of an "All-you-Can-Learn" period at IISc</h3>
</div><!--Info content end -->
</div><!-- Slot info end -->
</div><!-- Slot listing 2 end -->
</div><!-- Col end -->
</div>
</div>
</div>
</div><!--/ Panel 3 end-->
</div>
</div>
</div>
</div>
</div>
<section id="ts-schedule" class="ts-schedule" style="background-image: url(images/hero-area/bg1.jpg);">
<div class="container">
<div class="row text-center">
<h2 class="section-title" style="color: #fff;">Event Speakers</h2>
<p class="section-sub-title" style="color: #fff;">Don't Miss a Topic on the Event</p>
</div><!--/ Title row end -->
<div class="row">
<div id="mixedSlider">
<div class="MS-content">
<!-- <div class="item"> <img src="images/speaker/pnranga.png" class="img-responsive">
<div class="ts-speaker-info">
<h3 class="ts-speaker-name"><a href="" target="_blank">Prof P N Rangarajan<br>
Chair, Department of Biochemistry</a></h3>
<p class="ts-speaker-designation">Secretary, DBT, Govt of India</p>
</div>Info end
</div>
<div class="item"> <img src="images/speaker/Desirazu-N-Rao.jpg" class="img-responsive">
<div class="ts-speaker-info">
<h3 class="ts-speaker-name"><a href="" target="_blank">Prof D N Rao <br>
Chair, Centenary Celebrations Committee</a></h3>
<p class="ts-speaker-designation">Secretary, DBT, Govt of India</p>
</div>Info end
</div>
<div class="item"> <img src="images/speaker/anurag.jpg" class="img-responsive">
<div class="ts-speaker-info">
<h3 class="ts-speaker-name"><a href="" target="_blank">Prof. Anurag Kumar<br>
Director, IISc</a></h3>
<p class="ts-speaker-designation">Secretary, DBT, Govt of India</p>
</div>Info end
</div> -->
<div class="item"> <img src="images/speaker/cnrroa.jpg" class="img-responsive">
<div class="ts-speaker-info">
<h3 class="ts-speaker-name"><a href="" target="_blank">Prof. C N R Rao,<br> Bharat Ratna</a></h3>
<!-- <p class="ts-speaker-designation">Secretary, DBT, Govt of India</p> -->
</div><!-- Info end -->
</div>
<div class="item"> <img src="images/speaker/dr-renu-swarup.jpg" class="img-responsive">
<div class="ts-speaker-info">
<h3 class="ts-speaker-name"><a href="http://www.dbtindia.gov.in/about-us/secretarys-message" target="_blank">Dr. Renu Swarup, Secretary<br>
Department of Biotechnology, Govt. of India</a></h3>
<!-- <p class="ts-speaker-designation">Secretary, DBT, Govt of India</p> -->
</div><!-- Info end --> </div>
<div class="item"> <img src="images/speaker/krishnaswamy.jpg" class="img-responsive">
<div class="ts-speaker-info">
<h3 class="ts-speaker-name"><a href="" target="_blank">Dr. P. R. Krishnaswamy</a></h3>
<!-- <p class="ts-speaker-designation">Secretary, DBT, Govt of India</p> -->
</div><!-- Info end -->
</div>
<div class="item"> <img src="images/speaker/mahtab.jpg" class="img-responsive">
<div class="ts-speaker-info">
<h3 class="ts-speaker-name"><a href="" target="_blank">Dr. Mahtab Bamji</a></h3>
<!-- <p class="ts-speaker-designation">Secretary, DBT, Govt of India</p> -->
</div><!-- Info end -->
</div>
<div class="item"> <img src="images/speaker/graham.jpg" class="img-responsive">
<div class="ts-speaker-info">
<h3 class="ts-speaker-name"><a href="" target="_blank">Prof. Graham Walker, <br>Dept. of Biology, MIT, USA</a></h3>
<!-- <p class="ts-speaker-designation">Secretary, DBT, Govt of India</p> -->
</div><!-- Info end -->
</div>
<div class="item"> <img src="images/speaker/anandswarrop.jpg" class="img-responsive">
<div class="ts-speaker-info">
<h3 class="ts-speaker-name"><a href="" target="_blank">Dr. Anand Swaroop,<br> National Eye Institute, NIH, USA</a></h3>
</div>
</div>
<div class="item"> <img src="images/speaker/neetugupta.jpg" class="img-responsive">
<div class="ts-speaker-info">
<h3 class="ts-speaker-name"><a href="" target="_blank">Dr. Neetu Gupta,<br> Associate Professor,
Dept. of Inflammation & Immunity,
Cleveland Clinic, USA</a></h3>
<!-- <p class="ts-speaker-designation">Secretary, DBT, Govt of India</p> -->
</div><!-- Info end -->
</div>
<div class="item"> <img src="images/speaker/bvravikumar.jpg" class="img-responsive">
<div class="ts-speaker-info">
<h3 class="ts-speaker-name"><a href="" target="_blank">Dr. B V Ravi kumar,<br> CEO, Xcyton Diagnostics,
Bangalore, India</a></h3>
<!-- <p class="ts-speaker-designation">Secretary, DBT, Govt of India</p> -->
</div><!-- Info end -->
</div>
<div class="item"> <img src="images/speaker/cs-ramesh.jpg" class="img-responsive">
<div class="ts-speaker-info">
<h3 class="ts-speaker-name"><a href="" target="_blank">Dr. C S Ramesha,<br> CEO, Medhus Bio, LLC.,
Mountain View, CA, USA</a></h3>
<!-- <p class="ts-speaker-designation">Secretary, DBT, Govt of India</p> -->
</div><!-- Info end -->
</div>
<div class="item"> <img src="images/speaker/shyam.jpg" class="img-responsive">
<div class="ts-speaker-info">
<h3 class="ts-speaker-name"><a href="" target="_blank">Dr. Shama Bhat,<br> CEO, Bhat Biotech,
Bangalore , India</a></h3>
<!-- <p class="ts-speaker-designation">Secretary, DBT, Govt of India</p> -->
</div><!-- Info end -->
</div>
<div class="item"> <img src="images/speaker/krishnan.jpg" class="img-responsive">
<div class="ts-speaker-info">
<h3 class="ts-speaker-name"><a href="" target="_blank">Dr. K. Nandabalan,<br> CEO, InveniAI,
Guilford, CT, USA</a></h3>
<!-- <p class="ts-speaker-designation">Secretary, DBT, Govt of India</p> -->
</div><!-- Info end -->
</div>
<div class="item"> <img src="images/speaker/george.jpg" class="img-responsive">
<div class="ts-speaker-info">
<h3 class="ts-speaker-name"><a href="" target="_blank">Dr. George Thomas,<br> Director, R&D,
SciGenom, Cochin India</a></h3>
<!-- <p class="ts-speaker-designation">Secretary, DBT, Govt of India</p> -->
</div><!-- Info end -->
</div>
<div class="item"> <img src="images/speaker/ramarajshekaran.jpg" class="img-responsive"> <div class="ts-speaker-info">
<h3 class="ts-speaker-name"><a href="" target="_blank">Prof. Ram Rajasekharan,<br> Dean,
School of Life Sciences,<br>
Central University of Tamil Nadu, India</a></h3>
<!-- <p class="ts-speaker-designation">Secretary, DBT, Govt of India</p> -->
</div><!-- Info end -->
</div>
<div class="item"> <img src="images/speaker/girish-sahani.jpg" class="img-responsive">
<div class="ts-speaker-info">
<h3 class="ts-speaker-name"><a href="" target="_blank">Dr. Girish Sahni,<br>
CSIR - Institute of Microbial Technology , Chandigarh</a></h3>
<!-- <p class="ts-speaker-designation">Secretary, DBT, Govt of India</p> -->
</div><!-- Info end -->
</div>
<!-- <div class="item"> <img src="images/speaker/satishmenon.jpg" class="img-responsive">
<div class="ts-speaker-info">
<h3 class="ts-speaker-name"><a href="" target="_blank">Dr. Satish Menon,<br> CTO, Object Pharma,
Aliso Viejo, CA, USA</a></h3>
<p class="ts-speaker-designation">Secretary, DBT, Govt of India</p>
</div>Info end
</div> -->
</div>
<div class="MS-controls">
<button class="MS-left"><i class="fa fa-angle-left" aria-hidden="true" style="color: #fff;"></i></button>
<button class="MS-right"><i class="fa fa-angle-right" aria-hidden="true" style="color: #fff;"></i></button>
</div>
</div>
</div>
</div>
</div>
</div><!--/ Container end -->
</section><!-- Schedule end -->
<section id="ts-sponsors" class="ts-sponsors">
<div class="container">
<div class="row text-center">
<h2 class="section-title">Sponsors & Partners</h2>
<p class="section-sub-title">They helping us make this event possible.</p>
</div><!--/ Title row end -->