-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1505 lines (1385 loc) · 123 KB
/
index.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">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:fb="http://ogp.me/ns/fb#">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:image" content="http://btbatw.org/2017/wp-content/uploads/2017/05/fb-promotion.jpg" />
<meta property="og:description" content="BTBA symposium 2017 will be held on 8/5-6 at Harvard University. See our website for all the exciting sessions and invited speakers this year!" />
<meta property="og:url"content="http://btbatw.org/2017/" />
<meta property="og:title" content="BTBA symposium 2017" />
<link rel="profile" href="http://gmpg.org/xfn/11">
<link rel="pingback" href="http://btbatw.org/2017/xmlrpc.php">
<title>Boston Taiwanese Biotechnology Symposium 2017 – 8/5 – 6, 2017 @Harvard University</title>
<link rel='dns-prefetch' href='http://maps.googleapis.com/' />
<link rel='dns-prefetch' href='http://fonts.googleapis.com/' />
<link rel='dns-prefetch' href='http://s.w.org/' />
<link rel="alternate" type="application/rss+xml" title="Boston Taiwanese Biotechnology Symposium 2017 » Feed" href="feed/index.html" />
<link rel="alternate" type="application/rss+xml" title="Boston Taiwanese Biotechnology Symposium 2017 » Comments Feed" href="comments/feed/index.html" />
<script type="text/javascript">
window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/2.2.1\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/2.2.1\/svg\/","svgExt":".svg","source":{"concatemoji":"http:\/\/btbatw.org\/2017\/wp-includes\/js\/wp-emoji-release.min.js?ver=4.7.21"}};
!function(t,a,e){var r,n,i,o=a.createElement("canvas"),l=o.getContext&&o.getContext("2d");function c(t){var e=a.createElement("script");e.src=t,e.defer=e.type="text/javascript",a.getElementsByTagName("head")[0].appendChild(e)}for(i=Array("flag","emoji4"),e.supports={everything:!0,everythingExceptFlag:!0},n=0;n<i.length;n++)e.supports[i[n]]=function(t){var e,a=String.fromCharCode;if(!l||!l.fillText)return!1;switch(l.clearRect(0,0,o.width,o.height),l.textBaseline="top",l.font="600 32px Arial",t){case"flag":return(l.fillText(a(55356,56826,55356,56819),0,0),o.toDataURL().length<3e3)?!1:(l.clearRect(0,0,o.width,o.height),l.fillText(a(55356,57331,65039,8205,55356,57096),0,0),e=o.toDataURL(),l.clearRect(0,0,o.width,o.height),l.fillText(a(55356,57331,55356,57096),0,0),e!==o.toDataURL());case"emoji4":return l.fillText(a(55357,56425,55356,57341,8205,55357,56507),0,0),e=o.toDataURL(),l.clearRect(0,0,o.width,o.height),l.fillText(a(55357,56425,55356,57341,55357,56507),0,0),e!==o.toDataURL()}return!1}(i[n]),e.supports.everything=e.supports.everything&&e.supports[i[n]],"flag"!==i[n]&&(e.supports.everythingExceptFlag=e.supports.everythingExceptFlag&&e.supports[i[n]]);e.supports.everythingExceptFlag=e.supports.everythingExceptFlag&&!e.supports.flag,e.DOMReady=!1,e.readyCallback=function(){e.DOMReady=!0},e.supports.everything||(r=function(){e.readyCallback()},a.addEventListener?(a.addEventListener("DOMContentLoaded",r,!1),t.addEventListener("load",r,!1)):(t.attachEvent("onload",r),a.attachEvent("onreadystatechange",function(){"complete"===a.readyState&&e.readyCallback()})),(r=e.source||{}).concatemoji?c(r.concatemoji):r.wpemoji&&r.twemoji&&(c(r.twemoji),c(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='contact-form-7-css' href='wp-content/plugins/contact-form-7/includes/css/styles.css@ver=4.7.css' type='text/css' media='all' />
<link rel='stylesheet' id='onepress-fonts-css' href='https://fonts.googleapis.com/css?family=Raleway%3A400%2C500%2C600%2C700%2C300%2C100%2C800%2C900%7COpen+Sans%3A400%2C300%2C300italic%2C400italic%2C600%2C600italic%2C700%2C700italic&subset=latin%2Clatin-ext&ver=1.3.6' type='text/css' media='all' />
<link rel='stylesheet' id='onepress-animate-css' href='wp-content/themes/onepress/assets/css/animate.min.css@ver=1.3.6.css' type='text/css' media='all' />
<link rel='stylesheet' id='onepress-fa-css' href='wp-content/themes/onepress/assets/css/font-awesome.min.css@ver=4.7.0.css' type='text/css' media='all' />
<link rel='stylesheet' id='onepress-bootstrap-css' href='wp-content/themes/onepress/assets/css/bootstrap.min.css@ver=1.3.6.css' type='text/css' media='all' />
<link rel='stylesheet' id='onepress-style-css' href='wp-content/plugins/onepress-plus/style.css@ver=1.2.0.css' type='text/css' media='all' />
<style id='onepress-style-inline-css' type='text/css'>
#main .video-section section.hero-slideshow-wrapper{background:transparent}.hero-slideshow-wrapper:after{position:absolute;top:0px;left:0px;width:100%;height:100%;background-color:rgba(0,0,0,0.3);display:block;content:""}.body-desktop .parallax-hero .hero-slideshow-wrapper:after{display:none!important}#parallax-hero>.parallax-bg::before{background-color:rgba(0,0,0,0.3);opacity:1}.body-desktop .parallax-hero .hero-slideshow-wrapper:after{display:none!important}a,.screen-reader-text:hover,.screen-reader-text:active,.screen-reader-text:focus,.header-social a,.onepress-menu a:hover,.onepress-menu ul li a:hover,.onepress-menu li.onepress-current-item>a,.onepress-menu ul li.current-menu-item>a,.onepress-menu>li a.menu-actived,.onepress-menu.onepress-menu-mobile li.onepress-current-item>a,.site-footer a,.site-footer .footer-social a:hover,.site-footer .btt a:hover,.highlight,#comments .comment .comment-wrapper .comment-meta .comment-time:hover,#comments .comment .comment-wrapper .comment-meta .comment-reply-link:hover,#comments .comment .comment-wrapper .comment-meta .comment-edit-link:hover,.btn-theme-primary-outline,.sidebar .widget a:hover,.section-services .service-item .service-image i,.counter_item .counter__number,.team-member .member-thumb .member-profile a:hover,.icon-background-default{color:#03c4eb}input[type="reset"],input[type="submit"],input[type="submit"],.nav-links a:hover,.btn-theme-primary,.btn-theme-primary-outline:hover,.card-theme-primary,.woocommerce #respond input#submit,.woocommerce a.button,.woocommerce button.button,.woocommerce input.button,.woocommerce button.button.alt{background:#03c4eb}.btn-theme-primary-outline,.btn-theme-primary-outline:hover,.pricing__item:hover,.card-theme-primary,.entry-content blockquote{border-color:#03c4eb}.gallery-carousel .g-item{padding:0px 1px}.gallery-carousel{margin-left:-1px;margin-right:-1px}.gallery-grid .g-item,.gallery-masonry .g-item .inner{padding:1px}.gallery-grid,.gallery-masonry{margin:-1px}
</style>
<link rel='stylesheet' id='onepress-gallery-lightgallery-css' href='wp-content/themes/onepress/assets/css/lightgallery.css@ver=4.7.21.css' type='text/css' media='all' />
<link rel='stylesheet' id='tablepress-default-css' href='wp-content/tablepress-combined.min.css@ver=14.css' type='text/css' media='all' />
<link rel='stylesheet' id='cpsh-shortcodes-css' href='wp-content/plugins/column-shortcodes/assets/css/shortcodes.css@ver=0.6.9.css' type='text/css' media='all' />
<script>
/* <![CDATA[ */
var rcewpp = {
"ajax_url":"http://btbatw.org/2017/wp-admin/admin-ajax.php",
"nonce": "f4674159ad",
"home_url": "http://btbatw.org/2017/",
"settings_icon": 'http://btbatw.org/2017/wp-content/plugins/export-wp-page-to-static-html/admin/images/settings.png',
"settings_hover_icon": 'http://btbatw.org/2017/wp-content/plugins/export-wp-page-to-static-html/admin/images/settings_hover.png'
};
/* ]]\> */
</script>
<script type='text/javascript'>
/* <![CDATA[ */
var onepress_js_settings = {"onepress_disable_animation":"","onepress_disable_sticky_header":"","onepress_vertical_align_menu":"","hero_animation":"flipInX","hero_speed":"5000","hero_fade":"750","hero_duration":"5000","is_home":"","gallery_enable":"1"};
var OnePress_Plus = {"ajax_url":"http:\/\/btbatw.org\/2017\/wp-admin\/admin-ajax.php","browser_warning":" Your browser does not support the video tag. I suggest you upgrade your browser."};
/* ]]> */
</script>
<script type='text/javascript' src='wp-includes/js/jquery/jquery.js@ver=1.12.4'></script>
<script type='text/javascript' src='wp-includes/js/jquery/jquery-migrate.min.js@ver=1.4.1'></script>
<script type='text/javascript' src='wp-content/plugins/google-analyticator/external-tracking.min.js@ver=6.5.2'></script>
<link rel='https://api.w.org/' href='wp-json/index.html' />
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="http://btbatw.org/2017/xmlrpc.php?rsd" />
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="wp-includes/wlwmanifest.xml" />
<meta name="generator" content="WordPress 4.7.21" />
<link rel="canonical" href="index.html" />
<link rel='shortlink' href='index.html' />
<link rel="alternate" type="application/json+oembed" href="wp-json/oembed/1.0/embed@url=http%253A%252F%252Fbtbatw.org%252F2017%252F" />
<link rel="alternate" type="text/xml+oembed" href="wp-json/oembed/1.0/embed@url=http%253A%252F%252Fbtbatw.org%252F2017%252F&format=xml" />
<!-- Google Analytics Tracking by Google Analyticator 6.5.2: http://www.videousermanuals.com/google-analyticator/ -->
<script type="text/javascript">
var analyticsFileTypes = [''];
var analyticsSnippet = 'disabled';
var analyticsEventTracking = 'enabled';
</script>
<script type="text/javascript">
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-100329790-1', 'auto');
ga('send', 'pageview');
</script>
<style class="wp-typography-print-styles" type="text/css">
</style>
</head>
<body class="home page-template page-template-template-frontpage page-template-template-frontpage-php page page-id-1251 wp-custom-logo sticky-header">
<div id="page" class="hfeed site">
<a class="skip-link screen-reader-text" href="index.html#content">Skip to content</a>
<header id="masthead" class="site-header" role="banner">
<div class="container">
<div class="site-branding">
<div class="site-brand-inner has-logo-img no-desc"><div class="site-logo-div"><a href="index.html" class="custom-logo-link" rel="home" itemprop="url"><img width="466" height="106" src="wp-content/uploads/2017/04/BTBAlogoWeb.png" class="custom-logo" alt="" itemprop="logo" srcset="wp-content/uploads/2017/04/BTBAlogoWeb.png 466w, wp-content/uploads/2017/04/BTBAlogoWeb-300x68.png 300w" sizes="(max-width: 466px) 100vw, 466px" /></a></div></div> </div>
<!-- .site-branding -->
<div class="header-right-wrapper">
<a href="index.html#0" id="nav-toggle">Menu<span></span></a>
<nav id="site-navigation" class="main-navigation" role="navigation">
<ul class="onepress-menu">
<li id="menu-item-1200" class="menu-item menu-item-type-custom menu-item-object-custom current-menu-item current_page_item menu-item-home menu-item-1200"><a href="index.html#about">About</a></li>
<li id="menu-item-1206" class="menu-item menu-item-type-custom menu-item-object-custom current-menu-item current_page_item menu-item-home menu-item-1206"><a href="index.html#features">Features</a></li>
<li id="menu-item-1201" class="menu-item menu-item-type-custom menu-item-object-custom current-menu-item current_page_item menu-item-home menu-item-1201"><a href="index.html#services">Keynote</a></li>
<li id="menu-item-1203" class="menu-item menu-item-type-custom menu-item-object-custom current-menu-item current_page_item menu-item-home menu-item-1203"><a href="index.html#team">Speakers</a></li>
<li id="menu-item-1662" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1662"><a href="index.html@p=1427.html">Schedule</a></li>
<li id="menu-item-1202" class="menu-item menu-item-type-custom menu-item-object-custom current-menu-item current_page_item menu-item-home menu-item-1202"><a href="index.html#pricing">Registration</a></li>
<li id="menu-item-1205" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1205"><a href="wp-content/uploads/2017/08/2017_BTBA_Program_Book.pdf">Program Book</a></li>
</ul>
</nav>
<!-- #site-navigation -->
</div>
</div>
</header><!-- #masthead -->
<div id="content" class="site-content">
<main id="main" class="site-main" role="main">
<section id="hero" data-images="["http:\/\/btbatw.org\/2017\/wp-content\/uploads\/2017\/04\/top-bg.jpg","http:\/\/btbatw.org\/2017\/wp-content\/uploads\/2017\/05\/1-1024.jpg","http:\/\/btbatw.org\/2017\/wp-content\/uploads\/2017\/05\/3-1024.jpg","http:\/\/btbatw.org\/2017\/wp-content\/uploads\/2017\/05\/4-1024.jpg"]" class="hero-slideshow-wrapper hero-slideshow-normal">
<div class="slider-spinner">
<div class="double-bounce1"></div>
<div class="double-bounce2"></div>
</div>
<div class="container" style="padding-top: 10%; padding-bottom: 10%;">
<div class="hero__content hero-content-style1">
<h2 class="hero-large-text"><h1><strong>Boston Taiwanese Biotechnology Symposium 2017</strong></h1></h2> <p class="hero-small-text"> August 5-6, 2017. Northwest Science Building at Harvard University, Boston, MA.</p> <a href="http://#" class="btn btn-theme-primary btn-lg">Tickets are sold out!</a> <a href="index.html@p=1432.html" class="btn btn-secondary-outline btn-lg">Getting Here</a> </div>
</div>
</section>
<section id="map" class="has-map-api section-map onepage-section">
<div class="onepress-map" data-map="{"lat":42.3799895,"long":-71.1153309,"address":"<strong>52 Oxford St, Cambridge\nMA 32138 United States<\/strong>","html":"Harvard Northwest Science Building","color":"","maker":"http:\/\/btbatw.org\/2017\/wp-content\/plugins\/onepress-plus\/assets\/images\/map-marker.png","maker_w":64,"maker_h":64,"zoom":15,"scrollwheel":false,"items_address":[]}" style="height: 200px;"></div>
</section>
<section id="about" class="section-about section-padding onepage-section">
<div class="container">
<div class="section-title-area">
<h2 class="section-title">About BTBA and the symposium</h2> <div class="section-desc"><p style="text-align: left"><span id="_mce_caret"></span>BTBA (<a href="http://btbatw.org" target="_blank" rel="noopener noreferrer">Boston Taiwanese Biotechnology Association</a>) comprises a group of young Taiwanese professionals who study or work in biology-related fields. Based in Boston, we host the <strong>Boston Taiwanese Biotechnology Symposium</strong> annually, hoping to bridge academia and industry in both the U.S. and Taiwan to meet the needs of young professionals like us.</p>
<p style="text-align: left"><span id="_mce_caret"><br />
We welcome all graduate students, postdocs, and young professionals in bio-, pharma-, public health-, and related fields to join us at the symposium. Please <a href="index.html#contact">submit an abstract</a> if you would like to present your research at the symposium. The symposium will take place at the Northwest Science Building at Harvard University. For information about transportations please check <a href="index.html@p=1432.html">here</a>. </span></p>
</div> </div>
<div class="row">
<div class="col-lg-6 col-sm-6 wow slideInUp">
<div class="about-image"><a href="http://btbatw.org/2017/past-symposiums__trashed/"><img width="606" height="331" src="wp-content/uploads/2017/04/2015-symposium-committee.jpg" class="attachment-onepress-medium size-onepress-medium wp-post-image" alt="" srcset="wp-content/uploads/2017/04/2015-symposium-committee.jpg 606w, wp-content/uploads/2017/04/2015-symposium-committee-300x164.jpg 300w" sizes="(max-width: 606px) 100vw, 606px" /></a></div>
<h3><a href="http://btbatw.org/2017/past-symposiums__trashed/">Past Symposiums</a></h3>
<p>Learn more about 2016 , 2015, 2014, and 2013 BTBA symposiums.</p>
</div>
<div class="col-lg-6 col-sm-6 wow slideInUp">
<div class="about-image"><a href="index.html@p=21.html"><img width="640" height="350" src="wp-content/uploads/2017/04/2017-preparation-meeting-640x350.jpg" class="attachment-onepress-medium size-onepress-medium wp-post-image" alt="" srcset="wp-content/uploads/2017/04/2017-preparation-meeting.jpg 640w, wp-content/uploads/2017/04/2017-preparation-meeting-300x164.jpg 300w" sizes="(max-width: 640px) 100vw, 640px" /></a></div>
<h3><a href="index.html@p=21.html">Meet the 2017 committee</a></h3>
<p>Find the full list of 2017 BTBA committee members here.</p>
</div>
</div>
</div>
</section>
<section id="features" class="section-features section-padding section-meta onepage-section">
<div class="container">
<div class="section-title-area">
<h2 class="section-title">Feature Sessions in 2017</h2> </div>
<div class="section-content">
<div class="row">
<div class="feature-item col-lg-3 col-sm-6 wow slideInUp">
<div class="feature-media">
<a href="keynote-lectures.html"> <span class="fa-stack fa-5x"><i class="fa fa-circle fa-stack-2x icon-background-default"></i> <i class="feature-icon fa fa fa-sun-o fa-stack-1x"></i></span> </a> </div>
<h4><a href="keynote-lectures.html">Keynote Lectures</a></h4>
<div class="feature-item-content"><p>Prominent figures from life science research and application</p>
</div>
</div>
<div class="feature-item col-lg-3 col-sm-6 wow slideInUp">
<div class="feature-media">
<a href="panel-discussion.html"> <span class="fa-stack fa-5x"><i class="fa fa-circle fa-stack-2x icon-background-default"></i> <i class="feature-icon fa fa fa-microphone fa-stack-1x"></i></span> </a> </div>
<h4><a href="panel-discussion.html">Panel Discussions</a></h4>
<div class="feature-item-content"><p>Experienced and successful professionals sharing their stories in both the panel and roundtable formats.</p>
</div>
</div>
<div class="feature-item col-lg-3 col-sm-6 wow slideInUp">
<div class="feature-media">
<a href="trending-topics.html"> <span class="fa-stack fa-5x"><i class="fa fa-circle fa-stack-2x icon-background-default"></i> <i class="feature-icon fa fa fa-eye fa-stack-1x"></i></span> </a> </div>
<h4><a href="trending-topics.html">Trending Topics</a></h4>
<div class="feature-item-content"><p>Understanding the hottest future applications in biotech.</p>
</div>
</div>
<div class="feature-item col-lg-3 col-sm-6 wow slideInUp">
<div class="feature-media">
<a href="index.html@p=1403.html"> <span class="fa-stack fa-5x"><i class="fa fa-circle fa-stack-2x icon-background-default"></i> <i class="feature-icon fa fa fa-home fa-stack-1x"></i></span> </a> </div>
<h4><a href="index.html@p=1403.html">Taiwan Focus</a></h4>
<div class="feature-item-content"><p>The most updated news about biological research and industry development in Taiwan.</p>
</div>
</div>
<div class="feature-item col-lg-3 col-sm-6 wow slideInUp">
<div class="feature-media">
<a href="index.html@p=1409.html"> <span class="fa-stack fa-5x"><i class="fa fa-circle fa-stack-2x icon-background-default"></i> <i class="feature-icon fa fa fa-sign-out fa-stack-1x"></i></span> </a> </div>
<h4><a href="index.html@p=1409.html">Entry into Industry</a></h4>
<div class="feature-item-content"><p>Exploring opportunities to enter the biotech industry</p>
</div>
</div>
<div class="feature-item col-lg-3 col-sm-6 wow slideInUp">
<div class="feature-media">
<a href="index.html@p=2089.html"> <span class="fa-stack fa-5x"><i class="fa fa-circle fa-stack-2x icon-background-default"></i> <i class="feature-icon fa fa fa-file-text fa-stack-1x"></i></span> </a> </div>
<h4><a href="index.html@p=2089.html">Technology Transfer</a></h4>
<div class="feature-item-content"><p>Introduction of how to commercialize life science innovation</p>
</div>
</div>
<div class="feature-item col-lg-3 col-sm-6 wow slideInUp">
<div class="feature-media">
<a href="index.html@p=2143.html"> <span class="fa-stack fa-5x"><i class="fa fa-circle fa-stack-2x icon-background-default"></i> <i class="feature-icon fa fa fa-external-link fa-stack-1x"></i></span> </a> </div>
<h4><a href="index.html@p=2143.html">Advancing Your Career</a></h4>
<div class="feature-item-content"><p>Learning how to develop leadership skills and plan your career strategically</p>
</div>
</div>
<div class="feature-item col-lg-3 col-sm-6 wow slideInUp">
<div class="feature-media">
<a href="index.html@p=1418.html"> <span class="fa-stack fa-5x"><i class="fa fa-circle fa-stack-2x icon-background-default"></i> <i class="feature-icon fa fa fa-comments fa-stack-1x"></i></span> </a> </div>
<h4><a href="index.html@p=1418.html">Poster and Oral Presentations</a></h4>
<div class="feature-item-content"><p>Share your exciting work with us! Submit your abstract after registration.</p>
</div>
</div>
<div class="feature-item col-lg-3 col-sm-6 wow slideInUp">
<div class="feature-media">
</div>
<h4></h4>
<div class="feature-item-content"></div>
</div>
</div>
</div>
</div>
</section>
<section id="services" class="section-services section-padding section-meta onepage-section"> <div class="container">
<div class="section-title-area">
<h5 class="section-subtitle">We are excited to annouce our</h5> <h2 class="section-title">Keynote speakers</h2> </div>
<div class="row">
<div class="col-sm-6 col-lg-6 wow slideInUp">
<div class="service-item ">
<a class="service-link" href="index.html@p=23.html"><span class="screen-reader-text">Lily Jan, PhD(葉公杼院士)</span></a>
<div class="service-image icon-image"><img src="wp-content/uploads/2017/05/Jan-239x239.jpg" alt=""></div> <div class="service-content">
<h4 class="service-title">Lily Jan, PhD(葉公杼院士)</h4>
<p>Jack and DeLoris Lange Professor of Physiology and Biophysics at the University of California, San Francisco, HHMI Investigator, and Academian of Academia Sinica, Taiwan.</p>
</div>
</div>
</div>
<div class="col-sm-6 col-lg-6 wow slideInUp">
<div class="service-item ">
<a class="service-link" href="james-liao/index.html"><span class="screen-reader-text">James C. Liao, PhD(廖俊智院長)</span></a>
<div class="service-image icon-image"><img src="wp-content/uploads/2017/04/james-liao.jpg" alt=""></div> <div class="service-content">
<h4 class="service-title">James C. Liao, PhD(廖俊智院長)</h4>
<p>Parsons Foundation Professor at University of California, Los Angeles, and President of Academia Sinica, Taiwan.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="team" class="section-team section-padding section-meta onepage-section">
<div class="container">
<div class="section-title-area">
<h2 class="section-title">Invited Speakers</h2> <div class="section-desc"><p>In alphabetical order</p>
</div> </div>
<div class="team-members row team-layout-4">
<div class="team-member wow slideInUp">
<div class="member-thumb">
<a href="index.html@p=1370.html">
<img src="wp-content/uploads/2017/05/Academia-in-the-US-640x400-480x300.jpg" alt="">
</a>
<div class="member-profile">
</div>
</div>
<div class="member-info">
<h5 class="member-name"><a href="index.html@p=1370.html"></a></h5>
<span class="member-position"></span>
</div>
</div>
<div class="team-member wow slideInUp">
<div class="member-thumb">
<a href="index.html@p=1499.html">
<img src="wp-content/uploads/2017/04/Yun_Chen-e1492910640709-480x300.jpg" alt="">
</a>
<div class="member-profile">
<a href="https://mafia.wse.jhu.edu/"><span class="fa-stack"><i class="fa fa-circle fa-stack-2x"></i><i class="fa fa-globe fa-stack-1x fa-inverse"></i></span></a>
<a href="mailto:yun.chen@jhu.edu"><span class="fa-stack"><i class="fa fa-circle fa-stack-2x"></i><i class="fa fa-envelope-o fa-stack-1x fa-inverse"></i></span></a>
</div>
</div>
<div class="member-info">
<h5 class="member-name"><a href="index.html@p=1499.html">Yun Chen, PhD</a></h5>
<span class="member-position">Assistant Professor,
Johns Hopkins University</span>
</div>
</div>
<div class="team-member wow slideInUp">
<div class="member-thumb">
<a href="index.html@p=1552.html">
<img src="wp-content/uploads/2017/05/Li-Li-Hsiao-640x400-480x300.jpg" alt="">
</a>
<div class="member-profile">
<a href="mailto:lhsiao@partners.org"><span class="fa-stack"><i class="fa fa-circle fa-stack-2x"></i><i class="fa fa-envelope-o fa-stack-1x fa-inverse"></i></span></a>
</div>
</div>
<div class="member-info">
<h5 class="member-name"><a href="index.html@p=1552.html">Li-Li Hsiao, MD,PhD</a></h5>
<span class="member-position">Assistant Professor, Harvard Medical School</span>
</div>
</div>
<div class="team-member wow slideInUp">
<div class="member-thumb">
<a href="index.html@p=1503.html">
<img src="wp-content/uploads/2017/05/Bryan-Tsou-640x400-480x300.jpg" alt="">
</a>
<div class="member-profile">
<a href="https://www.mskcc.org/research-areas/labs/meng-fu-bryan-tsou"><span class="fa-stack"><i class="fa fa-circle fa-stack-2x"></i><i class="fa fa-globe fa-stack-1x fa-inverse"></i></span></a>
<a href="mailto:tsoum@mskcc.org"><span class="fa-stack"><i class="fa fa-circle fa-stack-2x"></i><i class="fa fa-envelope-o fa-stack-1x fa-inverse"></i></span></a>
</div>
</div>
<div class="member-info">
<h5 class="member-name"><a href="index.html@p=1503.html">Meng-Fu Bryan Tsou, PhD</a></h5>
<span class="member-position">Associate Professor, Memorial Sloan Kettering Cancer Center</span>
</div>
</div>
<div class="team-member wow slideInUp">
<div class="member-thumb">
<a href="index.html@p=1505.html">
<img src="wp-content/uploads/2017/05/Jimmy-Yen-640x400-480x300.jpg" alt="">
</a>
<div class="member-profile">
<a href="http://yenlab.webnode.com/"><span class="fa-stack"><i class="fa fa-circle fa-stack-2x"></i><i class="fa fa-globe fa-stack-1x fa-inverse"></i></span></a>
<a href="mailto:jimyen@iu.edu"><span class="fa-stack"><i class="fa fa-circle fa-stack-2x"></i><i class="fa fa-envelope-o fa-stack-1x fa-inverse"></i></span></a>
</div>
</div>
<div class="member-info">
<h5 class="member-name"><a href="index.html@p=1505.html">Jui-Hung (Jimmy) Yen, PhD</a></h5>
<span class="member-position">Assistant Professor, Indiana University</span>
</div>
</div>
<div class="team-member wow slideInUp">
<div class="member-thumb">
<a href="index.html@p=1370.html#usindustry">
<img src="wp-content/uploads/2017/05/Industry-in-the-US-640x400-480x300.jpg" alt="">
</a>
<div class="member-profile">
</div>
</div>
<div class="member-info">
<h5 class="member-name"><a href="index.html@p=1370.html#usindustry"></a></h5>
<span class="member-position"></span>
</div>
</div>
<div class="team-member wow slideInUp">
<div class="member-thumb">
<a href="index.html@p=1594.html">
<img src="wp-content/uploads/2017/05/Shian-Huey-Chiang-640x400-480x300.jpg" alt="">
</a>
<div class="member-profile">
</div>
</div>
<div class="member-info">
<h5 class="member-name"><a href="index.html@p=1594.html">Shian-Huey Chiang, PhD</a></h5>
<span class="member-position">Principal Scientist/Research Project Leader, Pfizer</span>
</div>
</div>
<div class="team-member wow slideInUp">
<div class="member-thumb">
<a href="index.html@p=1599.html">
<img src="wp-content/uploads/2017/05/Carolyn-Hsu-640x400-480x300.jpg" alt="">
</a>
<div class="member-profile">
</div>
</div>
<div class="member-info">
<h5 class="member-name"><a href="index.html@p=1599.html">Carolyn Hsu, PhD</a></h5>
<span class="member-position">Senior Project Manager, AbbVie</span>
</div>
</div>
<div class="team-member wow slideInUp">
<div class="member-thumb">
<a href="index.html@p=1601.html">
<img src="wp-content/uploads/2017/05/Po-Shun-Lee-640x400-480x300.jpg" alt="">
</a>
<div class="member-profile">
</div>
</div>
<div class="member-info">
<h5 class="member-name"><a href="index.html@p=1601.html">Po-Shun Lee, MD</a></h5>
<span class="member-position">CMO and Executive VP, Proteostasis Therapeutics</span>
</div>
</div>
<div class="team-member wow slideInUp">
<div class="member-thumb">
<a href="index.html@p=1607.html">
<img src="wp-content/uploads/2017/05/Jamie-Tsung-8x5-480x300.jpg" alt="">
</a>
<div class="member-profile">
</div>
</div>
<div class="member-info">
<h5 class="member-name"><a href="index.html@p=1607.html">Jamie Tsung, PhD</a></h5>
<span class="member-position">Associate Director, Alnylam</span>
</div>
</div>
<div class="team-member wow slideInUp">
<div class="member-thumb">
<a href="index.html@p=1403.html">
<img src="wp-content/uploads/2017/05/academia-sinica-640x400-480x300.jpg" alt="">
</a>
<div class="member-profile">
</div>
</div>
<div class="member-info">
<h5 class="member-name"><a href="index.html@p=1403.html"></a></h5>
<span class="member-position"></span>
</div>
</div>
<div class="team-member wow slideInUp">
<div class="member-thumb">
<a href="index.html@p=2016.html">
<img src="wp-content/uploads/2017/05/Shu-Miaw-Chaw-640x400-480x300.jpg" alt="">
</a>
<div class="member-profile">
<a href="mailto:smchaw@sinica.edu.tw"><span class="fa-stack"><i class="fa fa-circle fa-stack-2x"></i><i class="fa fa-envelope-o fa-stack-1x fa-inverse"></i></span></a>
</div>
</div>
<div class="member-info">
<h5 class="member-name"><a href="index.html@p=2016.html">Shu-Miaw Chaw, PhD</a></h5>
<span class="member-position">Director, Biodiversity Research Center</span>
</div>
</div>
<div class="team-member wow slideInUp">
<div class="member-thumb">
<a href="index.html@p=2024.html">
<img src="wp-content/uploads/2017/05/Sheng-hong-Chen-640x400-480x300.jpg" alt="">
</a>
<div class="member-profile">
<a href="http://celldynamicslab.strikingly.com/"><span class="fa-stack"><i class="fa fa-circle fa-stack-2x"></i><i class="fa fa-globe fa-stack-1x fa-inverse"></i></span></a>
<a href="mailto:shengchen@gate.sinica.edu.tw"><span class="fa-stack"><i class="fa fa-circle fa-stack-2x"></i><i class="fa fa-envelope-o fa-stack-1x fa-inverse"></i></span></a>
</div>
</div>
<div class="member-info">
<h5 class="member-name"><a href="index.html@p=2024.html">Sheng-Hong Chen, PhD</a></h5>
<span class="member-position">Assistant Research Fellow, Institute of Molecular Biology</span>
</div>
</div>
<div class="team-member wow slideInUp">
<div class="member-thumb">
<a href="index.html@p=2030.html">
<img src="wp-content/uploads/2017/05/Yu-Ju-Chen-640x400-480x300.jpg" alt="">
</a>
<div class="member-profile">
<a href="mailto:yujuchen@gate.sinica.edu.tw"><span class="fa-stack"><i class="fa fa-circle fa-stack-2x"></i><i class="fa fa-envelope-o fa-stack-1x fa-inverse"></i></span></a>
</div>
</div>
<div class="member-info">
<h5 class="member-name"><a href="index.html@p=2030.html">Yu-Ju Chen, PhD</a></h5>
<span class="member-position">Director, Institute of Chemistry</span>
</div>
</div>
<div class="team-member wow slideInUp">
<div class="member-thumb">
<a href="index.html@p=2075.html">
<img src="wp-content/uploads/2017/05/Mei-Yin-Chou-640x400-480x300.jpg" alt="">
</a>
<div class="member-profile">
<a href="mailto:mychou6@gate.sinica.edu.tw"><span class="fa-stack"><i class="fa fa-circle fa-stack-2x"></i><i class="fa fa-envelope-o fa-stack-1x fa-inverse"></i></span></a>
</div>
</div>
<div class="member-info">
<h5 class="member-name"><a href="index.html@p=2075.html">Mei-Yin Chou, PhD</a></h5>
<span class="member-position">Vice President, Academia Sinica</span>
</div>
</div>
<div class="team-member wow slideInUp">
<div class="member-thumb">
<a href="index.html@p=2040.html">
<img src="wp-content/uploads/2017/05/Fu-Tong-Liu-640x400-480x300.jpg" alt="">
</a>
<div class="member-profile">
<a href="mailto:ftliu@ibms.sinica.edu.tw"><span class="fa-stack"><i class="fa fa-circle fa-stack-2x"></i><i class="fa fa-envelope-o fa-stack-1x fa-inverse"></i></span></a>
</div>
</div>
<div class="member-info">
<h5 class="member-name"><a href="index.html@p=2040.html">Fu-Tong Liu, PhD</a></h5>
<span class="member-position">Vice President, Academia Sinica</span>
</div>
</div>
<div class="team-member wow slideInUp">
<div class="member-thumb">
<a href="index.html@p=1403.html#twbiotech">
<img src="wp-content/uploads/2017/05/biotech-in-taiwan-640x400-480x300.jpg" alt="">
</a>
<div class="member-profile">
</div>
</div>
<div class="member-info">
<h5 class="member-name"><a href="index.html@p=1403.html#twbiotech"></a></h5>
<span class="member-position"></span>
</div>
</div>
<div class="team-member wow slideInUp">
<div class="member-thumb">
<a href="index.html@p=1643.html">
<img src="wp-content/uploads/2017/05/ying-jia-chen-640x400.jpg" alt="">
</a>
<div class="member-profile">
</div>
</div>
<div class="member-info">
<h5 class="member-name"><a href="index.html@p=1643.html">Ying-Ja (Inca) Chen, PhD</a></h5>
<span class="member-position">Research Fellow & Intellectual Property Manager, ACT Genomics</span>
</div>
</div>
<div class="team-member wow slideInUp">
<div class="member-thumb">
<a href="index.html@p=1653.html">
<img src="wp-content/uploads/2017/05/amy-huang-640x400-480x300.jpg" alt="">
</a>
<div class="member-profile">
</div>
</div>
<div class="member-info">
<h5 class="member-name"><a href="index.html@p=1653.html">Amy Huang</a></h5>
<span class="member-position">General Manager of OBI PHARMA INC.</span>
</div>
</div>
<div class="team-member wow slideInUp">
<div class="member-thumb">
<a href="index.html@p=2303.html">
<img src="wp-content/uploads/2017/07/Jiann_Shiun_Lai-8x5-480x300.jpg" alt="">
</a>
<div class="member-profile">
</div>
</div>
<div class="member-info">
<h5 class="member-name"><a href="index.html@p=2303.html">Jiann-Shiun Lai, PhD</a></h5>
<span class="member-position">Senior Director, R&D Lab of OBI Pharma Inc.</span>
</div>
</div>
<div class="team-member wow slideInUp">
<div class="member-thumb">
<a href="index.html@p=2172.html">
<img src="wp-content/uploads/2017/04/Po-Cheng-Lin-8x5-480x300.jpg" alt="">
</a>
<div class="member-profile">
</div>
</div>
<div class="member-info">
<h5 class="member-name"><a href="index.html@p=2172.html">Po-Cheng Lin, PhD</a></h5>
<span class="member-position">Associate General Manager, GWOXI</span>
</div>
</div>
<div class="team-member wow slideInUp">
<div class="member-thumb">
<a href="index.html@p=1648.html">
<img src="wp-content/uploads/2017/05/Tong-Young-Lee-640x400.jpg" alt="">
</a>
<div class="member-profile">
</div>
</div>
<div class="member-info">
<h5 class="member-name"><a href="index.html@p=1648.html">Tong-Young Lee, PhD</a></h5>
<span class="member-position">Founder & CEO, Celtec Inc.</span>
</div>
</div>
<div class="team-member wow slideInUp">
<div class="member-thumb">
<a href="index.html@p=2267.html">
<img src="wp-content/uploads/2017/07/Ajay_Verma.jpg" alt="">
</a>
<div class="member-profile">
</div>
</div>
<div class="member-info">
<h5 class="member-name"><a href="index.html@p=2267.html">Ajay Verma, MD, PhD</a></h5>
<span class="member-position">Chief Medical Officer, United Neuroscience</span>
</div>
</div>
<div class="team-member wow slideInUp">
<div class="member-thumb">
<a href="index.html@p=1393.html">
<img src="wp-content/uploads/2017/05/genome-editing-800x500-480x300.jpg" alt="">
</a>
<div class="member-profile">
</div>
</div>
<div class="member-info">
<h5 class="member-name"><a href="index.html@p=1393.html"></a></h5>
<span class="member-position"></span>
</div>
</div>
<div class="team-member wow slideInUp">
<div class="member-thumb">
<a href="index.html@p=1701.html">
<img src="wp-content/uploads/2017/05/Julia-Joung-640x400.jpg" alt="">
</a>
<div class="member-profile">
</div>
</div>
<div class="member-info">
<h5 class="member-name"><a href="index.html@p=1701.html">Julia Joung</a></h5>
<span class="member-position">Graduate student, MIT and Harvard</span>
</div>
</div>
<div class="team-member wow slideInUp">
<div class="member-thumb">
<a href="index.html@p=1699.html">
<img src="wp-content/uploads/2017/08/Michelle.Lin-8x5.jpg" alt="">
</a>
<div class="member-profile">
</div>
</div>
<div class="member-info">
<h5 class="member-name"><a href="index.html@p=1699.html">Michelle Lin, PhD</a></h5>
<span class="member-position">Senior Scientists, CRISPR Therapeutics</span>
</div>
</div>
<div class="team-member wow slideInUp">
<div class="member-thumb">
<a href="trending-topics/jui-Chen-Tai.html">
<img src="wp-content/uploads/2017/05/jui-chen-tai-640x400.jpg" alt="">
</a>
<div class="member-profile">
</div>
</div>
<div class="member-info">
<h5 class="member-name"><a href="trending-topics/jui-Chen-Tai.html">Jui-Chen Tai, PhD</a></h5>
<span class="member-position">Postdoctoral researcher, Broad Institute/MIT/Harvard</span>
</div>
</div>
<div class="team-member wow slideInUp">
<div class="member-thumb">
<a href="index.html@p=1704.html">
<img src="wp-content/uploads/2017/06/GenomeEditing_02_Ru-8x5-480x300.jpg" alt="">
</a>
<div class="member-profile">
</div>
</div>
<div class="member-info">
<h5 class="member-name"><a href="index.html@p=1704.html">Ru Xiao, PhD</a></h5>
<span class="member-position">Associate Director, Schepens Eye Research Institue</span>
</div>
</div>
<div class="team-member wow slideInUp">
<div class="member-thumb">
<a href="index.html@p=1393.html#immunooncology">
<img src="wp-content/uploads/2017/05/immuno-oncology-800x500-480x300.jpg" alt="">
</a>
<div class="member-profile">
</div>
</div>
<div class="member-info">
<h5 class="member-name"><a href="index.html@p=1393.html#immunooncology"></a></h5>
<span class="member-position"></span>
</div>
</div>
<div class="team-member wow slideInUp">
<div class="member-thumb">
<a href="index.html@p=1715.html">
<img src="wp-content/uploads/2017/05/DeKuang-Chang-640x400.jpg" alt="">
</a>
<div class="member-profile">
</div>
</div>
<div class="member-info">
<h5 class="member-name"><a href="index.html@p=1715.html">DeKuang Chang, PhD</a></h5>
<span class="member-position">Senior Scientist, Torque Therapeutics Inc.</span>
</div>
</div>
<div class="team-member wow slideInUp">
<div class="member-thumb">
<a href="trending-topics/christopher-garris.html">
<img src="wp-content/uploads/2017/05/Christopher-Garris-640x400.jpg" alt="">
</a>
<div class="member-profile">
</div>
</div>
<div class="member-info">
<h5 class="member-name"><a href="trending-topics/christopher-garris.html">Christopher Garris</a></h5>
<span class="member-position">PhD Candidate, Harvard University</span>
</div>
</div>
<div class="team-member wow slideInUp">
<div class="member-thumb">
<a href="trending-topics/aileen-li.html">
<img src="wp-content/uploads/2017/05/Aileen-Li-640x400.jpg" alt="">
</a>
<div class="member-profile">
</div>
</div>
<div class="member-info">
<h5 class="member-name"><a href="trending-topics/aileen-li.html">Aileen Li, PhD</a></h5>
<span class="member-position">Postdoctoral Fellow, Harvard University</span>
</div>
</div>
<div class="team-member wow slideInUp">
<div class="member-thumb">
<a href="trending-topics/karrie-wong.html">
<img src="wp-content/uploads/2017/05/Karrie-Wong-640x400.jpg" alt="">
</a>
<div class="member-profile">
</div>
</div>
<div class="member-info">
<h5 class="member-name"><a href="trending-topics/karrie-wong.html">Karrie Wong, PhD</a></h5>
<span class="member-position">Lab Head, Novartis Institutes for Biomedical Research</span>
</div>
</div>
<div class="team-member wow slideInUp">
<div class="member-thumb">
<a href="index.html@p=1409.html">
<img src="wp-content/uploads/2017/05/career-opportunities-in-biotech-industry-800x500-480x300.jpg" alt="">
</a>
<div class="member-profile">
</div>
</div>
<div class="member-info">
<h5 class="member-name"><a href="index.html@p=1409.html"></a></h5>
<span class="member-position"></span>
</div>
</div>
<div class="team-member wow slideInUp">
<div class="member-thumb">
<a href="index.html@p=1755.html">
<img src="wp-content/uploads/2017/05/Fiona-Kuo-640x400-480x300.jpg" alt="">
</a>
<div class="member-profile">
</div>
</div>
<div class="member-info">
<h5 class="member-name"><a href="index.html@p=1755.html">Fiona Kuo, PhD</a></h5>
<span class="member-position">Associate Director, Incyte Corporation</span>
</div>
</div>
<div class="team-member wow slideInUp">
<div class="member-thumb">
<a href="index.html@p=1758.html">
<img src="wp-content/uploads/2017/05/Ray-Lin-640x400-480x300.jpg" alt="">
</a>
<div class="member-profile">
</div>
</div>
<div class="member-info">
<h5 class="member-name"><a href="index.html@p=1758.html">Ray Lin, PhD</a></h5>
<span class="member-position">Senior Scientist, OriGene Technologies Inc.</span>
</div>
</div>
<div class="team-member wow slideInUp">
<div class="member-thumb">
<a href="index.html@p=1761.html">
<img src="wp-content/uploads/2017/05/Wei-Chou-Tseng-650x400-480x300.jpg" alt="">
</a>
<div class="member-profile">
<a href="https://www.linkedin.com/in/wei-chou-tseng-0675b666/"><span class="fa-stack"><i class="fa fa-circle fa-stack-2x"></i><i class="fa fa-linkedin fa-stack-1x fa-inverse"></i></span></a>
</div>
</div>
<div class="member-info">
<h5 class="member-name"><a href="index.html@p=1761.html">Wei Chou Tseng, PhD</a></h5>
<span class="member-position">Postdoctoral Researcher, Pfizer</span>
</div>
</div>
<div class="team-member wow slideInUp">
<div class="member-thumb">
<a href="index.html@p=1765.html">
<img src="wp-content/uploads/2017/05/Louis-Yang-650x400-1-480x300.jpg" alt="">
</a>
<div class="member-profile">
</div>
</div>
<div class="member-info">
<h5 class="member-name"><a href="index.html@p=1765.html">Louis Yang, MS</a></h5>
<span class="member-position">Scientist II, Novartis Institutes for Biomedical Research</span>
</div>
</div>
<div class="team-member wow slideInUp">
<div class="member-thumb">
<a href="index.html@p=1770.html">
<img src="wp-content/uploads/2017/05/Joon-Chong-Yee-650x400-480x300.jpg" alt="">
</a>
<div class="member-profile">
</div>
</div>
<div class="member-info">
<h5 class="member-name"><a href="index.html@p=1770.html">Joon Chong Yee, PhD</a></h5>
<span class="member-position">Sr. Scientist II, Bristol-Myers Squibb</span>
</div>
</div>
<div class="team-member wow slideInUp">
<div class="member-thumb">
<a href="index.html@p=1409.html#myfirstjob">
<img src="wp-content/uploads/2017/05/my-first-job-in-biotech-650x400-480x300.jpg" alt="">
</a>
<div class="member-profile">
</div>
</div>
<div class="member-info">
<h5 class="member-name"><a href="index.html@p=1409.html#myfirstjob"></a></h5>
<span class="member-position"></span>
</div>
</div>
<div class="team-member wow slideInUp">
<div class="member-thumb">
<a href="index.html@p=1823.html">
<img src="wp-content/uploads/2017/05/Shiao-Chi-Chang-640x400-480x300.jpg" alt="">
</a>
<div class="member-profile">
<a href="https://www.linkedin.com/in/shiaochichang/"><span class="fa-stack"><i class="fa fa-circle fa-stack-2x"></i><i class="fa fa-linkedin fa-stack-1x fa-inverse"></i></span></a>
</div>
</div>
<div class="member-info">
<h5 class="member-name"><a href="index.html@p=1823.html">Shiao-Chi Chang, MS</a></h5>
<span class="member-position">Biology Scientist, Pfizer</span>
</div>
</div>
<div class="team-member wow slideInUp">
<div class="member-thumb">
<a href="index.html@p=1828.html">
<img src="wp-content/uploads/2017/05/Wei-Ting-Chang-640x400-480x300.jpg" alt="">
</a>
<div class="member-profile">
<a href="https://www.linkedin.com/in/wei-ting-chang-291337a2/"><span class="fa-stack"><i class="fa fa-circle fa-stack-2x"></i><i class="fa fa-linkedin fa-stack-1x fa-inverse"></i></span></a>
</div>
</div>
<div class="member-info">
<h5 class="member-name"><a href="index.html@p=1828.html">Wei-Ting Chang, MS</a></h5>
<span class="member-position">Scientist Associate, Novartis</span>
</div>
</div>
<div class="team-member wow slideInUp">
<div class="member-thumb">
<a href="index.html@p=1839.html">
<img src="wp-content/uploads/2017/05/YSChen-640x400-480x300.jpg" alt="">
</a>
<div class="member-profile">
<a href="https://www.linkedin.com/in/yschen13/"><span class="fa-stack"><i class="fa fa-circle fa-stack-2x"></i><i class="fa fa-linkedin fa-stack-1x fa-inverse"></i></span></a>
</div>
</div>
<div class="member-info">
<h5 class="member-name"><a href="index.html@p=1839.html">Yi-Shan Chen, PhD</a></h5>
<span class="member-position">Scientist, CRISPR Therapeutics</span>
</div>
</div>
<div class="team-member wow slideInUp">
<div class="member-thumb">
<a href="index.html@p=1976.html">
<img src="wp-content/uploads/2017/05/Priscilla-Lee-640x400-480x300.jpg" alt="">
</a>
<div class="member-profile">
</div>
</div>
<div class="member-info">
<h5 class="member-name"><a href="index.html@p=1976.html">Priscilla Lee, PhD</a></h5>
<span class="member-position">Postdoc fellow, Pfizer</span>
</div>
</div>
<div class="team-member wow slideInUp">
<div class="member-thumb">
<a href="index.html@p=1844.html">
<img src="wp-content/uploads/2017/05/Ying-Jou-Agnes-Lin-640x400.jpg" alt="">
</a>
<div class="member-profile">
<a href="https://www.linkedin.com/in/ying-jou-agnes-lin-6b597173/"><span class="fa-stack"><i class="fa fa-circle fa-stack-2x"></i><i class="fa fa-linkedin fa-stack-1x fa-inverse"></i></span></a>
</div>
</div>
<div class="member-info">
<h5 class="member-name"><a href="index.html@p=1844.html">Ying-Jou (Agnes) Lin, MS</a></h5>
<span class="member-position">Associate Scientist II, Bluebird Bio</span>
</div>
</div>
<div class="team-member wow slideInUp">
<div class="member-thumb">
<a href="index.html@p=1849.html">
<img src="wp-content/uploads/2017/05/Shih-Ching-Joyce-Lo-640x400.jpg" alt="">
</a>
<div class="member-profile">
</div>
</div>
<div class="member-info">
<h5 class="member-name"><a href="index.html@p=1849.html">Shih-Ching (Joyce) Lo, PhD</a></h5>
<span class="member-position">Scientist, Biogen</span>
</div>
</div>
<div class="team-member wow slideInUp">
<div class="member-thumb">
<a href="index.html@p=1856.html">
<img src="wp-content/uploads/2017/05/Huey-Ming-Mak-640x400-480x300.jpg" alt="">
</a>
<div class="member-profile">
<a href="https://www.linkedin.com/in/huey-ming-mak/"><span class="fa-stack"><i class="fa fa-circle fa-stack-2x"></i><i class="fa fa-linkedin fa-stack-1x fa-inverse"></i></span></a>
</div>
</div>
<div class="member-info">
<h5 class="member-name"><a href="index.html@p=1856.html">Huey-Ming Mak, MS</a></h5>
<span class="member-position">Strain Engineer, Ginkgo Bioworks</span>
</div>
</div>
<div class="team-member wow slideInUp">
<div class="member-thumb">
<a href="index.html@p=1861.html">
<img src="wp-content/uploads/2017/05/Yvonne-Meng-640x400-480x300.jpg" alt="">
</a>
<div class="member-profile">
<a href="https://www.linkedin.com/in/hsienweimeng/"><span class="fa-stack"><i class="fa fa-circle fa-stack-2x"></i><i class="fa fa-linkedin fa-stack-1x fa-inverse"></i></span></a>
</div>
</div>
<div class="member-info">
<h5 class="member-name"><a href="index.html@p=1861.html">Hsien-Wei (Yvonne) Meng, PhD</a></h5>
<span class="member-position">Senior Scientist, Merck</span>
</div>
</div>
<div class="team-member wow slideInUp">
<div class="member-thumb">
<a href="index.html@p=1866.html">
<img src="wp-content/uploads/2017/05/Anson-Peng-640x400-480x300.jpg" alt="">
</a>
<div class="member-profile">
<a href="https://www.linkedin.com/in/ansonpeng/"><span class="fa-stack"><i class="fa fa-circle fa-stack-2x"></i><i class="fa fa-linkedin fa-stack-1x fa-inverse"></i></span></a>
</div>
</div>
<div class="member-info">
<h5 class="member-name"><a href="index.html@p=1866.html">Anson Peng, MS</a></h5>
<span class="member-position">Scientist I, Novartis</span>
</div>
</div>
<div class="team-member wow slideInUp">
<div class="member-thumb">
<a href="index.html@p=1985.html">
<img src="wp-content/uploads/2017/05/Hao-Wei-Su-640x400-480x300.jpg" alt="">
</a>
<div class="member-profile">
<a href="https://www.linkedin.com/in/hao-wei-su-1002b946/"><span class="fa-stack"><i class="fa fa-circle fa-stack-2x"></i><i class="fa fa-linkedin fa-stack-1x fa-inverse"></i></span></a>
</div>
</div>
<div class="member-info">
<h5 class="member-name"><a href="index.html@p=1985.html">Hao-Wei Su, PhD</a></h5>
<span class="member-position">Research Scientist, Fitbit</span>
</div>