CINXE.COM

Features

<!doctype html> <html lang="en" class="no-js"> <head><!-- InMobi Choice. Consent Manager Tag v3.0 (for TCF 2.2) --> <script type="text/javascript" async=true> (function() { var host = window.location.hostname; var element = document.createElement('script'); var firstScript = document.getElementsByTagName('script')[0]; var url = 'https://cmp.inmobi.com' .concat('/choice/', '1C3fJ9awG115y', '/', host, '/choice.js?tag_version=V3'); var uspTries = 0; var uspTriesLimit = 3; element.async = true; element.type = 'text/javascript'; element.src = url; firstScript.parentNode.insertBefore(element, firstScript); function makeStub() { var TCF_LOCATOR_NAME = '__tcfapiLocator'; var queue = []; var win = window; var cmpFrame; function addFrame() { var doc = win.document; var otherCMP = !!(win.frames[TCF_LOCATOR_NAME]); if (!otherCMP) { if (doc.body) { var iframe = doc.createElement('iframe'); iframe.style.cssText = 'display:none'; iframe.name = TCF_LOCATOR_NAME; doc.body.appendChild(iframe); } else { setTimeout(addFrame, 5); } } return !otherCMP; } function tcfAPIHandler() { var gdprApplies; var args = arguments; if (!args.length) { return queue; } else if (args[0] === 'setGdprApplies') { if ( args.length > 3 && args[2] === 2 && typeof args[3] === 'boolean' ) { gdprApplies = args[3]; if (typeof args[2] === 'function') { args[2]('set', true); } } } else if (args[0] === 'ping') { var retr = { gdprApplies: gdprApplies, cmpLoaded: false, cmpStatus: 'stub' }; if (typeof args[2] === 'function') { args[2](retr); } } else { if(args[0] === 'init' && typeof args[3] === 'object') { args[3] = Object.assign(args[3], { tag_version: 'V3' }); } queue.push(args); } } function postMessageEventHandler(event) { var msgIsString = typeof event.data === 'string'; var json = {}; try { if (msgIsString) { json = JSON.parse(event.data); } else { json = event.data; } } catch (ignore) {} var payload = json.__tcfapiCall; if (payload) { window.__tcfapi( payload.command, payload.version, function(retValue, success) { var returnMsg = { __tcfapiReturn: { returnValue: retValue, success: success, callId: payload.callId } }; if (msgIsString) { returnMsg = JSON.stringify(returnMsg); } if (event && event.source && event.source.postMessage) { event.source.postMessage(returnMsg, '*'); } }, payload.parameter ); } } while (win) { try { if (win.frames[TCF_LOCATOR_NAME]) { cmpFrame = win; break; } } catch (ignore) {} if (win === window.top) { break; } win = win.parent; } if (!cmpFrame) { addFrame(); win.__tcfapi = tcfAPIHandler; win.addEventListener('message', postMessageEventHandler, false); } }; makeStub(); function makeGppStub() { const CMP_ID = 10; const SUPPORTED_APIS = [ '2:tcfeuv2', '6:uspv1', '7:usnatv1', '8:usca', '9:usvav1', '10:uscov1', '11:usutv1', '12:usctv1' ]; window.__gpp_addFrame = function (n) { if (!window.frames[n]) { if (document.body) { var i = document.createElement("iframe"); i.style.cssText = "display:none"; i.name = n; document.body.appendChild(i); } else { window.setTimeout(window.__gpp_addFrame, 10, n); } } }; window.__gpp_stub = function () { var b = arguments; __gpp.queue = __gpp.queue || []; __gpp.events = __gpp.events || []; if (!b.length || (b.length == 1 && b[0] == "queue")) { return __gpp.queue; } if (b.length == 1 && b[0] == "events") { return __gpp.events; } var cmd = b[0]; var clb = b.length > 1 ? b[1] : null; var par = b.length > 2 ? b[2] : null; if (cmd === "ping") { clb( { gppVersion: "1.1", // must be “Version.Subversion”, current: “1.1” cmpStatus: "stub", // possible values: stub, loading, loaded, error cmpDisplayStatus: "hidden", // possible values: hidden, visible, disabled signalStatus: "not ready", // possible values: not ready, ready supportedAPIs: SUPPORTED_APIS, // list of supported APIs cmpId: CMP_ID, // IAB assigned CMP ID, may be 0 during stub/loading sectionList: [], applicableSections: [-1], gppString: "", parsedSections: {}, }, true ); } else if (cmd === "addEventListener") { if (!("lastId" in __gpp)) { __gpp.lastId = 0; } __gpp.lastId++; var lnr = __gpp.lastId; __gpp.events.push({ id: lnr, callback: clb, parameter: par, }); clb( { eventName: "listenerRegistered", listenerId: lnr, // Registered ID of the listener data: true, // positive signal pingData: { gppVersion: "1.1", // must be “Version.Subversion”, current: “1.1” cmpStatus: "stub", // possible values: stub, loading, loaded, error cmpDisplayStatus: "hidden", // possible values: hidden, visible, disabled signalStatus: "not ready", // possible values: not ready, ready supportedAPIs: SUPPORTED_APIS, // list of supported APIs cmpId: CMP_ID, // list of supported APIs sectionList: [], applicableSections: [-1], gppString: "", parsedSections: {}, }, }, true ); } else if (cmd === "removeEventListener") { var success = false; for (var i = 0; i < __gpp.events.length; i++) { if (__gpp.events[i].id == par) { __gpp.events.splice(i, 1); success = true; break; } } clb( { eventName: "listenerRemoved", listenerId: par, // Registered ID of the listener data: success, // status info pingData: { gppVersion: "1.1", // must be “Version.Subversion”, current: “1.1” cmpStatus: "stub", // possible values: stub, loading, loaded, error cmpDisplayStatus: "hidden", // possible values: hidden, visible, disabled signalStatus: "not ready", // possible values: not ready, ready supportedAPIs: SUPPORTED_APIS, // list of supported APIs cmpId: CMP_ID, // CMP ID sectionList: [], applicableSections: [-1], gppString: "", parsedSections: {}, }, }, true ); } else if (cmd === "hasSection") { clb(false, true); } else if (cmd === "getSection" || cmd === "getField") { clb(null, true); } //queue all other commands else { __gpp.queue.push([].slice.apply(b)); } }; window.__gpp_msghandler = function (event) { var msgIsString = typeof event.data === "string"; try { var json = msgIsString ? JSON.parse(event.data) : event.data; } catch (e) { var json = null; } if (typeof json === "object" && json !== null && "__gppCall" in json) { var i = json.__gppCall; window.__gpp( i.command, function (retValue, success) { var returnMsg = { __gppReturn: { returnValue: retValue, success: success, callId: i.callId, }, }; event.source.postMessage(msgIsString ? JSON.stringify(returnMsg) : returnMsg, "*"); }, "parameter" in i ? i.parameter : null, "version" in i ? i.version : "1.1" ); } }; if (!("__gpp" in window) || typeof window.__gpp !== "function") { window.__gpp = window.__gpp_stub; window.addEventListener("message", window.__gpp_msghandler, false); window.__gpp_addFrame("__gppLocator"); } }; makeGppStub(); var uspStubFunction = function() { var arg = arguments; if (typeof window.__uspapi !== uspStubFunction) { setTimeout(function() { if (typeof window.__uspapi !== 'undefined') { window.__uspapi.apply(window.__uspapi, arg); } }, 500); } }; var checkIfUspIsReady = function() { uspTries++; if (window.__uspapi === uspStubFunction && uspTries < uspTriesLimit) { console.warn('USP is not accessible'); } else { clearInterval(uspInterval); } }; if (typeof window.__uspapi === 'undefined') { window.__uspapi = uspStubFunction; var uspInterval = setInterval(checkIfUspIsReady, 6000); } })(); </script> <!-- End InMobi Choice. Consent Manager Tag v3.0 (for TCF 2.2) --><meta charset="utf-8" /><meta http-equiv="X-UA-Compatible" content="IE=edge" /><meta name="language" content="en" /><meta name="generator" content="Isle Interactive Ltd" /><meta name="designer" content="Isle Interactive Ltd" /><meta name="viewport" content="initial-scale=1.0, width=device-width" /><meta name="format-detection" content="telephone=no" /><meta name="application-name" content="The Parliament Magazine" /><meta name="msapplication-TileColor" content="#ffffff" /><meta name="msapplication-config" content="/_img/_favicons/browserconfig.xml" /><meta name="theme-color" content="#ffffff" /> <meta name="robots" content="index, follow" /> <meta name="revisit-after" content="14 days" /><link rel="apple-touch-icon" sizes="180x180" href="/_img/_favicons/apple-touch-icon.png" /><link rel="icon" type="image/png" sizes="32x32" href="/_img/_favicons/favicon-32x32.png" /><link rel="icon" type="image/png" sizes="16x16" href="/_img/_favicons/favicon-16x16.png" /><link rel="manifest" href="/_img/_favicons/manifest.json" /><link rel="mask-icon" href="/_img/_favicons/safari-pinned-tab.svg" color="#231f20" /><link rel="shortcut icon" href="/favicon.ico" /><link rel="stylesheet" href="/_styles/core2.css?v14" media="screen" /><link rel="stylesheet" href="/_styles/layout2.css?v26a" media="screen" /><link rel="preconnect" href="https://fonts.googleapis.com" /><link rel="preconnect" href="https://fonts.gstatic.com" crossorigin="" /> <!--<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&amp;family=Playfair+Display:wght@400;700&amp;family=Roboto+Condensed:wght@700&amp;display=swap" rel="stylesheet" />--> <link href="https://fonts.googleapis.com/css2?family=Cardo:ital,wght@0,400;0,700;1,400&amp;family=Open+Sans:wght@400;700&amp;family=Roboto:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&amp;display=swap" rel="stylesheet" /> <script src="//ajax.googleapis.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> <script>!window.jQuery && document.write('<script src="/_scripts/jquery.js"><\/script>')</script> <script src="/_scripts/modernizr.js"></script> <script src="/_scripts/core.js?11"></script> <script src="/_scripts/plugins.js?2a"></script> <!-- ADVERTISING - START --> <script async src="https://securepubads.g.doubleclick.net/tag/js/gpt.js"></script> <script> window.googletag = window.googletag || {cmd: []}; </script> <script> // define variables to hold gpt slot objects var gptSlots = []; var slot1,slot2,slot3,slot4; googletag.cmd.push(function() { headerMapping = googletag.sizeMapping(). addSize([0, 0], [1, 1]). addSize([320, 0], [[320, 50], [320, 100]]). addSize([801, 0], [[468, 60], [728, 90]]). addSize([1201, 0], [[970, 90], [970, 250], [728, 90]]). build(); fullwidthMapping = googletag.sizeMapping(). addSize([0, 0], [1, 1]). addSize([300, 0], [300, 250]). addSize([801, 0], [[468, 60], [728, 90]]). addSize([1201, 0], [[970, 90], [970, 250], [728, 90]]). build(); skinMapping = googletag.sizeMapping(). addSize([1201, 0], [1, 1]). build(); slot1 = googletag.defineSlot('/1048162/pm/interviews_header', [[320, 50], [970, 250], [970, 90], [320, 100], [1, 1], [728, 90]], 'div-gpt-ad-1608230013890-0').defineSizeMapping(headerMapping).setTargeting('lazyload').addService(googletag.pubads()); slot2 = googletag.defineSlot('/1048162/pm/interviews_mid', [[970, 250], [970, 90], [728, 90], [300, 250]], 'div-gpt-ad-1608230013890-1').defineSizeMapping(fullwidthMapping).setTargeting('lazyload').addService(googletag.pubads()); slot3 = googletag.defineSlot('/1048162/pm/interviews_bot', [[970, 250], [970, 90], [728, 90], [300, 250]], 'div-gpt-ad-1608230013890-2').defineSizeMapping(fullwidthMapping).setTargeting('lazyload').addService(googletag.pubads()); slot4 = googletag.defineSlot('/1048162/pm/interviews_skin', [1, 1], 'div-gpt-ad-1608230013890-3').defineSizeMapping(skinMapping).setTargeting('lazyload').addService(googletag.pubads()); googletag.defineSlot('/1048162/pm/interviews_pixel-1', [1, 1], 'div-gpt-ad-1608230013890-4').setTargeting('lazyload').addService(googletag.pubads()); googletag.defineSlot('/1048162/pm/interviews_pixel-2', [1, 1], 'div-gpt-ad-1608230013890-5').setTargeting('lazyload').addService(googletag.pubads()); googletag.pubads().enableSingleRequest(); googletag.pubads().disableInitialLoad(); googletag.pubads().collapseEmptyDivs(); googletag.pubads().enableLazyLoad({ fetchMarginPercent: 200, renderMarginPercent: 100, mobileScaling: 2.0 }); googletag.enableServices(); googletag.pubads().setTargeting("environment","production"); gptSlots.push(slot1, slot2, slot3, slot4); }); </script> <!-- ADVERTISING - END --> <!-- Google Tag Manager --> <script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src= 'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f); })(window,document,'script','dataLayer','GTM-WHDKTSQ');</script> <!-- End Google Tag Manager --> <script type="text/javascript"> var _elqQ = _elqQ || []; _elqQ.push(['elqSetSiteId', '1690315']); _elqQ.push(['elqTrackPageView']); (function () { function async_load() { var s = document.createElement('script'); s.type = 'text/javascript'; s.async = true; s.src = '//img06.en25.com/i/elqCfg.min.js'; var x = document.getElementsByTagName('script')[0]; x.parentNode.insertBefore(s, x); } if (window.addEventListener) window.addEventListener('DOMContentLoaded', async_load, false); else if (window.attachEvent) window.attachEvent('onload', async_load); })(); </script><script type="text/javascript" src='https://www.google.com/recaptcha/api.js'></script><!-- Poool Tracking --> <script id="poool-engage" src="https://assets.poool.fr/engage.min.js" async></script> <script> const script = document.getElementById('poool-engage'); script.addEventListener('load', function() { Engage.init('B7H7E-5SALK-J1YCN-ZNZ63') .autoCreate(); }); </script> <!-- Poool Tracking End--><script src="https://cdn.p-n.io/pushly-sdk.min.js?domain_key=W6PndT8I8jSyIKDSivrEQYBdUvzu4EXy4W82" async></script> <script> window.PushlySDK = window.PushlySDK || []; function pushly() { window.PushlySDK.push(arguments) } pushly('load', { domainKey: 'W6PndT8I8jSyIKDSivrEQYBdUvzu4EXy4W82', sw: '/assets/pushly/pushly-sdk-worker.js' }); </script> <meta property="og:site_name" content="The Parliament Magazine" /> <meta property="og:locale" content="en_GB" /> <meta property="og:title" content="Features" /> <meta property="og:description" content="The Parliament Magazine Website" /> <meta property="og:url" content="https://www.theparliamentmagazine.eu/features.htm" /> <meta property="og:image" content="https://www.theparliamentmagazine.eu/_img/share_orange.jpg" /> <meta property="og:image:type" content="image/jpeg" /> <meta property="og:type" content="article" /> <meta property="article:published_time" content="2022-10-19 17:46:58" /> <meta property="article:modified_time" content="2024-06-04 15:36:22" /> <link rel="canonical" href="https://www.theparliamentmagazine.eu/features.htm" /><title> Features </title></head> <body > <!-- Google Tag Manager (noscript) --> <noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-WHDKTSQ" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript> <!-- End Google Tag Manager (noscript) --> <form method="post" action="/features.htm" id="form1"> <div class="aspNetHidden"> <input type="hidden" name="__EVENTTARGET" id="__EVENTTARGET" value="" /> <input type="hidden" name="__EVENTARGUMENT" id="__EVENTARGUMENT" value="" /> <input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="/wEPDwULLTE5Njg1MzgzMTcPZBYCZg9kFgRmD2QWAgIeD2QWBAIBDxYCHgRUZXh0BcIRIHZhciBzbG90MSxzbG90MixzbG90MyxzbG90NDsKICBnb29nbGV0YWcuY21kLnB1c2goZnVuY3Rpb24oKSB7CgogICAgICAgIGhlYWRlck1hcHBpbmcgPSBnb29nbGV0YWcuc2l6ZU1hcHBpbmcoKS4KICAJCQlhZGRTaXplKFswLCAwXSwgWzEsIDFdKS4KICAJCQlhZGRTaXplKFszMjAsIDBdLCBbWzMyMCwgNTBdLCBbMzIwLCAxMDBdXSkuCiAgCQkJYWRkU2l6ZShbODAxLCAwXSwgW1s0NjgsIDYwXSwgWzcyOCwgOTBdXSkuCiAgCQkJYWRkU2l6ZShbMTIwMSwgMF0sIFtbOTcwLCA5MF0sIFs5NzAsIDI1MF0sIFs3MjgsIDkwXV0pLgogIAkJCWJ1aWxkKCk7CgogICAgICAgIGZ1bGx3aWR0aE1hcHBpbmcgPSBnb29nbGV0YWcuc2l6ZU1hcHBpbmcoKS4KICAJCQlhZGRTaXplKFswLCAwXSwgWzEsIDFdKS4KICAJCQlhZGRTaXplKFszMDAsIDBdLCBbMzAwLCAyNTBdKS4KICAJCQlhZGRTaXplKFs4MDEsIDBdLCBbWzQ2OCwgNjBdLCBbNzI4LCA5MF1dKS4KICAJCQlhZGRTaXplKFsxMjAxLCAwXSwgW1s5NzAsIDkwXSwgWzk3MCwgMjUwXSwgWzcyOCwgOTBdXSkuCiAgCQkJYnVpbGQoKTsKCiAgICAgICAgc2tpbk1hcHBpbmcgPSBnb29nbGV0YWcuc2l6ZU1hcHBpbmcoKS4KICAJCQlhZGRTaXplKFsxMjAxLCAwXSwgWzEsIDFdKS4KICAJCQlidWlsZCgpOwoKICAgIHNsb3QxID0gZ29vZ2xldGFnLmRlZmluZVNsb3QoJy8xMDQ4MTYyL3BtL2ludGVydmlld3NfaGVhZGVyJywgW1szMjAsIDUwXSwgWzk3MCwgMjUwXSwgWzk3MCwgOTBdLCBbMzIwLCAxMDBdLCBbMSwgMV0sIFs3MjgsIDkwXV0sICdkaXYtZ3B0LWFkLTE2MDgyMzAwMTM4OTAtMCcpLmRlZmluZVNpemVNYXBwaW5nKGhlYWRlck1hcHBpbmcpLnNldFRhcmdldGluZygnbGF6eWxvYWQnKS5hZGRTZXJ2aWNlKGdvb2dsZXRhZy5wdWJhZHMoKSk7CiAgICBzbG90MiA9IGdvb2dsZXRhZy5kZWZpbmVTbG90KCcvMTA0ODE2Mi9wbS9pbnRlcnZpZXdzX21pZCcsIFtbOTcwLCAyNTBdLCBbOTcwLCA5MF0sIFs3MjgsIDkwXSwgWzMwMCwgMjUwXV0sICdkaXYtZ3B0LWFkLTE2MDgyMzAwMTM4OTAtMScpLmRlZmluZVNpemVNYXBwaW5nKGZ1bGx3aWR0aE1hcHBpbmcpLnNldFRhcmdldGluZygnbGF6eWxvYWQnKS5hZGRTZXJ2aWNlKGdvb2dsZXRhZy5wdWJhZHMoKSk7CiAgICBzbG90MyA9IGdvb2dsZXRhZy5kZWZpbmVTbG90KCcvMTA0ODE2Mi9wbS9pbnRlcnZpZXdzX2JvdCcsIFtbOTcwLCAyNTBdLCBbOTcwLCA5MF0sIFs3MjgsIDkwXSwgWzMwMCwgMjUwXV0sICdkaXYtZ3B0LWFkLTE2MDgyMzAwMTM4OTAtMicpLmRlZmluZVNpemVNYXBwaW5nKGZ1bGx3aWR0aE1hcHBpbmcpLnNldFRhcmdldGluZygnbGF6eWxvYWQnKS5hZGRTZXJ2aWNlKGdvb2dsZXRhZy5wdWJhZHMoKSk7CiAgICBzbG90NCA9IGdvb2dsZXRhZy5kZWZpbmVTbG90KCcvMTA0ODE2Mi9wbS9pbnRlcnZpZXdzX3NraW4nLCBbMSwgMV0sICdkaXYtZ3B0LWFkLTE2MDgyMzAwMTM4OTAtMycpLmRlZmluZVNpemVNYXBwaW5nKHNraW5NYXBwaW5nKS5zZXRUYXJnZXRpbmcoJ2xhenlsb2FkJykuYWRkU2VydmljZShnb29nbGV0YWcucHViYWRzKCkpOwogICAgZ29vZ2xldGFnLmRlZmluZVNsb3QoJy8xMDQ4MTYyL3BtL2ludGVydmlld3NfcGl4ZWwtMScsIFsxLCAxXSwgJ2Rpdi1ncHQtYWQtMTYwODIzMDAxMzg5MC00Jykuc2V0VGFyZ2V0aW5nKCdsYXp5bG9hZCcpLmFkZFNlcnZpY2UoZ29vZ2xldGFnLnB1YmFkcygpKTsKICAgIGdvb2dsZXRhZy5kZWZpbmVTbG90KCcvMTA0ODE2Mi9wbS9pbnRlcnZpZXdzX3BpeGVsLTInLCBbMSwgMV0sICdkaXYtZ3B0LWFkLTE2MDgyMzAwMTM4OTAtNScpLnNldFRhcmdldGluZygnbGF6eWxvYWQnKS5hZGRTZXJ2aWNlKGdvb2dsZXRhZy5wdWJhZHMoKSk7CiAgICBnb29nbGV0YWcucHViYWRzKCkuZW5hYmxlU2luZ2xlUmVxdWVzdCgpOwogICAgZ29vZ2xldGFnLnB1YmFkcygpLmRpc2FibGVJbml0aWFsTG9hZCgpOwogICAgZ29vZ2xldGFnLnB1YmFkcygpLmNvbGxhcHNlRW1wdHlEaXZzKCk7CiAgICBnb29nbGV0YWcucHViYWRzKCkuZW5hYmxlTGF6eUxvYWQoewogICAgICAgIGZldGNoTWFyZ2luUGVyY2VudDogMjAwLAogICAgICAgIHJlbmRlck1hcmdpblBlcmNlbnQ6IDEwMCwKICAgICAgICBtb2JpbGVTY2FsaW5nOiAyLjAKICAgIH0pOwogICAgZ29vZ2xldGFnLmVuYWJsZVNlcnZpY2VzKCk7Cmdvb2dsZXRhZy5wdWJhZHMoKS5zZXRUYXJnZXRpbmcoImVudmlyb25tZW50IiwicHJvZHVjdGlvbiIpO2QCAg8WAh8ABSwgIGdwdFNsb3RzLnB1c2goc2xvdDEsIHNsb3QyLCBzbG90Mywgc2xvdDQpO2QCAhBkZBYGAgEPZBYCZg9kFgwCAQ9kFgICAQ8WAh8ABcMBPCEtLSAvMTA0ODE2Mi9wbS9pbnRlcnZpZXdzX2hlYWRlciAtLT4KPGRpdiBpZD0nZGl2LWdwdC1hZC0xNjA4MjMwMDEzODkwLTAnPgogIDxzY3JpcHQ+CiAgICBnb29nbGV0YWcuY21kLnB1c2goZnVuY3Rpb24oKSB7IGdvb2dsZXRhZy5kaXNwbGF5KCdkaXYtZ3B0LWFkLTE2MDgyMzAwMTM4OTAtMCcpOyB9KTsKICA8L3NjcmlwdD4KPC9kaXY+ZAIDD2QWAmYPZBYCZg9kFgJmD2QWAmYPZBYCZg8WAh8ABfICPGRpdiBjbGFzcz0icHJvbW8tdGV4dCI+DQogICA8cCBjbGFzcz0ib3N3YWxkIj5TdWJzY3JpYmUgdG8gVGhlIFBhcmxpYW1lbnQ8L3A+DQogICA8YSBocmVmPSJodHRwczovL3d3dy50cGdyb3Vwc2hvcC5jb20vc3RvcmUvcHJvZHVjdHMsdGhlLXBhcmxpYW1lbnRfMjEuaHRtIiB0YXJnZXQ9Il9ibGFuayIgY2xhc3M9ImJ0biBidG4tLWRhcmsgYnRuLS14c21hbGwiID5TdWJzY3JpYmUgbm93PC9hPg0KPC9kaXY+DQo8ZGl2IGNsYXNzPSJwcm9tby1pbWciPg0KICA8aW1nIGFsdD0iU3Vic2NyaWJlIG5vdyIgc3JjPSIvdWdjLTEvdXBsb2Fkcy9wYWdlYmxvY2tzLzk1MzgvMDA3MzEyNmMyYzdlMGY2ZWE2ZmY3MzcwOGE3MThkMGIucG5nIj4NCjwvZGl2PmQCBQ8WAh8ABY0QPHVsPjxsaT48YSBocmVmPSIvbmV3LXVzLWFkbWluaXN0cmF0aW9uLmh0bSIgdGl0bGU9Ik5ldyBVUyBBZG1pbmlzdHJhdGlvbiI+PHNwYW4+TmV3IFVTIEFkbWluaXN0cmF0aW9uPC9zcGFuPjwvYT48L2xpPjxsaT48YSBocmVmPSIvZXUtaW5zdGl0dXRpb25zLmh0bSIgdGl0bGU9IkVVIEluc3RpdHV0aW9ucyI+PHNwYW4+RVUgSW5zdGl0dXRpb25zPC9zcGFuPjwvYT48L2xpPjxsaT48YSBocmVmPSIvZm9yZWlnbi1hbmQtc2VjdXJpdHktcG9saWN5Lmh0bSIgdGl0bGU9IkZvcmVpZ24gJmFtcDsgU2VjdXJpdHkgUG9saWN5Ij48c3Bhbj5Gb3JlaWduICYgU2VjdXJpdHkgUG9saWN5PC9zcGFuPjwvYT48L2xpPjxsaT48YSBocmVmPSIvZWNvbm9taWNzLmh0bSIgdGl0bGU9IkVjb25vbWljcyI+PHNwYW4+RWNvbm9taWNzPC9zcGFuPjwvYT48L2xpPjxsaT48YSBocmVmPSIvdGVjaG5vbG9neS5odG0iIHRpdGxlPSJUZWNobm9sb2d5Ij48c3Bhbj5UZWNobm9sb2d5PC9zcGFuPjwvYT48L2xpPjxsaT48YSBocmVmPSIvZW5lcmd5LWFuZC1lbnZpcm9ubWVudC5odG0iIHRpdGxlPSJFbmVyZ3kgJmFtcDsgRW52aXJvbm1lbnQiPjxzcGFuPkVuZXJneSAmIEVudmlyb25tZW50PC9zcGFuPjwvYT48L2xpPjxsaT48YSBocmVmPSIvY3VsdHVyZS1hbmQtYXJ0cy5odG0iIHRpdGxlPSJDdWx0dXJlICZhbXA7IEFydHMiPjxzcGFuPkN1bHR1cmUgJiBBcnRzPC9zcGFuPjwvYT48L2xpPjxsaSBjbGFzcz0ibmF2RGlzYWJsZUNsaWNrIG5hdk1vYlRvZ2dsZSBsaUhhc0NoaWxkcmVuIj48YSBocmVmPSIvbW9yZS5odG0iIHRpdGxlPSJNb3JlIj48c3Bhbj5Nb3JlPC9zcGFuPjwvYT48dWw+PGxpPjxhIGhyZWY9Ii9tb3JlL2Fib3V0LXVzLmh0bSIgdGl0bGU9IkFib3V0IFRoZSBQYXJsaWFtZW50IE1hZ2F6aW5lICB8IFRoZSBQYXJsaWFtZW50IE1hZ2F6aW5lIj48c3Bhbj5BYm91dDwvc3Bhbj48L2E+PC9saT48bGk+PGEgaHJlZj0iL21hZ2F6aW5lLmh0bSIgdGl0bGU9IlByaW50IG1hZ2F6aW5lIj48c3Bhbj5QcmludCBtYWdhemluZTwvc3Bhbj48L2E+PC9saT48bGk+PGEgaHJlZj0iL21vcmUvbmV3c2xldHRlci1yZWdpc3RyYXRpb24uaHRtIiB0aXRsZT0iTmV3c2xldHRlcnMgJmFtcDsgUmVnaXN0cmF0aW9uICB8IFRoZSBQYXJsaWFtZW50IE1hZ2F6aW5lIj48c3Bhbj5OZXdzbGV0dGVyPC9zcGFuPjwvYT48L2xpPjxsaT48YSBocmVmPSJodHRwczovL2V2ZW50cy50aGVwYXJsaWFtZW50bWFnYXppbmUuZXUvIiB0aXRsZT0iRXZlbnRzIj48c3Bhbj5FdmVudHM8L3NwYW4+PC9hPjwvbGk+PGxpPjxhIGhyZWY9Ii9tb3JlL3RyYWluaW5nLmh0bSIgdGl0bGU9IlByb2Zlc3Npb25hbCBEZXZlbG9wbWVudCBUcmFpbmluZyI+PHNwYW4+VHJhaW5pbmc8L3NwYW4+PC9hPjwvbGk+PGxpPjxhIGhyZWY9Ii9tb3JlL2NvbW1lcmNpYWwtb3Bwb3J0dW5pdGllcy5odG0iIHRpdGxlPSJDb21tZXJjaWFsIE9wcG9ydHVuaXRpZXMgIHwgVGhlIFBhcmxpYW1lbnQgTWFnYXppbmUiPjxzcGFuPkNvbW1lcmNpYWwgT3Bwb3J0dW5pdGllczwvc3Bhbj48L2E+PC9saT48bGk+PGEgaHJlZj0iL21lbWJlcnMvZGlyZWN0b3J5Lmh0bSIgdGl0bGU9Ik1lbWJlcnMgRGlyZWN0b3J5Ij48c3Bhbj5NZW1iZXJzIERpcmVjdG9yeTwvc3Bhbj48L2E+PC9saT48bGk+PGEgaHJlZj0iL21vcmUvZ3VpZGUtdG8tdGhlLXBvbGlzaC1wcmVzaWRlbmN5LW9mLXRoZS1jb3VuY2lsLW9mLXRoZS1ldS5odG0iIHRpdGxlPSJHdWlkZSB0byB0aGUgUG9saXNoIFByZXNpZGVuY3kgb2YgdGhlIEVVIj48c3Bhbj5HdWlkZSB0byB0aGUgUG9saXNoIFByZXNpZGVuY3kgb2YgdGhlIENvdW5jaWwgb2YgdGhlIEVVPC9zcGFuPjwvYT48L2xpPjxsaT48YSBocmVmPSIvbW9yZS90aGUtZXVyb3BlYW4tcGFybGlhbWVudC1jb21taXR0ZWUtZ3VpZGUtMjAyNC5odG0iIHRpdGxlPSJUaGUgRXVyb3BlYW4gUGFybGlhbWVudCBDb21taXR0ZWUgR3VpZGUgMjAyNCI+PHNwYW4+VGhlIEV1cm9wZWFuIFBhcmxpYW1lbnQgQ29tbWl0dGVlIEd1aWRlIDIwMjQ8L3NwYW4+PC9hPjwvbGk+PC91bD48L2xpPjwvdWw+ZAIHDxYCHgdWaXNpYmxlZxYCAgEPFgIfAAWLBDx1bD48bGkgY2xhc3M9Im5vU3ViIj48YSBocmVmPSIvbmV3cy5odG0iIHRpdGxlPSJOZXdzIHwgVGhlIFBhcmxpYW1lbnQgTWFnYXppbmUiPjxzcGFuPk5ld3MgYW5hbHlzaXM8L3NwYW4+PC9hPjwvbGk+PGxpIGNsYXNzPSJsaU9uIj48YSBocmVmPSIvZmVhdHVyZXMuaHRtIiBjbGFzcz0ib24iIHRpdGxlPSJGZWF0dXJlcyI+PHNwYW4+RmVhdHVyZTwvc3Bhbj48L2E+PC9saT48bGk+PGEgaHJlZj0iL3EtYS5odG0iIHRpdGxlPSJRK0EiPjxzcGFuPlErQTwvc3Bhbj48L2E+PC9saT48bGk+PGEgaHJlZj0iL29waW5pb24uaHRtIiB0aXRsZT0iT3BpbmlvbiB8IFRoZSBQYXJsaWFtZW50IE1hZ2F6aW5lIj48c3Bhbj5PcGluaW9uPC9zcGFuPjwvYT48L2xpPjxsaT48YSBocmVmPSIvbW9yZS9uZXdzbGV0dGVyLXJlZ2lzdHJhdGlvbi5odG0iIHRpdGxlPSJOZXdzbGV0dGVycyAmYW1wOyBSZWdpc3RyYXRpb24gIHwgVGhlIFBhcmxpYW1lbnQgTWFnYXppbmUiPjxzcGFuPk5ld3NsZXR0ZXI8L3NwYW4+PC9hPjwvbGk+PC91bD5kAgkPFgIfAAWNEDx1bD48bGk+PGEgaHJlZj0iL25ldy11cy1hZG1pbmlzdHJhdGlvbi5odG0iIHRpdGxlPSJOZXcgVVMgQWRtaW5pc3RyYXRpb24iPjxzcGFuPk5ldyBVUyBBZG1pbmlzdHJhdGlvbjwvc3Bhbj48L2E+PC9saT48bGk+PGEgaHJlZj0iL2V1LWluc3RpdHV0aW9ucy5odG0iIHRpdGxlPSJFVSBJbnN0aXR1dGlvbnMiPjxzcGFuPkVVIEluc3RpdHV0aW9uczwvc3Bhbj48L2E+PC9saT48bGk+PGEgaHJlZj0iL2ZvcmVpZ24tYW5kLXNlY3VyaXR5LXBvbGljeS5odG0iIHRpdGxlPSJGb3JlaWduICZhbXA7IFNlY3VyaXR5IFBvbGljeSI+PHNwYW4+Rm9yZWlnbiAmIFNlY3VyaXR5IFBvbGljeTwvc3Bhbj48L2E+PC9saT48bGk+PGEgaHJlZj0iL2Vjb25vbWljcy5odG0iIHRpdGxlPSJFY29ub21pY3MiPjxzcGFuPkVjb25vbWljczwvc3Bhbj48L2E+PC9saT48bGk+PGEgaHJlZj0iL3RlY2hub2xvZ3kuaHRtIiB0aXRsZT0iVGVjaG5vbG9neSI+PHNwYW4+VGVjaG5vbG9neTwvc3Bhbj48L2E+PC9saT48bGk+PGEgaHJlZj0iL2VuZXJneS1hbmQtZW52aXJvbm1lbnQuaHRtIiB0aXRsZT0iRW5lcmd5ICZhbXA7IEVudmlyb25tZW50Ij48c3Bhbj5FbmVyZ3kgJiBFbnZpcm9ubWVudDwvc3Bhbj48L2E+PC9saT48bGk+PGEgaHJlZj0iL2N1bHR1cmUtYW5kLWFydHMuaHRtIiB0aXRsZT0iQ3VsdHVyZSAmYW1wOyBBcnRzIj48c3Bhbj5DdWx0dXJlICYgQXJ0czwvc3Bhbj48L2E+PC9saT48bGkgY2xhc3M9Im5hdkRpc2FibGVDbGljayBuYXZNb2JUb2dnbGUgbGlIYXNDaGlsZHJlbiI+PGEgaHJlZj0iL21vcmUuaHRtIiB0aXRsZT0iTW9yZSI+PHNwYW4+TW9yZTwvc3Bhbj48L2E+PHVsPjxsaT48YSBocmVmPSIvbW9yZS9hYm91dC11cy5odG0iIHRpdGxlPSJBYm91dCBUaGUgUGFybGlhbWVudCBNYWdhemluZSAgfCBUaGUgUGFybGlhbWVudCBNYWdhemluZSI+PHNwYW4+QWJvdXQ8L3NwYW4+PC9hPjwvbGk+PGxpPjxhIGhyZWY9Ii9tYWdhemluZS5odG0iIHRpdGxlPSJQcmludCBtYWdhemluZSI+PHNwYW4+UHJpbnQgbWFnYXppbmU8L3NwYW4+PC9hPjwvbGk+PGxpPjxhIGhyZWY9Ii9tb3JlL25ld3NsZXR0ZXItcmVnaXN0cmF0aW9uLmh0bSIgdGl0bGU9Ik5ld3NsZXR0ZXJzICZhbXA7IFJlZ2lzdHJhdGlvbiAgfCBUaGUgUGFybGlhbWVudCBNYWdhemluZSI+PHNwYW4+TmV3c2xldHRlcjwvc3Bhbj48L2E+PC9saT48bGk+PGEgaHJlZj0iaHR0cHM6Ly9ldmVudHMudGhlcGFybGlhbWVudG1hZ2F6aW5lLmV1LyIgdGl0bGU9IkV2ZW50cyI+PHNwYW4+RXZlbnRzPC9zcGFuPjwvYT48L2xpPjxsaT48YSBocmVmPSIvbW9yZS90cmFpbmluZy5odG0iIHRpdGxlPSJQcm9mZXNzaW9uYWwgRGV2ZWxvcG1lbnQgVHJhaW5pbmciPjxzcGFuPlRyYWluaW5nPC9zcGFuPjwvYT48L2xpPjxsaT48YSBocmVmPSIvbW9yZS9jb21tZXJjaWFsLW9wcG9ydHVuaXRpZXMuaHRtIiB0aXRsZT0iQ29tbWVyY2lhbCBPcHBvcnR1bml0aWVzICB8IFRoZSBQYXJsaWFtZW50IE1hZ2F6aW5lIj48c3Bhbj5Db21tZXJjaWFsIE9wcG9ydHVuaXRpZXM8L3NwYW4+PC9hPjwvbGk+PGxpPjxhIGhyZWY9Ii9tZW1iZXJzL2RpcmVjdG9yeS5odG0iIHRpdGxlPSJNZW1iZXJzIERpcmVjdG9yeSI+PHNwYW4+TWVtYmVycyBEaXJlY3Rvcnk8L3NwYW4+PC9hPjwvbGk+PGxpPjxhIGhyZWY9Ii9tb3JlL2d1aWRlLXRvLXRoZS1wb2xpc2gtcHJlc2lkZW5jeS1vZi10aGUtY291bmNpbC1vZi10aGUtZXUuaHRtIiB0aXRsZT0iR3VpZGUgdG8gdGhlIFBvbGlzaCBQcmVzaWRlbmN5IG9mIHRoZSBFVSI+PHNwYW4+R3VpZGUgdG8gdGhlIFBvbGlzaCBQcmVzaWRlbmN5IG9mIHRoZSBDb3VuY2lsIG9mIHRoZSBFVTwvc3Bhbj48L2E+PC9saT48bGk+PGEgaHJlZj0iL21vcmUvdGhlLWV1cm9wZWFuLXBhcmxpYW1lbnQtY29tbWl0dGVlLWd1aWRlLTIwMjQuaHRtIiB0aXRsZT0iVGhlIEV1cm9wZWFuIFBhcmxpYW1lbnQgQ29tbWl0dGVlIEd1aWRlIDIwMjQiPjxzcGFuPlRoZSBFdXJvcGVhbiBQYXJsaWFtZW50IENvbW1pdHRlZSBHdWlkZSAyMDI0PC9zcGFuPjwvYT48L2xpPjwvdWw+PC9saT48L3VsPmQCCw9kFgICAQ8PZBYCHgtwbGFjZWhvbGRlcgUPRW50ZXIga2V5d29yZC9zZAIDD2QWAgIDD2QWAmYPZBYCAgIPZBYCAgEPZBYCAgIPZBYCZg9kFgRmDw8WAh8BaGQWAgIBDxYCHgtfIUl0ZW1Db3VudAIHFg4CAQ9kFgZmDxUBAm9uZAIBD2QWAmYPFQMKP25ld3NfcGc9MQJvbgExZAIDDw8WCh4PQ29tbWFuZEFyZ3VtZW50BQExHwAFATEeCENzc0NsYXNzBQJvbh4EXyFTQgICHwFoZGQCAg9kFgZmDxUBAGQCAQ9kFgJmDxUDCj9uZXdzX3BnPTIAATJkAgMPDxYKHwQFATIfAAUBMh8FZR8GAgIfAWhkZAIDD2QWBmYPFQEAZAIBD2QWAmYPFQMKP25ld3NfcGc9MwABM2QCAw8PFgofBAUBMx8ABQEzHwVlHwYCAh8BaGRkAgQPZBYGZg8VAQBkAgEPZBYCZg8VAwo/bmV3c19wZz00AAE0ZAIDDw8WCh8EBQE0HwAFATQfBWUfBgICHwFoZGQCBQ9kFgZmDxUBAGQCAQ9kFgJmDxUDCj9uZXdzX3BnPTUAATVkAgMPDxYKHwQFATUfAAUBNR8FZR8GAgIfAWhkZAIGD2QWBmYPFQEEbmV4dGQCAQ9kFgJmDxUDCj9uZXdzX3BnPTIEbmV4dAQmZ3Q7ZAIDDw8WCh8EBQEyHwAFBCZndDsfBQUEbmV4dB8GAgIfAWhkZAIHD2QWBmYPFQEEbGFzdGQCAQ9kFgJmDxUDCz9uZXdzX3BnPTEyBGxhc3QIJmd0OyZndDtkAgMPDxYKHwQFAjEyHwAFCCZndDsmZ3Q7HwUFBGxhc3QfBgICHwFoZGQCAg8PFgIfAWdkFgICAQ8WAh8DAgcWDgIBD2QWBmYPFQECb25kAgEPZBYCZg8VAwo/bmV3c19wZz0xAm9uATFkAgMPDxYKHwQFATEfAAUBMR8FBQJvbh8GAgIfAWhkZAICD2QWBmYPFQEAZAIBD2QWAmYPFQMKP25ld3NfcGc9MgABMmQCAw8PFgofBAUBMh8ABQEyHwVlHwYCAh8BaGRkAgMPZBYGZg8VAQBkAgEPZBYCZg8VAwo/bmV3c19wZz0zAAEzZAIDDw8WCh8EBQEzHwAFATMfBWUfBgICHwFoZGQCBA9kFgZmDxUBAGQCAQ9kFgJmDxUDCj9uZXdzX3BnPTQAATRkAgMPDxYKHwQFATQfAAUBNB8FZR8GAgIfAWhkZAIFD2QWBmYPFQEAZAIBD2QWAmYPFQMKP25ld3NfcGc9NQABNWQCAw8PFgofBAUBNR8ABQE1HwVlHwYCAh8BaGRkAgYPZBYGZg8VAQRuZXh0ZAIBD2QWAmYPFQMKP25ld3NfcGc9MgRuZXh0BCZndDtkAgMPDxYKHwQFATIfAAUEJmd0Ox8FBQRuZXh0HwYCAh8BaGRkAgcPZBYGZg8VAQRsYXN0ZAIBD2QWAmYPFQMLP25ld3NfcGc9MTIEbGFzdAgmZ3Q7Jmd0O2QCAw8PFgofBAUCMTIfAAUIJmd0OyZndDsfBQUEbGFzdB8GAgIfAWhkZAIFD2QWAmYPZBYCZg9kFgJmD2QWAmYPZBYCZg9kFgJmDxYCHwAFvQY8ZGl2IGNsYXNzPSJoMyI+QSBtb250aGx5IG1hZ2F6aW5lIHBhY2tlZCB3aXRoIHRpbWVseSBmZWF0dXJlcywgbmV3cyBhbmFseXNlcyBhbmQgb3BpbmlvbiBhcnRpY2xlcyBvbiBFVSBwb2xpY3kuPC9kaXY+DQogICAgICAgICAgICAgICAgPGRpdiBjbGFzcz0iZnRyLXN1YnMiPg0KICAgICAgICAgICAgICAgICAgICA8YSBjbGFzcz0iY2xlYXJGaXgiIGhyZWY9Imh0dHBzOi8vd3d3LnRwZ3JvdXBzaG9wLmNvbS9zdG9yZS9wcm9kdWN0cyx0aGUtcGFybGlhbWVudF8yMS5odG0iIHRhcmdldD0iX2JsYW5rIj4NCiAgICAgICAgICAgICAgICAgICAgICAgIDxkaXYgY2xhc3M9ImZ0cnMtaW1nIj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8aW1nIGNsYXNzPSJsYXp5bG9hZCIgZGF0YS1zcmM9Ii91Z2MtMS91cGxvYWRzL3BhZ2VibG9ja3MvOTUzNi8zYmUzOGRiYmQxMTU4Mjc5ZjQ3ZTRlNzM1MTc3ZmU2MC5wbmciIGFsdD0iU3Vic2NyaWJlIiA+DQogICAgICAgICAgICAgICAgICAgICAgICA8L2Rpdj4NCiAgICAgICAgICAgICAgICAgICAgICAgIDxkaXYgY2xhc3M9ImZ0cnMtdGV4dCI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgPHA+PHN0cm9uZz5TdWJzY3JpYmUgdG8gVGhlIFBhcmxpYW1lbnQ8L3N0cm9uZz48L3A+DQoNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8cD48c3BhbiBjbGFzcz0iYnRuIGJ0bi0teWVsbG93IGJ0bi0teHNtYWxsIj5TdWJzY3JpYmUgbm93PC9zcGFuPjwvcD4NCiAgICAgICAgICAgICAgICAgICAgICAgIDwvZGl2Pg0KICAgICAgICAgICAgICAgICAgICA8L2E+DQogICAgICAgICAgICAgICAgPC9kaXY+ZGRHtIIjpqNTJm74b+qIRdUFoHBIXLK1gSMEU3nIA1B7+A==" /> </div> <script type="text/javascript"> //<![CDATA[ var theForm = document.forms['form1']; if (!theForm) { theForm = document.form1; } function __doPostBack(eventTarget, eventArgument) { if (!theForm.onsubmit || (theForm.onsubmit() != false)) { theForm.__EVENTTARGET.value = eventTarget; theForm.__EVENTARGUMENT.value = eventArgument; theForm.submit(); } } //]]> </script> <script src="/WebResource.axd?d=Z6H9xMIlvyL3CntSP0RUQ2RoiZrPLCPNLqj1SwZk_bp3I663kp8bWldCSTkypXZQ5VmtzuTMW06WuULwL-0MnQDq-PJzyWq4-5wHJgsW2cY1&amp;t=638563308220000000" type="text/javascript"></script> <script src="/ScriptResource.axd?d=YH05l78KeK8eaVTwL8OCmqH87AJXyqNFsxb8JSr2dYTx3O90_kf_o6FS1UiSoMyPht7mB9LYkgHwxs-jdGdHETIdCvPQTjTuKYxdazco3-mxkoijuLVKxa-EQzUpHfvY6dKy15qZB2xH7B9LNA56fZ-1J-PcrlL0MXoP-iI98tQ1&amp;t=ffffffffc820c398" type="text/javascript"></script> <script src="/ScriptResource.axd?d=mk5b-_CofLPrVExdUD7Fe-eWGk5yCsU42S2HuBk7P_NWXJxFr7tN5PWSXRbIgU8NtU3vnHY17uqPzRdbJs3O6ISdP63yANjFZJcjpYadBFZjmIATiT6w9srdNRraKhmG2pwem0LYLalC_pYN8agQGh9zhvBE8hIIZ4IIX9Eg-V4Wg1efJTmVm-btScZBxwVY0&amp;t=ffffffffc820c398" type="text/javascript"></script> <header> <noscript> <div class="msg msgError nojavascript"> <p> This site requires JavaScript for certain functions and interactions to work. Please turn on JavaScript for the best possible experience.</p> </div> </noscript> <div class="hdr-ad"> <div class="row--ad"> <!-- /1048162/pm/interviews_header --> <div id='div-gpt-ad-1608230013890-0'> <script> googletag.cmd.push(function() { googletag.display('div-gpt-ad-1608230013890-0'); }); </script> </div> </div> </div> <div class="hdr-top"> <!--<div class="hdr-pDods"> <a href="http://www.dodsgroup.com/" target="_blank">Part of the DODS Group <span> <img src="/_img/icons/dods_icon_white.svg" alt="DODS Group Logo"> </span> </a> </div>--> <div class="hdr-topRight"> <div class="hdr-register"> <a href="/more/newsletter-registration.htm" class="hdr-reg">Register for our newsletter</a> </div> <div class="burger"> <div class="hamburger"> <span></span> </div> <div class="b-label">Menu</div> </div> </div> </div> <div class="hdr-main"> <div class="hdr-social"> <a href="http://www.facebook.com/TheParliamentMagazine/" target="_blank" class="icon icon--facebook"></a> <a href="https://x.com/parlimag" target="_blank" class="icon icon--x"> <svg xmlns="http://www.w3.org/2000/svg" shape-rendering="geometricPrecision" text-rendering="geometricPrecision" image-rendering="optimizeQuality" fill-rule="evenodd" clip-rule="evenodd" viewBox="0 0 512 462.799"><path fill-rule="nonzero" d="M403.229 0h78.506L310.219 196.04 512 462.799H354.002L230.261 301.007 88.669 462.799h-78.56l183.455-209.683L0 0h161.999l111.856 147.88L403.229 0zm-27.556 415.805h43.505L138.363 44.527h-46.68l283.99 371.278z"/></svg> </a> <a href="https://www.linkedin.com/company/the-parliament-magazine/" target="_blank" class="icon icon--linkedIn"></a> <a href="https://www.instagram.com/theparliamentmagazineeu/" target="_blank" class="icon icon--instagram"></a> </div> <a href="/" class="logo hideText">The Parliament Magazine</a> <div class="hdr-promo"> <div class="promo-text"> <p class="oswald">Subscribe to The Parliament</p> <a href="https://www.tpgroupshop.com/store/products,the-parliament_21.htm" target="_blank" class="btn btn--dark btn--xsmall" >Subscribe now</a> </div> <div class="promo-img"> <img alt="Subscribe now" src="/ugc-1/uploads/pageblocks/9538/0073126c2c7e0f6ea6ff73708a718d0b.png"> </div> </div> </div> <div class="hdr-nav"> <div class="nav-main"> <nav class="menu"> <ul><li><a href="/new-us-administration.htm" title="New US Administration"><span>New US Administration</span></a></li><li><a href="/eu-institutions.htm" title="EU Institutions"><span>EU Institutions</span></a></li><li><a href="/foreign-and-security-policy.htm" title="Foreign &amp; Security Policy"><span>Foreign & Security Policy</span></a></li><li><a href="/economics.htm" title="Economics"><span>Economics</span></a></li><li><a href="/technology.htm" title="Technology"><span>Technology</span></a></li><li><a href="/energy-and-environment.htm" title="Energy &amp; Environment"><span>Energy & Environment</span></a></li><li><a href="/culture-and-arts.htm" title="Culture &amp; Arts"><span>Culture & Arts</span></a></li><li class="navDisableClick navMobToggle liHasChildren"><a href="/more.htm" title="More"><span>More</span></a><ul><li><a href="/more/about-us.htm" title="About The Parliament Magazine | The Parliament Magazine"><span>About</span></a></li><li><a href="/magazine.htm" title="Print magazine"><span>Print magazine</span></a></li><li><a href="/more/newsletter-registration.htm" title="Newsletters &amp; Registration | The Parliament Magazine"><span>Newsletter</span></a></li><li><a href="https://events.theparliamentmagazine.eu/" title="Events"><span>Events</span></a></li><li><a href="/more/training.htm" title="Professional Development Training"><span>Training</span></a></li><li><a href="/more/commercial-opportunities.htm" title="Commercial Opportunities | The Parliament Magazine"><span>Commercial Opportunities</span></a></li><li><a href="/members/directory.htm" title="Members Directory"><span>Members Directory</span></a></li><li><a href="/more/guide-to-the-polish-presidency-of-the-council-of-the-eu.htm" title="Guide to the Polish Presidency of the EU"><span>Guide to the Polish Presidency of the Council of the EU</span></a></li><li><a href="/more/the-european-parliament-committee-guide-2024.htm" title="The European Parliament Committee Guide 2024"><span>The European Parliament Committee Guide 2024</span></a></li></ul></li></ul> </nav> <div class="nav-search icon icon--search"><span>Search</span></div> </div> <div class="nav-sub"> <nav class="greedy-nav"> <ul><li class="noSub"><a href="/news.htm" title="News | The Parliament Magazine"><span>News analysis</span></a></li><li class="liOn"><a href="/features.htm" class="on" title="Features"><span>Feature</span></a></li><li><a href="/q-a.htm" title="Q+A"><span>Q+A</span></a></li><li><a href="/opinion.htm" title="Opinion | The Parliament Magazine"><span>Opinion</span></a></li><li><a href="/more/newsletter-registration.htm" title="Newsletters &amp; Registration | The Parliament Magazine"><span>Newsletter</span></a></li></ul> <ul class="hidden-links hidden"></ul> <div class="gn-more"> <span class="icon icon--minusSlim">More</span> </div> </nav> </div> <div class="nav-bottom"> <div class="nav-social"> <p>Follow us:</p> <a href="https://x.com/parlimag" target="_blank" class="icon icon--x"> <svg xmlns="http://www.w3.org/2000/svg" shape-rendering="geometricPrecision" text-rendering="geometricPrecision" image-rendering="optimizeQuality" fill-rule="evenodd" clip-rule="evenodd" viewBox="0 0 512 462.799"><path fill-rule="nonzero" d="M403.229 0h78.506L310.219 196.04 512 462.799H354.002L230.261 301.007 88.669 462.799h-78.56l183.455-209.683L0 0h161.999l111.856 147.88L403.229 0zm-27.556 415.805h43.505L138.363 44.527h-46.68l283.99 371.278z"/></svg> </a> <a href="https://www.facebook.com/PoliticsHomeUK/" target="_blank" class="icon icon--facebook"></a> <a href="https://www.linkedin.com/company/the-parliament-magazine/" target="_blank" class="icon icon--linkedIn"></a> <a href="https://www.instagram.com/theparliamentmagazineeu/" target="_blank" class="icon icon--instagram"></a> </div> </div> </div> </header> <div class="sticky-header clearFix"> <a class="logo-sticky" href="/"> <img src="/_img/logo_the_parliament_white.svg" /> </a> <nav class="sticky-nav"> <ul><li><a href="/new-us-administration.htm" title="New US Administration"><span>New US Administration</span></a></li><li><a href="/eu-institutions.htm" title="EU Institutions"><span>EU Institutions</span></a></li><li><a href="/foreign-and-security-policy.htm" title="Foreign &amp; Security Policy"><span>Foreign & Security Policy</span></a></li><li><a href="/economics.htm" title="Economics"><span>Economics</span></a></li><li><a href="/technology.htm" title="Technology"><span>Technology</span></a></li><li><a href="/energy-and-environment.htm" title="Energy &amp; Environment"><span>Energy & Environment</span></a></li><li><a href="/culture-and-arts.htm" title="Culture &amp; Arts"><span>Culture & Arts</span></a></li><li class="navDisableClick navMobToggle liHasChildren"><a href="/more.htm" title="More"><span>More</span></a><ul><li><a href="/more/about-us.htm" title="About The Parliament Magazine | The Parliament Magazine"><span>About</span></a></li><li><a href="/magazine.htm" title="Print magazine"><span>Print magazine</span></a></li><li><a href="/more/newsletter-registration.htm" title="Newsletters &amp; Registration | The Parliament Magazine"><span>Newsletter</span></a></li><li><a href="https://events.theparliamentmagazine.eu/" title="Events"><span>Events</span></a></li><li><a href="/more/training.htm" title="Professional Development Training"><span>Training</span></a></li><li><a href="/more/commercial-opportunities.htm" title="Commercial Opportunities | The Parliament Magazine"><span>Commercial Opportunities</span></a></li><li><a href="/members/directory.htm" title="Members Directory"><span>Members Directory</span></a></li><li><a href="/more/guide-to-the-polish-presidency-of-the-council-of-the-eu.htm" title="Guide to the Polish Presidency of the EU"><span>Guide to the Polish Presidency of the Council of the EU</span></a></li><li><a href="/more/the-european-parliament-committee-guide-2024.htm" title="The European Parliament Committee Guide 2024"><span>The European Parliament Committee Guide 2024</span></a></li></ul></li></ul> </nav> <div class="sticky-srch"></div> <div class="burger"> <div class="hamburger"> <span></span> </div> </div> </div> <div class="search-overlay"> <div id="hdr_pnlSearch" class="hdr-searchBar" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;hdr_btnSearch&#39;)"> <input name="ctl00$hdr$txtSearch" type="text" id="hdr_txtSearch" class="text sb-keyword" placeholder="Enter keyword/s" /> <input type="submit" name="ctl00$hdr$btnSearch" value="Search" id="hdr_btnSearch" class="btn btn--medium sb-btn" /> </div> <span class="search-close icon icon--close"></span> </div> <main> <div class="template template--1col "> <div class="main-content"> <div class="container"> <div class="row row--ad row--anchor"> <!-- /1048162/pm/interviews_mid --> <div id='div-gpt-ad-1608230013890-1' class="peu-ad"> <script> googletag.cmd.push(function() { googletag.display('div-gpt-ad-1608230013890-1'); }); </script> </div> </div> <div class="row "> <div class="news-list news-list--x4 "><div class="news-item"> <div class="ni-image"> <a href="/news/article/tariffs-are-the-tax-in-vogue-but-what-are-they"> <img data-src="/siteimg/list-x-four/ugc-1/fullnews/news/24979/24734_original.jpg" class=" lazyload" alt="How tariffs work — or are supposed to"> </a> </div> <div class="ni-content"> <div class="ni-meta"> <span class="ni-date">12 Feb</span> <span class="ni-cat"><a href="/economics.htm">Economics</a></span> </div> <div class="ni-title h4"> <a href="/news/article/tariffs-are-the-tax-in-vogue-but-what-are-they">How tariffs work — or are supposed to</a> </div> <div class="ni-desc"> <a href="/news/article/tariffs-are-the-tax-in-vogue-but-what-are-they"> Tariffs have become more common as governments look for ways to protect their economies and gain leverage over others. So, what are they and how do they work? </a> </div> </div> </div><div class="news-item"> <div class="ni-image"> <a href="/partner/article/why-early-intervention-is-key-to-unlocking-healthcare-capacity"> <img data-src="/siteimg/list-x-four/ugc-1/fullnews/news/24949/24698_original.jpg" class=" lazyload" alt="Why early intervention is key to unlocking healthcare capacity"> <span class="ni-tag">Partner Content</span> </a> </div> <div class="ni-content"> <div class="ni-meta"> <span class="ni-date">11 Feb</span> <span class="ni-cat"><a href="/technology.htm">Technology</a></span> </div> <div class="ni-title h4"> <a href="/partner/article/why-early-intervention-is-key-to-unlocking-healthcare-capacity">Why early intervention is key to unlocking healthcare capacity</a> </div> <div class="ni-desc"> <a href="/partner/article/why-early-intervention-is-key-to-unlocking-healthcare-capacity"> A recent major OECD report has warned of a looming crisis in the European health workforce. In the third in our series on the challenges faced across European healthcare systems we explore how early intervention in Inflammatory Bowel Diseases provides a model that can reduce pressure on overstretched frontline health services </a> </div> </div> </div><div class="news-item"> <div class="ni-image"> <a href="/news/article/power-play-baltic-states-cut-russian-grid-connection"> <img data-src="/siteimg/list-x-four/ugc-1/fullnews/news/24973/24730_original.jpg" class=" lazyload" alt="Power play: Baltic states cut Russian grid connection"> </a> </div> <div class="ni-content"> <div class="ni-meta"> <span class="ni-date">06 Feb</span> <span class="ni-cat"><a href="/foreign-and-security-policy.htm">Foreign & Security Policy</a></span> </div> <div class="ni-title h4"> <a href="/news/article/power-play-baltic-states-cut-russian-grid-connection">Power play: Baltic states cut Russian grid connection</a> </div> <div class="ni-desc"> <a href="/news/article/power-play-baltic-states-cut-russian-grid-connection"> On Saturday, the Baltic states will finally desynchronise from the BRELL electricity grid, which links it to Russia and Belarus. But the region is still vulnerable to Russian attacks on its energy infrastructure. </a> </div> </div> </div><div class="news-item"> <div class="ni-image"> <a href="/partner/article/the-paper-revolution-in-the-eu-parliaments-backyard"> <img data-src="/siteimg/list-x-four/ugc-1/fullnews/news/24943/24688_original.jpg" class=" lazyload" alt="The paper revolution in the EU Parliament's backyard"> <span class="ni-tag">Partner Content</span> </a> </div> <div class="ni-content"> <div class="ni-meta"> <span class="ni-date">03 Feb</span> <span class="ni-cat"><a href="/energy-and-environment.htm">Energy & Environment</a></span> </div> <div class="ni-title h4"> <a href="/partner/article/the-paper-revolution-in-the-eu-parliaments-backyard">The paper revolution in the EU Parliament's backyard</a> </div> <div class="ni-desc"> <a href="/partner/article/the-paper-revolution-in-the-eu-parliaments-backyard"> A short distance away from the European Parliament building in Strasbourg lies Blue Paper, one of Europe’s largest papermills. With the paper industry leading the way on recycling, a high-level delegation, including members of the European Parliament, made the short journey to the site to learn how Europe’s paper industry is driving transformation to deliver sustainable growth. </a> </div> </div> </div><div class="news-item"> <div class="ni-image"> <a href="/partner/article/driving-europes-digital-future"> <img data-src="/siteimg/list-x-four/ugc-1/fullnews/news/24941/24684_original.jpg" class=" lazyload" alt="Driving Europe’s digital future"> <span class="ni-tag">Partner Content</span> </a> </div> <div class="ni-content"> <div class="ni-meta"> <span class="ni-date">27 Jan</span> </div> <div class="ni-title h4"> <a href="/partner/article/driving-europes-digital-future">Driving Europe’s digital future</a> </div> <div class="ni-desc"> <a href="/partner/article/driving-europes-digital-future"> With momentum growing behind the Digital Decade policy programme, the contributions of major technology providers will be pivotal in shaping the EU’s digital future. At the recent Huawei Connect 2024 conference in Paris, senior leaders from industry and policymakers gathered together to explore Europe’s digital transformation </a> </div> </div> </div><div class="news-item"> <div class="ni-image"> <a href="/partner/article/enhancing-satellitebased-services-for-a-competitive-autonomous-and-resilient-europe"> <img data-src="/siteimg/list-x-four/ugc-1/fullnews/news/24945/24690_original.jpg" class=" lazyload" alt="Enhancing satellite-based services for a competitive, autonomous, and resilient Europe"> <span class="ni-tag">Partner Content</span> </a> </div> <div class="ni-content"> <div class="ni-meta"> <span class="ni-date">27 Jan</span> <span class="ni-cat"><a href="/technology.htm">Technology</a></span> </div> <div class="ni-title h4"> <a href="/partner/article/enhancing-satellitebased-services-for-a-competitive-autonomous-and-resilient-europe">Enhancing satellite-based services for a competitive, autonomous, and resilient Europe</a> </div> <div class="ni-desc"> <a href="/partner/article/enhancing-satellitebased-services-for-a-competitive-autonomous-and-resilient-europe"> To safeguard its security and sovereignty, the EU must own an autonomous and reliable satellite network and a fully European space value chain. A consistent strategy for the downstream space sector is imperative. </a> </div> </div> </div><div class="news-item"> <div class="ni-image"> <a href="/news/article/hybrid-threats-russias-shadow-war-escalates-across-europe"> <img data-src="/siteimg/list-x-four/ugc-1/fullnews/news/24952/24703_original.jpg" class=" lazyload" alt="Hybrid threats: Russia’s shadow war escalates across Europe  "> </a> </div> <div class="ni-content"> <div class="ni-meta"> <span class="ni-date">21 Jan</span> <span class="ni-cat"><a href="/foreign-and-security-policy.htm">Foreign & Security Policy</a></span> </div> <div class="ni-title h4"> <a href="/news/article/hybrid-threats-russias-shadow-war-escalates-across-europe">Hybrid threats: Russia’s shadow war escalates across Europe  </a> </div> <div class="ni-desc"> <a href="/news/article/hybrid-threats-russias-shadow-war-escalates-across-europe"> Russia’s escalating, multipronged campaign risks destabilising the EU. </a> </div> </div> </div><div class="news-item"> <div class="ni-image"> <a href="/partner/article/why-its-time-to-radically-rethink-alzheimers-disease-care"> <img data-src="/siteimg/list-x-four/ugc-1/fullnews/news/24942/24686_original.jpg" class=" lazyload" alt="Why it's time to radically rethink Alzheimer’s disease care"> <span class="ni-tag">Partner Content</span> </a> </div> <div class="ni-content"> <div class="ni-meta"> <span class="ni-date">21 Jan</span> <span class="ni-cat"><a href="/eu-institutions.htm">EU Institutions</a></span> </div> <div class="ni-title h4"> <a href="/partner/article/why-its-time-to-radically-rethink-alzheimers-disease-care">Why it's time to radically rethink Alzheimer’s disease care</a> </div> <div class="ni-desc"> <a href="/partner/article/why-its-time-to-radically-rethink-alzheimers-disease-care"> Advances in scientific research and diagnostic tools are transforming how we think about and treat Alzheimer’s disease. </a> </div> </div> </div><div class="news-item"> <div class="ni-image"> <a href="/partner/article/addressing-workplace-mental-health-in-the-digital-era"> <img data-src="/siteimg/list-x-four/ugc-1/fullnews/news/24946/24691_original.jpg" class=" lazyload" alt="Addressing workplace mental health in the digital era"> <span class="ni-tag">Partner Content</span> </a> </div> <div class="ni-content"> <div class="ni-meta"> <span class="ni-date">20 Jan</span> <span class="ni-cat"><a href="/economics.htm">Economics</a></span> </div> <div class="ni-title h4"> <a href="/partner/article/addressing-workplace-mental-health-in-the-digital-era">Addressing workplace mental health in the digital era</a> </div> <div class="ni-desc"> <a href="/partner/article/addressing-workplace-mental-health-in-the-digital-era"> As digitalisation transforms workplaces across Europe, new challenges to mental health are emerging that demand urgent attention. A recent event at the European Parliament in Brussels explored how Europe can safeguard worker wellbeing in the digital age </a> </div> </div> </div><div class="news-item"> <div class="ni-image"> <a href="/news/article/musk-symptom-or-cause-of-european-malaise"> <img data-src="/siteimg/list-x-four/ugc-1/fullnews/news/24948/24697_original.jpg" class=" lazyload" alt="Musk: Symptom or cause of European malaise?"> </a> </div> <div class="ni-content"> <div class="ni-meta"> <span class="ni-date">17 Jan</span> <span class="ni-cat"><a href="/eu-institutions.htm">EU Institutions</a></span> </div> <div class="ni-title h4"> <a href="/news/article/musk-symptom-or-cause-of-european-malaise">Musk: Symptom or cause of European malaise?</a> </div> <div class="ni-desc"> <a href="/news/article/musk-symptom-or-cause-of-european-malaise"> As Elon Musk sets political fires across X, the EU is being forced to reckon with its own choices amid rising anti-establishment and populist sentiment. </a> </div> </div> </div><div class="news-item"> <div class="ni-image"> <a href="/partner/article/a-competitive-europe-with-or-without-plastics"> <img data-src="/siteimg/list-x-four/ugc-1/fullnews/news/24915/24653_original.jpg" class=" lazyload" alt="A competitive Europe – with or without plastics?"> <span class="ni-tag">Partner Content</span> </a> </div> <div class="ni-content"> <div class="ni-meta"> <span class="ni-date">16 Jan</span> <span class="ni-cat"><a href="/energy-and-environment.htm">Energy & Environment</a></span> </div> <div class="ni-title h4"> <a href="/partner/article/a-competitive-europe-with-or-without-plastics">A competitive Europe – with or without plastics?</a> </div> <div class="ni-desc"> <a href="/partner/article/a-competitive-europe-with-or-without-plastics"> As the EU grapples with the challenge of balancing economic competitiveness with sustainability, the plastics sector finds itself at a pivotal moment. Despite being a global leader in recycling, progress on circularity is faltering. We organised an event in the European Parliament to explore the urgent need for innovation, regulatory clarity, and investment to boost plastic recycling </a> </div> </div> </div><div class="news-item"> <div class="ni-image"> <a href="/news/article/from-generation-greta-to-the-bande-de-bardella-why-europes-youth-are-shifting-political-loyalties"> <img data-src="/siteimg/list-x-four/ugc-1/fullnews/news/24930/24672_original.jpg" class=" lazyload" alt="From Generation Greta to the Bande de Bardella: Why Europe’s youth are shifting political loyalties"> </a> </div> <div class="ni-content"> <div class="ni-meta"> <span class="ni-date">13 Jan</span> <span class="ni-cat"><a href="/eu-institutions.htm">EU Institutions</a></span> </div> <div class="ni-title h4"> <a href="/news/article/from-generation-greta-to-the-bande-de-bardella-why-europes-youth-are-shifting-political-loyalties">From Generation Greta to the Bande de Bardella: Why Europe’s youth are shifting political loyalties</a> </div> <div class="ni-desc"> <a href="/news/article/from-generation-greta-to-the-bande-de-bardella-why-europes-youth-are-shifting-political-loyalties"> Europe’s young voters are increasingly turning to far-right parties, driven by frustration with mainstream politics, democratic disenchantment and an appeal to alternative policies. </a> </div> </div> </div><div class="news-item"> <div class="ni-image"> <a href="/partner/article/15-years-of-entsoe-from-cooperation-to-energy-transition"> <img data-src="/siteimg/list-x-four/ugc-1/fullnews/news/24935/24677_original.jpg" class=" lazyload" alt="15 years of ENTSO-E: from cooperation to energy transition"> <span class="ni-tag">Partner Content</span> </a> </div> <div class="ni-content"> <div class="ni-meta"> <span class="ni-date">13 Jan</span> <span class="ni-cat"><a href="/energy-and-environment.htm">Energy & Environment</a></span> </div> <div class="ni-title h4"> <a href="/partner/article/15-years-of-entsoe-from-cooperation-to-energy-transition">15 years of ENTSO-E: from cooperation to energy transition</a> </div> <div class="ni-desc"> <a href="/partner/article/15-years-of-entsoe-from-cooperation-to-energy-transition"> The European Network of Transmission System Operators for Electricity (ENTSO-E) is celebrating its 15th anniversary this year. </a> </div> </div> </div><div class="news-item"> <div class="ni-image"> <a href="/news/article/trumps-return-could-dash-eus-enlargement-ambitions-in-the-balkans"> <img data-src="/siteimg/list-x-four/ugc-1/fullnews/news/24924/24662_original.jpg" class=" lazyload" alt="Trump’s return could dash EU’s enlargement ambitions in the Balkans"> </a> </div> <div class="ni-content"> <div class="ni-meta"> <span class="ni-date">08 Jan</span> <span class="ni-cat"><a href="/eu-institutions.htm">EU Institutions</a></span> </div> <div class="ni-title h4"> <a href="/news/article/trumps-return-could-dash-eus-enlargement-ambitions-in-the-balkans">Trump’s return could dash EU’s enlargement ambitions in the Balkans</a> </div> <div class="ni-desc"> <a href="/news/article/trumps-return-could-dash-eus-enlargement-ambitions-in-the-balkans"> As Donald Trump makes his return to the White House, his political stylings could galvanise nationalist movements in Serbia and in Bosnia and Herzegovina, hindering the EU’s hopes to incorporate them into the bloc. </a> </div> </div> </div><div class="news-item"> <div class="ni-image"> <a href="/news/article/trump-20-a-test-for-the-eus-global-climate-leadership"> <img data-src="/siteimg/list-x-four/ugc-1/fullnews/news/24922/24660_original.jpg" class=" lazyload" alt="Trump 2.0: A test for the EU’s global climate leadership"> </a> </div> <div class="ni-content"> <div class="ni-meta"> <span class="ni-date">07 Jan</span> <span class="ni-cat"><a href="/eu-institutions.htm">EU Institutions</a></span> </div> <div class="ni-title h4"> <a href="/news/article/trump-20-a-test-for-the-eus-global-climate-leadership">Trump 2.0: A test for the EU’s global climate leadership</a> </div> <div class="ni-desc"> <a href="/news/article/trump-20-a-test-for-the-eus-global-climate-leadership"> Trump’s ‘energy dominance’ agenda may threaten the EU’s precarious energy situation, but it could also present an opportunity for the bloc to lead on clean tech. </a> </div> </div> </div><div class="news-item"> <div class="ni-image"> <a href="/news/article/could-trumps-second-term-be-a-win-for-the-eu"> <img data-src="/siteimg/list-x-four/ugc-1/fullnews/news/24914/24652_original.jpg" class=" lazyload" alt="Could Trump's second term be a win for the EU?"> </a> </div> <div class="ni-content"> <div class="ni-meta"> <span class="ni-date">06 Jan</span> <span class="ni-cat"><a href="/eu-institutions.htm">EU Institutions</a></span> </div> <div class="ni-title h4"> <a href="/news/article/could-trumps-second-term-be-a-win-for-the-eu">Could Trump's second term be a win for the EU?</a> </div> <div class="ni-desc"> <a href="/news/article/could-trumps-second-term-be-a-win-for-the-eu"> With Donald Trump's return to the White House, the European Union might see unexpected benefits. If the bloc plays its cards right, trade and defence policies could get a boost. </a> </div> </div> </div><div class="news-item"> <div class="ni-image"> <a href="/partner/article/our-clean-future-the-indispensable-role-of-europes-cleaning-and-maintenance-product-industry"> <img data-src="/siteimg/list-x-four/ugc-1/fullnews/news/24911/24676_original.jpg" class=" lazyload" alt="The indispensable role of Europe’s cleaning and maintenance products industry"> <span class="ni-tag">Partner Content</span> </a> </div> <div class="ni-content"> <div class="ni-meta"> <span class="ni-date">03 Jan</span> </div> <div class="ni-title h4"> <a href="/partner/article/our-clean-future-the-indispensable-role-of-europes-cleaning-and-maintenance-product-industry">The indispensable role of Europe’s cleaning and maintenance products industry</a> </div> <div class="ni-desc"> <a href="/partner/article/our-clean-future-the-indispensable-role-of-europes-cleaning-and-maintenance-product-industry"> Hygiene is vital for good health, and the first line of defence to protect our health is to live in a clean space. That’s why The Parliament Magazine recently partnered with the European detergents and maintenance products industry association A.I.S.E. to explore the role of hygiene in public health. </a> </div> </div> </div><div class="news-item"> <div class="ni-image"> <a href="/partner/article/unleashing-the-power-of-a-patientcentred-life-science-ecosystem-to-drive-innovation-economic-growth-and-prosperity-across-the-eu"> <img data-src="/siteimg/list-x-four/ugc-1/fullnews/news/24866/24626_original.jpg" class=" lazyload" alt="Unleashing the power of a patient-centred life science ecosystem to drive innovation, economic growth and prosperity across the EU"> <span class="ni-tag">Partner Content</span> </a> </div> <div class="ni-content"> <div class="ni-meta"> <span class="ni-date">17 Dec</span> </div> <div class="ni-title h4"> <a href="/partner/article/unleashing-the-power-of-a-patientcentred-life-science-ecosystem-to-drive-innovation-economic-growth-and-prosperity-across-the-eu">Unleashing the power of a patient-centred life science ecosystem to drive innovation, economic growth and prosperity across the EU</a> </div> <div class="ni-desc"> <a href="/partner/article/unleashing-the-power-of-a-patientcentred-life-science-ecosystem-to-drive-innovation-economic-growth-and-prosperity-across-the-eu"> Placing research and innovation at the core of the EU’s economy </a> </div> </div> </div><div class="news-item"> <div class="ni-image"> <a href="/news/article/estonias-move-to-strip-russians-of-their-right-to-vote-rehashes-complicated-questions-of-belonging"> <img data-src="/siteimg/list-x-four/ugc-1/fullnews/news/24891/24629_original.jpg" class=" lazyload" alt="Estonia’s move to strip Russians of their right to vote rehashes complicated questions of belonging"> </a> </div> <div class="ni-content"> <div class="ni-meta"> <span class="ni-date">11 Dec</span> <span class="ni-cat"><a href="/foreign-and-security-policy.htm">Foreign & Security Policy</a></span> </div> <div class="ni-title h4"> <a href="/news/article/estonias-move-to-strip-russians-of-their-right-to-vote-rehashes-complicated-questions-of-belonging">Estonia’s move to strip Russians of their right to vote rehashes complicated questions of belonging</a> </div> <div class="ni-desc"> <a href="/news/article/estonias-move-to-strip-russians-of-their-right-to-vote-rehashes-complicated-questions-of-belonging"> The government says Russian and Belarusian citizens are a security risk, which has some of them rethinking their place in Estonian society.  </a> </div> </div> </div><div class="news-item"> <div class="ni-image"> <a href="/partner/article/protecting-europes-water-resources"> <img data-src="/siteimg/list-x-four/ugc-1/fullnews/news/24884/24623_original.jpg" class=" lazyload" alt="Protecting Europe’s water resources"> <span class="ni-tag">Partner Content</span> </a> </div> <div class="ni-content"> <div class="ni-meta"> <span class="ni-date">11 Dec</span> </div> <div class="ni-title h4"> <a href="/partner/article/protecting-europes-water-resources">Protecting Europe’s water resources</a> </div> <div class="ni-desc"> <a href="/partner/article/protecting-europes-water-resources"> With unpredictable weather patterns intensifying across the continent, Europe’s water management strategies need to adapt. What steps can policy-makers and stakeholders take to build resilience? </a> </div> </div> </div><div class="news-item"> <div class="ni-image"> <a href="/partner/article/building-a-circular-economy-with-steel-at-its-core"> <img data-src="/siteimg/list-x-four/ugc-1/fullnews/news/24885/24624_original.jpg" class=" lazyload" alt="Building a circular economy – with steel at its core"> <span class="ni-tag">Partner Content</span> </a> </div> <div class="ni-content"> <div class="ni-meta"> <span class="ni-date">11 Dec</span> </div> <div class="ni-title h4"> <a href="/partner/article/building-a-circular-economy-with-steel-at-its-core">Building a circular economy – with steel at its core</a> </div> <div class="ni-desc"> <a href="/partner/article/building-a-circular-economy-with-steel-at-its-core"> The upcoming Circular Economy Act, alongside the recent PPWR, are set to transform resource management, as the Commission aims to make all packaging across the EU fully recyclable or reusable by 2030. The Parliament magazine and Steel for Packaging Europe gathered MEPs, policymakers and industry figures for a discussion on how to make this a reality </a> </div> </div> </div><div class="news-item"> <div class="ni-image"> <a href="/partner/article/tires-under-pressure-safeguarding-the-future-of-the-eus-tire-industry"> <img data-src="/siteimg/list-x-four/ugc-1/fullnews/news/24883/24622_original.jpg" class=" lazyload" alt="Tires under pressure - safeguarding the future of the EU’s tire industry"> <span class="ni-tag">Partner Content</span> </a> </div> <div class="ni-content"> <div class="ni-meta"> <span class="ni-date">10 Dec</span> </div> <div class="ni-title h4"> <a href="/partner/article/tires-under-pressure-safeguarding-the-future-of-the-eus-tire-industry">Tires under pressure - safeguarding the future of the EU’s tire industry</a> </div> <div class="ni-desc"> <a href="/partner/article/tires-under-pressure-safeguarding-the-future-of-the-eus-tire-industry"> The European tire industry, a key sector underpinning the continent’s economy, is facing escalating costs and regulatory challenges. At a recent event in the European Parliament, industry leaders warned that urgent support is needed to ensure the industry remains competitive </a> </div> </div> </div><div class="news-item"> <div class="ni-image"> <a href="/news/article/von-der-leyens-new-mandate-is-one-of-contradictions-and-competing-interests"> <img data-src="/siteimg/list-x-four/ugc-1/fullnews/news/24886/24625_original.jpg" class=" lazyload" alt="Von der Leyen's new mandate is one of contradictions and competing interests "> </a> </div> <div class="ni-content"> <div class="ni-meta"> <span class="ni-date">10 Dec</span> <span class="ni-cat"><a href="/eu-institutions.htm">EU Institutions</a></span> </div> <div class="ni-title h4"> <a href="/news/article/von-der-leyens-new-mandate-is-one-of-contradictions-and-competing-interests">Von der Leyen's new mandate is one of contradictions and competing interests </a> </div> <div class="ni-desc"> <a href="/news/article/von-der-leyens-new-mandate-is-one-of-contradictions-and-competing-interests"> The European Commission president's efforts to appeal to the left and far right have her allies calling her savvy. Her critics would call it duplicitous. Getting her agenda through will be a difficult balancing act.  </a> </div> </div> </div><div class="news-item"> <div class="ni-image"> <a href="/news/article/why-raffaele-fitto-was-melonis-best-bet-for-the-new-commission"> <img data-src="/siteimg/list-x-four/ugc-1/fullnews/news/24882/24621_original.jpg" class=" lazyload" alt="Why Raffaele Fitto was Meloni’s best bet for the new Commission"> </a> </div> <div class="ni-content"> <div class="ni-meta"> <span class="ni-date">09 Dec</span> <span class="ni-cat"><a href="/eu-institutions.htm">EU Institutions</a></span> </div> <div class="ni-title h4"> <a href="/news/article/why-raffaele-fitto-was-melonis-best-bet-for-the-new-commission">Why Raffaele Fitto was Meloni’s best bet for the new Commission</a> </div> <div class="ni-desc"> <a href="/news/article/why-raffaele-fitto-was-melonis-best-bet-for-the-new-commission"> Raffaele Fitto’s appointment as an executive vice-president marks a significant shift in the European Commission, securing ECR presence in Europe’s new political landscape. </a> </div> </div> </div></div> <div class="paging"> <ul class="pagination"> <li class="on"> <a href="?news_pg=1" class="on">1</a> </li> <li class=""> <a href="?news_pg=2" class="">2</a> </li> <li class=""> <a href="?news_pg=3" class="">3</a> </li> <li class=""> <a href="?news_pg=4" class="">4</a> </li> <li class=""> <a href="?news_pg=5" class="">5</a> </li> <li class="next"> <a href="?news_pg=2" class="next">&gt;</a> </li> <li class="last"> <a href="?news_pg=12" class="last">&gt;&gt;</a> </li> </ul> </div> </div><div class="row row--ad"> <!-- /1048162/pm/interviews_bot --> <div id='div-gpt-ad-1608230013890-2' class="peu-ad"> <script> googletag.cmd.push(function() { googletag.display('div-gpt-ad-1608230013890-2'); }); </script> </div> </div><div id="poool-parlmag" style="display:none">&nbsp;</div> </div> </div> </div> </main> <footer> <div class="container"> <div class="ftr-col ftr-col--left clearFix"> <div class="ftr-subsWrap"> <div class="h3">A monthly magazine packed with timely features, news analyses and opinion articles on EU policy.</div> <div class="ftr-subs"> <a class="clearFix" href="https://www.tpgroupshop.com/store/products,the-parliament_21.htm" target="_blank"> <div class="ftrs-img"> <img class="lazyload" data-src="/ugc-1/uploads/pageblocks/9536/3be38dbbd1158279f47e4e735177fe60.png" alt="Subscribe" > </div> <div class="ftrs-text"> <p><strong>Subscribe to The Parliament</strong></p> <p><span class="btn btn--yellow btn--xsmall">Subscribe now</span></p> </div> </a> </div> </div> <div class="ftr-social"> <div class="h3 nato">Follow us</div> <a href="http://www.twitter.com/parlimag" target="_blank" class="icon icon--x"> <svg xmlns="http://www.w3.org/2000/svg" shape-rendering="geometricPrecision" text-rendering="geometricPrecision" image-rendering="optimizeQuality" fill-rule="evenodd" clip-rule="evenodd" viewBox="0 0 512 462.799"><path fill-rule="nonzero" d="M403.229 0h78.506L310.219 196.04 512 462.799H354.002L230.261 301.007 88.669 462.799h-78.56l183.455-209.683L0 0h161.999l111.856 147.88L403.229 0zm-27.556 415.805h43.505L138.363 44.527h-46.68l283.99 371.278z"/></svg> </a> <a href="https://www.linkedin.com/company/the-parliament-magazine/" target="_blank" class="icon icon--linkedIn"></a> </div> <div class="ftr-copyWrap"> <p>Registered in England & Wales under No. 07291783</p> <p>&copy; Political Holdings Limited <script>document.write(new Date().getFullYear());</script></p> </div> </div> <div class="ftr-col ftr-col--right clearFix flx flx--wr"> <!-- <div class="ftr-subcol ftr-subcol--1"> <div class="h5 sans">Quick Links</div> <ul> <li><a href="/">Home</a></li> <li><a href="/news.htm">News</a></li> <li><a href="/opinion.htm">Opinion</a></li> <li><a href="/interviews.htm">Interviews</a></li> <li><a href="/pm-plus.htm">PM+</a></li> <li><a href="/pm-plus.htm">Policy</a></li> <li><a href="/magazine.htm">Magazine</a></li> <li><a href="/events.htm">Events</a></li> <li><a href="/more/commercial-opportunities.htm">Commercial Opportunities</a></li> </ul> <span class="icon icon--chevDown"></span> </div> --> <div class="ftr-subcol ftr-subcol--1"> <div class="h5 sans">Services</div> <ul> <li><a href="https://www.totalpolitics.com/media/" target="_blank">Media</a></li> <li><a href="https://www.totalpolitics.com/events/" target="_blank">Events</a></li> <li><a href="https://www.totalpolitics.com/training/" target="_blank">Training</a></li> </ul> <span class="icon icon--chevDown"></span> </div> <div class="ftr-subcol ftr-subcol--1"> <div class="h5 sans">Media & Publishing</div> <ul> <li><a href="https://www.politicshome.com/" target="_blank">PoliticsHome</a></li> <li><a href="http://www.holyrood.com" target="_blank">Holyrood</a></li> <li><a href="https://www.civilserviceworld.com/" target="_blank">Civil Service World</a></li> <li><a href="https://www.politicshome.com/thehouse" target="_blank">The House Magazine</a></li> <li><a href="http://www.publictechnology.net/" target="_blank">PublicTechnology</a></li> <li><a href="http://www.trainingjournal.com" target="_blank">Training Journal</a></li> <li><a href="https://www.tpgroupshop.com/" target="_blank">Subscribe to Total Politics media titles</a></li> </ul> <span class="icon icon--chevDown"></span> </div> <div class="ftr-subcol ftr-subcol--1 ftr-subcol--last"> <div class="h5 sans">About Us</div> <ul> <li><a href="https://www.totalpolitics.com/" target="_blank">Total Politics Group</a></li> <li><a href="https://www.totalpolitics.com/docs/privacy-policy.pdf" target="_blank">Privacy Policy</a></li> <li><a href="https://www.totalpolitics.com/docs/Website_Terms_and_Conditions_of_Use.pdf" target="_blank">Terms &amp;&nbsp;Conditions</a></li> </ul> <span class="icon icon--chevDown"></span> </div> <!--<div class="ftr-subcol ftr-subcol--1"> <div class="h5 sans">Dods Events</div> <span class="icon icon--chevDown"></span> </div>--> <!--<div class="ftr-subcol ftr-subcol--1 ftr-subcol--last"> <div class="h5 sans">Partnership Events</div> <span class="icon icon--chevDown"></span> </div>--> </div> </div> </footer> <!--Skin Ad Unit--> <!-- /1048162/pm/interviews_skin --> <div id='div-gpt-ad-1608230013890-3'> <script> googletag.cmd.push(function() { googletag.display('div-gpt-ad-1608230013890-3'); }); </script> </div> <!-- /1048162/pm/interviews_pixel-1 --> <div id='div-gpt-ad-1608230013890-4'> <script> googletag.cmd.push(function() { googletag.display('div-gpt-ad-1608230013890-4'); }); </script> </div> <!-- /1048162/pm/interviews_pixel-2 --> <div id='div-gpt-ad-1608230013890-5'> <script> googletag.cmd.push(function() { googletag.display('div-gpt-ad-1608230013890-5'); }); </script> </div> <script type="text/javascript"> //<![CDATA[ Sys.WebForms.PageRequestManager._initialize('ctl00$ajax', 'form1', [], [], [], 90, 'ctl00'); //]]> </script> <!-- Global site tag (gtag.js) - Google Analytics --> <script async src="https://www.googletagmanager.com/gtag/js?id=UA-2383253-1"></script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'UA-2383253-1'); </script> <!-- Hotjar Tracking Code for https://www.theparliamentmagazine.eu/ --><script> (function(h,o,t,j,a,r){ h.hj=h.hj||function(){(h.hj.q=h.hj.q||[]).push(arguments)}; h._hjSettings={hjid:1499290,hjsv:6}; a=o.getElementsByTagName('head')[0]; r=o.createElement('script');r.async=1; r.src=t+h._hjSettings.hjid+j+h._hjSettings.hjsv; a.appendChild(r); })(window,document,'https://static.hotjar.com/c/hotjar-','.js?sv='); </script> <script type="text/javascript"> _linkedin_partner_id = "1282260"; window._linkedin_data_partner_ids = window._linkedin_data_partner_ids || []; window._linkedin_data_partner_ids.push(_linkedin_partner_id); </script><script type="text/javascript"> (function(){var s = document.getElementsByTagName("script")[0]; var b = document.createElement("script"); b.type = "text/javascript";b.async = true; b.src = "https://snap.licdn.com/li.lms-analytics/insight.min.js"; s.parentNode.insertBefore(b, s);})(); </script><noscript> <img height="1" width="1" style="display:none;" alt="" src="https://px.ads.linkedin.com/collect/?pid=1282260&fmt=gif" /> </noscript> <!-- Quantcast Consent Handlers --> <script async type="text/javascript"> function dodsCheckQuantCast () { if (typeof(window.__tcfapi) !== 'function') { setTimeout(function () { dodsCheckQuantCast(); }, 250); } else { __tcfapi('getTCData', 2, function(tcData, success) { if (!success || tcData.cmpStatus != "loaded") { setTimeout(function () { dodsCheckQuantCast(); }, 250); } else { __tcfapi('addEventListener', 2, function(tcData, success) { if (success) { dodsGetVendorConsents(tcData); } }); } }); } } dodsCheckQuantCast(); function dodsGetVendorConsents(tcData) { // Google GDPR checks console.log('Google GDPR checks', tcData.eventStatus, tcData.gdprApplies); if(tcData.eventStatus === 'tcloaded' || tcData.eventStatus === 'useractioncomplete') { if (!tcData.gdprApplies) { console.log('GDPR does not apply'); // Do nothing as all ads allowed } else { console.log('GDPR applies'); // GDPR applies // Purpose 1 refers to the storage and/or access of information on a device. var hasDeviceStorageAndAccessConsent = tcData.purpose.consents[1] || false; // Google Requires Consent for Purpose 1 console.log('Storage consent', hasDeviceStorageAndAccessConsent); if (hasDeviceStorageAndAccessConsent) { var hasGoogleAdvertisingProductsConsent = tcData.vendor.consents[755] || false; // Google Advertising (IAB Vendor ID 755) console.log('Google consent', hasGoogleAdvertisingProductsConsent); if (hasGoogleAdvertisingProductsConsent) { var hasPersonalizedProfileConsent = tcData.purpose.consents[3] || false; var hasPersonalizedAdsConsent = tcData.purpose.consents[4] || false; // Check if have add personalization consent Purpose 3 and 4 console.log('Google personalization consent', hasPersonalizedAdsConsent, hasPersonalizedProfileConsent); if( hasPersonalizedAdsConsent && hasPersonalizedProfileConsent ) { // Set request non-personalized ads to false. (do nothing as default) } else { // Set request non-personalized ads to true. googletag.cmd.push(function() { googletag.pubads().setRequestNonPersonalizedAds(1); }); } } } } // Refresh the ads after the consent has been configured googletag.cmd.push(function() { googletag.pubads().refresh(); }); } } </script> <div class="aspNetHidden"> <input type="hidden" name="__VIEWSTATEGENERATOR" id="__VIEWSTATEGENERATOR" value="90059987" /> </div></form> <form id="Form_Eloqua" method="post" action="https://s438870623.t.eloqua.com/e/f2"> <input type="hidden" name="elqCustomerGUID" value=""> <input type="hidden" name="elqCookieWrite" value="0"> </form> <script type='text/javascript'> var _elqQ = _elqQ || []; _elqQ.push(['elqSetSiteId', '438870623']); _elqQ.push(['elqTrackPageView']); (function () { function a() { var b = document.createElement("script"); b.type = "text/javascript"; b.async = !0; b.src = "//img.en25.com/i/elqCfg.min.js"; var a = document.getElementsByTagName("script")[0]; a.parentNode.insertBefore(b, a) } window.addEventListener ? window.addEventListener("DOMContentLoaded", a, !1) : window.attachEvent && window.attachEvent("onload", a) })(); </script> <script type='text/javascript'><!--// var timerId = null, timeout = 5; //--></script> <script type='text/javascript'><!--// function WaitUntilCustomerGUIDIsRetrieved() { if (!!(timerId)) { if (timeout == 0) { return; } if (typeof this.GetElqCustomerGUID === 'function') { $('input[name="elqCustomerGUID"]').val(GetElqCustomerGUID()); return; } timeout -= 1; } timerId = setTimeout("WaitUntilCustomerGUIDIsRetrieved()", 500); return; } window.onload = WaitUntilCustomerGUIDIsRetrieved; _elqQ.push(['elqGetCustomerGUID']); //--></script> </body> </html>

Pages: 1 2 3 4 5 6 7 8 9 10