-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
1606 lines (1402 loc) · 89.7 KB
/
index.html
File metadata and controls
1606 lines (1402 loc) · 89.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>IMPRESS</title>
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<meta content="" name="keywords">
<meta content="" name="description">
<!-- Favicons -->
<link href="img/favicon.png" rel="icon">
<link href="img/apple-touch-icon.png" rel="apple-touch-icon">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,500,600,700,700i|Montserrat:300,400,500,600,700" rel="stylesheet">
<!-- Bootstrap CSS File -->
<link href="lib/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Libraries CSS Files -->
<link href="lib/font-awesome/css/font-awesome.min.css" rel="stylesheet">
<link href="lib/animate/animate.min.css" rel="stylesheet">
<link href="lib/ionicons/css/ionicons.min.css" rel="stylesheet">
<link href="lib/owlcarousel/assets/owl.carousel.min.css" rel="stylesheet">
<link href="lib/lightbox/css/lightbox.min.css" rel="stylesheet">
<!-- Main Stylesheet File -->
<link href="css/style.css" rel="stylesheet">
<!-- =======================================================
Theme Name: Rapid
Theme URL: https://bootstrapmade.com/rapid-multipurpose-bootstrap-business-template/
Author: BootstrapMade.com
License: https://bootstrapmade.com/license/
======================================================= -->
</head>
<body>
<!--==========================
Header
============================-->
<header id="header">
<div id="topbar">
<div class="container">
<div class="logo float-left">
<img src="img/logo1.png" alt="" height="120px" >
</div>
<div class="social-links">
<div>
<a href="https://ec.europa.eu/regional_policy/es/funding/erdf/"><img src="img/clients/client_3.png" alt="" height="55px"></a>
<a href="http://www.ciencia.gob.es/portal/site/MICINN/aei"><img src="img/clients/client-2_1.jpg" alt="" height="55px"></a>
<a href="http://www.ciencia.gob.es/portal/site/MICINN/"><img src="img/clients/client-1.png" alt="" height="55px"></a>
<a href="http://www.ieo.es/es/"><img src="img/clients/client-4.png" alt="" height="55px"></a>
</div> </div>
</div>
</div>
<div class="container">
<nav class="main-nav float-right d-none d-lg-block">
<ul>
<li class="drop-down"><a href="#IMPRESS">What is IMPRESS?</a>
<ul>
<li><a href="./proof/HandO.html">Hypothesis and Objectives</a></li>
<li><a href="./proof/WP.html">Working packages</a></li>
<li><a href="./proof/ERI.html">Expected Results Impact</a></li>
</ul>
</li>
<li><a href="#portfolio">Dissemination</a></li>
<li><a href="#Members">Members</a></li>
<li><a href="#News">News</a></li>
<li><a href="#footer">Contact Us</a>
<a href="https://twitter.com/project_impress" class="twitter"><i class="fa fa-twitter"></i></a>
<a href="https://www.researchgate.net/project/IMPRESS-Improving-scientific-advice-to-fishery-management-for-resources-of-interest-for-Spain-in-Atlantic-waters"> <img src="img/rg.png" alt="" height="20" width="20"></a>
<a href="https://github.com/IMPRESSPROJECT"> <img src="img/git.png" alt="" height="20"></a>
</li>
</ul>
</nav><!-- .main-nav -->
</div>
</header><!-- #header -->
<!--==========================
Intro Section
============================-->
<section id="intro" class="section-bg">
<div class="container">
<header class="section-header">
<h3></h3>
<p><br>
<br>
<br>
<br>
<br>
</p>
</header>
<div class="row">
<div class="col-md-6 col-lg-4 wow bounceInUp" data-wow-duration="1.4s">
<div class="box">
<h4 class="title"><a href="#IMPRESS">IMPRESS</a></h4>
<img src="img/impress.jpg" alt="" style="max-width:100%;width:auto;height:auto;">
<br>
<p align="justify"> <FONT SIZE=3>Improving scientific advice to fishery management for resources of interest for Spain in Atlantic waters (IMPRESS) is a Spanish National Project, which is to improve the scientific advice quality for fisheries management. </font><a href="#IMPRESS">Read More.</a>
</p></div>
</div>
<div class="col-md-6 col-lg-4 wow bounceInUp" data-wow-duration="1.4s">
<div class="box">
<h4 class="title"><a href="#News">News</a></h4>
<br>
<p align="justify"> <a href="#News"> The International Statistical Ecology Conference(01/07/2022)</a></p>
<div align="center"> <img src="img/new77.jpg" alt="" style="max-width:100%;width:auto;height:auto;"> </div>
</div>
</div>
<div class="col-md-6 col-lg-4 wow bounceInUp" data-wow-duration="1.4s">
<div class="box">
<h4 class="title"><a href="#portfolio">Dissemination</a></h4>
<p align="justify"> Our seminars, workshops, events and publications are the support of IMPRESS, <a href="#portfolio"> click here to know more.</a></h4>
<br>
<br>
<img src="img/collage.png" alt="" style="max-width:100%;width:auto;height:auto;">
</p>
</div>
</div>
</div>
<!--==========================
LOGO Section
============================-->
</section>
<main id="main">
<!--==========================
IMPRESS Section
============================-->
<section id="IMPRESS">
<section id="pricing" class="wow fadeInUp section-bg">
<header class="section-header">
<h3></h3>
<p><br>
<br>
<br>
<br>
<br>
</p>
</header>
<div class="container">
<header class="section-header">
<h3>IMPRESS</h3>
</header>
<p align="justify">Improving scientific advice to fishery management for resources of interest for Spain in Atlantic waters (IMPRESS) is a Spanish National Project. The underlying hypothesis of the project is that facing up with the identified stock assessment issues of the Spanish North West Atlantic species could substantially improve their fisheries management.
<br> Within this context, the goal of IMPRESS is to improve the scientific advice quality for fisheries management of resources of interest for Spanish fleets in the North West Atlantic.
To achieve this goal the IMPRESS project will apply a sequential analysis following step by step the assessment process from the stock identification of the available data to the simulation and evaluation of management strategies
</p>
<div class="row flex-items-xs-middle flex-items-xs-center">
<!-- Basic Plan -->
<div class="col-xs-12 col-lg-4">
<div class="card">
<div class="card-header">
<h3><span class="currency"></span><span class="period"></span></h3>
</div>
<div class="card-block">
<h4 class="card-title">
Hypothesis and Objectives
</h4>
<ul class="list-group">
<li class="list-group-item"></li>
<li class="list-group-item"></li>
<li class="list-group-item"></li>
<li class="list-group-item"></li>
</ul>
<a href="./proof/HandO.html" class="btn">See details</a>
</div>
</div>
</div>
<!-- Regular Plan -->
<div class="col-xs-12 col-lg-4">
<div class="card">
<div class="card-header">
<h3><span class="currency"></span><span class="period"></span></h3>
</div>
<div class="card-block">
<h4 class="card-title">
Working packages
</h4>
<ul class="list-group">
<li class="list-group-item"></li>
<li class="list-group-item"></li>
<li class="list-group-item"></li>
<li class="list-group-item"></li>
</ul>
<a href="./proof/WP.html" class="btn">See details</a>
</div>
</div>
</div>
<!-- Premium Plan -->
<div class="col-xs-12 col-lg-4">
<div class="card">
<div class="card-header">
<h3><span class="currency"></span><span class="period"></span></h3>
</div>
<div class="card-block">
<h4 class="card-title">
Expected Results Impact
</h4>
<ul class="list-group">
<li class="list-group-item"></li>
<li class="list-group-item"></li>
<li class="list-group-item"></li>
<li class="list-group-item"></li>
</ul>
<a href="./proof/ERI.html" class="btn">See details</a>
</div>
</div>
</div>
</div>
</div>
</section>
</section><!-- #pricing -->
<!--==========================
Dissemination Section
============================-->
<section id="portfolio">
<section id="pricing" class="wow fadeInUp section-bg">
<div class="container">
<header class="section-header">
<h3>Dissemination</h3>
</header>
<div class="row flex-items-xs-middle flex-items-xs-center">
<!-- Basic Plan -->
<div class="col-xs-12 col-lg-4">
<div class="card">
<div class="card-header">
<h3><span class="currency"></span><span class="period"></span></h3>
</div>
<div class="card-block">
<h4 class="card-title">
<p align="center"> Publications
</p>
</h4>
<ul class="list-group">
<li class="list-group-item"></li>
<li class="list-group-item"></li>
<li class="list-group-item"></li>
<li class="list-group-item"></li>
</ul>
<p align="center"> <a href="./proof/papers.html" class="btn">See list</a></p>
</div>
</div>
</div>
<!-- Regular Plan -->
<div class="col-xs-12 col-lg-4">
<div class="card">
<div class="card-header">
<h3><span class="currency"></span><span class="period"></span></h3>
</div>
<div class="card-block">
<h4 class="card-title">
<p align="center"> Congress, Seminars and Workshops</p>
</h4>
<ul class="list-group">
<li class="list-group-item"></li>
<li class="list-group-item"></li>
</ul>
<p align="center"><a href="./proof/congress.html" class="btn">See list</a></p>
</div>
</div>
</div>
<!-- Premium Plan -->
<div class="col-xs-12 col-lg-4">
<div class="card">
<div class="card-header">
<h3><span class="currency"></span><span class="period"></span></h3>
</div>
<div class="card-block">
<h4 class="card-title">
<p align="center"> Working groups and documents</p> </p>
</h4>
<ul class="list-group">
<li class="list-group-item"></li>
<li class="list-group-item"></li>
</ul>
<p align="center"><a href="./proof/WS.html" class="btn">See list</a>
</div>
</div>
</div>
</div>
</div>
</section>
</section><!-- #portfolio -->
<!--==========================
Members Section
============================-->
<section id="Members" class="section-bg">
<div class="container">
<div class="section-header">
<h3>Members</h3>
</div>
<p align="justify">The research team is build by biologists and marine scientists. The two IPs are biologist with broad experience in mathematical and statistical models and assessment methods. This experience will be complemented with the external collaborators supporting the modelling work. However, due to the high mathematical and statistical level required from several tasks of the project a doctor in statistics has been hired.</p>
<div class="row">
<div class="col-lg-3 col-md-6 wow fadeInUp" data-wow-delay="0.1s">
<div class="member">
<img src="img/Mima_1.jpg" class="img-fluid" alt="">
<div class="member-info">
<div class="member-info-content">
<h4> M. R. Domínguez Petit </h4>
<span>rosario.dominguez@ieo.es</span>
<div class="social">
<a href="https://www.researchgate.net/profile/Rosario_Dominguez-Petit"><img src="img/rg.png" alt="" height="20" width="20"></a>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 wow fadeInUp" data-wow-delay="0.3s">
<div class="member">
<img src="img/herraiz.jpg" class="img-fluid" alt="">
<div class="member-info">
<div class="member-info-content">
<h4>I. González Herraiz</h4>
<span>Isabel.herraiz@ieo.es</span>
<div class="social">
<a href="https://www.researchgate.net/profile/Isabel_Gonzalez_Herraiz"><img src="img/rg.png" alt="" height="20" width="20"></a>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 wow fadeInUp" data-wow-delay="0.3s">
<div class="member">
<img src="img/Julio.jpg" class="img-fluid" alt="">
<div class="member-info">
<div class="member-info-content">
<h4>J. Valeiras Mota</h4>
<span>julio.valeiras@ieo.es</span>
<div class="social">
<a href="https://twitter.com/ieodesmar?lang=es"><i class="fa fa-twitter"></i></a>
<a href="https://www.youtube.com/channel/UCMLq7A8hmq-Gtx0thWfJf5w"><img src="img/youtube.jpg" alt="" height="20" width="20"></a>
<a href="https://www.researchgate.net/profile/Julio_Valeiras"><img src="img/rg.png" alt="" height="20" width="20"></a>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 wow fadeInUp" data-wow-delay="0.3s">
<div class="member">
<img src="img/Rincon_2.jpg" class="img-fluid" alt="">
<div class="member-info">
<div class="member-info-content">
<h4>M. M. Rincón Hidalgo</h4>
<span>margarita.rincon@ieo.es</span>
<div class="social">
<a href="https://twitter.com/margarita_rh?lang=es"><i class="fa fa-twitter"></i></a>
<a href="https://www.researchgate.net/profile/Margarita_Rincon_Hidalgo"><img src="img/rg.png" alt="" height="20" width="20"></a>
<a href="https://mmrinconh.github.io/personal2/"><img src="img/web.jpg" alt="" height="20" width="20"></a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-3 col-md-6 wow fadeInUp">
<div class="member">
<img src="img/Marta_1.jpg" class="img-fluid" alt="">
<div class="member-info">
<div class="member-info-content">
<h4>M. Cousido Rocha</h4>
<span>marta.cousido@ieo.es</span>
<div class="social">
<a href="https://twitter.com/CousidoMarta"><i class="fa fa-twitter"></i></a>
<a href="https://es.linkedin.com/in/marta-cousido-rocha-209382105"><i class="fa fa-linkedin"></i></a>
<a href="https://www.researchgate.net/profile/Marta_Cousido-Rocha"><img src="img/rg.png" alt="" height="20" width="20"></a>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 wow fadeInUp" data-wow-delay="0.1s">
<div class="member">
<img src="img/grazia.jpg" class="img-fluid" alt="">
<div class="member-info">
<div class="member-info-content">
<h4>M. G. Pennino</h4>
<span>grazia.pennino@ieo.es</span>
<div class="social">
<a href="https://twitter.com/grazia_pennino"><i class="fa fa-twitter"></i></a>
<a href="https://www.researchgate.net/profile/Maria_Pennino"><img src="img/rg.png" alt="" height="20" width="20"></a>
<a href="https://graziapennino.wixsite.com/website"><img src="img/web.jpg" alt="" height="20" width="20"></a>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 wow fadeInUp" data-wow-delay="0.2s">
<div class="member">
<img src="img/Paz.JPG" class="img-fluid" alt="">
<div class="member-info">
<div class="member-info-content">
<h4>M. P. Sampedro Pastor</h4>
<span>paz.sampedro@ieo.es</span>
<div class="social">
<a href="https://twitter.com/pazsampas"><i class="fa fa-twitter"></i></a>
<a href="https://www.researchgate.net/profile/Paz_Sampedro"><img src="img/rg.png" alt="" height="20" width="20"></a>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 wow fadeInUp" data-wow-delay="0.3s">
<div class="member">
<img src="img/EvaVelasco_1.jpg" class="img-fluid" alt="">
<div class="member-info">
<div class="member-info-content">
<h4>E. M. Velasco Gil</h4>
<span>eva.velasco@ieo.es</span>
<div class="social">
<a href="https://twitter.com/EvaUve"><i class="fa fa-twitter"></i></a>
<a href="https://www.researchgate.net/profile/Eva_Velasco2"><img src="img/rg.png" alt="" height="20" width="20"></a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-3 col-md-6 wow fadeInUp">
<div class="member">
<img src="img/Cris_1.jpg" class="img-fluid" alt="">
<div class="member-info">
<div class="member-info-content">
<h4>C. Rodríguez-Cabello </h4>
<span>cristina.cabello@ieo.es</span>
<div class="social">
<a href="https://www.researchgate.net/profile/C_Rodriguez-Cabello"><img src="img/rg.png" alt="" height="20" width="20"></a>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 wow fadeInUp" data-wow-delay="0.1s">
<div class="member">
<img src="img/alex_alonso_1.jpg" class="img-fluid" alt="">
<div class="member-info">
<div class="member-info-content">
<h4>A. Alonso Fernández</h4>
<span>alex@iim.csic.es</span>
<div class="social">
<a href="https://twitter.com/Fanequeiro"><i class="fa fa-twitter"></i></a>
<a href="https://www.researchgate.net/profile/Alexandre_Alonso-Fernandez"><img src="img/rg.png" alt="" height="20" width="20"></a>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 wow fadeInUp" data-wow-delay="0.2s">
<div class="member">
<img src="img/santi.png" class="img-fluid" alt="">
<div class="member-info">
<div class="member-info-content">
<h4>S. Cerviño López</h4>
<span>santiago.cervino@ieo.es</span>
<div class="social">
<a href="https://twitter.com/SantiagoCervino"><i class="fa fa-twitter"></i></a>
<a href="https://www.researchgate.net/profile/Santiago_Cervino"><img src="img/rg.png" alt="" height="20" width="20"></a>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 wow fadeInUp" data-wow-delay="0.3s">
<div class="member">
<img src="img/abad.jpg" class="img-fluid" alt="">
<div class="member-info">
<div class="member-info-content">
<h4>E. Abad Casas</h4>
<span>esther.abad@ieo.es</span>
<div class="social">
<a href="https://twitter.com/eabad_ieo?lang=es"><i class="fa fa-twitter"></i></a>
<a href="https://www.researchgate.net/profile/Esther_Abad"><img src="img/rg.png" alt="" height="20" width="20"></a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-3 col-md-6 wow fadeInUp">
<div class="member">
<img src="img/Juan.jpg" class="img-fluid" alt="">
<div class="member-info">
<div class="member-info-content">
<h4>J. Gil Herrera</h4>
<span>juan.gil@ieo.es</span>
<div class="social">
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 wow fadeInUp">
<div class="member">
<img src="img/jaime.jpg" class="img-fluid" alt="">
<div class="member-info">
<div class="member-info-content">
<h4>J. Otero Villar </h4>
<span>jaime.otero@ieo.es</span>
<div class="social">
<a href="https://twitter.com/joteromarecol?lang=es"><i class="fa fa-twitter"></i></a>
<a href=" https://scholar.google.es/citations?user=O4y--mUAAAAJ&hl=es"><img src="img/scolar.png" alt="" width="20"></a>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 wow fadeInUp">
<div class="member">
<img src="img/alexandra.jpg" class="img-fluid" alt="">
<div class="member-info">
<div class="member-info-content">
<h4>A. Silva </h4>
<span>asilva@ipma.pt</span>
<div class="social">
<a href="https://www.researchgate.net/profile/Alexandra_Silva10"><img src="img/rg.png" alt="" height="20" width="20"></a>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 wow fadeInUp">
<div class="member">
<img src="img/mon.jpg" class="img-fluid" alt="">
<div class="member-info">
<div class="member-info-content">
<h4> M. Pérez </h4>
<span>montse.perez@ieo.es</span>
<div class="social">
<a href="https://twitter.com/perezro_montse"><i class="fa fa-twitter"></i></a>
<a href="https://orcid.org/0000-0002-1772-8984"><img src="img/id.png" alt="" height="20" width="20"></a>
<a href="https://www.researchgate.net/profile/Montse_Perez2"><img src="img/rg.png" alt="" height="20" width="20"></a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-3 col-md-6 wow fadeInUp">
<div class="member">
<img src="img/isa.jpg" class="img-fluid" alt="">
<div class="member-info">
<div class="member-info-content">
<h4>M. I. Riveiro</h4>
<span> isabel.riveiro@ieo.es</span>
<div class="social">
<a href="https://twitter.com/riveirovigo?lang=es"><i class="fa fa-twitter"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="section-header">
<h3>Students</h3> </div>
<p align="justify"> Furthermore than the team members several students from master's internships and PhD programs are also collaborating with IMPRESS aims.</p>
<div class="row">
<div class="col-lg-3 col-md-6 wow fadeInUp">
<div class="member">
<img src="img/Anxo.jpeg" class="img-fluid" alt="">
<div class="member-info">
<div class="member-info-content">
<h4>A. Paz Cuña </h4>
<span>anxo.paz@hotmail.com</span>
<div class="social">
<a href="https://twitter.com/a_paz_"><i class="fa fa-twitter"></i></a>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 wow fadeInUp">
<div class="member">
<img src="img/Davinia.jpg" class="img-fluid" alt="">
<div class="member-info">
<div class="member-info-content">
<h4>D. Lojo Amoedo </h4>
<span>lojamodav@gmail.com</span>
<div class="social">
<a href="https://www.linkedin.com/in/lojamodav/"><i class="fa fa-linkedin"></i></a>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 wow fadeInUp">
<div class="member">
<img src="img/Fran.jpg" class="img-fluid" alt="">
<div class="member-info">
<div class="member-info-content">
<h4>F. Izquierdo Tarín </h4>
<span>francisco.izquierdo@ieo.es</span>
<div class="social">
<a href="https://twitter.com/izquierdo_fr"><i class="fa fa-twitter"></i></a>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 wow fadeInUp">
<div class="member">
<img src="img/amina.jpg" class="img-fluid" alt="">
<div class="member-info">
<div class="member-info-content">
<h4> A. Mouzai Tifoura </h4>
<span>aminatifoura@gmail.com</span>
<div class="social">
<a href="https://twitter.com/aminatifoura"><i class="fa fa-twitter"></i></a>
<a href="https://www.researchgate.net/profile/Amina_Tifoura"><img src="img/rg.png" alt="" height="20" width="20"></a>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 wow fadeInUp">
<div class="member">
<img src="img/yosri.jpg" class="img-fluid" alt="">
<div class="member-info">
<div class="member-info-content">
<h4> M. Y. Zanni </h4>
<span>zanniyosri@gmail.com</span>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 wow fadeInUp">
<div class="member">
<img src="img/alba.jpeg" class="img-fluid" alt="">
<div class="member-info">
<div class="member-info-content">
<h4>A. Fuster Alonso </h4>
<span> alba.fuster1398@gmail.com</span>
<div class="social">
<a href="https://www.linkedin.com/in/alba-fuster-alonso-076594215/"><i class="fa fa-linkedin"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section><!-- #team -->
<!--==========================
Pricing Section
============================-->
<!--==========================
Frequently Asked Questions Section
============================-->
<section id="News">
<div class="container">
<header class="section-header">
<h3>News</h3>
<p></p>
</header>
<ul id="News-list" class="wow fadeInUp">
<li>
<a data-toggle="collapse" class="collapsed" href="#News77"> The International Statistical Ecology Conference(01/07/2022) <i class="ion-android-remove"></i></a>
<div id="News77" class="collapse" data-parent="#News-list"> <p align="justify">
Impress members have been participated in the
The International Statistical Ecology Conference
in Cape Town. Marta Cousido talks about new ideas to deal with bias sampling in ogive estimation. Francisco Izquierdo discussed about:
Is it worth to increase the complexity of stock assessment models for species with sex dimorphism?
Amina Tifoura explained the impact of natural mortality assumptions on the assessment model performance.
<a href="https://www.youtube.com/watch?v=2gQl9oCkFWE">Go to the video.</a></p>
<a href="img/poster.jfif">Go to Francisco's poster.</a></p>
<a href="img/posterAmina.png">Go to Amina's poster.</a></p>
<div align="center"> <img src="img/new77.jpg" alt="" style="max-width:100%;width:auto;height:auto;"> </div>
</div>
</li>
<li>
<a data-toggle="collapse" class="collapsed" href="#News76"> Working Group on Cephalopod Fisheries and Life History (14/06/2022) <i class="ion-android-remove"></i></a>
<div id="News76" class="collapse" data-parent="#News-list"> <p align="justify">
Eva Velasco and Xulio Valeiras has been participated on the WGCEPH improving knowledge about and the assessment of cephalopods as an exploited resource.
<a href="https://www.ices.dk/community/groups/Pages/WGCEPH.aspx">More details.</a></p>
<div align="center"> <img src="img/new76.png" alt="" style="max-width:100%;width:auto;height:auto;"> </div>
</div>
</li>
<li>
<a data-toggle="collapse" class="collapsed" href="#News75"> XVIII Edición de la Conferencia Española de Biometría (30/05/2022) <i class="ion-android-remove"></i></a>
<div id="News75" class="collapse" data-parent="#News-list"> <p align="justify">
Alba Fuster has been presented her research "Assessment of uncertainty in biomass estimation using different statistical tools employed in fisheries management" winning the best poster award at the XVIII Edición de la Conferencia Española de Biometría.
<a href="http://halweb.uc3m.es/cebmadrid/index.html">More details.</a></p>
<div align="center"> <img src="img/new75.png" alt="" style="max-width:100%;width:auto;height:auto;"> </div>
</div>
</li>
<li>
<a data-toggle="collapse" class="collapsed" href="#News74"> Project Meeting Impress(24/05/2022) <i class="ion-android-remove"></i></a>
<div id="News74" class="collapse" data-parent="#News-list"> <p align="justify">
Explaining advances of the aims proposed in the project and establishing future studies/activities to conclude the poject in the next months.
<div align="center"> <img src="img/new74.png" alt="" style="max-width:100%;width:auto;height:auto;"> </div>
</div>
</li>
<li>
<a data-toggle="collapse" class="collapsed" href="#News73"> New article "Bayesian spatio-temporal CPUE standardization: Case study of European sardine (<em>Sardina pilchardus</em>) along the western coast of Portugal" (20/05/2022) <i class="ion-android-remove"></i></a>
<div id="News73" class="collapse" data-parent="#News-list"> <p align="justify">
Impress members have published an article focus on the standardization of the data of sardine fishery-dependent catch-per-unit- effort (CPUE) from the west coast of Portugal using Bayesian hierarchical spatio-temporal models (BHSTM) with the integrated nested Laplace approximation (INLA).
<a href="https://onlinelibrary.wiley.com/doi/10.1111/fme.12556">More details.</a></p>
<div align="center"> <img src="img/new73.png" alt="" style="max-width:100%;width:auto;height:auto;"> </div>
</div>
</li>
<li>
<a data-toggle="collapse" class="collapsed" href="#News72"> Working Group for the Bay of Biscay and the Iberian Waters Ecoregion(01/05/2022) <i class="ion-android-remove"></i></a>
<div id="News72" class="collapse" data-parent="#News-list"> <p align="justify">
Impress members have participated on the WGBIE which carries out stock assessments and catch forecasts on Northeast Atlantic shelf fish stocks and provide a first draft of the ICES advice for all the stocks.
<a href="https://www.ices.dk/community/groups/Pages/WGbie.aspx">More details.</a></p>
<div align="center"> <img src="img/new72.png" alt="" style="max-width:100%;width:auto;height:auto;"> </div>
</div>
</li>
<li>
<a data-toggle="collapse" class="collapsed" href="#News71"> New article "This is what we know: Assessing the stock status of the data-poor common sole on the Iberian coast" (19/02/2022) <i class="ion-android-remove"></i></a>
<div id="News71" class="collapse" data-parent="#News-list"> <p align="justify">
Impress members have published an article analyzing the status of sole in ICES 8c9a areas using 3 size-based methods: length-based indicators, length-based spawning potential ratio and mean length-based mortality.
<a href="https://www.sciencedirect.com/science/article/abs/pii/S0272771422000075">More details.</a></p>
<div align="center"> <img src="img/new71.png" alt="" style="max-width:100%;width:auto;height:auto;"> </div>
</div>
</li>
<li>
<a data-toggle="collapse" class="collapsed" href="#News70"> Benchmark workshop on anglerfish and hake-WKANGHAKE 2022 (18/02/2022) <i class="ion-android-remove"></i></a>
<div id="News70" class="collapse" data-parent="#News-list"> <p align="justify">
Impress members have participated on the Benchmark workshop on anglerfish and hake (WKANGHAKE 2022) proposing a sex-separated Stock Synthesis (SS) model for the assessment of southern hake (ICES divisions 8.c and 9.a).
<a href="https://www.ices.dk/news-and-events/meeting-calendar/Pages/ICES-CalendarDisp.aspx?sd=fa8806b1-282d-ec11-9296-00155d2c0c14">More details.</a></p>
<div align="center"> <img src="img/new70.png" alt="" style="max-width:100%;width:auto;height:auto;"> </div>
</div>
</li>
<li>
<a data-toggle="collapse" class="collapsed" href="#News69"> New article "Studying the sensitivity of data-poor stock assessment methods" (21/01/2022) <i class="ion-android-remove"></i></a>
<div id="News69" class="collapse" data-parent="#News-list"> <p align="justify">
Impress members have published an article studying the sensitivity of data-poor stock assessment methods to uncertainty about biological information.
<a href="https://www.sciencedirect.com/science/article/abs/pii/S0165783621003258?via%3Dihub">More details.</a></p>
<div align="center"> <img src="img/new69.png" alt="" style="max-width:100%;width:auto;height:auto;"> </div>
</div>
</li>
<li>
<a data-toggle="collapse" class="collapsed" href="#News68"> New article "Identifying persistent biomass areas" (17/01/2021) <i class="ion-android-remove"></i></a>
<div id="News68" class="collapse" data-parent="#News-list"> <p align="justify">
Common sole is a highly valued species in the market, in this new article, pusblished by Impress members,
it's analized which are the areas where this species is most abundant and its temporal persistence.
<a href="https://www.sciencedirect.com/science/article/abs/pii/S0165783621003246">More details.</a></p>
<div align="center"> <img src="img/new68.png" alt="" style="max-width:100%;width:auto;height:auto;"> </div>
</div>
</li>
<li>
<a data-toggle="collapse" class="collapsed" href="#News67"> Coming workshop on "Ecological Models" (17/12/2021) <i class="ion-android-remove"></i></a>
<div id="News67" class="collapse" data-parent="#News-list"> <p align="justify">
EuroMarine funded a workshop entitled "ADVANCES IN FISHERIES SCIENCE: USING ECOLOGICAL MODELS TO INFORM CURRENT FISHERIES ADVICE". The WORKSHOP will take place on March, 2022 on AZTI Tecnalia (Bizkaia, Spain). <a href="https://mervex-group.github.io/MERVEX/">More details.</a></p>
<div align="center"> <img src="img/new67.png" alt="" style="max-width:100%;width:auto;height:auto;"> </div>
</div>
</li>
<li>
<a data-toggle="collapse" class="collapsed" href="#News66"> Iberian Symposium on Modeling and Assessment of Fishery Resources (19-22/10/2021) <i class="ion-android-remove"></i></a>
<div id="News66" class="collapse" data-parent="#News-list"> <p align="justify"> The Iberian Symposium on Modeling and Assessment of Fishery Resources organized by
Mervex group has taken place this week. Details can be found on its website.
<a href="https://mervex-group.github.io/SIMERPE/">Website.</a> </p>
<div align="center"> <img src="img/new66.png" alt="" style="max-width:100%;width:auto;height:auto;"> </div>
</div>
</li>
<li>
<a data-toggle="collapse" class="collapsed" href="#News65"> VIII Xornada de Usuarios de en Galicia (14/10/2021)<i class="ion-android-remove"></i></a>
<div id="News65" class="collapse" data-parent="#News-list"> <p align="justify"> Alba Fuster talked about R-INLA and regression models for standardizing spatio-temporal CPUE indices on the
VIII Xornada de Usuarios de en Galicia.
</p>
<div align="center"> <img src="img/new65.png" alt="" style="max-width:100%;width:auto;height:auto;"> </div>
</div>
</li>
<li>
<a data-toggle="collapse" class="collapsed" href="#News64"> V Simposio Iberoamericano de Ecología Reproductiva, Reclutamiento y Pesquerías (13/10/2021)<i class="ion-android-remove"></i></a>
<div id="News64" class="collapse" data-parent="#News-list"> <p align="justify"> Davinia Lojo presented her research on the life history of hake in Iberian Atlantic waters on
the V Simposio Iberoamericano de Ecología Reproductiva, Reclutamiento y Pesquerías.</p>
<div align="center"> <img src="img/new64.jpg" alt="" style="max-width:100%;width:auto;height:auto;"> </div>
</div>
</li>
<li>
<a data-toggle="collapse" class="collapsed" href="#News63"> Iberoamerican Environmental Week (20/09/2021) <i class="ion-android-remove"></i></a>
<div id="News63" class="collapse" data-parent="#News-list"> <p align="justify"> Rosario Domínguez participated in a panel discussion on Marine Research and Blue Growth at the Ibero-American Environmental Week.
</p>
<div align="center"> <img src="img/new63.jpg" alt="" style="max-width:100%;width:auto;height:auto;"> </div>
</div>
</li>
<li>
<a data-toggle="collapse" class="collapsed" href="#News62"> ICES Annual Science Conference (06/09/2021) <i class="ion-android-remove"></i></a>
<div id="News62" class="collapse" data-parent="#News-list"> <p align="justify">
Marta Cousido-Rocha presented "Assessing the sensitivity of data-limited methods for resources in the Atlantic waters"at the ICES Annual Science Conference
2021. You can watch the presentation in the following link.
<a href="https://www.youtube.com/watch?v=iVtui9cYdMQ">Link.</a></p> </p>
<div align="center"> <img src="img/new62.png" alt="" style="max-width:100%;width:auto;height:auto;"> </div>
</div>
</li>
<li>
<a data-toggle="collapse" class="collapsed" href="#News61"> DESCARSEL survey (31/08/2021)<i class="ion-android-remove"></i></a>
<div id="News61" class="collapse" data-parent="#News-list"> <p align="justify"> Impress members study improvements in the selectivity of trawling during
12 days, aboard the vessel Miguel Oliver. They test different innovations to allow the escape of juveniles or avoid the capture of dolphins.
</p>
<div align="center"> <img src="img/new61.jpg" alt="" style="max-width:100%;width:auto;height:auto;"> </div>
</div>
</li>
<li>
<a data-toggle="collapse" class="collapsed" href="#News60"> Bayesian and spatial statistics in fisheries science (05/07/2021) <i class="ion-android-remove"></i></a>
<div id="News60" class="collapse" data-parent="#News-list"> <p align="justify">
Maria Grazia Pennino explains applications of Bayesian and spatial statistics in fisheries science on
Cousteau Consultant Group. </p>
<a href=""></a>
<div align="center"> <img src="img/new60.jpg" alt="" style="max-width:100%;width:auto;height:auto;"> </div>
</div>
</li>
<li>
<a data-toggle="collapse" class="collapsed" href="#News59"> ASLO 2021 Aquatic Sciences Meeting (24/06/2021) <i class="ion-android-remove"></i></a>
<div id="News59" class="collapse" data-parent="#News-list"> <p align="justify"> Francisco Izquierdo presented at the ASLO 2021 AQUATIC SCIENCES MEETING
the first results of this interesting work: Estimating life history parameters of European hake using Bayesian models.
Marta Cousido Rocha presented our recent work "Applying length-based assessment methods to fisheries resources". Check the following link for details.</p>
<a href="https://www.youtube.com/watch?v=4iXuOh0xuJw">Link.</a></p>
<div align="center"> <img src="img/new59.jpg" alt="" style="max-width:100%;width:auto;height:auto;"> </div>
</div>
</li>
<li>
<a data-toggle="collapse" class="collapsed" href="#News58"> Workshop Biostatnet Software (15/06/2021) <i class="ion-android-remove"></i></a>
<div id="News58" class="collapse" data-parent="#News-list"> <p align="justify"> Marta Cousido-Rocha participated on the Workshop Biostatnet Software presenting
new R-packages: Rfishpop and connectASPIC. </p>
<a href=""></a></p>
<div align="center"> <img src="img/new58.png" alt="" style="max-width:100%;width:auto;height:auto;"> </div>
</div>
</li>
<li>
<a data-toggle="collapse" class="collapsed" href="#News57"> Interview on Burela Radio 107.7 FM (09/06/2021) <i class="ion-android-remove"></i></a>
<div id="News57" class="collapse" data-parent="#News-list"> <p align="justify"> Xulio Valerias and Eva Velasco has been talking about biodiversity, climate change, fisheries and Citizen Collaboration on Burela Radio 107.7 FM. </p>
<a href="https://fb.watch/60c64CmV23/">Listen to it!</a></p>
<div align="center"> <img src="img/new57.jpg" alt="" style="max-width:100%;width:auto;height:auto;"> </div>
</div>
</li>
<li>
<a data-toggle="collapse" class="collapsed" href="#News56"> XVII International Symposium on Oceanography of the Bay of Biscay (02/06/2021) <i class="ion-android-remove"></i></a>
<div id="News56" class="collapse" data-parent="#News-list"> <p align="justify"> Members of IMPRESS project are participating in the XVII International Symposium on Oceanography of the Bay of Biscay (ISOBAY 17) presenting several studies: "This is what we know: assessing the stock status of the data-poor common sole in the Bay of Biscay and Iberian Coast ecoregion", "Testing Surplus production models sensitivity: a case study for ASPIC and SPiCT", "Study of the life traits of demersal fish in Atlantic Iberian waters" and "Applying length-based assessment methods to fishery resources of the Bay of Biscay and Iberian Coast ecoregion: stock status and parameter sensitivity". </p>
<div align="center"> <img src="img/new56.png" alt="" style="max-width:100%;width:auto;height:auto;"> </div>
</div>
</li>
<li>
<a data-toggle="collapse" class="collapsed" href="#News55"> Working Group on Southern Horse Mackerel, Anchovy, and Sardine (WGHANSA) (26/05/2021) <i class="ion-android-remove"></i></a>
<div id="News55" class="collapse" data-parent="#News-list"> <p align="justify"> This week the WGHANSA working group (ICES Working Group on Southern Horse Mackerel, Anchovy, and Sardine) meets.
It evaluates populations of horse mackerel from the south (from Fisterra to the south), Iberian sardines and anchovy division 9a. Our colleagues Isabel Riveiro, Gersom Costas, Margarita Rincón and Fernando Ramos have participated. </p>
<div align="center"> <img src="img/new55.jpg" alt="" style="max-width:100%;width:auto;height:auto;"> </div>
</div>
</li>
<li>
<a data-toggle="collapse" class="collapsed" href="#News54"> Working Group for the Bay of Biscay and the Iberian Waters Ecoregion (WGBIE) (12/05/2021) <i class="ion-android-remove"></i></a>
<div id="News54" class="collapse" data-parent="#News-list"> <p align="justify"> We are evaluating 23 stocks (anglerfishes, megrims, hake, nephrops, pollack and sole stocks) in the Bay of Biscay and the Iberian Waters Ecoregion in the WGBIE. </p>
<div align="center"> <img src="img/new54.png" alt="" style="max-width:100%;width:auto;height:auto;"> </div>
</div>
</li>
<li>
<a data-toggle="collapse" class="collapsed" href="#News53"> Managing the Iberian sardine (07/05/2021) <i class="ion-android-remove"></i></a>
<div id="News53" class="collapse" data-parent="#News-list"> <p align="justify"> The last week our
Impress members
re-examine the Iberian sardine new Havest Control Rule (HCR) proposed by Portugal and Spain. </p>
<div align="center"> <img src="img/new53.jpg" alt="" style="max-width:100%;width:auto;height:auto;"> </div>
</div>
</li>
<li>
<a data-toggle="collapse" class="collapsed" href="#News52"> Working Group on Biology and Assessment of Deep-sea fisheries resources (WGDEEP) (30/04/2021) <i class="ion-android-remove"></i></a>
<div id="News52" class="collapse" data-parent="#News-list"> <p align="justify"> Our s
member Juan Gil Herrera participated to the
ICES
Working Group on Biology and Assessment of Deep-sea fisheries resources (WGDEEP) this week! Always trying to improve stock Assessment results for the deep-sea fisheries resources. </p>
<div align="center"> <img src="img/new52.jpg" alt="" style="max-width:100%;width:auto;height:auto;"> </div>
</div>
</li>
<li>
<a data-toggle="collapse" class="collapsed" href="#News51"> Iberian Symposium on Modeling and Assessment of Fishery Resources (SIMERPE) (01/04/2021)<i class="ion-android-remove"></i></a>
<div id="News51" class="collapse" data-parent="#News-list"> <p align="justify"> </p> Impress Project is organizing the Iberian Symposium on Modeling and Assessment of Fishery Resources (SIMERPE) to be held in Vigo on October 19-22!
<a href="https://mervex-group.github.io/SIMERPE/">Go to the website.</a></p>
</p><div align="center"> <img src="img/new51.jpg" alt="" style="max-width:100%;width:auto;height:auto;"> </div>
</div>
</li>
<li>
<a data-toggle="collapse" class="collapsed" href="#News50"> Interview of our member Francisco Izquierdo en "Vivir o Mar" (01/03/2021)<i class="ion-android-remove"></i></a>
<div id="News50" class="collapse" data-parent="#News-list"> <p align="justify"> </p> Our student (Francisco Izquierdo) explained his recent research entitled "Spatio-Temporal Assessment of the European Hake (<em>Merluccius merluccius</em>) Recruits in the Northern Iberian Peninsula" on the TV program "Vivir o mar".
<a href="https://www.crtvg.es/tvg/a-carta/programa-1029-choco-de-redondela-zonas-de-cria-de-pescada-redogal-4830727?t=643">Go to the video.</a></p>
</p><div align="center"> <img src="img/new50.jpg" alt="" style="max-width:100%;width:auto;height:auto;"> </div>
</div>
</li>
<li>
<a data-toggle="collapse" class="collapsed" href="#News49"> Workshop on the Inclusion of Discard and Survival in Stock Assessments (09/02/2021)<i class="ion-android-remove"></i></a>
<div id="News49" class="collapse" data-parent="#News-list"> <p align="justify"> </p> Our members are attending to the
Workshop on the Inclusion of Discard and Survival in Stock Assessments (WKSURVIVE).
The aim is to achieve new methods with a collaboration between experts in stock assessment and experts in assessing discard survival landing obligation.
</p><div align="center"> <img src="img/new49.jpg" alt="" style="max-width:100%;width:auto;height:auto;"> </div>
</div>
</li>
<li>
<a data-toggle="collapse" class="collapsed" href="#News48"> V Scientific Conference of Students of the SEB (28/01/2021)<i class="ion-android-remove"></i></a>
<div id="News48" class="collapse" data-parent="#News-list"> <p align="justify"> </p> Our students, D. Lojo Amoedo and A. Paz Cuña are participated in the V Scientific Conference of Students of the SEB. <a href="./proof/proof/con12.html">More details</a>