-
Notifications
You must be signed in to change notification settings - Fork 0
/
CV.html
941 lines (761 loc) · 49.4 KB
/
CV.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
<!DOCTYPE html>
<html>
<head>
<title>Futia CV</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<link rel="stylesheet" href="assets/css/vitae.css" />
<style>
.doc{background-color: #f5f5f5;
width: 100%;
padding: 5% 10% 5% 10%;
}
.table th:not([align]) {
text-align: left;
}
.cntr {
margin: auto;
width: 100%;
text-align: center;
}
.tab {display: inline-block;
margin-left: 40px;
}
.hangingindent {
padding-left: 22px ;
text-indent: -22px ;
}
body {
font-family: Arial;
}
</style>
</head>
<body>
<!-- Header-->
<header id="header">
<nav class="links">
<ul>
<li><h4><a href="https://mfutia.github.io/">Home</a></h4></li>
<li><h4><a href="About.html">About</a></h4></li>
<li><h3><a href="CV.html">CV</a></h1></li>
<li><h4><a href="Research.html">Research</a></h4></li>
<li><h4><a href="Pubs.html">Publications</a></h4></li>
<li><h4><a href="Gallery.html">Gallery</a></h4></li>
</ul>
</nav>
</header>
<!-- Footer -->
<footer id="footer">
<nav class="copyright">
<ul>
<li><h6 class="thick">© Matthew H. Futia</h6></li>
</ul>
</div>
</footer>
<!-- Main -->
<section id="main">
<main>
<div class="doc">
<div class="cntr">
<div>
<h1><em>Curriculum Vitae</em></h1>
</div>
<div>
<h2>Matthew H. Futia</h2>
</div>
<div>
<h5>Postdoctoral Researcher</h5>
</div>
<div>
<h5><a href="https://www.uvm.edu/rsenr/rubensteinlab" style="color:#4068bd">Rubenstein Ecosystem Science Laboratory</a></h5>
</div>
<div>
<h5>3 College Street, Burlington, VT 05401</h5>
</div>
<div>
<h4><a href="mailto:[email protected]" style="color:#4068bd">E: [email protected]</h4></a>
</div>
</div>
<hr />
<div>
<h3>EDUCATION</h3>
<div>
<table width="100%">
<col style="width:20%">
<col style="width:80%">
<tbody>
<tr>
<th><p>2024</p></th>
<th><p>PhD: The University of Vermont, Department of Biology</p></th>
</tr>
<tr>
<th><span class="tab"></span></th>
<th><p>Dissertation: Born to be wild: hatchery rearing has life-time effects on foraging and movement behaviors of lake trout <em>Salvelinus namaycush</em></p></th>
</tr>
<tr>
<th><span class="tab"></span></th>
<th><p>Advisor: Dr. J. Ellen Marsden</p></th>
</tr>
</tbody>
</table>
</div>
<div>
<table width="100%">
<col style="width:20%">
<col style="width:80%">
<tbody>
<tr>
<th><p>2018</p></th>
<th><p>BS/MS: SUNY Brockport, Environmental Science Ecology</p></th>
</tr>
<tr>
<th><span class="tab"></span></th>
<th><p>Thesis: Causes and impacts of thiamine deficiency in Lake Ontario salmonines</p></th>
</tr>
<tr>
<th><span class="tab"></span></th>
<th><p>Advisor: Dr. Jacques Rinchard</p></th>
</tr>
</tbody>
</table>
</div>
<div>
<p><span class="tab"></span></p>
<hr />
</div>
<div>
<h3>RESEARCH EXPERIENCE</h3>
<div>
<table width="100%">
<col style="width:20%">
<col style="width:80%">
<tbody>
<tr>
<th><p>2024 – Present</p></th>
<th><p>Postdoctoral Researcher: Rubenstein Ecosystem Science Laboratory – University of Vermont</p></th>
</tr>
<tr>
<th><p>2019 – 2024</p></th>
<th><p>Graduate Research Assistant: Rubenstein Ecosystem Science Laboratory – University of Vermont</p></th>
</tr>
<tr>
<th><p>2015 – 2018</p></th>
<th><p>Graduate Research Assistant: Rinchard Research Lab – SUNY Brockport</p></th>
</tr>
<tr>
<th><p>2016 – 2017</p></th>
<th><p>Research Assistant: Wilcox Research Lab – SUNY Brockport</p></th>
</tr>
<tr>
<th><p>2014</p></th>
<th><p>Research Internship: Summer Undergraduate Research Program – SUNY Brockport</p></th>
</tr>
</tbody>
</table>
</div>
<div>
<p><span class="tab"></span></p>
<hr />
</div>
<div>
<h3>PEER-REVIEWED PUBLICATIONS</h3>
<p class="hangingindent">9. <b>Futia, M.H.</b>, Binder, T.R., Henderson, M., and Marsden, J.E. 2024. Modeling regional occupancy of fishes using acoustic telemetry: a model comparison framework applied to lake trout. Animal Biotelemetry 12:25. <a href="https://doi.org/10.1186/s40317-024-00380-3" style="color:#4068bd">DOI: 10.1186/s40317-024-00380-3</a></p>
<p class="hangingindent">8. <b>Futia, M.H.</b>, Lantry, B.F., Lantry, J.R., Gorski, D., Johnson, T.B., Fisk, A.T., Colborne, S.F., and Rinchard, J. 2021. Comparisons among three diet analyses demonstrate multiple patterns in the estimated adult diet of a freshwater piscivore, <em>Salvelinus namaycush</em>. Ecological Indicators 127:107728. <a href="https://doi.org/10.1016/j.ecolind.2021.107728" style="color:#4068bd">DOI: 10.1016/j.ecolind.2021.107728</a></p>
<p class="hangingindent">7. Marsden, J.E., Blanchfield, P.J., Brooks, J.L., Fernandes, T., Fisk, A.T., <b>Futia, M.H.</b>, Hlina, B.L., Ivanova, S.V., Johnson, T.B., Klinard, N.V., Krueger, C.C., Larocque, S.M., Matley, J.K., McMeans, B., O’Connor, L.M., Raby, G.D., and Cooke, S.J. 2021. Using untapped telemetry data to explore the winter biology of freshwater fish. Reviews in Fish Biology and Fisheries 31: 115-134. <a href="https://doi.org/10.1007/s11160-021-09634-2" style="color:#4068bd">DOI: 10.1007/s11160-021-09634-2</a></p>
<p class="hangingindent">6. Ladago, B.J., <b>Futia, M.H.</b>, Ardren, W., Honeyfield, D.C., Kelsey, K., Kozel, C., Riley, S.C., Rinchard, J., Tillitt, D.E., Zajicek, J.L., and Marsden, J.E. 2020. Thiamine concentrations of salmonine eggs during 14 years following the invasion of alewife in Lake Champlain. Journal of Great Lakes Research 46: 1340-1348. <a href="https://doi.org/10.1016/j.jglr.2020.06.018" style="color:#4068bd">DOI: 10.1016/j.jglr.2020.06.018</a></p>
<p class="hangingindent">5. <b>Futia, M.H.</b>, Connerton, M.C., Weidel, B.W., and Rinchard, J. 2019. Relationships between fatty acid and thiamine concentrations of Lake Ontario Salmonines. Journal of Great Lakes Research. Journal of Great Lakes Research 45(5): 936-950. <a href="https://doi.org/10.1016/j.jglr.2019.08.005" style="color:#4068bd">DOI: 10.1016/j.jglr.2019.08.005</a></p>
<p class="hangingindent">4. <b>Futia, M.H.</b> and Rinchard, J. 2019. Evaluation of adult and offspring thiamine deficiency in salmonine species from Lake Ontario. Journal of Great Lakes Research 45: 811-820. <a href="https://doi.org/10.1016/j.jglr.2019.05.010" style="color:#4068bd">DOI: 10.1016/j.jglr.2019.05.010</a></p>
<p class="hangingindent">3. Harder, A.M., Ardren, W., <b>Futia, M.H.</b>, Marsden, J.E., Tillitt, D.E., Kraft, C.E., Richter, C.A., Rinchard, J., and Christie, M.R. Thiamine deficiency in fishes: causes, consequences, and potential solutions. Reviews in Fish Biology and Fisheries 28: 865-886. <a href="https://doi.org/10.1007/s11160-018-9538-x" style="color:#4068bd">DOI: 10.1007/s11160-018-9538-x</a></p>
<p class="hangingindent">2. Welch, D.W., <b>Futia, M.H.</b>, Rinchard, J., Teffer, A.K., Miller, K.M., Hinch, S.G., and Honeyfield, D.C. 2018. Thiamine Levels in Muscle and Eggs of Adult Pacific Salmon from the Fraser River, British Columbia. Journal of Aquatic Animal Health 30: 191-200. <a href="https://doi.org/10.1002/aah.10024" style="color:#4068bd">DOI: 10.1002/aah.10024</a></p>
<p class="hangingindent">1. <b>Futia, M.H.</b>, Hallenbeck, S., Noyes, A.D., Honeyfield, D.C., Eckerlin, G.E., and Rinchard, J. 2017. Thiamine deficiency and the effectiveness of thiamine treatments through broodstock injections and egg immersion on Lake Ontario steelhead trout. Journal of Great Lakes Research 43: 352-358. <a href="https://doi.org/10.1016/j.jglr.2017.01.001" style="color:#4068bd">DOI: 10.1016/j.jglr.2017.01.001</a></p>
</div>
<div>
<p><span class="tab"></span></p>
<hr />
</div>
<div>
<h3>PUBLICATIONS in REVIEW </h3>
<p class="hangingindent"><b>Futia, M.H.</b>, Binder, T.R., and Marsden, J.E. <em>In Review</em>. Natural versus hatchery rearing determines lake wide movements associated with adult lake trout reproduction. Target Journal: Transactions of the American Fisheries Society.
<p class="hangingindent"><b>Futia, M.H.</b>, Rinchard, J., and Marsden, J.E. </b><em>In Review</em>. Diet patterns differ between naturally- and hatchery-produced lake trout across life stages. Target Journal: Journal of Great Lakes Research.
<p class="hangingindent"><b>Futia, M.H.</b>, and Marsden, J.E. <em>In Review</em>. Acoustic telemetry reveals behavioral differences between stocked and wild lake trout <em>Salvelinus namaycush</em> at three life stages. Target Journal: Journal of Fish Biology.
<p class="hangingindent"><b>Futia, M.H.</b>, Baker, J.B., Marcy-Quay, B., Blaker, P., and Marsden, J.E. <em>In Review</em>. Assessment of Differences in Performance of Two Lake Trout Stocking Strategies in Lake Champlain Using Lipid Analysis. Target Journal: Aquaculture, Fish and Fisheries.
<p class="hangingindent">Draugelis, L.A., <b>Futia, M.H.</b>, Marcy-Quay, B., Limburg, K., and Marsden, J.E. <em>In Review</em>. Tourists or residents? Origins of rainbow smelt morphotypes in Lake Champlain, VT. Target Journal: North American Journal of Fisheries Management.
<p class="hangingindent">Osborne, C., <b>Futia, M.H.</b>, Connerton, M., Fisk, A., Gorsky, D., Heisey, A., Johnson, T., Lantry, B., and Rinchard, J. <em>In Review</em>. A Comparison of Diet and Egg Thiamine Concentrations Between Four Hatchery-Strains and Two Morphotypes of Lake Trout (<em>Salvelinus namaycush</em>) in Lake Ontario. Target Journal: Journal of Great Lakes Research.
</div>
<div>
<p><span class="tab"></span></p>
<hr />
</div>
<div>
<h3>NON-REVIEWED PUBLICATIONS</h3>
<p class="hangingindent">4. Rinchard, J., <b>Futia, M.</b>, Marsden, E., Sanudo-Wilhelmy, S. 2021. Quantification of thiamin in natural fresh water. Final report – Great Lakes Fishery Commission.</p>
<p class="hangingindent">3. <b>Futia, M.</b> 2020. Vitamin deficiency limits salmon and trout offspring survival. <a href="https://ijc.org/en/vitamin-deficiency-limits-salmon-and-trout-offspring-survival" style="color:#4068bd">Great Lakes Connection (International Joint Commission newsletter)</a>. October issue.</p>
<p class="hangingindent">2. Rinchard, J. and <b>Futia, M.</b> 2017. Assessing causes and impacts of thiamine deficiency in salmonid fish from Lake Ontario. Final report (17 p.) – Great Lakes Protection Funds.</p>
<p class="hangingindent">1. Creque, S., Czesny, S., Rinchard, J., and <b>Futia, M.</b> 2015. Growth and survival rate of nearshore fishes in Lake Michigan, 2013. INHS Technical Report 2015 (48) – Division of Fisheries, Illinois Department of Natural Resources (Grant/Contract No Federal Aid Project F-138 R-17).</p>
</div>
<div>
<p><span class="tab"></span></p>
<hr />
</div>
<div>
<h3>COMPETITIVE RESEARCH GRANTS ($486,000)</h3>
<p class="hangingindent"> 2024 – 2026: Prey fish quality drives Thiamine Deficiency Complex in lake trout (<em>Salvelinus namaycush</em>). Funded by Great Lakes Fish and Wildlife Restoration Act ($222,758). PI: J. Rinchard, J. Ludwig, <b>M.H. Futia</b>, F. Rowland, D.M. Walters, C. Stricker, S. Sitar, B. O’Malley, and D. Yule.</p>
<p class="hangingindent"> 2021 – 2023: Do lake trout eggs and alevins acquire thiamine during development in wild populations? Funded by the Great Lakes Fishery Commission ($183,481). PI: J. Rinchard, <b>M.H. Futia</b>, J.E. Marsden, A. Evans, and S. Sañudo-Wilhemy.</p>
<p class="hangingindent">2020 – 2021: Quantification of thiamine in natural fresh water. Funded by the Great Lakes Fishery Commission ($19,005). PI: J. Rinchard, <b>M.H. Futia</b>, E. Marsden, and S. Sañudo-Wilhemy.</p>
<p class="hangingindent">2020 – 2021: Three-dimensional habitat occupancy of wild juvenile and stocked adult lake trout in Lake Champlain. Funded by the Lake Champlain Sea Grant ($77,635). PI: J.E. Marsden and <b>M.H. Futia</b>.</p>
<p class="hangingindent">2016 – 2017: Causes and impacts of thiamine deficiency in Lake Ontario salmonids. Funded by Great Lakes Research Consortium ($996). PI: <b>M.H. Futia</b> and J. Rinchard.</p>
<p class="hangingindent">2015 – 2017: Assessing causes and impacts of thiamine deficiency in Lake Ontario salmonids. Funded by SUNY Brockport ($1,000). PI: <b>M.H. Futia</b> and J. Rinchard.</p>
</div>
<div>
<p><span class="tab"></span></p>
<hr />
</div>
<div>
<h3>NON-COMPETITIVE RESEARCH GRANTS</h3>
<p class=hangingindent> 2017 – 2018: Impacts of the consumption of various prey fishes on lake trout fatty acid and thiamine concentrations. Funded by the US Fish and Wildlife Service ($29,201). PI: <b>M.H. Futia</b> and J. Rinchard.</p>
</div>
<div>
<p><span class="tab"></span></p>
<hr />
</div>
<div>
<h3>TEACHING EXPERIENCE</h3>
<p><b>Adjunct Lecturer</b></p>
<p text-indent: 22px>2017 – 2018: Dept of Environmental Science and Ecology – SUNY Brockport (Fisheries Science and Management ENV484/584; Fish Biology Laboratory ENV486/586)</p>
<p><b>Graduate Teaching Assistant</b></p>
<p text-indent: 22px>2017: Dept of Environmental Science and Ecology – SUNY Brockport (Biology of Pollution ENV 423/523; Fish Biology ENV 486/586)</p>
<p><b>Guest Lecture</b></p>
<p text-indent: 22px>2023: Fisheries Biology and Techniques WFB 3610, University of Vermont (Dr. Ellen Marsden, Professor)</p>
<p text-indent: 22px>2021: Fisheries Biology and Techniques WFB 195, University of Vermont (Dr. Ellen Marsden, Professor)</p>
<p text-indent: 22px>2017: Fisheries Biology ENV 486/586, SUNY Brockport (Jacques Rinchard, Professor)</p>
</div>
<div>
<p><span class="tab"></span></p>
<hr />
</div>
<div>
<h3>RESEARCH MENTORSHIP</h3>
<p><b>Undergraduate research</b></p>
<div>
<table width="100%">
<col style="width:20%">
<col style="width:80%">
<tbody>
<tr>
<th><p>2022-2023</p></th>
<th><p><u>Lukas Draugelis</u>: Investigation of rainbow smelt (<em>Osmerus mordax</em>) polymorphism in Lake Champlain (University of Vermont)</p></th>
</tr>
<tr>
<th><span class="tab"></span></th>
<th><p><u>Jack Baker</u>: Assessment of differences in performance of two lake trout stocking strategies in Lake Champlain using lipid analysis (University of Vermont)</p></th>
</tr>
<tr>
<th><p>2020</p></th>
<th><p><u>Alex Naccarato</u>: Seasonal and spawning movements of walleye (<em>Sander vitreus</em>) in a fragmented lake (University of Vermont)</p></th>
</tr>
<tr>
<th><p>2018</p></th>
<th><p><u>Matthew Beers</u>: Comparison of prey fish fatty acid signatures among the Finger Lakes (SUNY Brockport)</p></th>
</tr>
<tr>
<th><span class="tab"></span></th>
<th><p><u>Christopher Maier</u>: Fatty acid signatures of lake trout (<em>Salvelinus namaycush</em>) from the Finger Lakes (SUNY Brockport)</p></th>
</tr>
<tr>
<th><p>2017</p></th>
<th><p><u>Nicholas Farese</u>: Thiamine and lipid content in Lake Ontario prey fish (SUNY Brockport)</p></th>
</tr>
<tr>
<th><span class="tab"></span></th>
<th><p><u>Arial Leahy</u>: Comparison of Lake Michigan and Lake Ontario cisco fatty acid signatures (SUNY Brockport)</p></th>
</tr>
<tr>
<th><span class="tab"></span></th>
<th><p><u>Cory Hammond</u>: Shift in the fatty acid signatures of Atlantic salmon in response to Lake Ontario prey diets (SUNY Brockport)</p></th>
</tr>
<tr>
<th><p>2016</p></th>
<th><p><u>Erica Kingdollar</u>: Inter- and intra-species variations in fatty acid signatures of nearshore fishes from Lake Michigan (SUNY Brockport)</p></th>
</tr>
</tbody>
</table>
</div>
<p><b>Graduate research</b></p>
<div>
<table width="100%">
<col style="width:20%">
<col style="width:80%">
<tbody>
<tr>
<th><p>2021</p></th>
<th><p><u>Colin Clark</u>: Acquistion of ambient thiamin during fish embyonic development</p></th>
</tr>
</tbody>
</table>
</div>
</div>
<div>
<p><span class="tab"></span></p>
<hr />
</div>
<div>
<h3>ACADEMIC HONORS and AWARDS</h3>
<p><b>University of Vermont</b></p>
<div>
<table width="100%">
<col style="width:20%">
<col style="width:80%">
<tbody>
<tr>
<th><p>2024</p></th>
<th><p>Biology Department Chair's Award ($250)</p></th>
</tr>
<tr>
<th><p>2023</p></th>
<th><p>John Wheeler Graduate Student Research and Development Award ($800)</p></th>
</tr>
<tr>
<th><p>2022</p></th>
<th><p>Graduate College Mini-Grant ($300)</p></th>
</tr>
<tr>
<th><p>2022</p></th>
<th><p>Biology Department Chair’s Award ($400)</p></th>
</tr>
<tr>
<th><p>2020</p></th>
<th><p>Student Research Conference Judged Session Award ($75)</p></th>
</tr>
</tbody>
</table>
</div>
<p><b>SUNY Brockport</b></p>
<div>
<table width="100%">
<col style="width:20%">
<col style="width:80%">
<tbody>
<tr>
<th><p>2018</p></th>
<th><p>Distinguished Graduate Scholar Award for SUNY Brockport</p></th>
</tr>
<tr>
<th><p>2018</p></th>
<th><p>Outstanding Graduate Award for the School of Arts and Science</p></th>
</tr>
<tr>
<th><p>2018</p></th>
<th><p>Student Travel Grant ($300) to present research</p></th>
</tr>
<tr>
<th><p>2017</p></th>
<th><p>Student Travel Grant ($300) to present research</p></th>
</tr>
<tr>
<th><p>2016</p></th>
<th><p>Department of Environmental Science Scholar</p></th>
</tr>
<tr>
<th><p>2016</p></th>
<th><p>Student Travel Grant ($300) to present research</p></th>
</tr>
<tr>
<th><p>2016</p></th>
<th><p>Scholar Athlete Award</p></th>
</tr>
<tr>
<th><p>2015</p></th>
<th><p>Student Travel Grant ($300) to present research</p></th>
</tr>
<tr>
<th><p>2014</p></th>
<th><p>Kenneth Daman Award for Undergraduate Research in Aquatic Ecology</p></th>
</tr>
<tr>
<th><p>2014</p></th>
<th><p>Student Travel Grant ($300) to present research</p></th>
</tr>
<tr>
<th><p>2012-2015</p></th>
<th><p>Honor’s Program</p></th>
</tr>
</tbody>
</table>
</div>
<p><b>Other</b></p>
<div>
<table width="100%">
<col style="width:20%">
<col style="width:80%">
<tbody>
<tr>
<th><p>2020</p></th>
<th><p>Elsevier Student Author Award for 2019</p></th>
</tr>
<tr>
<th><p>2019</p></th>
<th><p>IAGLR Science Communication Scholar</p></th>
</tr>
<tr>
<th><p>2017</p></th>
<th><p>Klumb-Spindler Student Travel Award, New York Chapter AFS ($150)</p></th>
</tr>
<tr>
<th><p>2017</p></th>
<th><p>Student Travel Grant, Great Lakes Research Consortium ($250)</p></th>
</tr>
<tr>
<th><p>2016</p></th>
<th><p>Best Student Oral Presentation, 72nd Northeast Fish & Wildlife Conference</p></th>
</tr>
<tr>
<th><p>2016</p></th>
<th><p>Student Travel Grant, Great Lakes Research Consortium ($250)</p></th>
</tr>
<tr>
<th><p>2015-2016</p></th>
<th><p>National College Honor Society, Alpha Chi</p></th>
</tr>
<tr>
<th><p>2015-2016</p></th>
<th><p>National College Athlete Honor Society, Chi Alpha Sigma</p></th>
</tr>
</tbody>
</table>
</div>
</div>
<div>
<p><span class="tab"></span></p>
<hr />
</div>
<div>
<h3>WORKSHOP PRESENTATIONS</h3>
<p class="hangingindent">28th Annual Meeting of the Lower Lakes Lake Trout Workshop. 2017. Status of thiamine in lake trout and prey fish form Lakes Ontario. Basom (NY, USA), June 6-7, 2017.</p>
</div>
<div>
<p><span class="tab"></span></p>
<hr />
</div>
<div>
<h3>INVITED SCIENTIFIC PRESENTATIONS</h3>
<p class="hangingindent">Great Lakes Fish Health Committee Meeting. 2018. Overview of Thiamine Deficiency Complex. Erie (PA, USA), August 1-2, 2018.</p>
<p class="hangingindent">American Fisheries Society Fish Health Section Annual Meeting and Great Lakes Fishery Commission Fish Health Committee Meeting. 2017. Analysis of Thiamine Deficiency Complex in Lake Ontario salmonines. Lansing (MI, USA), April 2-3, 2017.</p>
</div>
<div>
<p><span class="tab"></span></p>
<hr />
</div>
<div>
<p><h3>SCIENTIFIC PRESENTATIONS</h3>(<em>italic: mentored undergraduate</em>; <u>underline: mentored graduate</u>; <b>*</b>: presenter)</p>
<p><u><b>Oral Presentations</b></u></p>
<p class="hangingindent"><b>Futia, M.</b>, Binder, T., Henderson, M., and Marsden J.E. 2024. A model comparison framework for estimating broad-scale occupancy using acoustic telemetry. 154th Annual Meeting of the American Fisheries Society, Honolulu (HI, USA), September 15-19, 2024.</p>
<p class="hangingindent"><b>Futia</b>, M., Binder, T., and Marsden J.E. 2024. Born to be wild: behavioral differences between stocked and wild lake trout. 154th Annual Meeting of the American Fisheries Society, Honolulu (HI, USA), September 15-19, 2024.</p>
<p class="hangingindent"><b>Futia*, M.</b>, Binder, T., Henderson, M., and Marsden J.E. 2024. Modeling regional space use of fishes using acoustic telemetry. 58th Annual Meeting of the New York Chapter of the American Fisheries Society, Cooperstown (New York, USA), Feb. 6-8, 2024.</p>
<p class="hangingindent"><b>Futia*, M.</b>, Fisk, A., Henderson, M. and Marsden J.E. 2023. Using acoustic telemetry to understand Lake Trout restoration in Lake Champlain. 153rd Annual Meeting of the American Fisheries Society, Grand Rapids (MI, USA), August 20-24, 2023.</p>
<p class="hangingindent"><b>Futia*, M.</b> and Marsden J.E. 2023. Model Comparison for Quantifying Regional Habitat Occupancy. Great Lakes Acoustic Telemetry Observation System Annual Coordination Meeting, Ypsilanti (MI, USA), February 27-March 2, 2023.</p>
<p class="hangingindent"><b>Futia*, M.</b>, Fisk, A., Henderson, M. and Marsden J.E. 2023. Where the wild things are: acoustic telemetry reveals differences in spawning behavior of hatchery and natural origin lake trout in Lake Champlain. 57th Annual Meeting of the New York Chapter American Fisheries Society, Stony Brook (NY, USA), February 8-10, 2023.</p>
<p class="hangingindent"><u>Clark, C.,</u> <b>Futia*, M.</b>, Marsden, J.E., Suffridge, C., Matthews, H., and Rinchard J. 2023. Acquisition of thiamin by wild Lake Trout eggs and free embryos reared in Lake Champlain. 57th Annual Meeting of the New York Chapter American Fisheries Society, Stony Brook (NY, USA), February 8-10, 2023.</p>
<p class="hangingindent"><b>Futia*, M.</b>, and Rinchard, J. 2022. Change is the only constant: altered food webs influence thiamin deficiency. 152nd Annual Meeting of the American Fisheries Society, Spokane (WA, USA), August 21-25, 2022.</p>
<p class="hangingindent"><b>Futia*, M.</b>, Fisk, A.T., and Marsden, J.E. 2022. Tracking stocked and naturally-produced lake trout demonstrates differences in seasonal habitat selection. Lake Champlain Research Conference, Burlington (VT, USA). May 23-24, 2022.</p>
<p class="hangingindent"><b>Futia*, M.</b>, Fisk, A.T., and Marsden, J.E. 2022. Acoustic telemetry reveals differences in spawning site selection between stocked and naturally-produced lake trout in Lake Champlain. Joint Aquatic Sciences Meeting, Virtual, May 14-20, 2022.</p>
<p class="hangingindent"><b>Futia*, M.</b> and Marsden, J.E. 2021. Adult supervision advised: tracking stocked and wild adult lake trout demonstrates differences in habitat selection. 9th annual OTN Symposium, Virtual, November 15-16, 2021.</p>
<p class="hangingindent"><b>Futia*, M.</b>, Lantry, B., Lantry, J., Johnson, T., Connerton, M., and Rinchard, J. 2021. Thiamine deficiency in Lake Ontario lake trout: 2013 and 2018 CSMI. State of Lake Ontario Conference, Virtual, March 9–11, 2021.</p>
<p class="hangingindent"><b>Futia*, M.</b> and Marsden, J.E. 2020. Seasonal shifts in habitat use of lake trout in Lake Champlain. University of Vermont Student Research Conference, Burlington (VT, USA), April 16, 2020.</p>
<p class="hangingindent"><b>Futia*, M.</b> and Marsden, J.E. 2020. Hide and go seek: incorporating zeros to investigate habitat use by lake trout in Lake Champlain. Great Lakes Acoustic Telemetry Observation System Annual Coordination Meeting, Ann Arbor (MI, USA), February 27-27, 2020.</p>
<p class="hangingindent"><b>Futia*, M.</b> and Marsden, J.E. 2020. Pushed to the edge: seasonal shifts in habitat use of lake trout in Lake Champlain. 54th Annual Meeting of the New York Chapter American Fisheries Society, Lake Place (NY, USA), February 5-7, 2020.</p>
<p class="hangingindent"><b>Futia*, M.</b>, Connerton, M., Weidel, B., and Rinchard, J. 2019. Can fish have too much fat? Connections between fat content and Thiamine Deficiency in Lake Ontario. 62nd Annual Conference on Great Lakes Research, Brockport (New York, USA), June 10-14, 2019.</p>
<p class="hangingindent"><b>Futia*, M.</b>, Connerton, M., Weidel, B., and Rinchard, J. 2019. Can fish have too much fat? Lower thiamine concentrations in salmonines associated with the consumption of fatty alewife Alosa pseudoharengus. 53rd Annual Meeting of the New York Chapter American Fisheries Society, Poughkeepsie (NY, USA), February 6-8, 2019.</p>
<p class="hangingindent"><b>Futia*, M.</b> and Rinchard, J. 2018. Influence of egg nutritional content on salmonine offspring survival in Lake Ontario. 61st Annual Conference on Great Lakes Research, Toronto (ON, CA), June 18-22, 2018.</p>
<p class="hangingindent"><b>Futia*, M.</b>, Kraus, J., and Rinchard, J. 2017. An unexpected benefit of round goby invasion: the salmonid vitamin pill? 2017 Finger Lakes Research Conference, Geneva (NY, USA), November 17, 2017.</p>
<p class="hangingindent"><em>Farese*, N.</em>, <b>Futia, M.</b>, and Rinchard, J. 2017. Thiamine and lipid content in Lake Ontario prey fish. 44th Annual Fall Scientific Paper Session of the Rochester Academy of Science, Rochester (NY, USA), November 11, 2017.</p>
<p class="hangingindent"><b>Futia*, M.</b> and Rinchard, J. 2017. Status of Thiamine Deficiency Complex in Lake Ontario salmonines. American fisheries society 147th Annual Meeting, Tampa (FL, USA), August 21-24, 2017.</p>
<p class="hangingindent"><b>Futia*, M.</b>, Lantry, B.F., Lantry, J.R., Gorski, D., Johnson, T.B., Fisk, A.T., and Rinchard, J. 2017. Evaluation of trophic markers to assess Lake Ontario lake trout diet and its impact on thiamine. American fisheries society 147th Annual Meeting, Tampa (FL, USA), August 21-24, 2017.</p>
<p class="hangingindent"><b>Futia*, M.</b> and Rinchard, J. 2017. Comparison between diet and thiamine deficiency complex in wild Lake Ontario salmonines. 60th Annual Conference on Great Lakes Research, Detroit (MI, USA), May 15-19, 2017.</p>
<p class="hangingindent"><b>Futia*, M.</b> and Rinchard, J. 2017. Analysis of thiamine deficiency complex in Lake Ontario salmonines. Brockport Scholars Day, Brockport (NY, USA), April 12, 2017.</p>
<p class="hangingindent"><em>Leahy*, A.</em>, <b>Futia, M.</b>, and Rinchard, J. 2017. Comparison of Lake Michigan and Lake Ontario cisco fatty acid signatures. Brockport Scholars Day, Brockport (NY, USA), April 12, 2017.</p>
<p class="hangingindent"><b>Futia*, M.</b> and Rinchard, J. 2017. Analysis of thiamine deficiency complex in Lake Ontario salmonines. 2017 Annual Meeting of the New York Chapter of the American Fisheries Society, Buffalo (NY, USA), February 1-3, 2017.</p>
<p class="hangingindent"><b>Futia*, M.</b>, Hallenbeck, S., and Rinchard, J. 2016. Early mortality syndrome affects Lake Ontario steelhead trout. Brockport Scholars Day, Brockport (NY, USA), April 6, 2016.</p>
<p class="hangingindent"><b>Futia*, M.</b>, Hallenbeck, S., and Rinchard, J. 2016. Thiamine deficiency in Lake Ontario steelhead trout. 72nd Annual Northeast Fish and Wildlife Conference, Annapolis (MD, USA), April 3-6, 2016.</p>
<p class="hangingindent"><b>Futia*, M.</b>, Hallenbeck, S., and Rinchard, J. 2016. Early mortality syndrome affects Lake Ontario steelhead trout. 2016 Annual Meeting of the New York Chapter of the American Fisheries Society, Cooperstown (NY, USA), February 10-12, 2016.</p>
<p class="hangingindent"><b>Futia*, M.</b>, Creque, S., Czesny, S., and Rinchard, J. 2015. Fatty acid signatures of Lake Michigan prey fish. SUNY Undergraduate Research Conference, Brockport (NY, USA), April 10, 2015.</p>
<br></br>
<p><u><b>Poster Presentations</b></u></p>
<p class="hangingindent"><u>Clark, C.,</u><b>Futia*, M.</b>, Marsden, E., Suffridge, C., and Rinchard, J., 2023. Acquisition of thiamine by wild Lake Trout eggs and free embryos reared in Lake Champlain. 153rd Annual Meeting of the American Fisheries Society, Grand Rapids (MI, USA), August 20-24, 2023.</p>
<p class="hangingindent"><em>Draugelis*, L.,</em><b>Futia, M.</b>, Limburg, K., Marcy-Quay, B., Marsden, E., and Stockwell, J. 2023. Comparison of normal and giant rainbow smelt using diet composition, growth, and otolith microelemental analysis. 57th Annual Meeting of the New York Chapter American Fisheries Society, Stony Brook (NY, USA), February 8-10, 2023.</p>
<p class="hangingindent"><u>Clark, C.,</u><b>Futia*, M.</b>, Marsden, E., and Rinchard, J., 2022. Do wild lake trout eggs and free embryos acquire thiamine during development? 152nd Annual Meeting of the American Fisheries Society, Spokane (WA, USA), August 21-25, 2022.</p>
<p class="hangingindent"><b>Futia*, M.</b>, Fisk, A., and Marsden, E. 2021. The tales of two fish: seasonal habitat selection of hatchery-origin and naturally-produced adult lake trout in Lake Champlain. Ecological and Evolutionary Ethology of Fishes. Virtual, July 12-14, 2021.</p>
<p class="hangingindent"><em>Beers*, M.</em>, Bianchi, T., <b>Futia, M.</b>, and Rinchard, J. 2018. Comparison of prey fish fatty acid signatures among the Finger Lakes. 45th Annual Fall Scientific Paper Session of the Rochester Academy of Science, Geneseo (NY, USA), November 10, 2018.</p>
<p class="hangingindent"><b>Futia*, M.</b>, Lantry, B., Lantry, J., Gorsky, D., Johnson, T., Fisk, A., Colborne, S. and Rinchard, J. 2018. Cross-validation of dietary analyses to assess a nutritional deficiency in lake trout. ELLS-IAGLR 2018 Conference, Evian (FR), September 23-28, 2018.</p>
<p class="hangingindent"><b>Futia*, M.</b>, Gorsky, D., Weidel, B., Connerton, M., and Rinchard, J. 2018. Influence of diet on lake trout fatty acid and thiamine concentrations following controlled feeding. 61st Annual Conference on Great Lakes Research, Toronto (ON, CA,), June 18-22, 2018.</p>
<p class="hangingindent"><em>Maier*, C.</em>, <b>Futia, M.</b>, Hammers, B., Zollweg-Horen, E., Speziale, M., and Rinchard, J. 2018. Fatty acid signatures of lake trout (<em>Salvelinus namaycush</em>) from the Finger Lakes. 2018 Annual Meeting of the New York Chapter of the American Fisheries Society, Cooperstown (NY, USA), February 7-9, 2018.</p>
<p class="hangingindent"><em>Hammond*, C.</em>, <b>Futia, M.</b>, and Rinchard, J. 2017. Shift in the fatty acid signatures of Atlantic salmon in response to Lake Ontario prey diets. 44th Annual Fall Scientific Paper Session of the Rochester Academy of Science, Rochester (NY, USA), November 11, 2017.</p>
<p class="hangingindent"><b>Futia*, M.</b>, <em>Leahy, A.</em>, Karboski, C., Jonas, J., Weidel, B., Gorsky, D., Connerton, M., and Rinchard, J. 2017. Dietary differences between Cisco from Lakes Ontario and Michigan: trophic shift or spatial variation? 60th Annual Conference on Great Lakes Research, Detroit (MI, USA), May 15-19, 2017.</p>
<p class="hangingindent"><b>Futia*, M.</b>, <em>Farese, N.</em>, and Rinchard, J. 2017. Thiamine concentrations in forage fish from the Great Lakes region. 60th Annual Conference on Great Lakes Research, Detroit (MI, USA), May 15-19, 2017.</p>
<p class="hangingindent"><em>Farese*, N.</em>, <b>Futia, M.</b>, and Rinchard, J. 2017. Thiamine and lipid content in Lake Ontario prey fish. 2017 SUNY Undergraduate Research Conference, Fredonia (NY, USA), April 22, 2017.</p>
<p class="hangingindent"><em>Farese*, N.</em>, <b>Futia, M.</b>, and Rinchard, J., 2017. Thiamine and lipid content in Lake Ontario prey fish. 31st Annual National Conference on Undergraduate Research, Memphis (TN, USA), April 6-8, 2017.</p>
<p class="hangingindent"><b>Futia*, M.</b>, Lantry, B., Lantry, J., Gorsky, D., Johnson, T., and Rinchard, J. 2017. Thiamine concentrations and fatty acid signatures of Lake Ontario lake trout – 2013 monitoring. 2017 Annual Meeting of the New York Chapter of the American Fisheries Society, Buffalo (NY, USA), February 1-3, 2017.</p>
<p class="hangingindent"><em>Farese*, N.</em>,<b>, Futia, M.</b>, and Rinchard, J. 2017. Thiamine and lipid content in Lake Ontario prey fish. 2017 Annual Meeting of the New York Chapter of the American Fisheries Society, Buffalo (NY, USA), February 1-3, 2017.</p>
<p class="hangingindent"><em>Kingdollar*, E.</em>, <b>Futia, M.</b>, <em>Farese, N.</em>, Creque, S., Czesny, S. and Rinchard, J. 2016. Inter- and intra-species variations in fatty acid signatures of nearshore fishes from Lake Michigan. 43rd Annual Fall Scientific Paper Session of the Rochester Academy of Science, Rochester (NY, USA), November 12, 2016.</p>
<p class="hangingindent"><em>Farese*, N.</em>, <b>Futia, M.</b>, and Rinchard, J. 2016. Thiamine concentrations in prey fishes from Lake Ontario. 43rd Annual Fall Scientific Paper Session of the Rochester Academy of Science, Rochester (NY, USA), November 12, 2016.</p>
<p class="hangingindent"><b>Futia*, M.</b> and Rinchard, J. 2016. Evaluation of egg thiamine concentrations in Lake Ontario salmonids. 59th Annual Conference on Great Lakes Research, Guelph (ON, CA), June 6-10, 2016.</p>
<p class="hangingindent">Rinchard, J., Stratton, L., and <b>Futia*, M</b>. 2016. Thiamine deficiency in lake trout eggs from Cayuga Lake. 2016 Annual Meeting of the New York Chapter of the American Fisheries Society, Cooperstown (NY, USA), February 10-12, 2016.</p>
<p class="hangingindent"><b>Futia*, M.</b>, Creque, S., Czesny, S., and Rinchard, J. 2015. Spatio-temporal variation in fatty acid signatures of Lake Michigan fish. 2015 Annual Meeting of the New York Chapter of the American Fisheries Society, Lake Placid (NY, USA), February 4-6, 2015.</p>
<p class="hangingindent"><b>Futia*, M.</b>, Creque, S., Czesny, S., and Rinchard, J. 2014. Spatio-temporal variation in fatty acid signatures of Lake Michigan fish. 41st Annual Fall Scientific Paper Session of the Rochester Academy of Science, Brockport (NY, USA), November 15, 2014.</p>
</div>
<div>
<p><span class="tab"></span></p>
<hr />
</div>
<div>
<h3>PROFESSIONAL DEVELOPMENT</h3>
<p class="hangingindent">Introduction to Machine Learning with Telemetry Data. Great Lakes Acoustic Telemetry Observation Systems Annual Meeting. February 29, 2024.</p>
<p class="hangingindent">Ocean Tracking Network & Canadian Statistical Sciences Institute Early Career Researcher workshop. Halifax, NS (Canada). November 14-16, 2023.</p>
<p class="hangingindent">Innovasea Fish Tracking Lunch & Learn. 153rd Annual Meeting of the American Fisheries Society. Grand Rapids, MI. August 21, 2023.</p>
<p class="hangingindent">Fish aging workshop. Florida Fish and Wildlife Conservation Commission. Tampa, FL, August 18, 2017.</p>
<p class="hangingindent">Leading with Emotional Intelligence in STEM. LTR Leadership. Burlington, VT. March 15, 2023.</p>
<p class="hangingindent">Innovasea Lunch & Learn. 152nd Annual Meeting of the American Fisheries Society. Spokane, WA. August 22, 2022.</p>
<p class="hangingindent">Fish aging workshop. Florida Fish and Wildlife Conservation Commission. Tampa, FL, August 18, 2017.</p>
<p class="hangingindent">Introduction to larval fish sampling, identification, and taxonomy. US Fish and Wildlife Service Lower Great Lakes FWCO. Basom, NY, January 31, 2017.</p>
</div>
<div>
<p><span class="tab"></span></p>
<hr />
</div>
<div>
<h3>PROFESSIONAL SERVICE</h3>
<div>
<table width="100%">
<col style="width:20%">
<col style="width:80%">
<tbody>
<tr>
<th><p>2020 – present</p></th>
<th><p>Member of Lake Champlain Fisheries Technical Committee – Salmonid Assessment Work Group</p></th>
</tr>
<tr>
<th><p>2020 – 2024</p></th>
<th><p>Graduate Social Committee, Biology Department, University of Vermont</p></th>
</tr>
<tr>
<th><p>2019 – 2024</p></th>
<th><p>Social Media Manager, Rubenstein Ecosystem Science Laboratory, University of Vermont</p></th>
</tr>
<tr>
<th><p>2020 – 2023</p></th>
<th><p>Co-teacher for the Champlain Research Experience for Secondary Teachers</p></th>
</tr>
<tr>
<th><p>2023</p></th>
<th><p>Search Committee for Assistant Professor in Fisheries Biology, Rubenstein School of Environment and Natural Resources, University of Vermont</p></th>
</tr>
<tr>
<th><p>2022</p></th>
<th><p>Search Committee for Research Vessel Specialist Position, Rubenstein Ecosystem Science Laboratory, University of Vermont</p></th>
</tr>
<tr>
<th><p>2019</p></th>
<th><p>Co-chair of “Thiamine Deficiency in the Great Lakes” session, 62nd Annual Conference on Great Lakes Research (Brockport, NY)</p></th>
</tr>
<tr>
<th><p>2018</p></th>
<th><p>Search Committee for Fisheries Scientist Position, Department of Environmental Science and Ecology, SUNY Brockport</p></th>
</tr>
<tr>
<th><p>2017</p></th>
<th><p>Co-chair of “Biochemical Trophic Markers in Aquatic Ecology” session, American Fisheries Society 147th Annual Meeting (Tampa, FL)</p></th>
</tr>
<tr>
<th><p>2017</p></th>
<th><p>Co-chair of “Thiamine deficiency in the Great Lakes – a recurring issue” session, 60th Annual Conference on Great Lakes Research (Detroit, MI)</p></th>
</tr>
<tr>
<th><p>2016</p></th>
<th><p>Search Committee for Aquatic Invertebrate Ecologist Position, Dept of Environmental Science and Ecology, SUNY Brockport</p></th>
</tr>
</tbody>
</table>
</div>
</div>
<div>
<p><span class="tab"></span></p>
<hr />
</div>
<div>
<h3>MANUSCRIPT REVIEWER</h3>
<p>Canadian Journal of Fisheries and Aquatic Sciences; Canadian Journal of Zoology; Ecology and Evolution; Fish Physiology and Biochemistry; Helgoland Marine Research; Journal of Great Lakes Research; Marine Environmental Research; Polar Biology; Transactions of the American Fisheries Society</p>
</div>
<div>
<p><span class="tab"></span></p>
<hr />
</div>
<div>
<h3>PROFESSIONAL MEMBERSHIPS</h3>
<p>American Fisheries Society; International Association of Great Lakes Research; Great Lakes Acoustic Telemetry Observation System</p>
</div>
<div>
<p><span class="tab"></span></p>
<hr />
</div>
<div>
<h3>PROFESSIONAL SKILLS AND EXPERTISE</h3>
<ul>
<li><p>Acoustic telemetry and VUE software</p></li>
<li><p>Statistical analyses (univariate and multivariate) and coding using R</p></li>
<li><p>Freshwater fish identification and collection (gill net, trap net, dip net, seine, trawling, backpack and boat electrofishing)</p></li>
<li><p>Aquatic macroinvertebrate identification and collection</p></li>
<li><p>PADI Advanced open water scuba diving certification</p></li>
<li><p>NAUI nitrox scuba diving certification</p></li>
<li><p>NAUI drysuit scuba diving certification</p></li>
<li><p>Laboratory instrument operation: gas chromatography/mass spectrometry, high performance liquid chromatography</p></li>
<li><p>New York State boating safety</p></li>
<li><p>First Aid & CPR (Expires July 2024)</p></li>
<li><p>Emergency oxygen administration (Expires July 2024)</p></li>
</ul>
</div>
<div>
<p><span class="tab"></span></p>
<hr />
</div>
<div>
<h3>OUTREACH and COMMUNICATION</h3>
<div>
<table width="100%">
<col style="width:20%">
<col style="width:80%">
<tbody>
<tr>
<th><p>2023</p></th>
<th><p>Presenter for Lake Champlain Sea Grant research webinar series</p></th>
</tr>
<tr>
<th><p>2022</p></th>
<th><p>Educator for Lake Champlain Sea Grant “Keeping the Balance” K-12 educational program</p></th>
</tr>
<tr>
<th><p>2020</p></th>
<th><p>Panelist for Lake Champlain Sea Grant “Zoom a Scientist” virtual webinar series</p></th>
</tr>
<tr>
<th><p>2018</p></th>
<th><p>Teacher for Monroe County Soil & Water Conservation District “Conservation Field Days”</p></th>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</main>
</section>
<!-- Scripts -->
<script>
if ('addEventListener' in window) {
window.addEventListener('load', function() { document.body.className = document.body.className.replace(/\bis-preload\b/, ''); });
document.body.className += (navigator.userAgent.match(/(MSIE|rv:11\.0)/) ? ' is-ie' : '');
}
</script>
</body>
</html>
<!--
<style type="text/css">
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
span.underline{text-decoration: underline;}
div.column{display: inline-block; vertical-align: top; width: 50%;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
ul.task-list{list-style: none;}
</style>
<style type="text/css">code{white-space: pre;}</style>
<style type="text/css">
pre:not([class]) {
background-color: white;
}
</style>
<script type="text/javascript">
if (window.hljs) {
hljs.configure({languages: []});
hljs.initHighlightingOnLoad();
if (document.readyState && document.readyState === "complete") {
window.setTimeout(function() { hljs.initHighlighting(); }, 0);
}
}
</script>
-->
<!--
<style type="text/css">
.main-container {
max-width: 940px;
margin-left: auto;
margin-right: auto;
}
code {
color: inherit;
background-color: rgba(0, 0, 0, 0.04);
}
img {
max-width:100%;
}
.tabbed-pane {
padding-top: 12px;
}
.html-widget {
margin-bottom: 20px;
}
button.code-folding-btn:focus {
outline: none;
}
summary {
display: list-item;
}
</style>
-->
<!-- tabsets -->
<!--
<style type="text/css">
.tabset-dropdown > .nav-tabs {
display: inline-table;
max-height: 500px;
min-height: 44px;
overflow-y: auto;
background: white;
border: 1px solid #ddd;
border-radius: 4px;
}
.tabset-dropdown > .nav-tabs > li.active:before {
content: "";
font-family: 'Glyphicons Halflings';
display: inline-block;
padding: 10px;
border-right: 1px solid #ddd;
}
.tabset-dropdown > .nav-tabs.nav-tabs-open > li.active:before {
content: "";
border: none;
}
.tabset-dropdown > .nav-tabs.nav-tabs-open:before {
content: "";
font-family: 'Glyphicons Halflings';
display: inline-block;
padding: 10px;
border-right: 1px solid #ddd;
}
.tabset-dropdown > .nav-tabs > li.active {
display: block;
}
.tabset-dropdown > .nav-tabs > li > a,
.tabset-dropdown > .nav-tabs > li > a:focus,
.tabset-dropdown > .nav-tabs > li > a:hover {
border: none;
display: inline-block;
border-radius: 4px;
background-color: transparent;
}
.tabset-dropdown > .nav-tabs.nav-tabs-open > li {
display: block;
float: none;
}
.tabset-dropdown > .nav-tabs > li {
display: none;
}
</style>
-->
<!-- code folding -->