CINXE.COM
Resources for Parliamentarians - Parliamentarians for Global Action - Mobilizing Legislators as Champions for Human Rights, Democracy and a Sustainable World.
<!DOCTYPE html> <html lang="en" dir="ltr"> <head> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link rel="stylesheet" href="https://use.typekit.net/pvv0lyc.css"> <link rel="apple-touch-icon" sizes="180x180" href="https://www.pgaction.org/apple-touch-icon.png"> <link rel="icon" type="image/png" sizes="32x32" href="https://www.pgaction.org/favicon-32x32.png"> <link rel="icon" type="image/png" sizes="16x16" href="https://www.pgaction.org/favicon-16x16.png"> <link rel="manifest" href="https://www.pgaction.org/site.webmanifest"> <meta charset="UTF-8"> <meta name="generator" content="Elxis - Open Source CMS"> <meta name="robots" content="index, follow"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Resources for Parliamentarians - Parliamentarians for Global Action - Mobilizing Legislators as Champions for Human Rights, Democracy and a Sustainable World.</title> <meta name="description" content="Overview of Resources for Parliamentarians. Parliamentarians for Global Action - Mobilizing Legislators as Champions for Human Rights, Democracy and a Sustainable World."> <meta name="keywords" content="Resources, Parliamentarians"> <link rel="shortcut icon" href="https://www.pgaction.org/favicon.ico"> <link rel="search" type="application/opensearchdescription+xml" href="https://www.pgaction.org/inner.php/search/osdescription.xml" title="Parliamentarians for Global Action - Mobilizing Legislators as Champions for Human Rights, Democracy and a Sustainable World."> <link rel="canonical" href="https://www.pgaction.org/resources/"> <link rel="alternate" hreflang="en" href="https://www.pgaction.org/resources/"> <link rel="alternate" hreflang="es" href="https://www.pgaction.org/es/resources/"> <link rel="alternate" hreflang="fr" href="https://www.pgaction.org/fr/resources/"> <link rel="alternate" type="application/rss+xml" href="https://www.pgaction.org/resources/rss.xml" title="Resources for Parliamentarians"> <link rel="stylesheet" href="https://www.pgaction.org/templates/system/css/standard.css?v=1741714132" type="text/css" media="all" > <link rel="stylesheet" href="https://www.pgaction.org/includes/fontawesome/css/solid.min.css?v=1741737777" type="text/css" media="all" > <link rel="stylesheet" href="https://www.pgaction.org/includes/fontawesome/css/regular.min.css?v=1741737777" type="text/css" media="all" > <link rel="stylesheet" href="https://www.pgaction.org/includes/fontawesome/css/fontawesome.min.css?v=1741737777" type="text/css" media="all" > <link rel="stylesheet" href="https://www.pgaction.org/includes/fontawesome/css/v4-shims.min.css?v=1741737777" type="text/css" media="all" > <link rel="stylesheet" href="https://www.pgaction.org/includes/fontawesome/css/brands.min.css?v=1741737776" type="text/css" media="all" > <link rel="stylesheet" href="https://www.pgaction.org/includes/js/mediabox/wa-mediabox.min.css?v=1546447810" type="text/css"> <link rel="stylesheet" href="https://www.pgaction.org/modules/mod_dir_category/inc/dircategory.css?v=1741717154" type="text/css"> <link rel="stylesheet" href="https://www.pgaction.org/modules/mod_scrolltop/includes/scrolltotop.css?v=1741717042" type="text/css"> <script src="https://www.pgaction.org/includes/js/jquery/jquery-1.11.1.min.js"></script> <script src="https://www.pgaction.org/includes/js/jquery/jquery-migrate-1.2.1.min.js"></script> <script src="https://www.pgaction.org/includes/js/elxis.js?v=1681748980"></script> <script src="https://www.pgaction.org/templates/champions/includes/champions.js?v=1741713810"></script> <script src="https://www.pgaction.org/includes/js/mediabox/wa-mediabox.min.js?v=1546447810"></script> <script src="https://www.pgaction.org/modules/mod_searchresources/searchresources.js?v=1741717044"></script> <script> elxLoadEvent(function() { msearchPick(507) }); //** jQuery Scroll to Top Control script- (c) Dynamic Drive DHTML code library: http://www.dynamicdrive.com. //** Available/ usage terms at http://www.dynamicdrive.com (March 30th, 09') //** v1.1 (April 7th, 09'): //** 1) Adds ability to scroll to an absolute position (from top of page) or specific element on the page instead. //** 2) Fixes scroll animation not working in Opera. var scrolltotop={ setting: {startline:100, scrollto: 0, scrollduration:1000, fadeduration:[500, 100]}, controlHTML: '<img class="scrolltop" src="https://www.pgaction.org/modules/mod_scrolltop/includes/top.png" style="width:55px; height:55px;" />', controlattrs: {offsetx:20, offsety:20}, anchorkeyword: '#top', state: {isvisible:false, shouldvisible:false}, scrollup:function(){ if (!this.cssfixedsupport) this.$control.css({opacity:0}) var dest=isNaN(this.setting.scrollto)? this.setting.scrollto : parseInt(this.setting.scrollto) if (typeof dest=="string" && jQuery('#'+dest).length==1) dest=jQuery('#'+dest).offset().top else dest=0 this.$body.animate({scrollTop: dest}, this.setting.scrollduration); }, keepfixed:function(){ var $window=jQuery(window) var controlx=$window.scrollLeft() + $window.width() - this.$control.width() - this.controlattrs.offsetx var controly=$window.scrollTop() + $window.height() - this.$control.height() - this.controlattrs.offsety this.$control.css({left:controlx+'px', top:controly+'px'}) }, togglecontrol:function(){ var scrolltop=jQuery(window).scrollTop() if (!this.cssfixedsupport) this.keepfixed() this.state.shouldvisible=(scrolltop>=this.setting.startline)? true : false if (this.state.shouldvisible && !this.state.isvisible){ this.$control.stop().animate({opacity:1}, this.setting.fadeduration[0]) this.state.isvisible=true } else if (this.state.shouldvisible==false && this.state.isvisible){ this.$control.stop().animate({opacity:0}, this.setting.fadeduration[1]) this.state.isvisible=false } }, init:function(){ jQuery(document).ready(function($){ var mainobj=scrolltotop var iebrws=document.all mainobj.cssfixedsupport=!iebrws || iebrws && document.compatMode=="CSS1Compat" && window.XMLHttpRequest mainobj.$body=(window.opera)? (document.compatMode=="CSS1Compat"? $('html') : $('body')) : $('html,body') mainobj.$control=$('<div id="topcontrol">'+mainobj.controlHTML+'</div>') .css({position:mainobj.cssfixedsupport? 'fixed' : 'absolute', bottom:mainobj.controlattrs.offsety, right:mainobj.controlattrs.offsetx, opacity:0, cursor:'pointer'}) .attr({title:'Move up'}) .click(function(){mainobj.scrollup(); return false}) .appendTo('body') if (document.all && !window.XMLHttpRequest && mainobj.$control.text()!='') mainobj.$control.css({width:mainobj.$control.width()}) mainobj.togglecontrol() $('a[href="' + mainobj.anchorkeyword +'"]').click(function(){ mainobj.scrollup() return false }) $(window).bind('scroll resize', function(e){ mainobj.togglecontrol() }) }) } } scrolltotop.init() </script> <script> if (document.readyState != 'loading') { tpl5OnLoad(); } else if (document.addEventListener) { document.addEventListener('DOMContentLoaded', function(){ tpl5OnLoad(); }); } else { document.attachEvent('onreadystatechange', function() { if (document.readyState == 'complete') { tpl5OnLoad(); } }); } </script> <link rel="stylesheet" href="https://www.pgaction.org/templates/champions/css/template.css?v=1743192053" type="text/css" /> <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js" integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6" crossorigin="anonymous"></script> <!-- metricool --> <script>function loadScript(a){var b=document.getElementsByTagName("head")[0],c=document.createElement("script");c.type="text/javascript",c.src="https://tracker.metricool.com/resources/be.js",c.onreadystatechange=a,c.onload=a,b.appendChild(c)}loadScript(function(){beTracker.t({hash:"ffc6751c4035cafd12489d03b9addb08"})});</script> <!-- end metricool --> <!-- GA --> <script async src="https://www.googletagmanager.com/gtag/js?id=G-FP10TSTXYV"></script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'G-FP10TSTXYV'); </script> <!-- end GA --> </head> <body> <section class="loading-overlay"> <div class="Loading-Page"> <h1 class="loader">Loading...</h1> </div> </section> <header> <div class="header-top"> <div class="tpl5_toppos"> <div class="moduleutility-menu"> <ul class="elx_menu" data-level="0"> <li data-level0="nosubs"> <a href="http://eepurl.com/hnaFxz" title="Are you a Legislator? Join Now!"><i class="fas fa-bullhorn"></i> Are you a Legislator? Join Now!</a> </li> <li data-level0="nosubs"> <a href="https://www.pgaction.org/about/contact.html" title="Contact Us"><i class="fas fa-envelope"></i> Contact Us</a> </li> </ul> </div> <div class="modulesocials"> <ul> <li><a href="https://bsky.app/profile/pga-champions.bsky.social"><i class="fab fa-bluesky"></i></a><br></li> <li><a href="https://www.facebook.com/pgaction"><i class="fab fa-facebook-f"></i></a><br></li> <li><a href="https://www.flickr.com/photos/pgaction"><i class="fab fa-flickr"></i></a><br></li> <li><a href="https://www.instagram.com/parliamentarians.champions/"><i class="fab fa-instagram"></i></a><br></li> <li><a href="https://www.linkedin.com/company/708223/"><i class="fab fa-linkedin-in"></i></a><br></li> <li><a href="https://www.pgaction.org/feeds.html"><i class="fa fa-rss"></i></a><br></li> <li><a href="https://www.x.com/pgaction"><i class="fab fa-x-twitter"></i></a><br></li> <li><a href="https://www.youtube.com/user/pgactionTV"><i class="fab fa-youtube"></i></a><br></li> </ul></div> </div> <div class="tpl5_header_top_line"> <div class="tpl5_container5"> <div class="tpl5_header_top_linein"> <div class="tpl5_search_box"><form id="fmtpl5search455" class="tpl5_searchform" name="fmtpl5search" action="https://www.pgaction.org/search/campaigns.html" method="get"><div><div class="tpl5_search_magn"><i class="fas fa-search"></i></div><div class="tpl5_search_in"><input type="text" name="q" value="" id="tpl5search_q455" class="tpl5_search_input" placeholder="Search" dir="ltr" required="required" /></div></div><button type="submit" name="b" class="tpl5_search_btn"><i class="fas fa-search"></i></button></form></div> <div class="tpl5_lang_box"><form name="tpl5langfm" id="tpl5langfm" method="get" action="#" class="tpl5_lang_form"> <select name="lang" class="tpl5_select_lang" id="tpl5_select_lang" onchange="tpl5SwitchLang();"> <option value="en" selected="selected" data-act="https://www.pgaction.org/resources/">English</option> <option value="es" data-act="https://www.pgaction.org/es/resources/">Español</option> <option value="fr" data-act="https://www.pgaction.org/fr/resources/">Français</option> </select> </form> </div> <div class="clear"></div> </div> </div> </div> </div> <div class="moduleheader-upper"> <div class="clearfix"> <div class="pull-left"> <div class="logo"><a href="https://www.pgaction.org"><img src="https://www.pgaction.org/templates/champions/images/logo_en.png?v=2025" alt="Parliamentarians for Global Action" width="292" height="80"></a></div> </div> <div class="pull-right upper-right"> <div class="vision-box"> <p><strong><em>Mobilizing Legislators as Champions for<br>Human Rights, Democracy, and a Sustainable World</em></strong></p> </div> </div> </div></div> </header> <section class="mainmenu-wrapper stricky"> <nav class="mainmenu-holder pull-left"> <div class="nav-header"> <ul class="elx_menu" data-level="0"> <li data-level0="nosubs"> <a href="https://www.pgaction.org/" title="Home">Home</a> </li> <li data-level0="subs"> <a href="https://www.pgaction.org/programmes-and-campaigns/" title="Programs and Campaigns">Programs and Campaigns</a> <ul data-level="1"> <li data-level1="subs"> <a href="https://www.pgaction.org/dgi/" title="Democracy, Gender, and Inclusion"><i class="fas fa-handshake"></i> Democracy, Gender, and Inclusion</a> <ul data-level="2"> <li data-level2="nosubs"> <a href="https://www.pgaction.org/dgi/cefm/" title="CEFM Campaign"><i class="fas fa-female"></i> CEFM Campaign</a> </li> <li data-level2="subs"> <a href="https://www.pgaction.org/dgi/drhr/" title="Democratic Renewal and Human Rights"><i class="fas fa-seedling"></i> Democratic Renewal and Human Rights</a> <ul data-level="3"> <li data-level3="nosubs"> <a href="https://www.pgaction.org/resources/code-of-conduct.html" title="Code of Democratic Conduct"><i class="fas fa-comments"></i> Code of Democratic Conduct</a> </li> <li data-level3="nosubs"> <a href="https://www.pgaction.org/dgi/drhr/parrt.html" title="Parliamentary Rapid Response Team (PARRT)"><i class="fas fa-user-plus"></i> Parliamentary Rapid Response Team (PARRT)</a> </li> <li data-level3="nosubs"> <a href="https://www.pgaction.org/dgi/drhr/parliamentary-toolbox-for-democracy-defense/" title="Parliamentary Toolbox for Democracy Defense"><i class="fas fa-toolbox"></i> Parliamentary Toolbox for Democracy Defense</a> </li> <li data-level3="nosubs"> <a href="https://www.pgaction.org/dgi/drhr/covid-19.html" title="COVID-19 Resource Hub"><i class="fas fa-microscope"></i> COVID-19 Resource Hub</a> </li> </ul> </li> <li data-level2="subs"> <a href="https://www.pgaction.org/dgi/sogi/" title="SOGI Campaign"><i class="fas fa-transgender-alt"></i> SOGI Campaign</a> <ul data-level="3"> <li data-level3="nosubs"> <a href="https://www.pgaction.org/inclusion/" title="LGBTI Inclusion Site"><i class="fas fa-infinity"></i> LGBTI Inclusion Site</a> </li> </ul> </li> </ul> </li> <li data-level1="subs"> <a href="https://www.pgaction.org/hre/" title="Human Rights and Environment"><i class="fas fa-tree"></i> Human Rights and Environment</a> <ul data-level="2"> <li data-level2="nosubs"> <a href="https://www.pgaction.org/hre/climate-action/" title="Climate Action Campaign"><i class="fas fa-earth-americas"></i> Climate Action Campaign</a> </li> <li data-level2="subs"> <a href="https://www.pgaction.org/hre/oceans/" title="Protection of the Oceans"><i class="fas fa-water"></i> Protection of the Oceans</a> <ul data-level="3"> <li data-level3="nosubs"> <a href="https://www.pgaction.org/hre/oceans/call-for-moratorium-on-deep-seabed-mining.html" title="Call for a Moratorium on Deep Seabed Mining">Call for a Moratorium on Deep Seabed Mining</a> </li> <li data-level3="nosubs"> <a href="https://www.pgaction.org/hre/oceans/cap-oceans.html" title="CAP-Oceans">CAP-Oceans</a> </li> <li data-level3="nosubs"> <a href="https://www.pgaction.org/hre/oceans/project-ending-iuu-fishing.html" title="Ending IUU Fishing">Ending IUU Fishing</a> </li> <li data-level3="nosubs"> <a href="https://www.pgaction.org/hre/oceans/marine-protected-areas.html" title="Marine Protected Areas">Marine Protected Areas</a> </li> <li data-level3="nosubs"> <a href="https://www.pgaction.org/hre/oceans/project-protecting-high-seas.html" title="Protecting the High Seas">Protecting the High Seas</a> </li> <li data-level3="nosubs"> <a href="https://www.pgaction.org/hre/oceans/project-increasing-sustainability-ssf.html" title="Small-Scale Fisheries (SSF)">Small-Scale Fisheries (SSF)</a> </li> </ul> </li> <li data-level2="nosubs"> <a href="https://www.pgaction.org/hre/climate-action/insights/" title="#InsightsByLawmakers"><i class="fas fa-film"></i> #InsightsByLawmakers</a> </li> </ul> </li> <li data-level1="subs"> <a href="https://www.pgaction.org/ilhr/" title="International Law and Human Rights"><i class="fas fa-gavel"></i> International Law and Human Rights</a> <ul data-level="2"> <li data-level2="subs"> <a href="https://www.pgaction.org/ilhr/rome-statute/" title="Rome Statute of the ICC"><i class="fas fa-balance-scale"></i> Rome Statute of the ICC</a> <ul data-level="3"> <li data-level3="nosubs"> <a href="https://www.pgaction.org/ilhr/rome-statute/status.html" title="Status of the Rome Statute System">Status of the Rome Statute System</a> </li> <li data-level3="nosubs"> <a href="https://www.pgaction.org/ilhr/rome-statute/cap-icc.html" title="CAP-ICC">CAP-ICC</a> </li> <li data-level3="nosubs"> <a href="https://www.pgaction.org/ilhr/rome-statute/global-initiative-againsty-impunity/" title="Global Initiative Against Impunity">Global Initiative Against Impunity</a> </li> <li data-level3="nosubs"> <a href="https://www.pgaction.org/news/international-justice/" title="International Justice Update">International Justice Update</a> </li> <li data-level3="nosubs"> <a href="https://www.pgaction.org/ilhr/rome-statute/updates/" title="Rome Statute Campaign Updates">Rome Statute Campaign Updates</a> </li> </ul> </li> <li data-level2="subs"> <a href="https://www.pgaction.org/ilhr/adp/" title="Abolition of the Death Penalty"><i class="fas fa-book-dead"></i> Abolition of the Death Penalty</a> <ul data-level="3"> <li data-level3="nosubs"> <a href="https://www.pgaction.org/ilhr/adp/quarterly-updates/" title="Quarterly Updates of the ADP Campaign">Quarterly Updates of the ADP Campaign</a> </li> </ul> </li> </ul> </li> <li data-level1="subs"> <a href="https://www.pgaction.org/ips/" title="International Peace and Security"><i class="fas fa-dove"></i> International Peace and Security</a> <ul data-level="2"> <li data-level2="nosubs"> <a href="https://www.pgaction.org/ips/bsh/" title="Biological Security and Health"><i class="fas fa-biohazard"></i> Biological Security and Health</a> </li> <li data-level2="nosubs"> <a href="https://www.pgaction.org/ips/nrs/" title="Nuclear and Radiological Security"><i class="fas fa-radiation-alt"></i> Nuclear and Radiological Security</a> </li> <li data-level2="nosubs"> <a href="https://www.pgaction.org/ips/cybersecurity.html" title="Global Cybercrime Campaign"><i class="fas fa-shield-alt"></i> Global Cybercrime Campaign</a> </li> <li data-level2="nosubs"> <a href="https://www.pgaction.org/ips/illicit-salw/" title="SALW/ATT Campaign"><i class="fas fa-ban"></i> SALW/ATT Campaign</a> </li> </ul> </li> </ul> </li> <li data-level0="subs"> <a href="https://www.pgaction.org/news/" title="News and Activities">News and Activities</a> <ul data-level="1"> <li data-level1="nosubs"> <a href="https://www.pgaction.org/news/" title="News Center"><i class="fas fa-newspaper"></i> News Center</a> </li> <li data-level1="subs"> <a href="https://www.pgaction.org/news/activity-calendars/" title="Activity Calendars"><i class="fas fa-calendar-alt"></i> Activity Calendars</a> <ul data-level="2"> <li data-level2="nosubs"> <a href="https://www.pgaction.org/news/activity-calendars/2025.html" title="PGA Activity 2025">PGA Activity 2025</a> </li> <li data-level2="nosubs"> <a href="https://www.pgaction.org/news/activity-calendars/2024.html" title="PGA Activity 2024">PGA Activity 2024</a> </li> <li data-level2="nosubs"> <a href="https://www.pgaction.org/news/activity-calendars/2023.html" title="PGA Activity 2023">PGA Activity 2023</a> </li> <li data-level2="nosubs"> <a href="https://www.pgaction.org/news/activity-calendars/2022.html" title="PGA Activity 2022">PGA Activity 2022</a> </li> </ul> </li> <li class="menu_separator" data-level1="subs"> <a href="javascript:void(null);">Updates</a> <ul data-level="2"> <li data-level2="nosubs"> <a href="https://www.pgaction.org/ilhr/adp/quarterly-updates/" title="ADP Campaign (Quarterly)"><i class="fas fa-book-dead"></i> ADP Campaign (Quarterly)</a> </li> <li data-level2="nosubs"> <a href="https://www.pgaction.org/news/biological-security/" title="Biological Security (Weekly)"><i class="fas fa-biohazard"></i> Biological Security (Weekly)</a> </li> <li data-level2="nosubs"> <a href="https://www.pgaction.org/news/cybersecurity/" title="Cybercrime (Weekly)"><i class="fas fa-shield-alt"></i> Cybercrime (Weekly)</a> </li> <li data-level2="nosubs"> <a href="https://www.pgaction.org/news/international-justice/" title="International Justice (Weekly)"><i class="fas fa-balance-scale"></i> International Justice (Weekly)</a> </li> <li data-level2="nosubs"> <a href="https://www.pgaction.org/news/nuclear-and-radiological-security/" title="Nuclear and Radiological Security (Weekly)"><i class="fas fa-radiation-alt"></i> Nuclear and Radiological Security (Weekly)</a> </li> <li data-level2="nosubs"> <a href="https://www.pgaction.org/ilhr/rome-statute/updates/" title="Rome Statute Campaign (Biannually)"><i class="fas fa-gavel"></i> Rome Statute Campaign (Biannually)</a> </li> </ul> </li> <li data-level1="nosubs"> <a href="https://www.pgaction.org/annual-forum.html" title="Annual Forum"><i class="fas fa-users"></i> Annual Forum</a> </li> <li data-level1="nosubs"> <a href="https://www.pgaction.org/ilhr/rome-statute/cap-icc.html" title="CAP-ICC"><i class="fas fa-balance-scale"></i> CAP-ICC</a> </li> <li data-level1="nosubs"> <a href="https://www.pgaction.org/defender-of-democracy-award.html" title="Defender of Democracy Award"><i class="fas fa-award"></i> Defender of Democracy Award</a> </li> </ul> </li> <li data-level0="subs"> <a href="https://www.pgaction.org/membership/" title="PGA Membership">PGA Membership</a> <ul data-level="1"> <li data-level1="nosubs"> <a href="https://www.pgaction.org/membership/our-members.html" title="Our Members"><i class="fas fa-users"></i> Our Members</a> </li> <li data-level1="nosubs"> <a href="https://www.pgaction.org/membership/eligibility-criteria.html" title="Membership Eligibility Criteria"><i class="fas fa-clipboard-list"></i> Membership Eligibility Criteria</a> </li> <li data-level1="nosubs"> <a href="https://www.pgaction.org/membership/join-pga.html" title="Join PGA!"><i class="fas fa-sign-in-alt"></i> Join PGA!</a> </li> <li data-level1="nosubs"> <a href="https://www.pgaction.org/membership/forming-a-pga-national-group.html" title="Forming a PGA National Group"><i class="fas fa-flag"></i> Forming a PGA National Group</a> </li> </ul> </li> <li class="menu_active" data-level0="nosubs"> <a href="https://www.pgaction.org/resources/" title="Resources">Resources</a> </li> <li data-level0="subs"> <a href="https://www.pgaction.org/about/" title="About Us">About Us</a> <ul data-level="1"> <li data-level1="nosubs"> <a href="https://www.pgaction.org/about/history-and-achievements.html" title="Our History and Achievements"><i class="fas fa-history"></i> Our History and Achievements</a> </li> <li data-level1="nosubs"> <a href="https://www.pgaction.org/about/who-we-are.html" title="Who We Are"><i class="fas fa-sitemap"></i> Who We Are</a> </li> <li data-level1="nosubs"> <a href="https://www.pgaction.org/about/how-we-work.html" title="How We Work"><i class="fas fa-handshake"></i> How We Work</a> </li> <li data-level1="nosubs"> <a href="https://www.pgaction.org/about/strategic-plan.html" title="Strategic Plan"><i class="fas fa-route"></i> Strategic Plan</a> </li> <li data-level1="nosubs"> <a href="https://www.pgaction.org/about/donors.html" title="Our Donors"><i class="fas fa-donate"></i> Our Donors</a> </li> <li data-level1="nosubs"> <a href="https://www.pgaction.org/about/partners.html" title="Our Partners"><i class="fas fa-handshake"></i> Our Partners</a> </li> <li data-level1="nosubs"> <a href="https://www.pgaction.org/about/employment.html" title="Employment & Internships"><i class="fas fa-users-cog"></i> Employment & Internships</a> </li> <li data-level1="nosubs"> <a href="https://www.pgaction.org/about/financial-statements.html" title="Financial Statements"><i class="fas fa-coins"></i> Financial Statements</a> </li> <li data-level1="nosubs"> <a href="https://www.pgaction.org/resources/brochure.html" title="Download Our Brochure"><i class="fas fa-file-pdf"></i> Download Our Brochure</a> </li> <li data-level1="nosubs"> <a href="https://www.pgaction.org/about/contact.html" title="Contact Us"><i class="fas fa-bullhorn"></i> Contact Us</a> </li> </ul> </li> <li data-level0="nosubs"> <a href="http://eepurl.com/hnaFxz" title="Are you a Legislator? Join Now!">Are you a Legislator? Join Now!</a> </li> </ul> </div> <div class="nav-footer hidden-lg"> <ul> <li><button class="menu-expander"><i class="fa fa-list-ul"></i></button></li> </ul> </div> <div id="logo-mob"><a href="https://www.pgaction.org"><img src="https://www.pgaction.org/templates/champions/images/logo_mob.png?v=2025" alt="Parliamentarians for Global Action" width="64%" height="auto"></a></div> </nav> </section> <div class="tpl5_pathwrap"><div class="tpl5_container5"> <nav class="tpl5_pathway"> <ul> <li><a href="https://www.pgaction.org/" title="Home">Home</a></li> <li>Resources for Parliamentarians</li> </ul> </nav> </div></div> <div class="tpl5_container5" id="tpl5_maincontainer"> <div class="tpl5_main"> <div class="tpl5_maincol"> <div class="elx_category_page" id="elx_category_page_91"> <style>div.tpl5_maincol{padding-top:0;}div.tpl5_sidecol{display:none;}</style> <section class="inner-intro bg bg-fixed bg-pga-category" style="background-image:url(https://www.pgaction.org/media/images/categories/category91.jpg);"> <div class="elx5_category_header"> <div class="section-title"><h1 class="title text-white">Resources for Parliamentarians</h1></div> </div></section> <section class="category"><div class="elx5_category_summary"> <h3 class="text-center mt-10">Publications, documents, reports and handbooks authored or co-authored by Parliamentarians for Global Action</h3> <!--<p class="text-center resources"> <a class="thm-btn small" href="#mdc_wrapper1"><i class="fa-solid fa-file"> </i> Annual Reports</a> <a class="thm-btn small" href="#mdc_wrapper21"><i class="fa-solid fa-box-archive"> </i> Archive</a> <a class="thm-btn small ilhr" href="#mdc_wrapper4"><i class="fas fa-book-dead"> </i> Abolition of the Death Penalty (ADP)</a> <a class="thm-btn small ips" href="#mdc_wrapper5"><i class="fas fa-biohazard"> </i> Biological Security and Health</a> <a class="thm-btn small dgi" href="#mdc_wrapper12"><i class="fas fa-female"> </i> End Child, Early and Forced Marriage (CEFM)</a> <a class="thm-btn small hre" href="#mdc_wrapper3"><i class="fas fa-globe-americas"> </i> Climate Action</a> <a class="thm-btn small dgi" href="#mdc_wrapper6"><i class="fas fa-seedling"> </i> Democratic Renewal and Human Rights (DRHR)</a> <a class="thm-btn small ips" href="#mdc_wrapper20"><i class="fas fa-fighter-jet"> </i> Prohibiting Fully Autonomous Weapons (FAWs)</a> <a class="thm-btn small hre" href="#mdc_wrapper10"><i class="fas fa-water"> </i> Protection of the Oceans</a> <a class="thm-btn small ips" href="#mdc_wrapper17"><i class="fas fa-ban"> </i> SALW/ATT Campaign</a> <a class="thm-btn small ilhr" href="#mdc_wrapper11"><i class="fas fa-balance-scale"> </i> Rome Statute</a> <a class="thm-btn small dgi" href="#mdc_wrapper9"><i class="fas fa-transgender-alt"> </i> Sexual Orientation and Gender Identity (SOGI)</a> <a class="thm-btn small archived" href="#mdc_wrapper19"><i class="fas fa-exclamation-triangle"> </i> Violent Extremism</a> </p>--> </div> <div class="modulesearchResources mb-50"> <form name="fmmodsearch" id="fmmodsearch507" class="elx_modsearchform" action="https://www.pgaction.org/search/resources.html" method="get"> <input type="text" name="q" id="msearchq" size="20" class="elx_modsearch_input" value="" placeholder="Search Resources" dir="ltr"> <button type="submit" name="searchbtn" class="elx_modsearch_btn">Search</button> </form> <div class="clear"></div> </div> <div class="moduleResources bsh mb-20"> <h3>Biological Security and Health Campaign</h3> <div class="mdc_2colwrap" id="mdc_wrapper5"> <div class="mdc_2colbox elx5_artbox elx5_artboxvt" data-short="1"> <figure class="elx5_content_imagebox elx5_content_imageboxlt mdc_fig"> <a href="https://www.pgaction.org/resources/handbook-wmd-biorisk.html" title="Handbook to Promote International Legislative Frameworks Addressing the Threats Posed by Weapons of Mass Destruction & Promotion of Bio-Risk Management Best Practices"><img src="https://www.pgaction.org/media/images/resources/handbook-wmd-biorisk.png" alt="Handbook to Promote International Legislative Frameworks Addressing the Threats Posed by Weapons of Mass Destruction & Promotion of Bio-Risk Management Best Practices"></a> </figure> <div class="elx5_artbox_inner"> <h3><a href="https://www.pgaction.org/resources/handbook-wmd-biorisk.html" title="Handbook to Promote International Legislative Frameworks Addressing the Threats Posed by Weapons of Mass Destruction & Promotion of Bio-Risk Management Best Practices">Handbook to Promote International Legislative Frameworks Addressing the Threats Posed by Weapons of Mass Destruction & Promotion of Bio-Risk Management Best Practices</a></h3> </div> </div> <div class="mdc_2colbox elx5_artbox elx5_artboxvt" data-short="1"> <figure class="elx5_content_imagebox elx5_content_imageboxlt mdc_fig"> <a href="https://www.pgaction.org/resources/handbook-role-women-parliamentarians.html" title="Parliamentary Handbook on the Role of Women Parliamentarians in Preventing the Proliferation of Weapons of Mass Destruction"><img src="https://www.pgaction.org/media/images/resources/handbook-role-women-parliamentarians.png" alt="Parliamentary Handbook on the Role of Women Parliamentarians in Preventing the Proliferation of Weapons of Mass Destruction"></a> </figure> <div class="elx5_artbox_inner"> <h3><a href="https://www.pgaction.org/resources/handbook-role-women-parliamentarians.html" title="Parliamentary Handbook on the Role of Women Parliamentarians in Preventing the Proliferation of Weapons of Mass Destruction">Parliamentary Handbook on the Role of Women Parliamentarians in Preventing the Proliferation of Weapons of Mass Destruction</a></h3> </div> </div> </div> </div> <div class="moduleResources cefm"> <h3>Campaign to End Child, Early and Forced Marriage</h3> <div class="mdc_2colwrap" id="mdc_wrapper12"> <div class="mdc_2colbox elx5_artbox elx5_artboxvt" data-short="1"> <figure class="elx5_content_imagebox elx5_content_imageboxlt mdc_fig"> <a href="https://www.pgaction.org/resources/toolkit-implementing-forced-marriage-as-crime-against-humanity.html" title="The Role of Parliamentarians in Implementing Forced Marriage as a Crime against Humanity in their Domestic Legislation"><img src="https://www.pgaction.org/media/images/resources/2021-role-of-parliamentarians-in-ending-child-marriage.png" alt="The Role of Parliamentarians in Implementing Forced Marriage as a Crime against Humanity in their Domestic Legislation"></a> </figure> <div class="elx5_artbox_inner"> <h3><a href="https://www.pgaction.org/resources/toolkit-implementing-forced-marriage-as-crime-against-humanity.html" title="The Role of Parliamentarians in Implementing Forced Marriage as a Crime against Humanity in their Domestic Legislation">The Role of Parliamentarians in Implementing Forced Marriage as a Crime against Humanity in their Domestic Legislation</a></h3> </div> <div class="elx5_artbox_inner"> <p class="elx5_content_subtitle">[This resource was published jointly by the CEFM and the RS Campaigns.]</p> </div> </div> <div class="mdc_2colbox elx5_artbox elx5_artboxvt" data-short="1"> <figure class="elx5_content_imagebox elx5_content_imageboxlt mdc_fig"> <a href="https://www.pgaction.org/resources/role-of-parliamentarians-in-ending-child-marriage.html" title="Toolkit on "The Role of Parliamentarians in Ending Child Marriage""><img src="https://www.pgaction.org/media/images/resources/2016-role-of-parliamentarians-in-ending-child-marriage.png" alt="Toolkit on "The Role of Parliamentarians in Ending Child Marriage""></a> </figure> <div class="elx5_artbox_inner"> <h3><a href="https://www.pgaction.org/resources/role-of-parliamentarians-in-ending-child-marriage.html" title="Toolkit on "The Role of Parliamentarians in Ending Child Marriage"">Toolkit on "The Role of Parliamentarians in Ending Child Marriage"</a></h3> </div> <div class="elx5_artbox_inner"> <p class="elx5_content_subtitle">Child marriage is rooted in gender inequality and in the low value accorded to girls, and is exacerbated by poverty, insecurity and conflict.</p> </div> </div> </div> </div> <div class="moduleResources climate-action"> <h3>Campaign for a Human Rights-based Approach to Climate Action</h3> <div class="mdc_2colwrap" id="mdc_wrapper3"> <div class="mdc_2colbox elx5_artbox elx5_artboxvt" data-short="1"> <figure class="elx5_content_imagebox elx5_content_imageboxlt mdc_fig"> <a href="https://www.pgaction.org/resources/key-recommendations-mps-environmental-matters.html" title="Key Recommendations on the Role of Parliamentarians for the Protection of Human Rights Defenders in Environmental Matters"><img src="https://www.pgaction.org/media/images/resources/2023-key-recommendations-mps-environmental-matters.png" alt="Key Recommendations on the Role of Parliamentarians for the Protection of Human Rights Defenders in Environmental Matters"></a> </figure> <div class="elx5_artbox_inner"> <h3><a href="https://www.pgaction.org/resources/key-recommendations-mps-environmental-matters.html" title="Key Recommendations on the Role of Parliamentarians for the Protection of Human Rights Defenders in Environmental Matters">Key Recommendations on the Role of Parliamentarians for the Protection of Human Rights Defenders in Environmental Matters</a></h3> </div> <div class="elx5_artbox_inner"> <p class="elx5_content_subtitle">Developed during the Parliamentary Caucus that took place within the framework of the Economic Commission for Latin America and the Caribbean’s (ECLAC) Second Annual Forum on Human Rights Defenders in Environmental Matters in Latin America & the Caribbean</p> </div> </div> <div class="mdc_2colbox elx5_artbox elx5_artboxvt" data-short="1"> <figure class="elx5_content_imagebox elx5_content_imageboxlt mdc_fig"> <a href="https://www.pgaction.org/resources/factsheet-escazu-agreement.html" title="Factsheet for Parliamentarians: The Escazú Agreement, an Environmental and Human Rights Treaty"><img src="https://www.pgaction.org/media/images/resources/2022-factsheet-escazu-agreement.png" alt="Factsheet for Parliamentarians: The Escazú Agreement, an Environmental and Human Rights Treaty"></a> </figure> <div class="elx5_artbox_inner"> <h3><a href="https://www.pgaction.org/resources/factsheet-escazu-agreement.html" title="Factsheet for Parliamentarians: The Escazú Agreement, an Environmental and Human Rights Treaty">Factsheet for Parliamentarians: The Escazú Agreement, an Environmental and Human Rights Treaty</a></h3> </div> <div class="elx5_artbox_inner"> <p class="elx5_content_subtitle">This Factsheet for Parliamentarians introduces the Escazú Agreement, a groundbreaking regional treaty in Latin America and the Caribbean that serves as a key tool to catalyze climate governance and action from a human rights-based approach.</p> </div> </div> </div> </div> <div class="moduleResources drhr"> <h3>Campaign for Democratic Renewal and Human Rights</h3> <div class="mdc_2colwrap" id="mdc_wrapper6"> <div class="mdc_2colbox elx5_artbox elx5_artboxvt" data-short="1"> <figure class="elx5_content_imagebox elx5_content_imageboxlt mdc_fig"> <a href="https://www.pgaction.org/resources/code-of-conduct.html" title="Global Parliamentary Code of Democratic Conduct"><img src="https://www.pgaction.org/media/images/resources/code-of-democratic-conduct.png" alt="Global Parliamentary Code of Democratic Conduct"></a> </figure> <div class="elx5_artbox_inner"> <h3><a href="https://www.pgaction.org/resources/code-of-conduct.html" title="Global Parliamentary Code of Democratic Conduct">Global Parliamentary Code of Democratic Conduct</a></h3> </div> <div class="elx5_artbox_inner"> <p class="elx5_content_subtitle">On 19 March 2021, during its International Council Meeting, Parliamentarians for Global Action launched the Second Pillar of the Democratic Renewal and Human Rights Campaign - the “Global Parliamentary Code of Democratic Conduct”.</p> </div> </div> <div class="mdc_2colbox elx5_artbox elx5_artboxvt" data-short="1"> <figure class="elx5_content_imagebox elx5_content_imageboxlt mdc_fig"> <a href="https://www.pgaction.org/resources/toolbox-for-parliamentary-defense.html" title="The Parliamentary Toolbox for Democracy Defense"><img src="https://www.pgaction.org/media/images/resources/2024-parliamentary-toolbox.png" alt="The Parliamentary Toolbox for Democracy Defense"></a> </figure> <div class="elx5_artbox_inner"> <h3><a href="https://www.pgaction.org/resources/toolbox-for-parliamentary-defense.html" title="The Parliamentary Toolbox for Democracy Defense">The Parliamentary Toolbox for Democracy Defense</a></h3> </div> <div class="elx5_artbox_inner"> <p class="elx5_content_subtitle">Addressing Multidimensional Crises: A Characteristic of Our Time</p> </div> </div> </div> </div> <div class="moduleResources ocean"> <h3>Campaign for the Protection of the Oceans and Implementation of Sustainable Development Goal 14</h3> <div class="mdc_4colwrap" id="mdc_wrapper10"> <div class="mdc_4colbox elx5_artbox elx5_artboxvt" data-short="1"> <figure class="elx5_content_imagebox elx5_content_imageboxlt mdc_fig"> <a href="https://www.pgaction.org/resources/victoria-plan-of-action.html" title="Victoria Plan of Action 2023"><img src="https://www.pgaction.org/components/com_content/plugins/directory/inc/no-image.jpg" alt="Victoria Plan of Action 2023"></a> </figure> <div class="elx5_artbox_inner"> <h3><a href="https://www.pgaction.org/resources/victoria-plan-of-action.html" title="Victoria Plan of Action 2023">Victoria Plan of Action 2023</a></h3> </div> <div class="elx5_artbox_inner"> <p class="elx5_content_subtitle">At the conclusion of the 44th Annual Parliamentary Forum, parliamentarians adopted the Victoria Plan of Action to describe commitments and follow up actions.</p> </div> </div> <div class="mdc_4colbox elx5_artbox elx5_artboxvt" data-short="1"> <figure class="elx5_content_imagebox elx5_content_imageboxlt mdc_fig"> <a href="https://www.pgaction.org/resources/factsheet-sustainably-managed-marine-protected-areas.html" title="Factsheet for Parliamentarians: Sustainably Managed Marine Protected Areas and Climate Change"><img src="https://www.pgaction.org/media/images/resources/factsheet-sustainably-managed-MPAs.png" alt="Factsheet for Parliamentarians: Sustainably Managed Marine Protected Areas and Climate Change"></a> </figure> <div class="elx5_artbox_inner"> <h3><a href="https://www.pgaction.org/resources/factsheet-sustainably-managed-marine-protected-areas.html" title="Factsheet for Parliamentarians: Sustainably Managed Marine Protected Areas and Climate Change">Factsheet for Parliamentarians: Sustainably Managed Marine Protected Areas and Climate Change</a></h3> </div> <div class="elx5_artbox_inner"> <p class="elx5_content_subtitle">Currently, MPAs account for only 7.92 percent of the ocean, though at least 30 percent is needed to build the resilience of ocean life to sufficiently adapt to climate change and buffer it from other threats.</p> </div> </div> <div class="mdc_4colbox elx5_artbox elx5_artboxvt" data-short="1"> <figure class="elx5_content_imagebox elx5_content_imageboxlt mdc_fig"> <a href="https://www.pgaction.org/resources/factsheet-small-scale-fisheries.html" title="Factsheet for Parliamentarians: Small-Scale Fisheries, Sustainable Development, and Food Security"><img src="https://www.pgaction.org/media/images/resources/factsheet-small-scale-fisheries.png" alt="Factsheet for Parliamentarians: Small-Scale Fisheries, Sustainable Development, and Food Security"></a> </figure> <div class="elx5_artbox_inner"> <h3><a href="https://www.pgaction.org/resources/factsheet-small-scale-fisheries.html" title="Factsheet for Parliamentarians: Small-Scale Fisheries, Sustainable Development, and Food Security">Factsheet for Parliamentarians: Small-Scale Fisheries, Sustainable Development, and Food Security</a></h3> </div> <div class="elx5_artbox_inner"> <p class="elx5_content_subtitle">Small-scale fisheries (SFF) account for more than 90 percent of the world's capture fishers and fish workers and supply approximately 50 percent of all global fish catches.</p> </div> </div> <div class="mdc_4colbox elx5_artbox elx5_artboxvt" data-short="1"> <figure class="elx5_content_imagebox elx5_content_imageboxlt mdc_fig"> <a href="https://www.pgaction.org/resources/factsheet-timeline-for-protecting-deep-seabed.html" title="Factsheet for Parliamentarians: Timeline for Protecting the Deep Seabed"><img src="https://www.pgaction.org/media/images/resources/factsheet-timeline-for-protecting-deep-seabed.png" alt="Factsheet for Parliamentarians: Timeline for Protecting the Deep Seabed"></a> </figure> <div class="elx5_artbox_inner"> <h3><a href="https://www.pgaction.org/resources/factsheet-timeline-for-protecting-deep-seabed.html" title="Factsheet for Parliamentarians: Timeline for Protecting the Deep Seabed">Factsheet for Parliamentarians: Timeline for Protecting the Deep Seabed</a></h3> </div> <div class="elx5_artbox_inner"> <p class="elx5_content_subtitle">The International Seabed Authority (ISA) has initiated negotiations to develop regulations for deep seabed mining (DSM) exploitation and is attempting to adopt them by July 2023.</p> </div> </div> <div class="mdc_4colbox elx5_artbox elx5_artboxvt" data-short="1"> <figure class="elx5_content_imagebox elx5_content_imageboxlt mdc_fig"> <a href="https://www.pgaction.org/resources/factsheet-protecting-deep-seabed.html" title="Factsheet for Parliamentarians: Protecting the Deep Seabed"><img src="https://www.pgaction.org/media/images/resources/factsheet-protecting-the-deep-seabed.png" alt="Factsheet for Parliamentarians: Protecting the Deep Seabed"></a> </figure> <div class="elx5_artbox_inner"> <h3><a href="https://www.pgaction.org/resources/factsheet-protecting-deep-seabed.html" title="Factsheet for Parliamentarians: Protecting the Deep Seabed">Factsheet for Parliamentarians: Protecting the Deep Seabed</a></h3> </div> <div class="elx5_artbox_inner"> <p class="elx5_content_subtitle">The scientific community, civil society, fishing industry, and politicians have raised concerns that the risks associated with further damaging the deep-sea outweigh any potential net benefits for humankind.</p> </div> </div> <div class="mdc_4colbox elx5_artbox elx5_artboxvt" data-short="1"> <figure class="elx5_content_imagebox elx5_content_imageboxlt mdc_fig"> <a href="https://www.pgaction.org/resources/factsheet-high-seas-unregulated.html" title="Factsheet for Parliamentarians: The High Seas – Unregulated and Under Attack"><img src="https://www.pgaction.org/media/images/resources/factsheet-high-seas-unregulated.png" alt="Factsheet for Parliamentarians: The High Seas – Unregulated and Under Attack"></a> </figure> <div class="elx5_artbox_inner"> <h3><a href="https://www.pgaction.org/resources/factsheet-high-seas-unregulated.html" title="Factsheet for Parliamentarians: The High Seas – Unregulated and Under Attack">Factsheet for Parliamentarians: The High Seas – Unregulated and Under Attack</a></h3> </div> <div class="elx5_artbox_inner"> <p class="elx5_content_subtitle">Urgent action is needed to improve fisheries management in the open ocean, and to strengthen protection of related ecosystems to prevent devastating impacts on marine biodiversity, socio-economic well-being and food security for millions of people.</p> </div> </div> <div class="mdc_4colbox elx5_artbox elx5_artboxvt" data-short="1"> <figure class="elx5_content_imagebox elx5_content_imageboxlt mdc_fig"> <a href="https://www.pgaction.org/resources/factsheet-three-treaties.html" title="Factsheet for Parliamentarians: Three Treaties to Address Illegal, Unreported, and Unregulated Fishing"><img src="https://www.pgaction.org/media/images/resources/factsheet-three-treaties.png" alt="Factsheet for Parliamentarians: Three Treaties to Address Illegal, Unreported, and Unregulated Fishing"></a> </figure> <div class="elx5_artbox_inner"> <h3><a href="https://www.pgaction.org/resources/factsheet-three-treaties.html" title="Factsheet for Parliamentarians: Three Treaties to Address Illegal, Unreported, and Unregulated Fishing">Factsheet for Parliamentarians: Three Treaties to Address Illegal, Unreported, and Unregulated Fishing</a></h3> </div> <div class="elx5_artbox_inner"> <p class="elx5_content_subtitle">The FAO, ILO, and IMO have collectively recognized the link between safety, labor and IUU issues, and the need to be addressed together in order to be effective.</p> </div> </div> <div class="mdc_4colbox elx5_artbox elx5_artboxvt" data-short="1"> <figure class="elx5_content_imagebox elx5_content_imageboxlt mdc_fig"> <a href="https://www.pgaction.org/resources/eli-law-and-governance-ssf-toolkit.html" title="Law and Governance Toolkit for Sustainable Small-Scale Fisheries: Best Regulatory Practices"><img src="https://www.pgaction.org/media/images/resources/eli-law-and-governance-ssf-toolkit.png" alt="Law and Governance Toolkit for Sustainable Small-Scale Fisheries: Best Regulatory Practices"></a> </figure> <div class="elx5_artbox_inner"> <h3><a href="https://www.pgaction.org/resources/eli-law-and-governance-ssf-toolkit.html" title="Law and Governance Toolkit for Sustainable Small-Scale Fisheries: Best Regulatory Practices">Law and Governance Toolkit for Sustainable Small-Scale Fisheries: Best Regulatory Practices</a></h3> </div> <div class="elx5_artbox_inner"> <p class="elx5_content_subtitle">This Toolkit presents a methodology for assessing the reform needs to strengthen SSF governance, along with examples of model regulatory language for the core governance elements.</p> </div> </div> <div class="mdc_4colbox elx5_artbox elx5_artboxvt" data-short="1"> <figure class="elx5_content_imagebox elx5_content_imageboxlt mdc_fig"> <a href="https://www.pgaction.org/resources/toolkit-ending-iuu-fishing.html" title="Parliamentary Toolkit on Ending IUU Fishing"><img src="https://www.pgaction.org/media/images/resources/2021-toolkit-ending-iuu-fishing.png" alt="Parliamentary Toolkit on Ending IUU Fishing"></a> </figure> <div class="elx5_artbox_inner"> <h3><a href="https://www.pgaction.org/resources/toolkit-ending-iuu-fishing.html" title="Parliamentary Toolkit on Ending IUU Fishing">Parliamentary Toolkit on Ending IUU Fishing</a></h3> </div> <div class="elx5_artbox_inner"> <p class="elx5_content_subtitle">This Parliamentary Toolkit provides insight into IUU fishing, how it relates to human security, and highlights the role parliamentarians can play in protecting the Oceans and supporting the implementation of SDG 14: Life Below Water</p> </div> </div> <div class="mdc_4colbox elx5_artbox elx5_artboxvt" data-short="1"> <figure class="elx5_content_imagebox elx5_content_imageboxlt mdc_fig"> <a href="https://www.pgaction.org/resources/protecting-fishers-during-global-pandemic.html" title="Protecting Fishers During a Global Pandemic"><img src="https://www.pgaction.org/media/images/resources/2021-protecting-fishers-during-global-pandemic.png" alt="Protecting Fishers During a Global Pandemic"></a> </figure> <div class="elx5_artbox_inner"> <h3><a href="https://www.pgaction.org/resources/protecting-fishers-during-global-pandemic.html" title="Protecting Fishers During a Global Pandemic">Protecting Fishers During a Global Pandemic</a></h3> </div> <div class="elx5_artbox_inner"> <p class="elx5_content_subtitle">During the first quarter of 2021, Board Member and Convenor of PGA’s Oceans Campaign Hon. Petra Bayr, MP (Austria), circulated 1-pagers on how to best protect fishers during the COVID-19 global pandemic.</p> </div> </div> <div class="mdc_4colbox elx5_artbox elx5_artboxvt" data-short="1"> <figure class="elx5_content_imagebox elx5_content_imageboxlt mdc_fig"> <a href="https://www.pgaction.org/resources/factsheet-united-nations-high-seas-treaty.html" title="Factsheet for Parliamentarians: United Nations High Seas Treaty: An Historic Agreement to Protect the Ocean"><img src="https://www.pgaction.org/media/images/resources/factsheet-united-nations-high-seas-treaty.png" alt="Factsheet for Parliamentarians: United Nations High Seas Treaty: An Historic Agreement to Protect the Ocean"></a> </figure> <div class="elx5_artbox_inner"> <h3><a href="https://www.pgaction.org/resources/factsheet-united-nations-high-seas-treaty.html" title="Factsheet for Parliamentarians: United Nations High Seas Treaty: An Historic Agreement to Protect the Ocean">Factsheet for Parliamentarians: United Nations High Seas Treaty: An Historic Agreement to Protect the Ocean</a></h3> </div> <div class="elx5_artbox_inner"> <p class="elx5_content_subtitle">The high seas, also referred to as international waters, begin 200 nautical miles from shorelines and belong to all people as the common heritage of humankind.</p> </div> </div> <div class="mdc_4colbox elx5_artbox elx5_artboxvt" data-short="1"> <figure class="elx5_content_imagebox elx5_content_imageboxlt mdc_fig"> <a href="https://www.pgaction.org/resources/implementing-legislation-cta-iceland.html" title="Iceland – Regulation No. 122/2004 on the Safety of Fishing Vessels of 15 Meters in Length Overall and Over, as Amended"><img src="https://www.pgaction.org/media/images/resources/2004-implementing-legislation-cta-iceland.png" alt="Iceland – Regulation No. 122/2004 on the Safety of Fishing Vessels of 15 Meters in Length Overall and Over, as Amended"></a> </figure> <div class="elx5_artbox_inner"> <h3><a href="https://www.pgaction.org/resources/implementing-legislation-cta-iceland.html" title="Iceland – Regulation No. 122/2004 on the Safety of Fishing Vessels of 15 Meters in Length Overall and Over, as Amended">Iceland – Regulation No. 122/2004 on the Safety of Fishing Vessels of 15 Meters in Length Overall and Over, as Amended</a></h3> </div> <div class="elx5_artbox_inner"> <p class="elx5_content_subtitle">Published by The Icelandic Maritime Administration, 2004</p> </div> </div> </div> </div> <div class="moduleResources salw"> <h3>Campaign to Address the Illicit Trade in Small Arms and Light Weapons (SALW) and to Promote Universality and Implementation of the Arms Trade Treaty (ATT)</h3> <div class="mdc_4colwrap" id="mdc_wrapper17"> <div class="mdc_4colbox elx5_artbox elx5_artboxvt" data-short="1"> <figure class="elx5_content_imagebox elx5_content_imageboxlt mdc_fig"> <a href="https://www.pgaction.org/resources/parliamentary-handbook-on-disarmament.html" title="Assuring our Common Future: Parliamentary Handbook on Disarmament"><img src="https://www.pgaction.org/media/images/resources/parliamentary-handbook-on-disarmament.png" alt="Assuring our Common Future: Parliamentary Handbook on Disarmament"></a> </figure> <div class="elx5_artbox_inner"> <h3><a href="https://www.pgaction.org/resources/parliamentary-handbook-on-disarmament.html" title="Assuring our Common Future: Parliamentary Handbook on Disarmament">Assuring our Common Future: Parliamentary Handbook on Disarmament</a></h3> </div> <div class="elx5_artbox_inner"> <p class="elx5_content_subtitle">A guide to parliamentary action in support of disarmament for security and sustainable development.</p> </div> </div> <div class="mdc_4colbox elx5_artbox elx5_artboxvt" data-short="1"> <figure class="elx5_content_imagebox elx5_content_imageboxlt mdc_fig"> <a href="https://www.pgaction.org/resources/parliamentary-handbook-promoting-signature-ratification-and-implementation-of-the-att.html" title="Parliamentary Handbook Promoting Signature, Ratification and Implementation of the ATT"><img src="https://www.pgaction.org/media/images/resources/2013-handbook-arms-trade-treaty.png" alt="Parliamentary Handbook Promoting Signature, Ratification and Implementation of the ATT"></a> </figure> <div class="elx5_artbox_inner"> <h3><a href="https://www.pgaction.org/resources/parliamentary-handbook-promoting-signature-ratification-and-implementation-of-the-att.html" title="Parliamentary Handbook Promoting Signature, Ratification and Implementation of the ATT">Parliamentary Handbook Promoting Signature, Ratification and Implementation of the ATT</a></h3> </div> <div class="elx5_artbox_inner"> <p class="elx5_content_subtitle">Parliamentarians have a unique and fundamental role to play in promoting signature, ratification and implementation of the Arms Trade Treaty (ATT).</p> </div> </div> <div class="mdc_4colbox elx5_artbox elx5_artboxvt" data-short="1"> <figure class="elx5_content_imagebox elx5_content_imageboxlt mdc_fig"> <a href="https://www.pgaction.org/resources/arms-trade-treaty-toolkit.html" title="Parliamentary Toolkit on the Arms Trade Treaty"><img src="https://www.pgaction.org/media/images/resources/2013-arms-trade-treaty-toolkit.png" alt="Parliamentary Toolkit on the Arms Trade Treaty"></a> </figure> <div class="elx5_artbox_inner"> <h3><a href="https://www.pgaction.org/resources/arms-trade-treaty-toolkit.html" title="Parliamentary Toolkit on the Arms Trade Treaty">Parliamentary Toolkit on the Arms Trade Treaty</a></h3> </div> <div class="elx5_artbox_inner"> <p class="elx5_content_subtitle">Promoting Signature, Ratification and Implementation of the ATT</p> </div> </div> </div> </div> <div class="moduleResources sogi incomplete-by-two"> <h3>Campaign against Discrimination based on Sexual Orientation and Gender Identity (SOGI)</h3> <div class="mdc_4colwrap" id="mdc_wrapper9"> <div class="mdc_4colbox elx5_artbox elx5_artboxvt" data-short="1"> <figure class="elx5_content_imagebox elx5_content_imageboxlt mdc_fig"> <a href="https://www.pgaction.org/resources/handbook-advancing-human-rights-inclusion-lgbti-people.html" title="Handbook: Advancing the Human Rights and Inclusion of LGBTI People"><img src="https://www.pgaction.org/media/images/resources/handbook-advancing-human-rights-inclusion-lgbti-people.png" alt="Handbook: Advancing the Human Rights and Inclusion of LGBTI People"></a> </figure> <div class="elx5_artbox_inner"> <h3><a href="https://www.pgaction.org/resources/handbook-advancing-human-rights-inclusion-lgbti-people.html" title="Handbook: Advancing the Human Rights and Inclusion of LGBTI People">Handbook: Advancing the Human Rights and Inclusion of LGBTI People</a></h3> </div> <div class="elx5_artbox_inner"> <p class="elx5_content_subtitle">The challenges facing LGBTI people around the world – and their allies working to promote respect for their human rights and inclusion – remain formidable.</p> </div> </div> <div class="mdc_4colbox elx5_artbox elx5_artboxvt" data-short="1"> <figure class="elx5_content_imagebox elx5_content_imageboxlt mdc_fig"> <a href="https://www.pgaction.org/resources/lgbti-resource-platform.html" title="LGBTI Inclusion Site"><img src="https://www.pgaction.org/media/images/resources/lgbti-resource-platform.png" alt="LGBTI Inclusion Site"></a> </figure> <div class="elx5_artbox_inner"> <h3><a href="https://www.pgaction.org/resources/lgbti-resource-platform.html" title="LGBTI Inclusion Site">LGBTI Inclusion Site</a></h3> </div> <div class="elx5_artbox_inner"> <p class="elx5_content_subtitle">An online resource to better understand the unique role you have as a parliamentarian in ensuring equality and non-discrimination of all individuals regardless of who they are or whom they love.</p> </div> </div> <div class="mdc_4colbox elx5_artbox elx5_artboxvt" data-short="1"> <figure class="elx5_content_imagebox elx5_content_imageboxlt mdc_fig"> <a href="https://www.pgaction.org/resources/booklet-common-myths-about-lgbti-people.html" title="Booklet: Common Myths about LGBTI people and suggestions on how to respond"><img src="https://www.pgaction.org/media/images/resources/myths-v-realities.png" alt="Booklet: Common Myths about LGBTI people and suggestions on how to respond"></a> </figure> <div class="elx5_artbox_inner"> <h3><a href="https://www.pgaction.org/resources/booklet-common-myths-about-lgbti-people.html" title="Booklet: Common Myths about LGBTI people and suggestions on how to respond">Booklet: Common Myths about LGBTI people and suggestions on how to respond</a></h3> </div> <div class="elx5_artbox_inner"> <p class="elx5_content_subtitle">Here are some of the most common myths about LGBTI people and some suggestions on how to respond from a human rights standpoint.</p> </div> </div> <div class="mdc_4colbox elx5_artbox elx5_artboxvt" data-short="1"> <figure class="elx5_content_imagebox elx5_content_imageboxlt mdc_fig"> <img src="https://www.pgaction.org/media/images/resources/lgbti-inclusion-social-media-messages.png" alt="LGBTI Inclusion Social Media Messages"></figure> <div class="elx5_artbox_inner"> <h3>LGBTI Inclusion Social Media Messages</h3> </div> <div class="elx5_artbox_inner"> <p class="elx5_content_subtitle">Suggested messages to post on Twitter and/or Facebook</p> </div> </div> <div class="mdc_4colbox elx5_artbox elx5_artboxvt" data-short="1"> <figure class="elx5_content_imagebox elx5_content_imageboxlt mdc_fig"> <a href="https://www.pgaction.org/resources/lgbti-inclusion-social-media-kit.html" title="LGBTI Inclusion Social Media Graphics"><img src="https://www.pgaction.org/media/images/resources/lgbti-inclusion-social-media-kit.png" alt="LGBTI Inclusion Social Media Graphics"></a> </figure> <div class="elx5_artbox_inner"> <h3><a href="https://www.pgaction.org/resources/lgbti-inclusion-social-media-kit.html" title="LGBTI Inclusion Social Media Graphics">LGBTI Inclusion Social Media Graphics</a></h3> </div> <div class="elx5_artbox_inner"> <p class="elx5_content_subtitle">PGA has produced a new package of user-friendly documents to help parliamentarians and other stakeholders understand some of the key issues affecting LGBTI people and to encourage them to spread a message of inclusion on social media.</p> </div> </div> <div class="mdc_4colbox elx5_artbox elx5_artboxvt" data-short="1"> <figure class="elx5_content_imagebox elx5_content_imageboxlt mdc_fig"> <a href="https://www.pgaction.org/resources/role-parliamentarians-guaranteeing-right-to-gender-identity.html" title="Advocacy Brief: The role of parliamentarians in guaranteeing the right to gender identity"><img src="https://www.pgaction.org/media/images/resources/right-to-gender-identity.png" alt="Advocacy Brief: The role of parliamentarians in guaranteeing the right to gender identity"></a> </figure> <div class="elx5_artbox_inner"> <h3><a href="https://www.pgaction.org/resources/role-parliamentarians-guaranteeing-right-to-gender-identity.html" title="Advocacy Brief: The role of parliamentarians in guaranteeing the right to gender identity">Advocacy Brief: The role of parliamentarians in guaranteeing the right to gender identity</a></h3> </div> <div class="elx5_artbox_inner"> <p class="elx5_content_subtitle">In addition to advancing gender identity laws that establish procedures for the change of name and sex/gender, parliamentarians can promote the right to gender identity in their legislative function.</p> </div> </div> </div> </div> <div class="moduleResources adp incomplete-by-two"> <h3>Campaign for the Abolition of the Death Penalty</h3> <div class="mdc_4colwrap" id="mdc_wrapper4"> <div class="mdc_4colbox elx5_artbox elx5_artboxvt" data-short="1"> <figure class="elx5_content_imagebox elx5_content_imageboxlt mdc_fig"> <a href="https://www.pgaction.org/resources/parliamentarians-and-the-abolition-of-the-death-penalty.html" title="Parliamentary Guidebook on the Abolition of the Death Penalty"><img src="https://www.pgaction.org/media/images/resources/2014-parliamentarians-and-the-abolition-of-the-death-penalty.png" alt="Parliamentary Guidebook on the Abolition of the Death Penalty"></a> </figure> <div class="elx5_artbox_inner"> <h3><a href="https://www.pgaction.org/resources/parliamentarians-and-the-abolition-of-the-death-penalty.html" title="Parliamentary Guidebook on the Abolition of the Death Penalty">Parliamentary Guidebook on the Abolition of the Death Penalty</a></h3> </div> <div class="elx5_artbox_inner"> <p class="elx5_content_subtitle">This resource is for parliamentarians around the globe, currently working or thinking of working for the abolition of the death penalty.</p> </div> </div> <div class="mdc_4colbox elx5_artbox elx5_artboxvt" data-short="1"> <figure class="elx5_content_imagebox elx5_content_imageboxlt mdc_fig"> <a href="https://www.pgaction.org/resources/death-penalty-for-terrorism.html" title="Parliamentary Factsheet on the Death Penalty and Terrorism-Related Offenses"><img src="https://www.pgaction.org/media/images/resources/2016-death-penalty-for-terrorism.png" alt="Parliamentary Factsheet on the Death Penalty and Terrorism-Related Offenses"></a> </figure> <div class="elx5_artbox_inner"> <h3><a href="https://www.pgaction.org/resources/death-penalty-for-terrorism.html" title="Parliamentary Factsheet on the Death Penalty and Terrorism-Related Offenses">Parliamentary Factsheet on the Death Penalty and Terrorism-Related Offenses</a></h3> </div> <div class="elx5_artbox_inner"> <p class="elx5_content_subtitle">Why the Death Penalty for Terrorism-related Offences is Ineffective, Counter-productive and Violates Human Rights</p> </div> </div> <div class="mdc_4colbox elx5_artbox elx5_artboxvt" data-short="1"> <figure class="elx5_content_imagebox elx5_content_imageboxlt mdc_fig"> <a href="https://www.pgaction.org/resources/death-penalty-and-poverty.html" title="Factsheet for Parliamentarians: Death Penalty and Poverty"><img src="https://www.pgaction.org/media/images/resources/2017-death-penalty-and-poverty.png" alt="Factsheet for Parliamentarians: Death Penalty and Poverty"></a> </figure> <div class="elx5_artbox_inner"> <h3><a href="https://www.pgaction.org/resources/death-penalty-and-poverty.html" title="Factsheet for Parliamentarians: Death Penalty and Poverty">Factsheet for Parliamentarians: Death Penalty and Poverty</a></h3> </div> <div class="elx5_artbox_inner"> <p class="elx5_content_subtitle">The disproportionate severity of criminal sanctions towards poverty-stricken individuals is a matter of public debate, which should be tackled by parliamentarians, as elected representatives of the people.</p> </div> </div> <div class="mdc_4colbox elx5_artbox elx5_artboxvt" data-short="1"> <figure class="elx5_content_imagebox elx5_content_imageboxlt mdc_fig"> <a href="https://www.pgaction.org/resources/addressing-gender-dimension-death-penalty.html" title="Addressing the gender dimension of the death penalty: Coaction between Parliamentarians and Civil Society"><img src="https://www.pgaction.org/media/images/resources/2021-addressing-gender-dimension-death-penalty.png" alt="Addressing the gender dimension of the death penalty: Coaction between Parliamentarians and Civil Society"></a> </figure> <div class="elx5_artbox_inner"> <h3><a href="https://www.pgaction.org/resources/addressing-gender-dimension-death-penalty.html" title="Addressing the gender dimension of the death penalty: Coaction between Parliamentarians and Civil Society">Addressing the gender dimension of the death penalty: Coaction between Parliamentarians and Civil Society</a></h3> </div> <div class="elx5_artbox_inner"> <p class="elx5_content_subtitle">Despite the fact that women only represent about 5% of all death row inmates, it is essential to take measures to guarantee that women do not face gender discrimination in the application of the death penalty.</p> </div> </div> <div class="mdc_4colbox elx5_artbox elx5_artboxvt" data-short="1"> <figure class="elx5_content_imagebox elx5_content_imageboxlt mdc_fig"> <a href="https://www.pgaction.org/resources/factsheet-for-parliamentarians-right-to-effective-legal-representation.html" title="Factsheet for Parliamentarians: The Right to Effective Legal Representation"><img src="https://www.pgaction.org/media/images/resources/2020-factsheet-for-parliamentarians-right-to-effective-legal-representation.png" alt="Factsheet for Parliamentarians: The Right to Effective Legal Representation"></a> </figure> <div class="elx5_artbox_inner"> <h3><a href="https://www.pgaction.org/resources/factsheet-for-parliamentarians-right-to-effective-legal-representation.html" title="Factsheet for Parliamentarians: The Right to Effective Legal Representation">Factsheet for Parliamentarians: The Right to Effective Legal Representation</a></h3> </div> </div> <div class="mdc_4colbox elx5_artbox elx5_artboxvt" data-short="1"> <figure class="elx5_content_imagebox elx5_content_imageboxlt mdc_fig"> <a href="https://www.pgaction.org/resources/how-to-work-with-parliamentarians-for-the-abolition-of-the-death-penalty.html" title="How to Work with Parliamentarians for the Abolition of the Death Penalty"><img src="https://www.pgaction.org/media/images/resources/2021-how-to-work-with-parliamentarians-for-the-abolition-of-the-death-penalty.png" alt="How to Work with Parliamentarians for the Abolition of the Death Penalty"></a> </figure> <div class="elx5_artbox_inner"> <h3><a href="https://www.pgaction.org/resources/how-to-work-with-parliamentarians-for-the-abolition-of-the-death-penalty.html" title="How to Work with Parliamentarians for the Abolition of the Death Penalty">How to Work with Parliamentarians for the Abolition of the Death Penalty</a></h3> </div> <div class="elx5_artbox_inner"> <p class="elx5_content_subtitle">While they may make up only part of a larger advocacy strategy, parliamentarians and the abolition of the death penalty go hand in hand.</p> </div> </div> </div> </div> <div class="moduleResources rome-statute"> <h3>Campaign for the Universality and Effectiveness of the System of the Rome Statute of the International Criminal Court (ICC)</h3> <div class="mdc_4colwrap" id="mdc_wrapper11"> <div class="mdc_4colbox elx5_artbox elx5_artboxvt" data-short="1"> <figure class="elx5_content_imagebox elx5_content_imageboxlt mdc_fig"> <a href="https://www.pgaction.org/resources/un-security-council-and-the-icc.html" title="The UN Security Council and the International Criminal Court"><img src="https://www.pgaction.org/media/images/resources/2012-un-security-council-and-the-icc.png" alt="The UN Security Council and the International Criminal Court"></a> </figure> <div class="elx5_artbox_inner"> <h3><a href="https://www.pgaction.org/resources/un-security-council-and-the-icc.html" title="The UN Security Council and the International Criminal Court">The UN Security Council and the International Criminal Court</a></h3> </div> </div> <div class="mdc_4colbox elx5_artbox elx5_artboxvt" data-short="1"> <figure class="elx5_content_imagebox elx5_content_imageboxlt mdc_fig"> <a href="https://www.pgaction.org/resources/cap-icc-x-report.html" title="Report of the Canadian Parliamentary Delegation on its participation at the 10th Consultative Assembly of Parliamentarians on the International Criminal Court and the Rule of Law"><img src="https://www.pgaction.org/media/images/resources/cap-icc-x.png" alt="Report of the Canadian Parliamentary Delegation on its participation at the 10th Consultative Assembly of Parliamentarians on the International Criminal Court and the Rule of Law"></a> </figure> <div class="elx5_artbox_inner"> <h3><a href="https://www.pgaction.org/resources/cap-icc-x-report.html" title="Report of the Canadian Parliamentary Delegation on its participation at the 10th Consultative Assembly of Parliamentarians on the International Criminal Court and the Rule of Law">Report of the Canadian Parliamentary Delegation on its participation at the 10th Consultative Assembly of Parliamentarians on the International Criminal Court and the Rule of Law</a></h3> </div> </div> <div class="mdc_4colbox elx5_artbox elx5_artboxvt" data-short="1"> <figure class="elx5_content_imagebox elx5_content_imageboxlt mdc_fig"> <a href="https://www.pgaction.org/resources/handbook-kampala-amendments.html" title="Handbook: Ratification and Implementation of the Kampala Amendments on the Crime of Aggression to the Rome Statute of the International Criminal Court"><img src="https://www.pgaction.org/media/images/resources/2019-handbook-ratification-and-implementation-kampala-amendments.png" alt="Handbook: Ratification and Implementation of the Kampala Amendments on the Crime of Aggression to the Rome Statute of the International Criminal Court"></a> </figure> <div class="elx5_artbox_inner"> <h3><a href="https://www.pgaction.org/resources/handbook-kampala-amendments.html" title="Handbook: Ratification and Implementation of the Kampala Amendments on the Crime of Aggression to the Rome Statute of the International Criminal Court">Handbook: Ratification and Implementation of the Kampala Amendments on the Crime of Aggression to the Rome Statute of the International Criminal Court</a></h3> </div> </div> <div class="mdc_4colbox elx5_artbox elx5_artboxvt" data-short="1"> <figure class="elx5_content_imagebox elx5_content_imageboxlt mdc_fig"> <a href="https://www.pgaction.org/resources/role-parliamentarians-strengthening-integrity-icc.html" title="Role of Parliamentarians in strengthening the integrity of the International Criminal Court (including the specific focus on the African Union member States)"><img src="https://www.pgaction.org/media/images/resources/2022-role-parliamentarians-strengthening-integrity-international-criminal-court_en.png" alt="Role of Parliamentarians in strengthening the integrity of the International Criminal Court (including the specific focus on the African Union member States)"></a> </figure> <div class="elx5_artbox_inner"> <h3><a href="https://www.pgaction.org/resources/role-parliamentarians-strengthening-integrity-icc.html" title="Role of Parliamentarians in strengthening the integrity of the International Criminal Court (including the specific focus on the African Union member States)">Role of Parliamentarians in strengthening the integrity of the International Criminal Court (including the specific focus on the African Union member States)</a></h3> </div> </div> <div class="mdc_4colbox elx5_artbox elx5_artboxvt" data-short="1"> <figure class="elx5_content_imagebox elx5_content_imageboxlt mdc_fig"> <a href="https://www.pgaction.org/resources/explanatory-note-implementation-rome-statute.html" title="Explanatory note on the significance of effective and full implementation of the Rome Statute of the International Criminal Court"><img src="https://www.pgaction.org/media/images/resources/2022-explanatory-memo-significance-rome-statute.png" alt="Explanatory note on the significance of effective and full implementation of the Rome Statute of the International Criminal Court"></a> </figure> <div class="elx5_artbox_inner"> <h3><a href="https://www.pgaction.org/resources/explanatory-note-implementation-rome-statute.html" title="Explanatory note on the significance of effective and full implementation of the Rome Statute of the International Criminal Court">Explanatory note on the significance of effective and full implementation of the Rome Statute of the International Criminal Court</a></h3> </div> </div> <div class="mdc_4colbox elx5_artbox elx5_artboxvt" data-short="1"> <figure class="elx5_content_imagebox elx5_content_imageboxlt mdc_fig"> <a href="https://www.pgaction.org/resources/modernising-the-international-criminal-court.html" title="Modernising the International Criminal Court: Crimes against the Environment, Trafficking in Human Beings, Hybrid Justice and Corporate Accountability"><img src="https://www.pgaction.org/media/images/resources/2022-report-expanding-the-jurisdiction-of-the-icc.png" alt="Modernising the International Criminal Court: Crimes against the Environment, Trafficking in Human Beings, Hybrid Justice and Corporate Accountability"></a> </figure> <div class="elx5_artbox_inner"> <h3><a href="https://www.pgaction.org/resources/modernising-the-international-criminal-court.html" title="Modernising the International Criminal Court: Crimes against the Environment, Trafficking in Human Beings, Hybrid Justice and Corporate Accountability">Modernising the International Criminal Court: Crimes against the Environment, Trafficking in Human Beings, Hybrid Justice and Corporate Accountability</a></h3> </div> </div> <div class="mdc_4colbox elx5_artbox elx5_artboxvt" data-short="1"> <figure class="elx5_content_imagebox elx5_content_imageboxlt mdc_fig"> <a href="https://www.pgaction.org/resources/handbook-national-nomination-judicial-candidates-icc.html" title="Handbook for Parliamentarians: National Nomination of Judicial Candidates for the International Criminal Court (ICC)"><img src="https://www.pgaction.org/media/images/resources/2023-handbook-national-nomination-judicial-candidates-icc.png" alt="Handbook for Parliamentarians: National Nomination of Judicial Candidates for the International Criminal Court (ICC)"></a> </figure> <div class="elx5_artbox_inner"> <h3><a href="https://www.pgaction.org/resources/handbook-national-nomination-judicial-candidates-icc.html" title="Handbook for Parliamentarians: National Nomination of Judicial Candidates for the International Criminal Court (ICC)">Handbook for Parliamentarians: National Nomination of Judicial Candidates for the International Criminal Court (ICC)</a></h3> </div> </div> <div class="mdc_4colbox elx5_artbox elx5_artboxvt" data-short="1"> <figure class="elx5_content_imagebox elx5_content_imageboxlt mdc_fig"> <a href="https://www.pgaction.org/resources/parliamentary-kit-icc.html" title="Parliamentary Kit on the International Criminal Court"><img src="https://www.pgaction.org/media/images/resources/parliamentary-kit-icc.png" alt="Parliamentary Kit on the International Criminal Court"></a> </figure> <div class="elx5_artbox_inner"> <h3><a href="https://www.pgaction.org/resources/parliamentary-kit-icc.html" title="Parliamentary Kit on the International Criminal Court">Parliamentary Kit on the International Criminal Court</a></h3> </div> <div class="elx5_artbox_inner"> <p class="elx5_content_subtitle">It is imperative that the Rome Statute be ratified universally for the successful functioning of the Court. Parliamentarians should ensure that the ICC is truly universal.</p> </div> </div> </div> </div> <div class="moduleResources miscellaneous"> <h3>Miscellaneous</h3> <div class="mdc_2colwrap" id="mdc_wrapper2"> <div class="mdc_2colbox elx5_artbox elx5_artboxvt" data-short="1"> <figure class="elx5_content_imagebox elx5_content_imageboxlt mdc_fig"> <img src="https://www.pgaction.org/media/images/resources/join-us.png" alt="Join Parliamentarians for Global Action"></figure> <div class="elx5_artbox_inner"> <h3>Join Parliamentarians for Global Action</h3> </div> <div class="elx5_artbox_inner"> <p class="elx5_content_subtitle">PGA Members are current MPs in government and opposition from countries where the parliament has true legitimacy and authority.</p> </div> </div> <div class="mdc_2colbox elx5_artbox elx5_artboxvt" data-short="1"> <figure class="elx5_content_imagebox elx5_content_imageboxlt mdc_fig"> <a href="https://www.pgaction.org/resources/brochure.html" title="About PGA (Brochure)"><img src="https://www.pgaction.org/media/images/resources/media-kit.png" alt="About PGA (Brochure)"></a> </figure> <div class="elx5_artbox_inner"> <h3><a href="https://www.pgaction.org/resources/brochure.html" title="About PGA (Brochure)">About PGA (Brochure)</a></h3> </div> <div class="elx5_artbox_inner"> <p class="elx5_content_subtitle">You can download our brochure for more information about us and about what we do.</p> </div> </div> </div> </div> <div class="moduleResources faws"> <h3>Campaign in Support of the Negotiation of a Treaty Prohibiting Fully Autonomous Weapons (FAWs)</h3> <div class="mdc_2colwrap" id="mdc_wrapper20"> <div class="mdc_2colbox elx5_artbox elx5_artboxvt" data-short="1"> <figure class="elx5_content_imagebox elx5_content_imageboxlt mdc_fig"> <a href="https://www.pgaction.org/resources/time-to-adopt-treaty-prohibition-faws.html" title="The Time to Adopt a Treaty on the Prohibition of Fully Autonomous Weapons is Now"><img src="https://www.pgaction.org/media/images/resources/2020-05-FAWs-Article.png" alt="The Time to Adopt a Treaty on the Prohibition of Fully Autonomous Weapons is Now"></a> </figure> <div class="elx5_artbox_inner"> <h3><a href="https://www.pgaction.org/resources/time-to-adopt-treaty-prohibition-faws.html" title="The Time to Adopt a Treaty on the Prohibition of Fully Autonomous Weapons is Now">The Time to Adopt a Treaty on the Prohibition of Fully Autonomous Weapons is Now</a></h3> </div> </div> </div> </div> <div class="moduleResources extremism"> <h3>Parliamentary Action to Prevent Violent Extremism and Atrocities</h3> <div class="mdc_2colwrap" id="mdc_wrapper19"> <div class="mdc_2colbox elx5_artbox elx5_artboxvt" data-short="1"> <figure class="elx5_content_imagebox elx5_content_imageboxlt mdc_fig"> <a href="https://www.pgaction.org/resources/preventing-violent-extremism-and-mass-atrocities-handbook.html" title="Handbook for Preventing Violent Extremism and Mass Atrocities"><img src="https://www.pgaction.org/media/images/resources/handbook-preventing-violent-extremism.png" alt="Handbook for Preventing Violent Extremism and Mass Atrocities"></a> </figure> <div class="elx5_artbox_inner"> <h3><a href="https://www.pgaction.org/resources/preventing-violent-extremism-and-mass-atrocities-handbook.html" title="Handbook for Preventing Violent Extremism and Mass Atrocities">Handbook for Preventing Violent Extremism and Mass Atrocities</a></h3> </div> <div class="elx5_artbox_inner"> <p class="elx5_content_subtitle">At a time when extremism and mass atrocity crimes appear to be on the rise, national governments, international and regional organizations are struggling to protect populations from grave human rights abuses.</p> </div> </div> </div> </div> <div class="moduleResources annualReports"> <h3>PGA Annual Reports</h3> <div class="mdc_4colwrap" id="mdc_wrapper1"> <div class="mdc_4colbox elx5_artbox elx5_artboxvt" data-short="1"> <figure class="elx5_content_imagebox elx5_content_imageboxlt mdc_fig"> <a href="https://www.pgaction.org/resources/annual-report-2023.html" title="PGA Annual Report 2023"><img src="https://www.pgaction.org/media/images/resources/2023-Annual-Report.png" alt="PGA Annual Report 2023"></a> </figure> <div class="elx5_artbox_inner"> <h3><a href="https://www.pgaction.org/resources/annual-report-2023.html" title="PGA Annual Report 2023">PGA Annual Report 2023</a></h3> </div> <div class="elx5_artbox_inner"> <p class="elx5_content_subtitle">2023 was a difficult year for the causes of democracy, human rights, peace, justice and equality.</p> </div> </div> <div class="mdc_4colbox elx5_artbox elx5_artboxvt" data-short="1"> <figure class="elx5_content_imagebox elx5_content_imageboxlt mdc_fig"> <a href="https://www.pgaction.org/resources/annual-report-2022.html" title="PGA Annual Report 2022"><img src="https://www.pgaction.org/media/images/resources/2022-Annual-Report.png" alt="PGA Annual Report 2022"></a> </figure> <div class="elx5_artbox_inner"> <h3><a href="https://www.pgaction.org/resources/annual-report-2022.html" title="PGA Annual Report 2022">PGA Annual Report 2022</a></h3> </div> <div class="elx5_artbox_inner"> <p class="elx5_content_subtitle">In an increasingly authoritarian global context, PGA’s role as a vital convener among parliamentarians, and between parliamentarians and civil society, has become even more relevant.</p> </div> </div> <div class="mdc_4colbox elx5_artbox elx5_artboxvt" data-short="1"> <figure class="elx5_content_imagebox elx5_content_imageboxlt mdc_fig"> <a href="https://www.pgaction.org/resources/annual-report-2021.html" title="PGA Annual Report 2021"><img src="https://www.pgaction.org/media/images/resources/2021-Annual-Report.png" alt="PGA Annual Report 2021"></a> </figure> <div class="elx5_artbox_inner"> <h3><a href="https://www.pgaction.org/resources/annual-report-2021.html" title="PGA Annual Report 2021">PGA Annual Report 2021</a></h3> </div> <div class="elx5_artbox_inner"> <p class="elx5_content_subtitle">PGA inspires and helps us aspire to be a beacon of hope, protector and defender of human rights, upholding universal values of democracy, freedom, justice, equality and good governance.</p> </div> </div> <div class="mdc_4colbox elx5_artbox elx5_artboxvt" data-short="1"> <figure class="elx5_content_imagebox elx5_content_imageboxlt mdc_fig"> <a href="https://www.pgaction.org/resources/annual-report-2020.html" title="PGA Annual Report 2020"><img src="https://www.pgaction.org/media/images/resources/2020-Annual-Report.png" alt="PGA Annual Report 2020"></a> </figure> <div class="elx5_artbox_inner"> <h3><a href="https://www.pgaction.org/resources/annual-report-2020.html" title="PGA Annual Report 2020">PGA Annual Report 2020</a></h3> </div> <div class="elx5_artbox_inner"> <p class="elx5_content_subtitle">The spirit of collective action that characterizes PGA is more important today than ever.</p> </div> </div> <div class="mdc_4colbox elx5_artbox elx5_artboxvt" data-short="1"> <figure class="elx5_content_imagebox elx5_content_imageboxlt mdc_fig"> <a href="https://www.pgaction.org/resources/annual-report-2019.html" title="PGA Annual Report 2019"><img src="https://www.pgaction.org/media/images/resources/2019-Annual-Report.png" alt="PGA Annual Report 2019"></a> </figure> <div class="elx5_artbox_inner"> <h3><a href="https://www.pgaction.org/resources/annual-report-2019.html" title="PGA Annual Report 2019">PGA Annual Report 2019</a></h3> </div> <div class="elx5_artbox_inner"> <p class="elx5_content_subtitle">The year 2019 marked the beginning of PGA’s new Strategic Plan (2019-2021), “Mobilizing Legislators as Champions for Human Rights, Democracy and Peace.”</p> </div> </div> <div class="mdc_4colbox elx5_artbox elx5_artboxvt" data-short="1"> <figure class="elx5_content_imagebox elx5_content_imageboxlt mdc_fig"> <a href="https://www.pgaction.org/resources/annual-report-2018.html" title="PGA Annual Report 2018"><img src="https://www.pgaction.org/media/images/resources/2018-Annual-Report.png" alt="PGA Annual Report 2018"></a> </figure> <div class="elx5_artbox_inner"> <h3><a href="https://www.pgaction.org/resources/annual-report-2018.html" title="PGA Annual Report 2018">PGA Annual Report 2018</a></h3> </div> <div class="elx5_artbox_inner"> <p class="elx5_content_subtitle">PGA is excited to begin our 2019-2021 strategic plan which builds on our 40 years of experience and incorporates results, innovations and lessons-learned, and includes the introduction of a new Campaign for Democratic Renewal and Human Rights.</p> </div> </div> <div class="mdc_4colbox elx5_artbox elx5_artboxvt" data-short="1"> <figure class="elx5_content_imagebox elx5_content_imageboxlt mdc_fig"> <a href="https://www.pgaction.org/resources/annual-report-2017.html" title="PGA Annual Report 2017"><img src="https://www.pgaction.org/media/images/resources/2017-Annual-Report.png" alt="PGA Annual Report 2017"></a> </figure> <div class="elx5_artbox_inner"> <h3><a href="https://www.pgaction.org/resources/annual-report-2017.html" title="PGA Annual Report 2017">PGA Annual Report 2017</a></h3> </div> <div class="elx5_artbox_inner"> <p class="elx5_content_subtitle">The current decade is being characterized by enormous challenges to human rights in almost all corners of the planet.</p> </div> </div> <div class="mdc_4colbox elx5_artbox elx5_artboxvt" data-short="1"> <figure class="elx5_content_imagebox elx5_content_imageboxlt mdc_fig"> <a href="https://www.pgaction.org/resources/annual-report-2016.html" title="PGA Annual Report 2016"><img src="https://www.pgaction.org/media/images/resources/2016-Annual-Report.png" alt="PGA Annual Report 2016"></a> </figure> <div class="elx5_artbox_inner"> <h3><a href="https://www.pgaction.org/resources/annual-report-2016.html" title="PGA Annual Report 2016">PGA Annual Report 2016</a></h3> </div> <div class="elx5_artbox_inner"> <p class="elx5_content_subtitle">We are delighted to share with you our efforts towards a more equitable, just and peaceful world, with growth and progress in each of our three programmes</p> </div> </div> <div class="mdc_4colbox elx5_artbox elx5_artboxvt" data-short="1"> <figure class="elx5_content_imagebox elx5_content_imageboxlt mdc_fig"> <a href="https://www.pgaction.org/resources/annual-report-2015.html" title="PGA Annual Report 2015"><img src="https://www.pgaction.org/media/images/resources/2015-PGA-Annual-Report.png" alt="PGA Annual Report 2015"></a> </figure> <div class="elx5_artbox_inner"> <h3><a href="https://www.pgaction.org/resources/annual-report-2015.html" title="PGA Annual Report 2015">PGA Annual Report 2015</a></h3> </div> <div class="elx5_artbox_inner"> <p class="elx5_content_subtitle">Throughout 2015, PGA has continued to develop and strengthen its preexisting campaigns, as well as introduce new initiatives that further the vision of PGA.</p> </div> </div> <div class="mdc_4colbox elx5_artbox elx5_artboxvt" data-short="1"> <figure class="elx5_content_imagebox elx5_content_imageboxlt mdc_fig"> <a href="https://www.pgaction.org/resources/annual-report-2005.html" title="PGA Annual Report 2005"><img src="https://www.pgaction.org/media/images/resources/2005-PGA-Annual-Report.png" alt="PGA Annual Report 2005"></a> </figure> <div class="elx5_artbox_inner"> <h3><a href="https://www.pgaction.org/resources/annual-report-2005.html" title="PGA Annual Report 2005">PGA Annual Report 2005</a></h3> </div> <div class="elx5_artbox_inner"> <p class="elx5_content_subtitle">The year 2005 was strategic for PGA as we embarked on new programme initiatives in addition to continuing progress on our ongoing activities.</p> </div> </div> <div class="mdc_4colbox elx5_artbox elx5_artboxvt" data-short="1"> <figure class="elx5_content_imagebox elx5_content_imageboxlt mdc_fig"> <a href="https://www.pgaction.org/resources/annual-report-2004.html" title="PGA Annual Report 2004"><img src="https://www.pgaction.org/media/images/resources/2004-PGA-Annual-Report.png" alt="PGA Annual Report 2004"></a> </figure> <div class="elx5_artbox_inner"> <h3><a href="https://www.pgaction.org/resources/annual-report-2004.html" title="PGA Annual Report 2004">PGA Annual Report 2004</a></h3> </div> <div class="elx5_artbox_inner"> <p class="elx5_content_subtitle">This past year marked the 20th Anniversary of the Six Nation Peace Initiative on nuclear disarmament.</p> </div> </div> <div class="mdc_4colbox elx5_artbox elx5_artboxvt" data-short="1"> <figure class="elx5_content_imagebox elx5_content_imageboxlt mdc_fig"> <a href="https://www.pgaction.org/resources/annual-report-2003.html" title="PGA Annual Report 2003"><img src="https://www.pgaction.org/media/images/resources/2003-PGA-Annual-Report.png" alt="PGA Annual Report 2003"></a> </figure> <div class="elx5_artbox_inner"> <h3><a href="https://www.pgaction.org/resources/annual-report-2003.html" title="PGA Annual Report 2003">PGA Annual Report 2003</a></h3> </div> <div class="elx5_artbox_inner"> <p class="elx5_content_subtitle">Over the past 25 years, PGA established itself as a unique organization driven by individual legislators addressing pressing global issues such as peace, democracy, international law, human rights, nuclear disarmament, sustainable development...</p> </div> </div> <div class="mdc_4colbox elx5_artbox elx5_artboxvt" data-short="1"> <figure class="elx5_content_imagebox elx5_content_imageboxlt mdc_fig"> <a href="https://www.pgaction.org/resources/annual-report-2002.html" title="PGA Annual Report 2002"><img src="https://www.pgaction.org/media/images/resources/2002-PGA-Annual-Report.png" alt="PGA Annual Report 2002"></a> </figure> <div class="elx5_artbox_inner"> <h3><a href="https://www.pgaction.org/resources/annual-report-2002.html" title="PGA Annual Report 2002">PGA Annual Report 2002</a></h3> </div> <div class="elx5_artbox_inner"> <p class="elx5_content_subtitle">2002 has proven to be a year of great achievements for the global community, one of which was the ratification and entry into force of the Rome Statute for the International Criminal Court (ICC).</p> </div> </div> <div class="mdc_4colbox elx5_artbox elx5_artboxvt" data-short="1"> <figure class="elx5_content_imagebox elx5_content_imageboxlt mdc_fig"> <a href="https://www.pgaction.org/resources/annual-report-2001.html" title="PGA Annual Report 2001"><img src="https://www.pgaction.org/media/images/resources/2001-PGA-Annual-Report.png" alt="PGA Annual Report 2001"></a> </figure> <div class="elx5_artbox_inner"> <h3><a href="https://www.pgaction.org/resources/annual-report-2001.html" title="PGA Annual Report 2001">PGA Annual Report 2001</a></h3> </div> <div class="elx5_artbox_inner"> <p class="elx5_content_subtitle">Scarred by the tragedy of September 11th, the year 2001 has become a turning point in the world history.</p> </div> </div> <div class="mdc_4colbox elx5_artbox elx5_artboxvt" data-short="1"> <figure class="elx5_content_imagebox elx5_content_imageboxlt mdc_fig"> <a href="https://www.pgaction.org/resources/annual-report-2000.html" title="PGA Annual Report 2000"><img src="https://www.pgaction.org/media/images/resources/2000-PGA-Annual-Report.png" alt="PGA Annual Report 2000"></a> </figure> <div class="elx5_artbox_inner"> <h3><a href="https://www.pgaction.org/resources/annual-report-2000.html" title="PGA Annual Report 2000">PGA Annual Report 2000</a></h3> </div> <div class="elx5_artbox_inner"> <p class="elx5_content_subtitle">The year 2000 has been quite an exciting time for PGA, which started the new millennium out on the right foot!</p> </div> </div> <div class="mdc_4colbox elx5_artbox elx5_artboxvt" data-short="1"> <figure class="elx5_content_imagebox elx5_content_imageboxlt mdc_fig"> <a href="https://www.pgaction.org/resources/annual-report-1999.html" title="PGA Annual Report 1999"><img src="https://www.pgaction.org/media/images/resources/1999-PGA-Annual-Report.png" alt="PGA Annual Report 1999"></a> </figure> <div class="elx5_artbox_inner"> <h3><a href="https://www.pgaction.org/resources/annual-report-1999.html" title="PGA Annual Report 1999">PGA Annual Report 1999</a></h3> </div> <div class="elx5_artbox_inner"> <p class="elx5_content_subtitle">This year PGA held its 21st Annual Forum entitled 'Eradicating Global Poverty' on September 29-30, which struggled with the heartbreaking and unnecessary issue of poverty.</p> </div> </div> <div class="mdc_4colbox elx5_artbox elx5_artboxvt" data-short="1"> <figure class="elx5_content_imagebox elx5_content_imageboxlt mdc_fig"> <a href="https://www.pgaction.org/resources/annual-report-1998.html" title="PGA Annual Report 1998"><img src="https://www.pgaction.org/media/images/resources/1998-PGA-Annual-Report.png" alt="PGA Annual Report 1998"></a> </figure> <div class="elx5_artbox_inner"> <h3><a href="https://www.pgaction.org/resources/annual-report-1998.html" title="PGA Annual Report 1998">PGA Annual Report 1998</a></h3> </div> <div class="elx5_artbox_inner"> <p class="elx5_content_subtitle">An exciting programme PGA has been involved with throughout its second decade has been the movement to create an International Criminal Court (ICC).</p> </div> </div> <div class="mdc_4colbox elx5_artbox elx5_artboxvt" data-short="1"> <figure class="elx5_content_imagebox elx5_content_imageboxlt mdc_fig"> <a href="https://www.pgaction.org/resources/annual-report-1997.html" title="PGA Annual Report 1997"><img src="https://www.pgaction.org/media/images/resources/1997-PGA-Annual-Report.png" alt="PGA Annual Report 1997"></a> </figure> <div class="elx5_artbox_inner"> <h3><a href="https://www.pgaction.org/resources/annual-report-1997.html" title="PGA Annual Report 1997">PGA Annual Report 1997</a></h3> </div> <div class="elx5_artbox_inner"> <p class="elx5_content_subtitle">1997 proved to be a monumentally successful year for Parliamentarians for Global Action (PGA).</p> </div> </div> <div class="mdc_4colbox elx5_artbox elx5_artboxvt" data-short="1"> <figure class="elx5_content_imagebox elx5_content_imageboxlt mdc_fig"> <a href="https://www.pgaction.org/resources/annual-report-1996.html" title="PGA Annual Report 1996"><img src="https://www.pgaction.org/media/images/resources/1996-PGA-Annual-Report.png" alt="PGA Annual Report 1996"></a> </figure> <div class="elx5_artbox_inner"> <h3><a href="https://www.pgaction.org/resources/annual-report-1996.html" title="PGA Annual Report 1996">PGA Annual Report 1996</a></h3> </div> <div class="elx5_artbox_inner"> <p class="elx5_content_subtitle">As we near the dawn of the 21st century, political and economic decision-making has become more complex and more sophisticated than ever before in history.</p> </div> </div> <div class="mdc_4colbox elx5_artbox elx5_artboxvt" data-short="1"> <figure class="elx5_content_imagebox elx5_content_imageboxlt mdc_fig"> <a href="https://www.pgaction.org/resources/annual-report-1995.html" title="PGA Annual Report 1995"><img src="https://www.pgaction.org/media/images/resources/1995-PGA-Annual-Report.png" alt="PGA Annual Report 1995"></a> </figure> <div class="elx5_artbox_inner"> <h3><a href="https://www.pgaction.org/resources/annual-report-1995.html" title="PGA Annual Report 1995">PGA Annual Report 1995</a></h3> </div> <div class="elx5_artbox_inner"> <p class="elx5_content_subtitle">1995 provided a host of round-number anniversaries. Foremost was the 50th anniversary of the United Nations.</p> </div> </div> <div class="mdc_4colbox elx5_artbox elx5_artboxvt" data-short="1"> <figure class="elx5_content_imagebox elx5_content_imageboxlt mdc_fig"> <a href="https://www.pgaction.org/resources/annual-report-1994.html" title="PGA Annual Report 1994"><img src="https://www.pgaction.org/media/images/resources/1994-PGA-Annual-Report.png" alt="PGA Annual Report 1994"></a> </figure> <div class="elx5_artbox_inner"> <h3><a href="https://www.pgaction.org/resources/annual-report-1994.html" title="PGA Annual Report 1994">PGA Annual Report 1994</a></h3> </div> <div class="elx5_artbox_inner"> <p class="elx5_content_subtitle">1994 was a sobering year - as much for PGA as for the rest of the world. Visions of a new world order had to make way for the stubborn, too often brutal, facts of national politics and individual life.</p> </div> </div> <div class="mdc_4colbox elx5_artbox elx5_artboxvt" data-short="1"> <figure class="elx5_content_imagebox elx5_content_imageboxlt mdc_fig"> <a href="https://www.pgaction.org/resources/annual-report-1993.html" title="PGA Annual Report 1993"><img src="https://www.pgaction.org/media/images/resources/1993-PGA-Annual-Report.png" alt="PGA Annual Report 1993"></a> </figure> <div class="elx5_artbox_inner"> <h3><a href="https://www.pgaction.org/resources/annual-report-1993.html" title="PGA Annual Report 1993">PGA Annual Report 1993</a></h3> </div> <div class="elx5_artbox_inner"> <p class="elx5_content_subtitle">1993: Global Governance for a Planet Under Stress</p> </div> </div> <div class="mdc_4colbox elx5_artbox elx5_artboxvt" data-short="1"> <figure class="elx5_content_imagebox elx5_content_imageboxlt mdc_fig"> <a href="https://www.pgaction.org/resources/annual-report-1992.html" title="PGA Annual Report 1992"><img src="https://www.pgaction.org/media/images/resources/1992-PGA-Annual-Report.png" alt="PGA Annual Report 1992"></a> </figure> <div class="elx5_artbox_inner"> <h3><a href="https://www.pgaction.org/resources/annual-report-1992.html" title="PGA Annual Report 1992">PGA Annual Report 1992</a></h3> </div> <div class="elx5_artbox_inner"> <p class="elx5_content_subtitle">1992 proved to be another year of challenge, uncertainty and change in the political evolution of the world community.</p> </div> </div> <div class="mdc_4colbox elx5_artbox elx5_artboxvt" data-short="1"> <figure class="elx5_content_imagebox elx5_content_imageboxlt mdc_fig"> <a href="https://www.pgaction.org/resources/annual-report-1990.html" title="Rapport annuel de PGA 1990"><img src="https://www.pgaction.org/media/images/resources/1990-PGA-Annual-Report.png" alt="Rapport annuel de PGA 1990"></a> </figure> <div class="elx5_artbox_inner"> <h3><a href="https://www.pgaction.org/resources/annual-report-1990.html" title="Rapport annuel de PGA 1990">Rapport annuel de PGA 1990</a></h3> </div> <div class="elx5_artbox_inner"> <p class="elx5_content_subtitle">As the world entered the 1990's, citizens and leaders everywhere sensed a quickening pace of change, an intuition that events of momentous import were unfolding or about to unfold.</p> </div> </div> </div> </div> <div class="moduleResources archive"> <h3>Archive</h3> <div class="mdc_4colwrap" id="mdc_wrapper21"> <div class="mdc_4colbox elx5_artbox elx5_artboxvt" data-short="1"> <figure class="elx5_content_imagebox elx5_content_imageboxlt mdc_fig"> <a href="https://www.pgaction.org/resources/in-defense-of-human-dignity.html" title="In Defense of Human Dignity: Striking the Balance of Peace and Justice"><img src="https://www.pgaction.org/media/images/resources/1998-10-20th-annual-parliamentary-forum_report.png" alt="In Defense of Human Dignity: Striking the Balance of Peace and Justice"></a> </figure> <div class="elx5_artbox_inner"> <h3><a href="https://www.pgaction.org/resources/in-defense-of-human-dignity.html" title="In Defense of Human Dignity: Striking the Balance of Peace and Justice">In Defense of Human Dignity: Striking the Balance of Peace and Justice</a></h3> </div> <div class="elx5_artbox_inner"> <p class="elx5_content_subtitle">20th Annual Forum of Parliamentarians for Global Action (PGA)</p> </div> </div> <div class="mdc_4colbox elx5_artbox elx5_artboxvt" data-short="1"> <figure class="elx5_content_imagebox elx5_content_imageboxlt mdc_fig"> <a href="https://www.pgaction.org/resources/sustainable-development-and-population-programme-report-1999.html" title="Sustainable Development and Population Program: 1993-1999 Report"><img src="https://www.pgaction.org/media/images/resources/1999-Sustainable-Development-Programme.png" alt="Sustainable Development and Population Program: 1993-1999 Report"></a> </figure> <div class="elx5_artbox_inner"> <h3><a href="https://www.pgaction.org/resources/sustainable-development-and-population-programme-report-1999.html" title="Sustainable Development and Population Program: 1993-1999 Report">Sustainable Development and Population Program: 1993-1999 Report</a></h3> </div> </div> <div class="mdc_4colbox elx5_artbox elx5_artboxvt" data-short="1"> <figure class="elx5_content_imagebox elx5_content_imageboxlt mdc_fig"> <a href="https://www.pgaction.org/resources/bellagio-communique-climate-change.html" title="Bellagio Communiqué on Climate Change (1990)"><img src="https://www.pgaction.org/media/images/resources/1990-Bellagio-Communique-on-Climate-Change.png" alt="Bellagio Communiqué on Climate Change (1990)"></a> </figure> <div class="elx5_artbox_inner"> <h3><a href="https://www.pgaction.org/resources/bellagio-communique-climate-change.html" title="Bellagio Communiqué on Climate Change (1990)">Bellagio Communiqué on Climate Change (1990)</a></h3> </div> <div class="elx5_artbox_inner"> <p class="elx5_content_subtitle">From 31 May to 2 June 1990, members of Parliamentarians for Global Action met in Bellagio, Italy for a workshop entitled Global Warming: North-South and the Planetary Partnership.</p> </div> </div> <div class="mdc_4colbox elx5_artbox elx5_artboxvt" data-short="1"> <figure class="elx5_content_imagebox elx5_content_imageboxlt mdc_fig"> <a href="https://www.pgaction.org/resources/ten-years-of-peacemaking.html" title="Ten Years of Peacemaking: PGA and its Task Force on Peace and Democracy 1991-2001"><img src="https://www.pgaction.org/media/images/resources/2001-Ten-Years-of-Peacemaking.png" alt="Ten Years of Peacemaking: PGA and its Task Force on Peace and Democracy 1991-2001"></a> </figure> <div class="elx5_artbox_inner"> <h3><a href="https://www.pgaction.org/resources/ten-years-of-peacemaking.html" title="Ten Years of Peacemaking: PGA and its Task Force on Peace and Democracy 1991-2001">Ten Years of Peacemaking: PGA and its Task Force on Peace and Democracy 1991-2001</a></h3> </div> <div class="elx5_artbox_inner"> <p class="elx5_content_subtitle">From 1991 to 2001, Parliamentarians for Global Action (PGA) sent teams of its members out on peace-making missions to resolve parliament-based conflicts, especially in countries with emerging democracies. This effort met with significant success.</p> </div> </div> </div> </div> </div> <div class="tpl5_sidecol col-md-4 col-sm-12 col-xs-12"> </div> </div> <div class="clear"></div> <div class="tpl5_pos_bottom"> <div class="module"> <a href="#top"></a> </div> <div class="module"> <script> $('a[href*="#"]:not([href="#"])').click(function() { var offset = -100; if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') && location.hostname == this.hostname) { var target = $(this.hash); target = target.length ? target : $('[name=' + this.hash.slice(1) +']'); if (target.length) { $('html, body').animate({ scrollTop: target.offset().top + offset }, 800); return false; } } }); </script></div> </div> <div class="clear"></div> </div> </div> <footer class="tpl5_footer footer has-black-color-overlay has-dark-texture" id="tpl5_footer"> <div class="container"> <div class="row"> <div class="col-md-4 col-sm-6 hide-992"> <div class="footer-widget about-widget"> <p>PGA, a non-governmental, multi-party, international network of legislators acting in their individual capacity, informs and mobilizes parliamentarians in all regions of the world to advocate for human rights and the Rule of Law, democracy, human security, inclusion, gender equality and justice, including climate justice.</p> </div> </div> <div class="col-md-4 col-sm-6"> <div class="footer-widget contact-widget"> <div class="inner-title"> <h3>PGA Headquarters</h3> </div> <div class="footer-contact-info-carousel"> <div class="item"> <ul class="contact-infos"> <li> <div class="icon-box"> <i class="fas fa-map-marker-alt"> </i><br></div> <div class="text-box"> <p>44 Wall Street, Suite 903<br>New York, NY 10005 USA</p> </div> </li> <li> <div class="icon-box"> <i class="fas fa-at"> </i><br></div> <div class="text-box"> <span><script type="text/javascript"> document.write('<a href="ma'); document.write('ilto:'); document.write('info'); document.write('@'); document.write('pgaction.org" title="e-m'); document.write('ail"'); document.write('>info'); document.write('@'); document.write('pgaction.org</a>'); </script></span> </div> </li> </ul> </div> </div> </div> </div> <div class="col-md-4 col-sm-6"> <div class="footer-widget contact-widget"> <div class="inner-title"> <h3>PGA Foundation</h3> </div> <div class="footer-contact-info-carousel"> <div class="item"> <ul class="contact-infos"> <li> <div class="icon-box"> <i class="fas fa-map-marker-alt"> </i><br></div> <div class="text-box"> <p>Spaarneplein 2, 2515 VK<br> The Hague, Netherlands</p> </div> </li> </ul> </div> </div> </div> </div> </div> </div> <p><a href="#GreenSealPopup" onclick="window.open('//seal.greenwebseal.com/verify.php?domain=pgaction.org','GreenSeal Verification','titlebar=0,toolbar=0,scrollbars=yes,resizable=no,width=530,height=575')"><img src="//seal.greenwebseal.com/seal.php?domain=pgaction.org" alt="This website is eco-friendly, powered by renewable energy" style="margin:0 auto;"></a></p> <ul class="elx_menu" data-level="0"> <li data-level0="nosubs"> <a href="https://www.pgaction.org/terms-and-conditions.html" title="Terms and conditions of using the site">Terms and conditions of using the site</a> </li> <li data-level0="nosubs"> <a href="https://www.pgaction.org/privacy-policy.html" title="Privacy Policy and Cookies">Privacy Policy and Cookies</a> </li> </ul> <div class="clear"></div> <div class="tpl5_footer_copyicons"><div class="tpl5_footer_copy">© 2025 Parliamentarians for Global Action | Website by Ethical Sector</div> <div class="tpl5_footer_icons"><a href="https://www.pgaction.org/about/contact.html" title="Contact"><i class="fas fa-envelope"></i></a><a href="https://bsky.app/profile/pga-champions.bsky.social" title="Bluesky" target="_blank"><i class="fab fa-bluesky"></i></a><a href="https://www.facebook.com/pgaction" title="Facebook" target="_blank"><i class="fab fa-facebook-f"></i></a><a href="https://www.flickr.com/photos/pgaction" title="Flickr" target="_blank"><i class="fab fa-flickr"></i></a><a href="https://www.instagram.com/parliamentarians.champions/" title="Instagram" target="_blank"><i class="fab fa-instagram"></i></a><a href="https://www.linkedin.com/company/708223/" title="Linkedin" target="_blank"><i class="fab fa-linkedin-in"></i></a><a href="https://www.x.com/pgaction" title="Twitter" target="_blank"><i class="fab fa-x-twitter"></i></a><a href="https://www.youtube.com/@PGA" title="Youtube" target="_blank"><i class="fab fa-youtube"></i></a><a href="https://www.pgaction.org/feeds.html" title="RSS"><i class="fas fa-rss"></i></a><a href="https://www.pgaction.org/sitemap/" title="Sitemap"><i class="fas fa-sitemap"></i></a></div> </div> </footer> <script type="text/javascript"> var Related = document.getElementById('related'); if (document.querySelectorAll('meta[content*="abolition of the death penalty"]').length > 0) { Related.innerHTML = '<p id="related-programme-ilhr">Related Campaign: <strong><i class="fas fa-book-dead"></i> <a href="https://www.pgaction.org/ilhr/adp/">Campaign for the Abolition of the Death Penalty</a></strong></p>'; } else if (document.querySelectorAll('meta[content*="campaña para la abolición de la pena de muerte"]').length > 0) { Related.innerHTML = '<p id="related-programme-ilhr">Campaña relacionada: <strong><i class="fas fa-book-dead"></i> <a href="https://www.pgaction.org/es/ilhr/adp/">Campaña Para La Abolición De La Pena De Muerte</a></strong></p>'; } else if (document.querySelectorAll('meta[content*="campagne pour l’abolition de la peine de mort"]').length > 0) { Related.innerHTML = '<p id="related-programme-ilhr">Campagne connexe : <strong><i class="fas fa-book-dead"></i> <a href="https://www.pgaction.org/fr/ilhr/adp/">Campagne pour l’abolition de la peine de mort (APM)</a></strong></p>'; } else if (document.querySelectorAll('meta[content*="biological security and health"]').length > 0) { Related.innerHTML = '<p id="related-programme-ips">Related Campaign: <strong><i class="fas fa-biohazard"></i> <a href="https://www.pgaction.org/ips/bsh/">Biological Security and Health Campaign</a></strong></p>'; } else if (document.querySelectorAll('meta[content*="la bioseguridad y la salud"]').length > 0) { Related.innerHTML = '<p id="related-programme-ips">Campaña relacionada: <strong><i class="fas fa-biohazard"></i> <a href="https://www.pgaction.org/es/ips/bsh/">Campaña para la Bioseguridad y la Salud</a></strong></p>'; } else if (document.querySelectorAll('meta[content*="la biosécurité et la santé"]').length > 0) { Related.innerHTML = '<p id="related-programme-ips">Campagne connexe : <strong><i class="fas fa-biohazard"></i> <a href="https://www.pgaction.org/fr/ips/bsh/">Campagne sur la Biosécurité et la Santé</a></strong></p>'; } else if (document.querySelectorAll('meta[content*="child early forced marriage"]').length > 0) { Related.innerHTML = '<p id="related-programme-dgi">Related Campaign: <strong><i class="fas fa-female"></i> <a href="https://www.pgaction.org/dgi/cefm/">Campaign to End Child, Early and Forced Marriage (CEFM)</a></strong></p>'; } else if (document.querySelectorAll('meta[content*="matrimonio infantil precoz y forzado"]').length > 0) { Related.innerHTML = '<p id="related-programme-dgi">Campaña relacionada: <strong><i class="fas fa-female"></i> <a href="https://www.pgaction.org/es/dgi/cefm/">Campaña para acabar con el matrimonio infantil, precoz y forzado (CEFM)</a></strong></p>'; } else if (document.querySelectorAll('meta[content*="mariage précoce et forcé"]').length > 0) { Related.innerHTML = '<p id="related-programme-dgi">Campagne connexe : <strong><i class="fas fa-female"></i> <a href="https://www.pgaction.org/fr/dgi/cefm/">Campagne pour mettre fin au mariage précoce et forcé des enfants (CEFM)</a></strong></p>'; } else if (document.querySelectorAll('meta[content*="climate action"]').length > 0) { Related.innerHTML = '<p id="related-programme-gei">Related Campaign: <strong><i class="fas fa-earth-americas"></i> <a href="https://www.pgaction.org/hre/climate-action/">Mobilizing Parliamentarians on Climate Action</a></strong></p>'; } else if (document.querySelectorAll('meta[content*="acción por el cambio clímático"]').length > 0) { Related.innerHTML = '<p id="related-programme-gei">Campaña relacionada: <strong><i class="fas fa-earth-americas"></i> <a href="https://www.pgaction.org/es/hre/climate-action/">Movilizar a los parlamentarios por el clima</a></strong></p>'; } else if (document.querySelectorAll('meta[content*="action pour le climat"]').length > 0) { Related.innerHTML = '<p id="related-programme-gei">Campagne connexe : <strong><i class="fas fa-earth-americas"></i> <a href="https://www.pgaction.org/fr/hre/climate-action/">Mobiliser les parlementaires pour le climat</a></strong></p>'; } else if (document.querySelectorAll('meta[content*="ciberseguridad"]').length > 0) { Related.innerHTML = '<p id="related-programme-ips">Campaña relacionada: <strong><i class="fas fa-shield-alt"></i> <a href="https://www.pgaction.org/es/ips/cybersecurity.html">Campaña Mundial Contra Crímenes Cibernéticos</a></strong></p>'; } else if (document.querySelectorAll('meta[content*="cybersécurité"]').length > 0) { Related.innerHTML = '<p id="related-programme-ips">Campagne connexe : <strong><i class="fas fa-shield-alt"></i> <a href="https://www.pgaction.org/fr/ips/cybersecurity.html">Campagne Globale Contre La Cybercriminalité</a></strong></p>'; } else if (document.querySelectorAll('meta[content*="cybersecurity"]').length > 0) { Related.innerHTML = '<p id="related-programme-ips">Related Campaign: <strong><i class="fas fa-shield-alt"></i> <a href="https://www.pgaction.org/ips/cybersecurity.html">Global Cybercrime Campaign</a></strong></p>'; } else if (document.querySelectorAll('meta[content*="parliamentary toolbox for democracy defense"]').length > 0) { Related.innerHTML = '<p id="related-programme-dgi">This page is part of the <strong><i class="fas fa-toolbox"></i> <a href="https://www.pgaction.org/dgi/drhr/parliamentary-toolbox-for-democracy-defense/">Parliamentary Toolbox for Democracy Defense</a></strong></p>'; } else if (document.querySelectorAll('meta[content*="manual parlamentario para la defensa de la democracia"]').length > 0) { Related.innerHTML = '<p id="related-programme-dgi">Esta página es parte del <strong><i class="fas fa-toolbox"></i> <a href="https://www.pgaction.org/es/dgi/drhr/parliamentary-toolbox-for-democracy-defense/">Manual Parlamentario para la Defensa de la Democracia</a></strong></p>'; } else if (document.querySelectorAll('meta[content*="la boîte à outils parlementaire pour la défense de la démocratie"]').length > 0) { Related.innerHTML = '<p id="related-programme-dgi">Cette page fait partie de la <strong><i class="fas fa-toolbox"></i> <a href="https://www.pgaction.org/fr/dgi/drhr/parliamentary-toolbox-for-democracy-defense/">boîte à outils parlementaire pour la défense de la démocratie</a></strong></p>'; } else if (document.querySelectorAll('meta[content*="democratic renewal and human rights"]').length > 0) { Related.innerHTML = '<p id="related-campaign-drhr">Related Campaign: <strong><i class="fas fa-seedling"></i> <a href="https://www.pgaction.org/dgi/drhr/">Campaign for Democratic Renewal and Human Rights</a></strong></p>'; } else if (document.querySelectorAll('meta[content*="la renovación democrática y los derechos humanos"]').length > 0) { Related.innerHTML = '<p id="related-campaign-drhr">Campaña relacionada: <strong><i class="fas fa-seedling"></i> <a href="https://www.pgaction.org/es/dgi/drhr/">Campaña para la Renovación Democrática y los Derechos Humanos</a></strong></p>'; } else if (document.querySelectorAll('meta[content*="le renouveau démocratique et les droits humains"]').length > 0) { Related.innerHTML = '<p id="related-campaign-drhr">Campagne connexe : <strong><i class="fas fa-seedling"></i> <a href="https://www.pgaction.org/fr/dgi/drhr/">Campagne pour le renouveau démocratique et les droits humains</a></strong></p>'; } else if (document.querySelectorAll('meta[content*="nuclear and radiological security"]').length > 0) { Related.innerHTML = '<p id="related-programme-ips">Related Campaign: <strong><i class="fas fa-radiation-alt"></i> <a href="https://www.pgaction.org/ips/nrs/">Campaign to Promote Nuclear and Radiological Security</a></strong></p>'; } else if (document.querySelectorAll('meta[content*="seguridad nuclear y radiológica"]').length > 0) { Related.innerHTML = '<p id="related-programme-ips">Campaña relacionada: <strong><i class="fas fa-radiation-alt"></i> <a href="https://www.pgaction.org/es/ips/nrs/">Campaña de Seguridad Nuclear y Radiológica</a></strong></p>'; } else if (document.querySelectorAll('meta[content*="sécurité nucléaire et radiologique"]').length > 0) { Related.innerHTML = '<p id="related-programme-ips">Campagne connexe : <strong><i class="fas fa-radiation-alt"></i> <a href="https://www.pgaction.org/fr/ips/nrs/">Campagne de promotion de la sécurité nucléaire et radiologique</a></strong></p>'; } else if (document.querySelectorAll('meta[content*="prohibiting fully autonomous weapons"]').length > 0) { Related.innerHTML = '<p id="related-programme-ips">Related Campaign: <strong><i class="fas fa-fighter-jet"></i> <a href="https://www.pgaction.org/ips/faw/">Prohibiting Fully Autonomous Weapons</a></strong></p>'; } else if (document.querySelectorAll('meta[content*="la prohibición de las armas totalmente autónomas"]').length > 0) { Related.innerHTML = '<p id="related-programme-ips">Campaña relacionada: <strong><i class="fas fa-fighter-jet"></i> <a href="https://www.pgaction.org/es/ips/faw/">La Prohibición de las Armas Totalmente Autónomas</a></strong></p>'; } else if (document.querySelectorAll('meta[content*="interdiction des armes entièrement autonomes"]').length > 0) { Related.innerHTML = '<p id="related-programme-ips">Campagne connexe : <strong><i class="fas fa-fighter-jet"></i> <a href="https://www.pgaction.org/fr/ips/faw/">L\'Interdiction des Armes entièrement Autonomes</a></strong></p>'; } else if (document.querySelectorAll('meta[content*="protection of the oceans"]').length > 0) { Related.innerHTML = '<p id="related-programme-gei">Related Campaign: <strong><i class="fas fa-water"></i> <a href="https://www.pgaction.org/hre/oceans/">Campaign for the Protection of the Oceans and Implementation of Sustainable Development Goal 14</a></strong></p>'; } else if (document.querySelectorAll('meta[content*="la protección de los océanos"]').length > 0) { Related.innerHTML = '<p id="related-programme-gei">Campaña relacionada: <strong><i class="fas fa-water"></i> <a href="https://www.pgaction.org/es/hre/oceans/">Campaña para la Protección de los Océanos e Implementación del Objetivo de Desarrollo Sostenible 14</a></strong></p>'; } else if (document.querySelectorAll('meta[content*="la protection des océans"]').length > 0) { Related.innerHTML = '<p id="related-programme-gei">Campagne connexe : <strong><i class="fas fa-water"></i> <a href="https://www.pgaction.org/fr/hre/oceans/">Campagne sur la protection des océans et la mise en œuvre de l\'ODD 14</a></strong></p>'; } else if (document.querySelectorAll('meta[content*="rome statute"]').length > 0) { Related.innerHTML = '<p id="related-programme-ilhr">Related Campaign: <strong><i class="fas fa-balance-scale"></i> <a href="https://www.pgaction.org/ilhr/rome-statute/">Campaign for the Rome Statute of the ICC</a></strong></p>'; } else if (document.querySelectorAll('meta[content*="status of the rs system"]').length > 0) { Related.innerHTML = '<p id="related-programme-ilhr">Related Campaign: <strong><i class="fas fa-balance-scale"></i> <a href="https://www.pgaction.org/ilhr/rome-statute/">Campaign for the Rome Statute of the ICC</a></strong></p>'; } else if (document.querySelectorAll('meta[content*="estatuto de roma"]').length > 0) { Related.innerHTML = '<p id="related-programme-ilhr">Campaña relacionada: <strong><i class="fas fa-balance-scale"></i> <a href="https://www.pgaction.org/es/ilhr/rome-statute/">Campaña para el Estatuto de Roma de la CPI</a></strong></p>'; } else if (document.querySelectorAll('meta[content*="situación del sistema del ER"]').length > 0) { Related.innerHTML = '<p id="related-programme-ilhr">Campaña relacionada: <strong><i class="fas fa-balance-scale"></i> <a href="https://www.pgaction.org/es/ilhr/rome-statute/">Campaña para el Estatuto de Roma de la CPI</a></strong></p>'; } else if (document.querySelectorAll('meta[content*="statut de rome"]').length > 0) { Related.innerHTML = '<p id="related-programme-ilhr">Campagne connexe : <strong><i class="fas fa-balance-scale"></i> <a href="https://www.pgaction.org/fr/ilhr/rome-statute/">Campagne sur le Statut de Rome de la CPI</a></strong></p>'; } else if (document.querySelectorAll('meta[content*="état du système du sr"]').length > 0) { Related.innerHTML = '<p id="related-programme-ilhr">Campagne connexe : <strong><i class="fas fa-balance-scale"></i> <a href="https://www.pgaction.org/fr/ilhr/rome-statute/">Campagne sur le Statut de Rome de la CPI</a></strong></p>'; } else if (document.querySelectorAll('meta[content*="sexual orientation and gender identity"]').length > 0) { Related.innerHTML = '<p id="related-programme-dgi">Related Campaign: <strong><i class="fas fa-transgender-alt"></i> <a href="https://www.pgaction.org/dgi/sogi/">Campaign Against Discrimination based on Sexual Orientation and Gender Identity (SOGI)</a></strong></p>'; } else if (document.querySelectorAll('meta[content*="orientación sexual y la identidad de género"]').length > 0) { Related.innerHTML = '<p id="related-programme-dgi">Campaña relacionada: <strong><i class="fas fa-transgender-alt"></i> <a href="https://www.pgaction.org/es/dgi/sogi/">Campaña contra la discriminación basada en la orientación sexual y la identidad de género (SOGI)</a></strong></p>'; } else if (document.querySelectorAll('meta[content*="orientation sexuelle et identité de genre"]').length > 0) { Related.innerHTML = '<p id="related-programme-dgi">Campagne connexe : <strong><i class="fas fa-transgender-alt"></i> <a href="https://www.pgaction.org/fr/dgi/sogi/">Campagne contre la discrimination fondée sur l\'orientation sexuelle et l\'identité de genre (SOGI)</a></strong></p>'; } else if (document.querySelectorAll('meta[content*="salw and att campaign"]').length > 0) { Related.innerHTML = '<p id="related-programme-ips">Related Campaign: <strong><i class="fas fa-ban"></i> <a href="https://www.pgaction.org/ips/illicit-salw/">Campaign to Address the Illicit Trade in Small Arms and Light Weapons (SALW) and to Promote the Arms Trade Treaty (ATT)</a></strong></p>'; } else if (document.querySelectorAll('meta[content*="campaña apal y tca"]').length > 0) { Related.innerHTML = '<p id="related-programme-ips">Campaña relacionada: <strong><i class="fas fa-ban"></i> <a href="https://www.pgaction.org/es/ips/illicit-salw/">Campaña para abordar el tráfico ilícito de armas pequeñas y ligeras (APAL) y promover el Tratado de Comercio de Armas (TCA)</a></strong></p>'; } else if (document.querySelectorAll('meta[content*="campagne alpc et tca"]').length > 0) { Related.innerHTML = '<p id="related-programme-ips">Campagne connexe : <strong><i class="fas fa-ban"></i> <a href="https://www.pgaction.org/fr/ips/illicit-salw/">Campagne pour lutter contre le commerce illicite des armes légères et de petit calibre (ALPC) et promouvoir le Traité sur le commerce des armes (TCA)</a></strong></p>'; } else if (document.querySelectorAll('meta[content*="archived campaign"]').length > 0) { Related.innerHTML = '<p id="related-archived"><strong>This campaign has been archived.</strong></p>'; } else if (document.querySelectorAll('meta[content*="international law and human rights"]').length > 0) { Related.innerHTML = '<p id="related-programme-ilhr">Related Program: <strong><i class="fas fa-gavel"></i> <a href="https://www.pgaction.org/ilhr/">International Law and Human Rights</a></strong></p>'; } else if (document.querySelectorAll('meta[content*="derecho internacional y derechos humanos"]').length > 0) { Related.innerHTML = '<p id="related-programme-ilhr">Programa relacionado: <strong><i class="fas fa-gavel"></i> <a href="https://www.pgaction.org/es/ilhr/">Derecho Internacional y Derechos Humanos</a></strong></p>'; } else if (document.querySelectorAll('meta[content*="droit international et droits humains"]').length > 0) { Related.innerHTML = '<p id="related-programme-ilhr">Programa connexe : <strong><i class="fas fa-gavel"></i> <a href="https://www.pgaction.org/fr/ilhr/">Droit International et Droits Humains</a></strong></p>'; } else if (document.querySelectorAll('meta[content*="democracy gender and inclusion"]').length > 0) { Related.innerHTML = '<p id="related-programme-dgi">Related Program: <strong><i class="fas fa-handshake"></i> <a href="https://www.pgaction.org/dgi/">Democracy, Gender, and Inclusion</a></strong></p>'; } else if (document.querySelectorAll('meta[content*="democracia género e inclusión"]').length > 0) { Related.innerHTML = '<p id="related-programme-dgi">Programa relacionado: <strong><i class="fas fa-handshake"></i> <a href="https://www.pgaction.org/es/dgi/">Democracia, Género e Inclusión</a></strong></p>'; } else if (document.querySelectorAll('meta[content*="démocratie genre et inclusion"]').length > 0) { Related.innerHTML = '<p id="related-programme-dgi">Programa connexe : <strong><i class="fas fa-handshake"></i> <a href="https://www.pgaction.org/fr/dgi/">Démocratie, Genre et Inclusion</a></strong></p>'; } else if (document.querySelectorAll('meta[content*="gender equality and inclusion"]').length > 0) { Related.innerHTML = '<p id="related-programme-dgi">Related Program: <strong><i class="fas fa-handshake"></i> <a href="https://www.pgaction.org/dgi/">Democracy, Gender, and Inclusion</a></strong></p>'; } else if (document.querySelectorAll('meta[content*="género igualdad e inclusión"]').length > 0) { Related.innerHTML = '<p id="related-programme-dgi">Programa relacionado: <strong><i class="fas fa-handshake"></i> <a href="https://www.pgaction.org/es/dgi/">Democracia, Género e Inclusión</a></strong></p>'; } else if (document.querySelectorAll('meta[content*="genre egalité et inclusion"]').length > 0) { Related.innerHTML = '<p id="related-programme-dgi">Programa connexe : <strong><i class="fas fa-handshake"></i> <a href="https://www.pgaction.org/fr/dgi/">Démocratie, Genre et Inclusion</a></strong></p>'; } else if (document.querySelectorAll('meta[content*="international peace and security"]').length > 0) { Related.innerHTML = '<p id="related-programme-ips">Related Program: <strong><i class="fas fa-dove"></i> <a href="https://www.pgaction.org/ips/">International Peace and Security</a></strong></p>'; } else if (document.querySelectorAll('meta[content*="paz y seguridad internacionales"]').length > 0) { Related.innerHTML = '<p id="related-programme-ips">Programa relacionado: <strong><i class="fas fa-dove"></i> <a href="https://www.pgaction.org/es/ips/">Paz y Seguridad Internacionales</a></strong></p>'; } else if (document.querySelectorAll('meta[content*="paix et sécurité internationales"]').length > 0) { Related.innerHTML = '<p id="related-programme-ips">Programa connexe : <strong><i class="fas fa-dove"></i> <a href="https://www.pgaction.org/fr/ips/">Paix et Sécurité Internationales</a></strong></p>'; } </script> <script type="text/javascript"> if (document.querySelectorAll('meta[content*="democracy gender and inclusion"]').length > 0) { document.getElementsByClassName('bg-pga-article')[0].classList.add("dgi"); } else if (document.querySelectorAll('meta[content*="democracia género e inclusión"]').length > 0) { document.getElementsByClassName('bg-pga-article')[0].classList.add("dgi"); } else if (document.querySelectorAll('meta[content*="démocratie genre et inclusion"]').length > 0) { document.getElementsByClassName('bg-pga-article')[0].classList.add("dgi"); } if (document.querySelectorAll('meta[content*="human rights and environment"]').length > 0) { document.getElementsByClassName('bg-pga-article')[0].classList.add("hre"); } else if (document.querySelectorAll('meta[content*="derechos humanos y medioambiente"]').length > 0) { document.getElementsByClassName('bg-pga-article')[0].classList.add("hre"); } else if (document.querySelectorAll('meta[content*="droits humains et environnement"]').length > 0) { document.getElementsByClassName('bg-pga-article')[0].classList.add("hre"); } else if (document.querySelectorAll('meta[content*="international law and human rights"]').length > 0) { document.getElementsByClassName('bg-pga-article')[0].classList.add("ilhr"); } else if (document.querySelectorAll('meta[content*="derecho internacional y derechos humanos"]').length > 0) { document.getElementsByClassName('bg-pga-article')[0].classList.add("ilhr"); } else if (document.querySelectorAll('meta[content*="droit international et droits humains"]').length > 0) { document.getElementsByClassName('bg-pga-article')[0].classList.add("ilhr"); } else if (document.querySelectorAll('meta[content*="gender equality and inclusion"]').length > 0) { document.getElementsByClassName('bg-pga-article')[0].classList.add("gei"); } else if (document.querySelectorAll('meta[content*="género igualdad e inclusión"]').length > 0) { document.getElementsByClassName('bg-pga-article')[0].classList.add("gei"); } else if (document.querySelectorAll('meta[content*="genre egalité et inclusion"]').length > 0) { document.getElementsByClassName('bg-pga-article')[0].classList.add("gei"); } else if (document.querySelectorAll('meta[content*="international peace and security"]').length > 0) { document.getElementsByClassName('bg-pga-article')[0].classList.add("ips"); } else if (document.querySelectorAll('meta[content*="paz y seguridad internacionales"]').length > 0) { document.getElementsByClassName('bg-pga-article')[0].classList.add("ips"); } else if (document.querySelectorAll('meta[content*="paix et sécurité internationales"]').length > 0) { document.getElementsByClassName('bg-pga-article')[0].classList.add("ips"); } else if (document.querySelectorAll('meta[content*="democratic renewal and human rights"]').length > 0) { document.getElementsByClassName('bg-pga-article')[0].classList.add("drhr"); } else if (document.querySelectorAll('meta[content*="la renovación democrática y los derechos humanos"]').length > 0) { document.getElementsByClassName('bg-pga-article')[0].classList.add("drhr"); } else if (document.querySelectorAll('meta[content*="le renouveau démocratique et les droits humains"]').length > 0) { document.getElementsByClassName('bg-pga-article')[0].classList.add("drhr"); } </script> <script type="text/javascript"> if ( $('#related:empty').length ) { document.getElementsByClassName('elx_article_page')[0].style.marginTop = "-372px"; document.getElementsByClassName('tpl5_maincol')[0].style.paddingTop = "372px"; document.getElementsByClassName('elx5_article_header')[0].style.paddingBottom = "20px"; } </script> <script type="text/javascript"> if($('.elx_dateauthor').length === 0) { document.getElementsByClassName('elx5_content_icons')[0].style.bottom = "20px"; } </script> <script type="text/javascript"> if($('.tpl5_sidecol').length === 0){ document.getElementById('article').style.width = "100%"; document.getElementsByClassName('elx_article_page')[0].style.marginTop = "0"; } if ($('.tpl5_sidecol').children().length == 0){ document.getElementsByClassName('tpl5_sidecol')[0].style.display = "none"; } </script> <script src="https://www.pgaction.org/templates/champions/assets/wow.js"></script> <script src="https://www.pgaction.org/templates/champions/assets/bootstrap-select.min.js"></script> <script src="https://www.pgaction.org/templates/champions/assets/bootstrap-touch-spin/jquery.bootstrap-touchspin.js"></script> <script src="https://www.pgaction.org/templates/champions/assets/jquery-appear/jquery.appear.js"></script> <script src="https://www.pgaction.org/templates/champions/includes/custom.js"></script> <script>jQuery(document).ready(function($) { $('img[title]').each(function() { $(this).removeAttr('title'); }); });</script> <script> function init() { var vidDefer = document.getElementsByTagName('iframe'); for (var i=0; i<vidDefer.length; i++) { if(vidDefer[i].getAttribute('data-src')) { vidDefer[i].setAttribute('src',vidDefer[i].getAttribute('data-src')); } } } window.onload = init; </script> </body> </html>