CINXE.COM
Global News | Latest & Current News - Weather, Sports & Health News
<!DOCTYPE html> <html lang="en-US"> <head><script type="text/javascript" src="/_static/js/bundle-playback.js?v=HxkREWBo" charset="utf-8"></script> <script type="text/javascript" src="/_static/js/wombat.js?v=txqj7nKC" charset="utf-8"></script> <script>window.RufflePlayer=window.RufflePlayer||{};window.RufflePlayer.config={"autoplay":"on","unmuteOverlay":"hidden"};</script> <script type="text/javascript" src="/_static/js/ruffle/ruffle.js"></script> <script type="text/javascript"> __wm.init("https://web.archive.org/web"); __wm.wombat("https://globalnews.ca/bc/events/","20220322044914","https://web.archive.org/","web","/_static/", "1647924554"); </script> <link rel="stylesheet" type="text/css" href="/_static/css/banner-styles.css?v=S1zqJCYt" /> <link rel="stylesheet" type="text/css" href="/_static/css/iconochive.css?v=3PDvdIFv" /> <!-- End Wayback Rewrite JS Include --> <script type="text/javascript"> function gnca_get_location_from_geo_data( geo_data ) { var loc_url = document.location.href.toLowerCase(); if( loc_url.indexOf('gref=') > -1 ) { if( loc_url.indexOf( 'gref=am980' ) > -1 ) { return 'gnca-london'; } else if( loc_url.indexOf( 'gref=900chml' ) > -1 ) { return 'gnca-hamilton'; } else if( loc_url.indexOf( 'gref=channel12' ) > -1 ) { return 'gnca-durham'; } else if( loc_url.indexOf( 'gref=chextv' ) > -1 ) { return 'gnca-peterborough'; } else if( loc_url.indexOf( 'gref=ckwstv' ) > -1 ) { return 'gnca-kingston'; } } // Handle regions that are "misnamed". For instance, the province of Ontario is in the "Toronto" region. if( geo_data.region ) { geo_data.region = geo_data.region.toUpperCase(); } else { return false; } switch (geo_data.region) { case 'ONTARIO': if( geo_data.city ) { var city = geo_data.city.toUpperCase(); if( 'LONDON' === city || 'WOODSTOCK' === city ) { return 'gnca-london'; } else if( 'GUELPH' === city ) { return 'gnca-guelph'; } else if( 'HAMILTON' === city ) { return 'gnca-hamilton'; } else if( 'PETERBOROUGH' === city ) { return 'gnca-peterborough'; } else if( 'KINGSTON' === city ) { return 'gnca-kingston'; } else if( (['AJAX','BROCK', 'CLARINGTON','OSHAWA','PICKERING','SCUGOG','UXBRIDGE','WHITBY']).indexOf(city) > -1 ) { return 'gnca-durham'; } else if( (['BARRIE', 'COLLINGWOOD', 'ORILLIA', 'NEWMARKET', 'INNISFIL', 'WASAGA BEACH']).indexOf(city) > -1 ) { return 'gnca-barrie'; } else if( 'KITCHENER' === city || 'WATERLOO' === city ) { return 'gnca-kitchener'; } } if ( geo_data.longitude < -76.232 ) { return 'gnca-toronto'; } else { return 'gnca-ottawa'; } case 'QUEBEC': if( geo_data.city ) { var city = geo_data.city.toUpperCase(); if( 'GATINEAU' === city ) { return 'gnca-ottawa'; } } return 'gnca-montreal'; case 'MANITOBA': return 'gnca-winnipeg'; // If in one of the maritime regions, handle that now case 'NOVA SCOTIA': return 'gnca-halifax'; case 'NEW BRUNSWICK': return 'gnca-new-brunswick'; } // If geo_data is not set properly, no more explorations of the location can be done. if ( 'undefined' === typeof( geo_data.latitude ) || 'undefined' === typeof( geo_data.longitude ) ) { return false; } /** * Handle provinces with multiple regions. These are determined by first look at the region that the was identified. * Next, the latitude or longitude is investigated to determine which region within the province the is appropriate. */ if ( 'BRITISH COLUMBIA' === geo_data.region ) { if ( geo_data.longitude > -121.000 ) { return 'gnca-okanagan'; } else { return 'gnca-bc'; } } /** * There are 3 regions in Alberta. To simplify the logic, the function checks for the bottom most, then the top most * region. If it is not the top or bottom most region, it is assumed to be the middle region. */ if ( 'ALBERTA' === geo_data.region ) { if ( geo_data.latitude > 52.145 ) { // Demarcation of bottom and middle region return 'gnca-edmonton'; } else if ( geo_data.latitude < 50.222 ) { // Demarcation of top and middle region return 'gnca-lethbridge'; } else { return 'gnca-calgary'; } } if ( 'SASKATCHEWAN' === geo_data.region ) { if ( geo_data.latitude < 51.212 ) { return 'gnca-regina'; } else { return 'gnca-saskatoon'; } } return false; } </script> <script type="text/javascript"> function geoSetCookie(cname, cvalue, exdays) { var d = new Date(); d.setTime(d.getTime() + (exdays*24*60*60*1000)); var expires = "expires="+ d.toUTCString(); document.cookie = cname + "=" + cvalue + ";" + expires + ";path=/"; } function geoGetCookie(cname, cvalue, exdays) { var name = cname + "="; var decodedCookie = decodeURIComponent(document.cookie); var ca = decodedCookie.split(';'); for (var i = 0; i <ca.length; i++) { var c = ca[i]; while (c.charAt(0) == ' ') { c = c.substring(1); } if (c.indexOf(name) == 0) { return c.substring(name.length, c.length); } } return ""; } var cookieName = 'gncaGeoDetected'; var geoDetected = geoGetCookie( cookieName ); console.log( 'geo detected?', geoDetected ); // Ensure geo detection only takes place once. if ( ! geoDetected ) { // Save a cookie to remember the geo detection attempt. geoSetCookie( cookieName, geoDetected + 1, 1 ); console.log( 'set geoDetected' ); // Timeout geo detection request to ensure the cookie is set. setTimeout( function() { // detect region var xhr = new XMLHttpRequest(); xhr.open( 'GET', 'https://web.archive.org/web/20220322044914/https://public-api.wordpress.com/geo/', false ); xhr.onreadystatechange = function() { // Call a function when the state changes. if ( this.readyState === XMLHttpRequest.DONE && this.status === 200 ) { var geo = JSON.parse( this.responseText ); var region = gnca_get_location_from_geo_data( geo ); if ( ! region ) { region = 'gnca-national'; } var xhttp = new XMLHttpRequest(); xhttp.open( 'POST', '/gnca-ajax/blank', false ); xhttp.setRequestHeader( 'Content-type', 'application/x-www-form-urlencoded' ); xhttp.onreadystatechange = function() { // Call a function when the state changes. if ( this.readyState === XMLHttpRequest.DONE && this.status === 200 ) { window.location.reload(); } }; xhttp.send( 'gnca-region=' + region ); } }; xhr.send(''); }, 500 ); } </script> <!-- Meta Tags --> <meta charset="UTF-8"> <meta name="theme-color" content="#002E5D"> <meta name="msvalidate.01" content="9E5C74811CA48CCCC61A2CF3C0A1BA6A"> <meta name="p:domain_verify" content="5f93bd32b1e65381fb7e5f011b09a343"> <meta name="google-site-verification" content="kPssqxbHl7AR6ywFdAIUH7Cx8oskiy8sR4QTb_WTPko"/> <meta name="pocket-site-verification" content="63201d4562fc69882d0dfd70dc4bd6"> <link rel="manifest" href="/web/20220322044914/https://globalnews.ca/manifest.json"> <script src="https://web.archive.org/web/20220322044914js_/https://cdn.onesignal.com/sdks/OneSignalSDK.js" async=""></script> <script src="https://web.archive.org/web/20220322044914js_/https://globalnews.ca/wp-content/themes/shaw-globalnews/js/min/one-signal.min.js?v=1.1.2" async=""></script> <meta id="metaViewport" name="viewport" content="width=device-width, initial-scale=1.0"> <title>Global News | Latest & Current News - Weather, Sports & Health News</title> <meta name="title" content="Global News | Latest & Current News - Weather, Sports & Health News"> <meta name="description" content="Global News - breaking news & current latest Canadian news headlines; national weather forecasts & predictions, local news videos, money and financial news; sports stats and scores."> <link href="https://web.archive.org/web/20220322044914/https://globalnews.ca/" rel="canonical"/> <script type="application/ld+json"> {"@context":"https:\/\/web.archive.org\/web\/20220322044914\/http:\/\/schema.org","@type":"Organization","name":"Global News","url":"https:\/\/web.archive.org\/web\/20220322044914\/https:\/\/globalnews.ca","logo":"https:\/\/web.archive.org\/web\/20220322044914\/https:\/\/globalnews.ca\/wp-content\/themes\/shaw-globalnews\/_img\/logos\/globalnews-print.png","sameAs":["https:\/\/web.archive.org\/web\/20220322044914\/https:\/\/www.facebook.com\/GlobalNews","https:\/\/web.archive.org\/web\/20220322044914\/https:\/\/twitter.com\/globalnews","https:\/\/web.archive.org\/web\/20220322044914\/https:\/\/www.pinterest.com\/globaltvnews\/","https:\/\/web.archive.org\/web\/20220322044914\/https:\/\/www.youtube.com\/globalnews","https:\/\/web.archive.org\/web\/20220322044914\/https:\/\/www.linkedin.com\/company\/global-television\/","https:\/\/web.archive.org\/web\/20220322044914\/https:\/\/www.instagram.com\/globalnews\/"]} </script> <script type="application/ld+json"> { "@context": "https://web.archive.org/web/20220322044914/http://schema.org", "@type": "WebSite", "url": "https://web.archive.org/web/20220322044914/https://globalnews.ca", "potentialAction": { "@type": "SearchAction", "target": "https://web.archive.org/web/20220322044914/https://globalnews.ca/search/{search_term_string}" , "query-input": "required name=search_term_string" } } </script> <!-- og: starts here --> <meta property="og:title" content="Global News | Latest & Current News - Weather, Sports & Health News"/> <meta property="og:description" content="Global News - breaking news & current latest Canadian news headlines; national weather forecasts & predictions, local news videos, money and financial news; sports stats and scores."/> <meta property="og:url" content="https://web.archive.org/web/20220322044914/https://globalnews.ca/"/> <meta property="og:site_name" content="Global News"/> <!-- og: ends here --> <!-- twitter: starts here --> <meta name="twitter:site" content="@globalnews"/> <meta name="twitter:title" content="Global News | Latest & Current News - Weather, Sports & Health News"/> <meta name="twitter:description" content="Global News - breaking news & current latest Canadian news headlines; national weather forecasts & predictions, local news videos, money and financial news; sports stats and scores."/> <!-- twitter: ends here --> <meta property="fb:app_id" content="318812448281278"> <!-- FB link ownership meta tags --> <meta property="fb:pages" content="114019975312443"> <meta property="fb:pages" content="115413405149434"> <meta property="fb:pages" content="156752041012592"> <meta property="fb:pages" content="85920510328"> <meta property="fb:pages" content="147876361920969"> <meta property="fb:pages" content="135368173158417"> <meta property="fb:pages" content="78585693009"> <meta property="fb:pages" content="130968530253684"> <meta property="fb:pages" content="209712602400859"> <meta property="fb:pages" content="160347210655494"> <meta property="fb:pages" content="104554073627"> <meta property="fb:pages" content="130660530344466"> <meta property="fb:pages" content="475237565520"> <meta property="fb:pages" content="101827423245383"> <meta property="fb:pages" content="10080840973"> <meta property="fb:pages" content="115446208478014"> <meta property="fb:pages" content="8475622807"> <meta property="fb:pages" content="116588618370885"> <meta property="fb:pages" content="7078490926"> <meta property="fb:pages" content="63750601090"> <meta property="fb:pages" content="17283404678"> <meta property="fb:pages" content="122301577965124"> <meta property="fb:pages" content="111515975551979"> <meta property="fb:pages" content="125250400820441"> <meta property="fb:pages" content="133713529984442"> <meta property="fb:pages" content="429228375456"> <!-- FB link ownership meta tags for FM --> <meta property="fb:pages" content="881072405358139"> <meta property="fb:pages" content="12799224100"> <meta property="fb:pages" content="257080087687534"> <meta property="fb:pages" content="789314681157775"> <meta property="fb:pages" content="112905142082887"> <meta property="fb:pages" content="19003505092"> <meta property="fb:pages" content="103411603025398"> <meta property="fb:pages" content="525962767428911"> <meta property="fb:pages" content="146507038705131"> <meta property="fb:pages" content="182496758453639"> <meta property="fb:pages" content="434208840045103"> <meta property="fb:pages" content="1559293260991262"> <meta property="fb:pages" content="880316541988529"> <meta property="fb:pages" content="16751766462"> <meta property="fb:pages" content="193313102322"> <meta property="fb:pages" content="478019845595073"> <meta property="fb:pages" content="1523209977908749"> <meta property="fb:pages" content="863955850330486"> <meta property="fb:pages" content="376802075093"> <meta property="fb:pages" content="270951586402505"> <meta property="fb:pages" content="296232292622"> <meta property="fb:pages" content="222336294466387"> <meta property="fb:pages" content="59903172026"> <meta property="fb:pages" content="15041172220"> <meta property="fb:pages" content="251425722777"> <meta property="fb:pages" content="51570824279"> <meta property="fb:pages" content="118387401802"> <meta property="fb:pages" content="91251252807"> <link rel="dns-prefetch" href="//web.archive.org/web/20220322044914/https://smetrics.globalnews.ca/"> <link rel="dns-prefetch" href="//web.archive.org/web/20220322044914/https://aip.context.corus.ca/"> <link rel="dns-prefetch" href="//web.archive.org/web/20220322044914/https://i0.wp.com/"> <link rel="dns-prefetch" href="//web.archive.org/web/20220322044914/https://i1.wp.com/"> <link rel="dns-prefetch" href="//web.archive.org/web/20220322044914/https://i2.wp.com/"> <link rel="dns-prefetch" href="//web.archive.org/web/20220322044914/https://f7e98148-cb09-4cf1-9b9f-b5aee3465d6e.edge.permutive.app/"> <link rel="dns-prefetch" href="//web.archive.org/web/20220322044914/https://api.permutive.com/"> <link rel="dns-prefetch" href="//web.archive.org/web/20220322044914/https://static.chartbeat.com/"> <link rel="dns-prefetch" href="//web.archive.org/web/20220322044914/https://mab.chartbeat.com/"> <link rel="dns-prefetch" href="//web.archive.org/web/20220322044914/https://ping.chartbeat.net/"> <link rel="dns-prefetch" href="//web.archive.org/web/20220322044914/https://sb.scorecardresearch.com/"> <link rel="shortcut icon" type="image/x-icon" href="https://web.archive.org/web/20220322044914im_/https://secure.gravatar.com/blavatar/134ef81f5668dc78080f6bd19ca2310b?s=32" sizes="16x16"/> <link rel="icon" type="image/x-icon" href="https://web.archive.org/web/20220322044914im_/https://secure.gravatar.com/blavatar/134ef81f5668dc78080f6bd19ca2310b?s=32" sizes="16x16"/> <!-- Apple PWA meta info @TODO: remove if wp-pwa plugin does it for us --> <link rel="apple-touch-icon" href="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/_img/pwa/news_square-144.png"/> <meta name="mobile-web-app-capable" content="yes"/> <meta name="apple-mobile-web-app-capable" content="yes"/> <meta name="apple-touch-fullscreen" content="yes"/> <meta name="apple-mobile-web-app-title" content="Global News"/> <meta name="apple-mobile-web-app-status-bar-style" content="default"/> <!-- iPhone 12 mini, 11 pro, X, Xs (1125px x 2436px) --> <link rel="apple-touch-startup-image" media="(device-width: 375px) and (device-height: 812px) and (-webkit-device-pixel-ratio: 3)" href="https://globalnews.ca/wp-content/themes/shaw-globalnews/_img/pwa/ios/launch-1125x2436.png"> <!-- iPhone 8, 7, 6s, 6 (750px x 1334px) --> <link rel="apple-touch-startup-image" media="(device-width: 375px) and (device-height: 667px) and (-webkit-device-pixel-ratio: 2)" href="https://globalnews.ca/wp-content/themes/shaw-globalnews/_img/pwa/ios/launch-750x1334.png"> <!-- iPhone 8 Plus, 7 Plus, 6s Plus, 6 Plus (1080px x 1920px) --> <link rel="apple-touch-startup-image" media="(device-width: 414px) and (device-height: 736px) and (-webkit-device-pixel-ratio: 3)" href="https://globalnews.ca/wp-content/themes/shaw-globalnews/_img/pwa/ios/launch-1080x1920.png"> <!-- iPhone 5 (640px x 1136px) --> <link rel="apple-touch-startup-image" media="(device-width: 320px) and (device-height: 568px) and (-webkit-device-pixel-ratio: 2)" href="https://globalnews.ca/wp-content/themes/shaw-globalnews/_img/pwa/ios/launch-640x1136.png"> <!-- iPad Pro 9.7", mini 7.9", Air 9.7", 9.7" (1536px x 2048px) --> <link rel="apple-touch-startup-image" media="(device-width: 768px) and (device-height: 1024px) and (-webkit-device-pixel-ratio: 2)" href="https://globalnews.ca/wp-content/themes/shaw-globalnews/_img/pwa/ios/launch-1536x2048.png"> <!-- iPad Pro 10.5" (1668px x 2224px) --> <link rel="apple-touch-startup-image" media="(device-width: 834px) and (device-height: 1112px) and (-webkit-device-pixel-ratio: 2)" href="https://globalnews.ca/wp-content/themes/shaw-globalnews/_img/pwa/ios/launch-1668x2224.png"> <!-- iPad Pro 12.9" (2048px x 2732px) --> <link rel="apple-touch-startup-image" media="(device-width: 1024px) and (device-height: 1366px) and (-webkit-device-pixel-ratio: 2)" href="https://globalnews.ca/wp-content/themes/shaw-globalnews/_img/pwa/ios/launch-2048x2732.png"> <!-- iPad Pro 11", Pro 10.5" (1668px x 2388px) --> <link rel="apple-touch-startup-image" media="(device-width: 834px) and (device-height: 1194px) and (-webkit-device-pixel-ratio: 2)" href="https://globalnews.ca/wp-content/themes/shaw-globalnews/_img/pwa/ios/launch-1668x2388.png"> <!-- iPad 10.2" (1620px x 2160px) --> <link rel="apple-touch-startup-image" media="(device-width: 810px) and (device-height: 1080px) and (-webkit-device-pixel-ratio: 1)" href="https://globalnews.ca/wp-content/themes/shaw-globalnews/_img/pwa/ios/launch-1620x2160.png"> <!-- iPhone 12 Pro Max (1284px x 2778px) --> <link rel="apple-touch-startup-image" media="(device-width: 428px) and (device-height: 926px) and (-webkit-device-pixel-ratio: 3)" href="https://globalnews.ca/wp-content/themes/shaw-globalnews/_img/pwa/ios/launch-1284x2778.png"> <!-- iPhone 12 Pro, 12 (1170px x 2532px) --> <link rel="apple-touch-startup-image" media="(device-width: 390px) and (device-height: 844px) and (-webkit-device-pixel-ratio: 3)" href="https://globalnews.ca/wp-content/themes/shaw-globalnews/_img/pwa/ios/launch-1170x2532.png"> <!-- iPhone 11 Pro Max, XS Max (1248px x 2688px) --> <link rel="apple-touch-startup-image" media="(device-width: 414px) and (device-height: 896px) and (-webkit-device-pixel-ratio: 3)" href="https://globalnews.ca/wp-content/themes/shaw-globalnews/_img/pwa/ios/launch-1242x2688.png"> <!-- iPhone 11, XR (828px x 1792px) --> <link rel="apple-touch-startup-image" media="(device-width: 414px) and (device-height: 896px) and (-webkit-device-pixel-ratio: 2)" href="https://globalnews.ca/wp-content/themes/shaw-globalnews/_img/pwa/ios/launch-828x1792.png"> <!-- iPhone 4" SE, iPod touch (640px x 1136px) --> <link rel="apple-touch-startup-image" media="(device-width: 320px) and (device-height: 568px) and (-webkit-device-pixel-ratio: 2)" href="https://globalnews.ca/wp-content/themes/shaw-globalnews/_img/pwa/ios/launch-640x1136.png"> <!-- Chartbeat Flicker Control Snippet --> <script type="text/javascript"> !function () { // Add customization below var headlineSelector = ".c-posts__headlineText"; var articleBlockSelector = ".c-posts__item"; var timeout = 1000; if (!("srcset" in document.createElement("img"))) return; const e = window.chartbeatFlicker = window.chartbeatFlicker || {}; function t(e, t, c, o) { const n = document.createElement("style"), i = function (e, t) { return e.split(",").reduce((e, c) => e + c + ` ${t} { visibility: hidden; }\n`, "") }(c, o); n.id = t, e.appendChild(n), n.type = "text/css", n.appendChild(document.createTextNode(i)) } window._sf_async_config = window._sf_async_config || {}, e.timeout = timeout, e.headlineSelector = headlineSelector, window._sf_async_config.articleBlockSelector = articleBlockSelector; const c = window._sf_async_config.articleBlockSelector; e.timeoutFlag = !1, e.strategyFetched = e.strategyFetched || !1; const o = document.head || document.querySelector("head"); t(o, "chartbeat-flicker-control-style-ht", c, e.headlineSelector), t(o, "chartbeat-flicker-control-style-it", c, "img"), document.addEventListener("DOMContentLoaded", () => { if (e.timeoutFlag) { const e = document.getElementById("chartbeat-flicker-control-style-it"); return void (e && e.parentNode.removeChild(e)) } const t = document.querySelectorAll(c); let o = []; t.forEach(function (e) { const t = Array.prototype.slice.call(e.querySelectorAll("img")); t.forEach(function (e) { e.getAttribute("pinger-seen") || e.classList.add("cb-it-hide") }), o = o.concat(t) }); const n = document.getElementById("chartbeat-flicker-control-style-it"); n && n.parentNode.removeChild(n) }), window.setTimeout(function () { if (!e.strategyFetched) { e.timeoutFlag = !0; const t = document.getElementById("chartbeat-flicker-control-style-ht"); t && t.parentNode.removeChild(t) } document.querySelectorAll(c).forEach(function (e) { Array.prototype.slice.call(e.querySelectorAll("img")).forEach(function (e) { "true" !== e.getAttribute("keep-hiding") && e.classList.remove("cb-it-hide") }) }) }, e.timeout) }(); // specify lazy loading attribute window._sf_async_config.lazyLoadSrcsetAttribute = 'data-src'; window._sf_async_config.flickerControl = false; </script> <meta name="robots" content="max-image-preview:large"/> <link rel="dns-prefetch" href="//web.archive.org/web/20220322044914/https://platform.twitter.com/"/> <link rel="dns-prefetch" href="//web.archive.org/web/20220322044914/https://addevent.com/"/> <link rel="dns-prefetch" href="//web.archive.org/web/20220322044914/https://netdna.bootstrapcdn.com/"/> <link rel="dns-prefetch" href="//web.archive.org/web/20220322044914/https://s.w.org/"/> <link rel="dns-prefetch" href="//web.archive.org/web/20220322044914/https://v0.wordpress.com/"/> <style id="hybrid-critical-css-0" type="text/css"> .c-search,.search-form input[type=search],body{font-family:proxima-nova,Arial,Helvetica Neue,Helvetica,sans-serif}html{line-height:1.15;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;scroll-behavior:smooth}body{background-attachment:fixed;background-size:cover;background-repeat:no-repeat;margin:0;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-size:1rem;line-height:1.5;letter-spacing:.03188rem;background-color:#ededf0}*,:after,:before{box-sizing:border-box}a{border-bottom:1px solid rgba(0,82,204,.2);-webkit-text-decoration-skip:objects;text-decoration:none;color:#0052cc;outline:none;cursor:pointer}a:focus,a:hover{background-color:rgba(0,82,204,.2)}b,strong{font-weight:700}svg:not(:root){overflow:hidden}button,input{overflow:visible}textarea{overflow:auto}select{font-size:.8125rem;padding:3px 6px;border:1px solid #ccc;border-radius:3px;box-shadow:inset 0 1px 2px rgba(0,0,0,.15)}cite,dfn,em,i{font-style:italic}blockquote{color:#002e5d;font-size:1.625rem;font-weight:700;line-height:1.5;overflow:hidden}blockquote cite{display:block;font-style:normal;font-weight:700;font-size:1rem;line-height:1.9375rem;color:#808083;margin-top:16px}abbr,acronym{border-bottom:1px dotted #666;cursor:help}ins,mark{background:#eee;text-decoration:none}small{font-size:80%}big{font-size:125%}[type=search]{-webkit-appearance:textfield}[type=search]::-webkit-search-cancel-button,[type=search]::-webkit-search-decoration{-webkit-appearance:none}button{overflow:visible;border:0;font:inherit;-webkit-font-smoothing:inherit;letter-spacing:inherit;background:none;cursor:pointer}img{height:auto;max-width:100%;transition:opacity .3s;opacity:1}img:not([src]){visibility:hidden}img.lazy[data-src]{opacity:0}img.lazy[data-src].visible{opacity:1}address,button,dd,dl,dt,fieldset,figure,h1,h2,h3,h4,h5,h6,input,legend,li,optgroup,select,textarea{margin:0;padding:0}fieldset{padding:0;border:none}legend{display:block}iframe{margin:0 auto;border:none}table{border:none;border-top:1px solid #ccc;border-collapse:collapse;margin:0 0 20px;width:100%}th{padding:8px 0;text-align:left;border:none}thead th{border-bottom:2px solid #ccc;padding-bottom:10px}td{padding:8px;border:none}tr{border-bottom:1px solid #ccc}p{margin:28px 0;padding:0}p.narrow{margin:10px 0}ol,ul{margin:0;padding:0 0 0 50px}main{display:block}article>*{margin-bottom:27px}aside>*{margin-bottom:64px}article>p{margin-top:0}article li{margin-bottom:17px}article div[class*=fsk_splitbox]{margin-bottom:0}article div[class*=fsk_splitbox].sb-opened{margin-bottom:32px}#wpstats{position:absolute;top:0;width:0;height:0;overflow:hidden}.embed-youtube{position:relative}.embed-youtube:before{content:"";display:block;padding:0 0 56.25%;width:100%;height:0}.embed-youtube>:first-child{position:absolute;left:50%;top:50%;transform:translateX(-50%) translateY(-50%);width:100%;height:100%}.embed-youtube .youtube-player{left:0;top:0;position:absolute;height:100%;width:100%;transform:none}.aligncenter{display:block;margin:0 auto}@font-face{font-family:proxima-nova;src:local("Proxima Nova"),url(/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/fonts/proxima-nova/proximanova-regular-webfont.woff2) format("woff2"),url(/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/fonts/proxima-nova/proximanova-regular-webfont.woff) format("woff");font-weight:400;font-style:normal;font-display:fallback}@font-face{font-family:proxima-nova;src:local("Proxima Nova Bold"),url(/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/fonts/proxima-nova/proximanova-bold-webfont.woff2) format("woff2"),url(/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/fonts/proxima-nova/proximanova-bold-webfont.woff) format("woff");font-weight:700;font-style:normal;font-display:fallback}@font-face{font-family:proxima-nova;src:local("Proxima Nova Semibold"),url(/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/fonts/proxima-nova/proximanova-semibold-webfont.woff2) format("woff2"),url(/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/fonts/proxima-nova/proximanova-semibold-webfont.woff) format("woff");font-weight:600;font-style:normal;font-display:fallback}@font-face{font-family:proxima-nova;src:local("Proxima Nova Extrabold"),url(/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/fonts/proxima-nova/proximanova-extrabold-webfont.woff2) format("woff2"),url(/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/fonts/proxima-nova/proximanova-extrabold-webfont.woff) format("woff");font-weight:800;font-style:normal;font-display:fallback}.o-container{max-width:1280px}.c-ad,.o-container--relative{position:relative}.c-ad{background-image:url(/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/images/pattern-greystripe.png)}.c-ad__label{font-size:.6875rem;font-weight:600;color:#4d7192;text-transform:uppercase;margin:0 auto 4px;width:300px;line-height:1.25rem;text-align:center}.c-ad--noBackground{background:none}.c-ad__unit{position:relative;height:0;margin:0 auto}.c-ad__unit--loaded{height:auto}.c-ad--leaderboard,.c-ad--leaderboardCombo{min-height:50px}.c-ad--leaderboard:after,.c-ad--leaderboardCombo:after{display:none;content:"Ad";position:absolute;font-size:.5625rem;text-transform:uppercase;right:0;bottom:0;transform:translateX(18px) translateY(-16px)}.c-ad--bigbox,.c-ad--bigboxCombo{padding:8px 0;margin-left:-15px;margin-right:-15px}.c-ad--bigbox:after,.c-ad--bigboxCombo:after{top:4px}.c-ad--wallpaper{display:none}.c-ad--bigbox .c-ad__unit,.c-ad--bigboxCombo .c-ad__unit{width:300px;min-height:250px}.c-ad--leaderboard .c-ad__label,.c-ad--leaderboardCombo .c-ad__label{display:none}.c-ad--dark{background-image:url(/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/images/pattern-darkstripe.png)}.c-ad--house .c-ad__unit{width:300px;min-height:50px}.c-ad--house{padding:4px 0}.c-ad--slide{margin-left:0;margin-right:0}.c-ad--fallback{padding:0 16px 16px;margin:0;min-height:200px}.c-ad--fallback .c-ad__label{display:none}.c-button{position:relative;padding:6px 24px;border-top:2px solid transparent;border-bottom:2px solid transparent;color:#fff;font-size:.75rem;text-align:center;background-color:#002e5d;border-radius:2px;text-transform:uppercase;outline:none}.c-button:focus,.c-button:hover{border-bottom:2px solid #e41b23;background-color:#002e5d}.c-button--light{min-width:100px;color:#002e5d}.c-button--light,.c-button--light:focus,.c-button--light:hover{background-color:#fff}.c-button--red,.c-button--red:focus,.c-button--red:hover{background-color:#e41b23}.c-button--live{padding-right:8px}.c-button--live:before{left:12px!important}.c-button--live:after{left:15px!important}.c-button--narrow{padding:6px 8px}.c-button--tiny{font-size:.6875rem}.c-button--buffer{margin-left:24px}.c-button--clear{display:flex;flex-direction:column;align-items:center;justify-content:center;color:#000;background-color:transparent;border:none}.c-button--clear:focus,.c-button--clear:hover{background-color:#ededf0;border:none}.c-button--clear .c-button__icon{height:38px;width:38px}.c-button--refresh{padding-left:44px}.c-button--refresh:before{position:absolute;top:50%;margin-left:-20px;content:"\21BB";font-size:1.25rem;transform:translateY(-54%) rotate(90deg)}.c-button--small{position:relative;padding:4px 8px;border:none;border-radius:0;color:#fff;background-color:transparent;font-size:.75rem;line-height:1rem;letter-spacing:.03125rem;font-weight:400}.c-button--small:focus,.c-button--small:hover{background-color:transparent;border-bottom:none}.c-button--small:after{content:"";width:100%;height:100%;top:0;left:0;position:absolute;z-index:1;transition:opacity .1s ease-in-out;background-color:hsla(0,0%,100%,0)}.c-button--small:focus:after,.c-button--small:hover:after{border:2px solid #e41b23;background-color:hsla(0,0%,100%,.2)}.c-button--blue{padding:6px 14px}.c-button--blue,.c-button--blue:focus,.c-button--blue:hover{background-color:#002e5d}.c-trendingTopics{display:flex;align-items:center;padding:0 8px}.c-trendingTopics--divider{padding:0 0 32px;border-bottom:1px solid #ededf0}.c-trendingTopics__title{font-weight:700;font-size:1rem;color:#e41b23;text-transform:uppercase;margin-right:32px;white-space:nowrap;flex-shrink:0}.c-trendingTopics__list{list-style:none;padding:0;display:flex;flex-wrap:wrap;height:24px;overflow:hidden}.c-trendingTopics__item{display:inline-block}.c-trendingTopics__item:not(:first-child){margin-left:20px}.c-trendingTopics__link{position:relative;display:block;color:#000;font-size:1rem;font-weight:600;border-bottom:none}.c-trendingTopics__link:focus,.c-trendingTopics__link:hover{background:none}.c-trendingTopics__link:after{content:"";position:absolute;top:0;right:0;bottom:0;left:0;border-radius:0;border:2px solid #e41b23;opacity:0;pointer-events:none}.c-trendingTopics__link:focus:after{opacity:1}.c-trendingTopics__label{display:block;position:relative;text-transform:capitalize;max-width:350px;text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.c-trendingTopics__link:hover .c-trendingTopics__label:before{content:"";position:absolute;left:0;right:0;border-bottom:2px solid #e41b23;opacity:1;bottom:0}.c-trendingTopics__link:hover .c-trendingTopics__label:hover:before{opacity:1}.c-trendingTopics--header .c-trendingTopics__title{margin:2px 0 0;color:hsla(0,0%,100%,.5);font-size:.75rem;line-height:1rem;letter-spacing:.03125rem;font-weight:400}.c-trendingTopics--header .c-trendingTopics__list{height:40px}.c-trendingTopics--header .c-trendingTopics__item{margin-left:32px;max-height:100%}.c-trendingTopics--header .c-trendingTopics__link{color:#fff;display:flex;align-items:center;max-height:100%;font-size:.875rem;line-height:1rem;letter-spacing:.01563rem;font-weight:600}.c-trendingTopics--header .c-trendingTopics__link .c-trendingTopics__label{line-height:2.5rem}.c-heading{font-size:1rem;font-weight:700}.c-heading--primary{padding:16px 8px;font-size:1.125rem;line-height:1.5rem}.c-heading--primary,.c-heading--secondary{border-bottom:1px solid #ededf0;text-transform:uppercase;letter-spacing:0;font-weight:600;font-weight:800}.c-heading--secondary{padding:0 8px 4px;font-size:1.0625rem;line-height:1.3125rem}.c-heading--component{font-size:1.125rem;line-height:1.5rem}.c-heading--component,.c-heading--page{font-weight:800;text-transform:uppercase}.c-heading--page{height:26px;font-size:1.375rem;line-height:1.625rem}.c-heading--overlap{position:absolute;background:#fff;transform:translateY(-50%);padding:0 4px;margin-left:6px;z-index:1}.c-heading--subhead{padding-bottom:4px;color:#1d2d44;text-transform:uppercase;font-size:.6875rem;line-height:.875rem;letter-spacing:.03125rem;font-weight:600}.c-heading--strikethrough{font-size:1.125rem;line-height:1.5rem;letter-spacing:0;font-weight:600;font-weight:800;color:#e41b23;text-transform:uppercase;display:flex;margin-bottom:0!important;white-space:nowrap}.c-heading--strikethrough:after{content:"";height:2px;background:#e41b23;margin-top:11px;width:100%;margin-left:8px}.c-heading--bold{font-weight:600}.c-heading--underline{border-bottom:1px solid #ededf0}.c-heading--error,.c-heading--notice{padding:16px 8px;font-size:1.25rem;line-height:1.625rem;text-align:center}.c-heading--notice{color:#808083}.c-heading--error{color:#e41b23}.c-heading--logo{min-width:0;max-height:32px}.c-icon{pointer-events:none}.c-icon--white{color:#fff}.c-icon--black{color:#000}.c-icon--light-grey{color:#b5b5b8}.c-icon--medium-grey{color:#808083}.c-icon--dark-grey{color:#0d1321}.c-icon--text-light-grey{color:#4d7192}.c-icon--red{color:#e41b23}.c-icon--blue{color:#002e5d}.c-icon--yellow{color:#f99500}.c-icon--light-yellow{color:#ffdb46}.c-icon--arrowUp:before{border-width:0 4px 4px}.c-icon--arrowDown:before,.c-icon--arrowUp:before{content:"";display:inline-block;position:relative;border-color:#808083 transparent;border-style:solid;left:50%;transform:translateY(-50%) translateX(-50%)}.c-icon--arrowDown:before{border-width:4px 4px 0}.c-link{border-bottom:none;color:#e41b23;display:inline-block;position:relative;margin-right:8px}.c-link:after{content:"";position:absolute;top:0;right:0;bottom:0;left:0;border-radius:0;border:2px solid #000;opacity:0;pointer-events:none}.c-link:focus:after{opacity:1}.c-link:after{left:-8px}.c-link__label{font-size:.6875rem;font-weight:600;line-height:.875rem;letter-spacing:.03125rem;position:relative;text-transform:uppercase;white-space:nowrap}.c-link__label--lowercase{text-transform:none}.c-link__label:before{content:"";position:absolute;left:0;right:0;border-bottom:2px solid #e41b23;opacity:0;bottom:-2px}.c-link__label:hover:before{opacity:1}.c-link__label:focus:before,.c-link__label:hover:before{-webkit-animation:underlineSlide .1s linear forwards;animation:underlineSlide .1s linear forwards;transform-origin:bottom}@-webkit-keyframes underlineSlide{0%{transform:scaleY(0)}to{transform:scaleX(1)}}.c-link__inner{display:flex;align-items:center}.c-link__icon{display:inline-block;margin-left:2px;transition:transform .1s ease-in-out;transform-origin:center}.c-link__icon:after{content:"";display:inline-block;height:7px;width:7px;border-color:#e41b23;border-style:solid;border-width:2px 2px 0 0;background-color:transparent;transform:rotate(45deg) translateY(-50%)}.c-link--medium .c-link__label{font-size:1rem;font-weight:700;text-transform:capitalize}.c-link--large .c-link__label{font-size:1.25rem;line-height:1.5625rem;letter-spacing:.01563rem;font-weight:700;text-transform:uppercase;font-weight:800}.c-link--xlarge .c-link__label{font-size:1.75rem;line-height:2rem;letter-spacing:.01563rem;font-weight:700;font-weight:800}.c-link--large .c-link__icon{margin-left:6px;margin-bottom:-5px}.c-link--large .c-link__icon:after{content:"";display:inline-block;height:9px;width:9px;border-color:#e41b23;border-style:solid;border-width:3px 3px 0 0;background-color:transparent;transform:rotate(45deg) translateY(-50%)}.c-link--xlarge .c-link__icon{margin-left:6px;margin-bottom:-5px}.c-link--xlarge .c-link__icon:after{content:"";display:inline-block;height:10px;width:10px;border-color:#e41b23;border-style:solid;border-width:4px 4px 0 0;background-color:transparent;transform:rotate(45deg) translateY(-50%)}.c-link--large .c-link__label:before,.c-link--xlarge .c-link__label:before{bottom:0}.c-link--dark{padding:0 10px;border-radius:15px;color:#fff;background-color:#002e5d}.c-link--dark:after{left:0}.c-link--dark .c-link__label{margin-right:4px}.c-link--dark .c-link__label:before{content:"";position:absolute;left:0;right:0;border-bottom:2px solid #fff;opacity:0;bottom:-2px}.c-link--dark .c-link__label:hover:before{opacity:1}.c-link--dark .c-link__label:focus:before,.c-link--dark .c-link__label:hover:before{-webkit-animation:underlineSlide .1s linear forwards;animation:underlineSlide .1s linear forwards;transform-origin:bottom}.c-link--dark .c-link__icon:after{content:"";display:inline-block;height:7px;width:7px;border-color:#fff;border-style:solid;border-width:2px 2px 0 0;background-color:transparent;transform:rotate(45deg) translateY(-50%)}.c-link--white .c-link__label{color:#fff}.c-link--moreLess .c-link__inner{justify-content:space-between}.c-link--moreLess .c-link__icon--more:after{transform:rotate(135deg) translate(-70%)}.c-link--moreLess .c-link__icon--less:after{transform:rotate(-45deg) translate(0)}.c-link--noIcon{margin-right:0}.c-link:focus,.c-link:hover{background:none}.c-link:focus .c-link__icon,.c-link:hover .c-link__icon{transform:translate3d(8px,0,0)}.c-link--dark:focus,.c-link--dark:hover{background-color:#002e5d}.c-link--dark:focus .c-link__icon,.c-link--dark:hover .c-link__icon{transform:translateZ(0)}.c-logo{display:flex;height:100%;align-items:center;border:1px solid transparent;transition:transform .1s ease-in}.c-logo:hover{background-color:transparent;transform:scale3d(.95,.95,.95)}.c-logo:focus{border:1px solid hsla(0,0%,100%,.2);background-color:rgba(0,0,0,.2);outline:none;transform:scale3d(1.1,1.1,1.1)}.c-logo--header{position:relative;padding:0 8px}.c-logo--header:before{content:"";position:absolute;left:0;right:0;border-bottom:2px solid #e41b23;opacity:0;bottom:0}.c-logo--header:hover:before{opacity:1}.c-logo--header:focus:before,.c-logo--header:hover:before{-webkit-animation:underlineSlide .1s linear forwards;animation:underlineSlide .1s linear forwards;transform-origin:bottom}.c-logo--header:after{content:"";position:absolute;top:0;right:0;bottom:0;left:0;border-radius:0;border:2px solid #e41b23;opacity:0;pointer-events:none}.c-logo--header:focus:after{opacity:1}.c-logo--header .c-logo__image{width:124.5px;height:24px}.c-logo--header.c-logo--header:focus,.c-logo--header.c-logo--header:hover{background-color:transparent;border-color:transparent;transform:none}.c-loader{position:absolute;top:50%;left:50%;width:72px;height:72px;transform:translateX(-50%) translateY(-50%)}.c-loader:before{background:url(/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/images/loading.svg);background-repeat:no-repeat;background-size:contain;content:"";display:block;width:100%;height:100%;-webkit-animation-name:spin;animation-name:spin;-webkit-animation-duration:3s;animation-duration:3s;-webkit-animation-direction:normal;animation-direction:normal;-webkit-animation-timing-function:linear;animation-timing-function:linear;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;-webkit-animation-fill-mode:none;animation-fill-mode:none}.c-loader--small{width:40px;height:40px}.c-loader--dark:before{background-image:url(/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/images/loading-dark.svg)}.c-nav{list-style:none;padding:0}.c-nav__item{height:100%;overflow:hidden}.c-nav__item--live{display:flex;align-items:center}.c-nav__item--live:before{content:"LIVE";position:relative;display:inline-block;line-height:.875rem;font-size:.6875rem;color:#fff;background-color:hsla(0,0%,100%,.2);padding:4px 8px;margin:0 16px}.c-nav__link{color:#0d1321;border:none}.c-nav__link:focus,.c-nav__link:hover{background-color:transparent;background-color:initial}.c-nav__item--live .c-nav__link{padding-left:4px!important}.c-nav__icon--white{display:none}.c-nav--inverted .c-nav__link{color:#fff}.c-nav--inverted .c-nav__link:hover:before{border-color:#fff}.c-nav--main{display:flex;flex-flow:row wrap;height:100%;font-size:1.125rem}.c-nav--main .c-nav__item{overflow:unset}.c-nav--main .c-nav__link{display:flex;align-items:center;position:relative;height:100%;padding:0 8px;outline:none;color:#fff;font-size:1.125rem;line-height:1.5rem;letter-spacing:0;font-weight:600;line-height:inherit}.c-nav--main .c-nav__link:before{content:"";position:absolute;left:0;right:0;border-bottom:2px solid #e41b23;opacity:0;bottom:0}.c-nav--main .c-nav__link:hover:before{opacity:1}.c-nav--main .c-nav__link:focus:before,.c-nav--main .c-nav__link:hover:before{-webkit-animation:underlineSlide .1s linear forwards;animation:underlineSlide .1s linear forwards;transform-origin:bottom}.c-nav--main .c-nav__link:after{content:"";position:absolute;top:0;right:0;bottom:0;left:0;border-radius:0;border:2px solid #e41b23;opacity:0;pointer-events:none}.c-nav--main .c-nav__link:focus:after{opacity:1}.c-nav--main .c-nav__link--active:before{content:"";position:absolute;left:0;right:0;border-bottom:2px solid #e41b23;opacity:1;bottom:0}.c-nav--main .c-nav__link--active:hover:before{opacity:1}.c-nav__icon{position:relative}.c-nav__icon--chevron{margin-left:8px}.c-nav__icon--chevron:after{content:"";display:inline-block;height:7px;width:7px;border-color:#808083;border-style:solid;border-width:2px 2px 0 0;background-color:transparent;transform:rotate(135deg) translateX(-50%);transition:transform .2s cubic-bezier(.22,1,.36,1);transform-origin:center}.c-nav--main .c-nav__link--active .c-nav__icon--chevron:after{transform:rotate(-45deg)}.c-nav--main.c-nav--stuck .c-nav__link{color:#000}.c-nav--main.c-nav--stuck .c-nav__link:before{content:"";position:absolute;left:0;right:0;border-bottom:2px solid #e41b23;opacity:0;bottom:16px}.c-nav--main.c-nav--stuck .c-nav__link:hover:before{opacity:1}.c-nav--main.c-nav--stuck .c-nav__link:focus:before,.c-nav--main.c-nav--stuck .c-nav__link:hover:before{-webkit-animation:underlineSlide .1s linear forwards;animation:underlineSlide .1s linear forwards;transform-origin:bottom}.c-nav--buttons{display:flex;align-items:center;justify-content:space-between;width:100%}.c-nav--buttons .c-nav__item{position:relative;flex-grow:1;height:100%;text-align:center;cursor:pointer;outline:none}.c-nav--buttons .c-nav__link{display:flex;height:100%;align-items:center;justify-content:center}.c-nav--buttons .c-nav__link:before{content:"";position:absolute;left:0;right:0;border-bottom:2px solid #e41b23;opacity:0;bottom:0}.c-nav--buttons .c-nav__link:hover:before{opacity:1}.c-nav--buttons .c-nav__link:focus:before,.c-nav--buttons .c-nav__link:hover:before{-webkit-animation:underlineSlide .1s linear forwards;animation:underlineSlide .1s linear forwards;transform-origin:bottom}.c-nav--buttons .c-nav__link:after{content:"";position:absolute;top:0;right:0;bottom:0;left:0;border-radius:0;border:2px solid #e41b23;opacity:0;pointer-events:none}.c-nav--buttons .c-nav__link:focus:after{opacity:1}.c-nav--buttons button.c-nav__item:before{content:"";position:absolute;left:0;right:0;border-bottom:2px solid #e41b23;opacity:0;bottom:0}.c-nav--buttons button.c-nav__item:hover:before{opacity:1}.c-nav--buttons button.c-nav__item:focus:before,.c-nav--buttons button.c-nav__item:hover:before{-webkit-animation:underlineSlide .1s linear forwards;animation:underlineSlide .1s linear forwards;transform-origin:bottom}.c-nav--buttons button.c-nav__item:after{content:"";position:absolute;top:0;right:0;bottom:0;left:0;border-radius:0;border:2px solid #e41b23;opacity:0;pointer-events:none}.c-nav--buttons button.c-nav__item:focus:after{opacity:1}.c-nav--buttons .c-nav__item--active:before{content:"";position:absolute;left:0;right:0;border-bottom:2px solid #e41b23;opacity:1;bottom:0}.c-nav--buttons .c-nav__item--active:hover:before{opacity:1}.c-nav--buttons .c-nav__icon--latest{width:26px;height:26px}.c-nav--buttons .c-nav__icon--trending{width:26.545px;height:25px}.c-nav--buttons .c-nav__icon--radio{width:30px;height:30px}.c-nav--buttons .c-nav__icon--watch{width:28px;height:24px;margin-bottom:1px}.c-nav--buttons .c-nav__icon--live{width:28px;height:28px;margin-bottom:-2px}.c-nav--buttons .c-nav__icon--local{width:20.857px;height:24px;margin-bottom:1px}.c-nav--buttons .c-nav__icon--menu{width:18px;height:17px;margin-top:3px;margin-bottom:5px}.c-nav--buttons .c-nav__icon--more{width:18px;height:17px}.c-nav--buttons .c-nav__icon--menuDesk{width:18px;height:17px;margin:4px 12px -2px}.c-nav--buttons .c-nav__icon--searchDesk{width:18px;height:18px;margin:6px 8px -2px}.c-nav--buttons .c-nav__label{font-size:.75rem;line-height:.625rem}.c-nav--buttons .c-nav__label--radio{position:relative;top:-2px}.c-nav--buttons .c-nav__content{position:relative}.c-nav--buttons .c-nav__content:after,.c-nav--buttons .c-nav__content:before{left:auto;top:5px}.c-nav--buttons .c-nav__content:before{right:-3px}.c-nav--buttons .c-nav__content:after{right:0}.c-nav--buttons.c-nav--stuck .c-nav__icon--menuDesk,.c-nav--buttons.c-nav--stuck .c-nav__icon--searchDesk{color:#000}.c-nav--buttons.c-nav--stuck .c-nav__item:before{content:"";position:absolute;left:0;right:0;border-bottom:2px solid #e41b23;opacity:0;bottom:0}.c-nav--buttons.c-nav--stuck .c-nav__item:hover:before{opacity:1}.c-nav--buttons.c-nav--stuck .c-nav__item:focus:before,.c-nav--buttons.c-nav--stuck .c-nav__item:hover:before{-webkit-animation:underlineSlide .1s linear forwards;animation:underlineSlide .1s linear forwards;transform-origin:bottom}.c-nav--subnav{padding:8px 0;height:auto;font-weight:400}.c-nav--subnav .c-nav__item{width:50%;flex-shrink:0}.c-nav--subnav .c-nav__link{color:#000!important;display:block;position:relative;padding:12px 8px;font-size:1.125rem;line-height:1.5rem;letter-spacing:0;font-weight:600;font-weight:400}.c-nav--subnav .c-nav__link:after{content:"";position:absolute;top:0;left:0;width:100%;height:100%;background-color:#ededf0;border-radius:4px;opacity:0;z-index:-1;transition:opacity .2s ease-out}.c-nav--subnav .c-nav__link:focus,.c-nav--subnav .c-nav__link:hover{outline:none}.c-nav--subnav .c-nav__link:focus:after,.c-nav--subnav .c-nav__link:hover:after{opacity:1}.c-nav--subnav .c-nav__link:before{display:none}.c-nav--subnavLight .c-nav__link:focus:after{z-index:1;border-color:#000}.c-nav--subnav.c-nav--inverted .c-nav__link:focus,.c-nav--subnav.c-nav--inverted .c-nav__link:hover{background-color:#676769}.c-pulse:before{left:6px;width:12px;height:12px;margin-top:-6px;border-radius:6px;-webkit-animation:livepulse 3s infinite;animation:livepulse 3s infinite;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out;will-change:transform,opacity}.c-pulse:after,.c-pulse:before{content:"";position:absolute;top:50%;background-color:#e41b23}.c-pulse:after{left:9px;width:6px;height:6px;margin-top:-3px;border-radius:3px}@-webkit-keyframes livepulse{0%{opacity:1;transform:matrix(.4,0,0,.4,0,0)}70%{opacity:0;transform:matrix(1.4,0,0,1.4,0,0)}to{opacity:0;transform:matrix(1.4,0,0,1.4,0,0)}}@keyframes livepulse{0%{opacity:1;transform:matrix(.4,0,0,.4,0,0)}70%{opacity:0;transform:matrix(1.4,0,0,1.4,0,0)}to{opacity:0;transform:matrix(1.4,0,0,1.4,0,0)}}.c-posts{padding:0}.c-posts__item{display:block;position:relative;margin-bottom:0}.c-posts__ad{margin:0 -16px}.c-posts__inner{display:flex;position:relative;color:#000;outline:none;padding:10px 0;flex-wrap:nowrap;border:none;border-bottom:1px solid #ededf0}.c-posts__inner:after{content:"";position:absolute;top:-8px;right:-8px;bottom:0;left:-8px;border-radius:0;border:2px solid #000;opacity:0;pointer-events:none}.c-posts__inner:focus:after{opacity:1}.c-posts__inner:focus,.c-posts__inner:hover{background-color:initial;background-color:transparent}.c-posts__rank{display:none}.c-posts__media{flex-shrink:0;align-self:flex-start;width:152px;border-bottom:none;overflow:hidden;position:relative}.c-posts__media:before{content:"";display:block;padding:0 0 66.66667%;width:100%;height:0}.c-posts__media>:first-child{position:absolute;left:50%;top:50%;transform:translateX(-50%) translateY(-50%);width:auto;height:100%;max-width:none}.c-posts__overlay{z-index:1;position:absolute;bottom:0;width:100%;height:100%;background:linear-gradient(180deg,transparent 70%,rgba(0,0,0,.2) 80%,rgba(0,0,0,.7))}.c-posts__icon{position:absolute;bottom:0;left:0;display:flex;justify-content:center;align-items:center;background-color:#e41b23;width:auto;height:auto;padding:5px;z-index:50}.c-posts__icon--live{background-color:#ffdb46;width:auto;white-space:nowrap}.c-posts__icon--embedVideo:after,.c-posts__icon--live:after{content:"LIVE";font-size:.75rem;line-height:1rem;letter-spacing:.03125rem;padding:0 6px 0 2px;color:#fff}.c-posts__icon--live:after{color:#0d1321}.c-posts__icon--embedVideo:after{content:"PLAY VIDEO"}.c-posts__icon .c-posts__play{width:14px;height:14px}.c-posts__details{display:flex;flex-direction:column;justify-content:space-between;padding-left:16px;flex:1 1 auto;color:#000;border-bottom:none;width:100%}.c-posts__details:focus,.c-posts__details:hover{background-color:transparent}.c-posts__headline{border-bottom:none}.c-posts__headline:focus,.c-posts__headline:hover{background-color:transparent}.c-posts__flag{display:inline-block;text-transform:uppercase;background-color:#e41b23;color:#fff;font-size:.75rem;line-height:1rem;letter-spacing:.03125rem;padding:4px 8px}.c-posts__media .c-posts__flag{position:absolute;top:0;left:0;padding:4px 16px;z-index:100}.c-posts__headlineText{font-size:.9375rem;line-height:1.1875rem;letter-spacing:0;font-weight:600;display:block;color:#000}.c-posts__headlineFlag{background-color:rgba(228,27,35,.12);color:#cd1820;position:relative;margin-bottom:8px}.c-posts__headlineFlag--live{background-color:#ffdb46;color:#0d1321;padding-left:24px}.c-posts__headlineFlag--live:after,.c-posts__headlineFlag--live:before{background-color:#0d1321}.c-posts__about{display:block;font-size:.75rem;line-height:1rem;letter-spacing:.03125rem;text-transform:uppercase;margin-top:14px}.c-posts__about--multiple .c-posts__info:not(:first-child):not(:empty):before{content:"|";display:inline-block;padding:0 6px 0 3px}.c-posts__info{color:#4d7192;display:inline-block}.c-posts__info--highlight{color:#e41b23}.c-posts--video .c-posts__media{position:relative}.c-posts--video .c-posts__media:before{content:"";display:block;padding:0 0 56.25%;width:100%;height:0}.c-posts--video .c-posts__media>:first-child{position:absolute;left:50%;top:50%;transform:translateX(-50%) translateY(-50%);width:100%;height:100%}.c-posts__item--playing .c-posts__media{background-color:#000}.c-posts__item--playing .c-posts__media:after{content:"NOW PLAYING";position:absolute;top:50%;left:50%;padding:4px;border:2px solid #e41b23;color:#fff;font-size:.75rem;transform:translate(-50%,-50%);white-space:nowrap;width:auto;height:auto;opacity:1;background:transparent}.c-posts__item--playing .c-posts__thumbnail{opacity:.5}.c-posts__item--playing .c-posts__icon{display:none}.c-posts--skeleton .c-posts__headline,.c-posts--skeleton .c-posts__info,.c-posts--skeleton .c-posts__media{background-color:#b5b5b8}.c-posts--skeleton .c-posts__headline{width:100%}.c-posts--inverted .c-posts__inner:after{border-color:#fff}.c-posts--inverted .c-posts__headlineText{color:#fff}.c-posts--inverted .c-posts__info{font-weight:600}.c-posts--maxWidth .c-posts__thumbnail{width:100%!important;height:auto!important}.c-posts--anchored .c-posts__item:first-child .c-posts__inner{padding-top:0}.c-posts--anchored .c-posts__item:first-child .c-posts__inner:after{top:-8px}.c-posts--noPadding .c-posts__item{padding:0!important}.c-posts--infoFlipped .c-posts__headline{margin-top:4px;margin-bottom:0;font-weight:600}.c-posts__video{opacity:0;position:absolute;width:100%;height:100%;top:0;z-index:100}.c-posts__item--active .c-posts__flag,.c-posts__item--active .c-posts__icon{display:none!important}.c-posts__item--active .c-posts__video{opacity:1}.c-posts__item--active .c-posts__media--video{background:#000}.c-posts__item--active .c-posts__thumbnail{opacity:0}.c-posts__item--active .c-imageContainer__bg{display:none}.c-posts__media--video .c-posts__icon{z-index:100}.c-posts__ad .c-posts__inner:focus .c-posts__media:after,.c-posts__ad .c-posts__inner:hover .c-posts__media:after{display:none}.c-posts--tile .c-posts__inner{padding:16px 0;border-bottom:1px solid #ededf0;flex-direction:row-reverse}.c-posts--tile.c-posts--inverted .c-posts__inner{border-color:rgba(237,237,240,.2)}.c-posts--tile .c-posts__inner:after{top:0}.c-posts--tile .c-posts__details{padding:0;margin:0 10px 0 0;width:100%}.c-posts--tile:not(.c-posts--horizontal) .c-posts__details{max-width:calc(100% - 162px);min-width:50%}.c-posts--tile:not(.c-posts--horizontal) .c-posts__media{flex-shrink:1}.c-posts--tile.c-posts--highlightFirst .c-posts__item:first-child .c-posts__details{max-width:unset}.c-posts--tile .c-posts__label{color:#e41b23}.c-posts--tile .c-posts__label:before{content:"|";padding:0 2px 0 6px;color:#808083}.c-posts--grid .c-posts__item[data-ad-fallback=true]{display:none}.c-schedule__show{display:inline-block;position:relative;width:250px;flex-shrink:0;background-color:hsla(0,0%,100%,.1);border-radius:8px;color:#fff}.c-schedule__show--clickable:hover{background-color:hsla(0,0%,100%,.2)}.c-schedule__show--current{width:100%;background-color:transparent}.c-schedule__show--current:hover{background-color:initial}.c-schedule__flag{display:block;color:#e73239;font-size:.75rem;font-weight:600;line-height:.875rem;letter-spacing:.035rem;text-transform:uppercase}.c-schedule__link{display:flex;border:0;position:relative;outline:none}.c-schedule__link:after{content:"";position:absolute;top:0;right:0;bottom:0;left:0;border-radius:0;border:2px solid #fff;opacity:0;pointer-events:none}.c-schedule__link:focus:after{opacity:1}.c-schedule__link:focus,.c-schedule__link:hover{background-color:initial}.c-schedule__link:after{top:-8px;right:-8px;bottom:-8px;left:-8px}.c-schedule__link--nonClickable:after{border-color:hsla(0,0%,100%,.2)}.c-schedule__details{padding:10px;flex-grow:1;-ms-grid-row-align:center;align-self:center}.c-schedule__media{height:80px;width:80px;flex-shrink:0;border-radius:8px 0 0 8px;overflow:hidden;z-index:1}.c-schedule__timer{position:absolute;top:-6px;left:-6px;width:112px;height:112px}.c-schedule__outline,.c-schedule__played{stroke-width:4%;fill:none}.c-schedule__outline{stroke:#808083}.c-schedule__played{stroke:#e41b23;stroke-dasharray:314%;stroke-dashoffset:314%;transform:rotate(58deg);transform-origin:center;-webkit-animation:animateShowTimer .8s ease-out 0s 1 forwards;animation:animateShowTimer .8s ease-out 0s 1 forwards}.c-schedule__name{color:#fff;font-size:1rem;font-weight:700;line-height:1.25rem;white-space:normal;margin-bottom:4px;display:block;display:-webkit-box;overflow:hidden;-webkit-line-clamp:2;-webkit-box-orient:vertical}.c-schedule__name>.u-lineClamp{max-height:2.7em;height:2.7em;position:relative;overflow:hidden}.c-schedule__name>.u-lineClamp:after{content:"";display:block;bottom:0;right:0;position:absolute;height:1.5em;width:20%;min-width:3em;background:linear-gradient(90deg,hsla(0,0%,100%,0),#fff 50%)}@supports (-webkit-line-clamp:1){.c-schedule__name>.u-lineClamp:after{display:none}.c-schedule__name>.u-lineClamp{height:auto}}.c-schedule__time{display:block;color:#808083;font-size:.75rem;font-weight:600;letter-spacing:.035rem;line-height:.875rem;white-space:nowrap}.c-schedule__show--current .c-schedule__flag{font-size:.75rem;font-weight:700;line-height:.75rem;letter-spacing:.035rem;margin-bottom:4px}.c-schedule__show--current .c-schedule__name{font-size:1.375rem;line-height:1.625rem;font-weight:700;letter-spacing:.02125rem;margin-bottom:4px}.c-schedule__show--current .c-schedule__time{font-size:.875rem;line-height:.875rem;letter-spacing:.04063rem}.c-schedule__show--current .c-schedule__media{border-radius:50%;background-color:#fff;width:100px;height:100px}.c-schedule__show--current .c-schedule__image{border-radius:50%}.c-schedule__show--current .c-schedule__details{padding:10px 16px}.c-schedule__show--flagged{border-top-right-radius:0}.c-schedule__show--flagged .c-schedule__flag{background:#000;position:absolute;top:-18px;right:0;padding:2px 8px;border-radius:8px 8px 0 0}.c-schedule--horizontal{display:flex;overflow-x:auto;overflow-y:hidden;flex-flow:row}.c-schedule--horizontal .c-schedule__show{margin:0 16px 0 0}@-webkit-keyframes animateShowTimer{0%{stroke-dashoffset:314%}to{stroke-dashoffset:calc(266%*(1 - var(--showPlayed)) + 48%)}}@keyframes animateShowTimer{0%{stroke-dashoffset:314%}to{stroke-dashoffset:calc(266%*(1 - var(--showPlayed)) + 48%)}}.c-search{position:relative}.c-search__input{width:100%;height:52px;padding:16px 50px 16px 16px;font-size:1.0625rem;line-height:1.3125rem;letter-spacing:0;font-weight:600}.c-search__label{margin-bottom:4px;display:inline-block;font-weight:600}.c-search__submit{position:absolute;top:0;right:0;bottom:0;padding:0 16px;opacity:.4;transition:opacity .3s}.c-search__submit:focus{opacity:1}.c-search__icon{width:18px;height:18px;margin-top:7px}.c-search__input:focus+.c-search__submit{opacity:1}.c-sponsor{display:flex;align-items:center}.c-sponsor__image{display:block;height:72px;width:auto}.c-sponsor__name{display:flex}.c-sponsor__label{display:block;font-size:.875rem;color:#4d7192;text-transform:uppercase}.c-sponsor__icon{cursor:pointer;top:2px;position:relative}.c-sponsor__icon--question{height:18px;width:18px}.c-sponsor__button{position:relative}.c-sponsor__link{border:none;margin-right:16px;font-size:1.125rem;line-height:1.25rem;font-weight:700;color:#0052cc}.c-sponsor__link--image{position:relative;flex-shrink:0;display:block}.c-sponsor__link--image:after{content:"";position:absolute;top:0;right:0;bottom:0;left:0;border-radius:0;border:2px solid #000;opacity:0;pointer-events:none}.c-sponsor__link--image:focus:after{opacity:1}.c-sponsor__link:focus,.c-sponsor__link:hover{text-decoration:underline}.c-sponsor__link--image:focus,.c-sponsor__link--image:hover{background-color:initial}.c-sponsor__link[href=""]{pointer-events:none}.c-sponsor--section .c-sponsor__label{font-size:.75rem;font-weight:600}.c-sponsor--section .c-sponsor__link{margin:0 0 0 16px}.c-sponsor--section .c-sponsor__image{width:auto;max-height:32px}.c-sponsor--heading{height:52px;margin-bottom:0}.c-sponsor--inverted .c-sponsor__label{color:#fff}.c-sponsor--inline .c-sponsor__details{display:none}.c-sponsor--inline .c-sponsor__image{height:100%;width:auto}.c-sponsor--inline .c-sponsor__link{margin-right:0;height:32px}.c-sponsor--imageOnly .c-sponsor__image{width:auto;height:100%;max-height:72px}.c-sponsor--imageOnly .c-sponsor__details{display:none}.c-weather{width:100%;background:#0052cc}.c-weather__inner{display:flex;flex-wrap:wrap;justify-content:space-between;align-items:center;min-height:110px;padding:0 16px;position:relative}.c-weather__inner:focus,.c-weather__inner:hover{background:rgba(0,0,0,.3)}.c-weather__top{display:flex;flex-flow:column wrap}.c-weather__backer{position:absolute;top:0;left:0;width:100%;height:100%}.c-weather__header{display:flex;flex-direction:column;position:relative;width:100%;height:38px}.c-weather__header .c-weather__select{position:absolute;right:0;z-index:-1000}.c-weather__icon{width:10px;height:11px;margin-right:5px}.c-weather__region{position:absolute;font-size:.875rem;font-weight:600;color:#fff;white-space:nowrap}.c-weather__location{max-width:145px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.c-weather__location:after{content:","}.c-weather__info{display:flex;flex-wrap:wrap}.c-weather__degree{display:block;font-size:.875rem;font-weight:600;color:#fff;line-height:1.125rem}.c-weather__degree--current{color:#fff;font-size:2.5rem;font-weight:700;line-height:2.375rem}.c-weather__degree:after{content:"\B0"}.c-weather__prediction{margin-left:16px}.c-weather__image{width:72px}.c-weather__link{position:relative;display:flex;align-items:center;border-bottom:0}.c-weather__link:after{content:"";position:absolute;top:0;right:0;bottom:0;left:0;border-radius:0;border:2px solid #e41b23;opacity:0;pointer-events:none}.c-weather__link:focus:after{opacity:1}.c-weather__link--text{display:inline-block;color:#0052cc;text-transform:uppercase;align-self:flex-end;font-size:.75rem;font-weight:600}.c-weather__link:focus,.c-weather__link:hover{background-color:transparent}.c-weather__label{text-transform:uppercase;color:#fff;font-size:.875rem;font-weight:700}.c-weather__traffic{display:none}.c-weather__sponsor{background-image:url(/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/images/pattern-greystripe.png);flex-basis:100%;order:3;display:flex;justify-content:center;padding:6px 0}.c-weather__sponsorImage{width:100%}.c-weather__sponsorLink{border:none;display:flex}.c-weather__loader{display:none;z-index:1}.c-weather--loading .c-weather__loader{display:block}.c-weather--loading .c-weather__link{opacity:.2}.c-weather--loading .c-weather__region{pointer-events:none;opacity:.2}.c-weather--night{background-color:#002144}.c-weather__degree:empty,.c-weather__location:empty,.c-weather__prediction,.c-weather__province:empty,.c-weather__select:empty,.c-weather__text{display:none}.l-container{background-color:#fff}.l-content{position:static}.l-header{position:relative;z-index:8000;color:#fff;background-color:#002144}.l-header__inner{position:relative;display:flex;align-items:center;justify-content:space-between;height:46px;max-width:1280px;margin:0 auto}.l-header__skip{position:absolute;top:0;left:-1000px;padding:6px 8px;font-size:.75rem;color:#fff;opacity:0;transition:opacity .3s;z-index:100}.l-header__skip:focus,.l-header__skip:hover{left:0;opacity:1;background-color:#e41b23}.l-header__trending{display:none}.l-header__trendingInner{width:100%}.l-header__actions{flex:1;order:-1}.l-header__otherActions{display:flex;height:100%}.l-header__actions,.l-header__otherActions{max-width:96px;width:96px}.l-header__subscribe{display:flex;margin-left:8px}.l-header__secondary{display:none}.l-header__radioContainer{position:relative;display:none}.l-header__radioWidget{display:none;position:absolute;width:380px;right:0;margin:0;padding-top:4px;box-shadow:0 4px 12px 0 rgba(0,0,0,.16)}.l-header__logo{height:100%;text-align:center}.l-header__search{flex:1;height:100%;text-align:right}.l-header__searchButton{height:100%;position:relative;padding:0 16px;outline:none;display:flex}.l-header__searchButton:before{content:"";position:absolute;left:0;right:0;border-bottom:2px solid #e41b23;opacity:0;bottom:0}.l-header__searchButton:hover:before{opacity:1}.l-header__searchButton:after{content:"";position:absolute;top:0;right:0;bottom:0;left:0;border-radius:0;border:2px solid #e41b23;opacity:0;pointer-events:none}.l-header__searchButton:focus:after{opacity:1}.l-header__icon{width:16px;height:16px}.l-header__searchButton .l-header__icon{-ms-grid-row-align:center;align-self:center}.l-header__choices{position:relative;display:flex;align-items:center;height:100%;font-size:.625rem;line-height:.75rem;padding:0 16px;color:#fff;border-bottom:none}.l-header__choices:before{content:"";position:absolute;left:0;right:0;border-bottom:2px solid #e41b23;opacity:0;bottom:0}.l-header__choices:hover:before{opacity:1}.l-header__choices:after{content:"";position:absolute;top:0;right:0;bottom:0;left:0;border-radius:0;border:2px solid #e41b23;opacity:0;pointer-events:none}.l-header__choices:focus:after{opacity:1}.l-header__choices:focus,.l-header__choices:hover{background-color:initial;background-color:transparent}.l-header__choicesText{display:none}.l-header__choicesLogo{width:16px;height:16px}.l-headerAd{max-width:100%;overflow:hidden}.l-headerAd__countdown{position:absolute;display:none;bottom:0;font-size:.625rem}.l-headerAd__close{cursor:pointer;display:none;font-weight:700;font-size:.625rem;text-transform:uppercase;margin-left:4px}.l-headerAd__inner{background-image:url(/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/images/pattern-greystripe.png);display:flex;flex-direction:column;align-items:center;justify-content:center;position:relative;width:100%;min-height:66px;background-color:#ededf0;padding:15px 0}.l-headerAd__container{width:100%;z-index:5000}.l-headerAd__container--stuck{position:fixed;top:52px;box-shadow:0 4px 12px 0 rgba(0,0,0,.08);-webkit-animation-name:slide;animation-name:slide;-webkit-animation-duration:.35s;animation-duration:.35s;-webkit-animation-direction:normal;animation-direction:normal;-webkit-animation-timing-function:ease;animation-timing-function:ease;-webkit-animation-iteration-count:1;animation-iteration-count:1;-webkit-animation-fill-mode:none;animation-fill-mode:none}.l-headerAd__container--stuck .l-headerAd__close,.l-headerAd__container--stuck .l-headerAd__countdown{display:inline-block}.l-headerAd__container--detaching{position:fixed;top:52px}.l-headerAd__container--detaching .l-headerAd__inner{transform:translate3d(0,-100%,0);-webkit-animation-name:slide;animation-name:slide;-webkit-animation-duration:.35s;animation-duration:.35s;animation-direction:reverse;-webkit-animation-timing-function:ease;animation-timing-function:ease;-webkit-animation-iteration-count:1;animation-iteration-count:1;-webkit-animation-fill-mode:none;animation-fill-mode:none}.l-headerAd--anchored .l-headerAd__container--detaching,.l-headerAd--anchored .l-headerAd__container--stuck{top:0}.l-main{margin-top:16px}.l-main__content{padding:0 16px}.l-main__sidebar{display:flex;flex-direction:column;padding:0 16px;margin:0 auto}.l-main__section{margin-bottom:32px}.l-main__smartfeed{padding:0}.l-main__tagSection{display:flex;flex-direction:column;padding-top:14px}.l-main__feedback{display:flex;justify-content:space-between;padding:14px 0;border-top:1px solid #ededf0;border-bottom:1px solid #ededf0}.l-main__feedbackInner{margin-left:-4px}.l-main__feedbackLink{width:auto!important}.l-main__feedbackLink:last-child{margin-bottom:0}.l-main__comments{border-left:1px solid #ededf0;margin-left:8px;padding-left:8px}.l-main__commentsButton{position:relative;padding:6px 8px}.l-main__commentsButton:after{content:"";position:absolute;top:0;right:0;bottom:0;left:0;border-radius:0;border:2px solid #000;opacity:0;pointer-events:none}.l-main__commentsButton:focus:after{opacity:1}.l-main__commentsLabel{font-size:.6875rem;line-height:.875rem;letter-spacing:.03125rem;font-weight:600;color:#1d2d44}.l-main--suppressSidebar{margin-bottom:32px}.l-main--suppressSidebar .l-main__footer{padding:0 16px}.l-main--collapseTop{margin-top:0}.l-main--restrictedWidth{max-width:780px;margin-left:auto;margin-right:auto}.l-navbar{position:relative;position:-webkit-sticky;position:sticky;top:0;z-index:6500}.l-navbar__top{height:60px;background-color:#fff;padding:0 16px 0 8px;box-shadow:0 4px 12px 0 rgba(0,0,0,.08)}.l-navbar__logoSocial{display:flex;height:52px;margin-top:8px}.l-navbar__blackIcon{display:none}.l-navbar__inner{height:100%;max-width:1280px;margin:0 auto;position:relative;overflow:hidden}.l-navbar__standard{display:block;top:0;left:0;z-index:-1;transform:translate3d(0,24px,0)}.l-navbar__standard,.l-navbar__submenus{position:absolute;width:100%}.l-navbar__topics{width:100%}.l-navbar__list{display:none}.l-navbar__buttons{background:#fff;height:100%}.l-navbar__toggles{position:absolute;top:0;right:0;display:flex;width:20%;max-width:60px;height:100%}.l-navbar__toggles--scrolling{width:16.7%;display:flex}.l-navbar__search{display:none}.l-navbar__scrolling{display:flex;justify-content:space-between;position:static;background-color:#fff;z-index:1;left:0;top:0;width:100%;visibility:visible;opacity:1}.l-navbar__scrollingLeft{display:none}.l-navbar__scrollingRight{display:flex;flex-shrink:0;width:100%;overflow:hidden}.l-navbar__socialShare{width:calc(100% - 116px)}.l-navbar__title{margin-left:24px;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.l-navbar__logo{flex-shrink:0;display:none}.l-navbar--menuOpen{z-index:10000001}.l-navbar--nonSticky{position:static}.l-navbar--narrowMobile .l-navbar__top{transform:translate3d(0,-8px,0)}.l-navbar--narrowMobile .l-navbar__mobileIcon{transform:translate3d(0,3px,0)}.l-navbar--narrowMobile .l-navbar__buttons .l-navbar__mobileIcon{transform:translate3d(0,11px,0)}.l-navbar--mobileSocial .l-navbar__standard{opacity:1;z-index:1;transform:translateZ(0)}.l-navbar__blueIcon--whatsapp{height:28px!important;width:28px!important}.l-navbar__blueIcon--more{height:30px!important;width:30px!important}.l-navbar--custom{overflow:hidden}.l-navbar--custom .l-navbar__top{height:auto;min-height:64px;color:#fff;background-color:#0052cc}.l-navbar--custom .l-navbar__banner{display:none}.l-navbar--custom .l-navbar__horizontal{display:flex;height:100%;overflow-x:auto}.l-navbar--custom .l-navbar__label{display:flex;position:relative;flex-shrink:0;min-height:64px;height:100%;padding-top:5px;padding-bottom:5px;font-size:1.0625rem;font-weight:700;align-items:center}.l-navbar--custom .l-navbar__label--withTabs{margin-right:16px}.l-navbar--custom .l-navbar__label--withTabs:after{content:"";position:absolute;display:inline-block;width:1px;background:hsla(0,0%,100%,.2);margin-left:32px;right:0;top:50%;transform:translateY(-50%);max-height:calc(100% - 34px);height:100%}.l-navbar--custom .l-navbar__label--long{min-width:185px;flex-shrink:1;padding-right:16px}.l-navbar--custom .l-navbar__labelImage{-ms-grid-row-align:center;align-self:center;max-width:190px;height:auto}.l-navbar--custom .l-navbar__sponsor{background-color:#0052cc;display:flex;align-items:center;align-self:center;flex-shrink:0;padding-left:16px;position:relative}.l-navbar--custom .l-navbar__sponsor--inline{display:none}.l-navbar--custom .l-navbar__sponsor:before{content:"";display:block;background:hsla(0,0%,100%,.1);height:100%;position:absolute;left:-32px;right:-16px;pointer-events:none}.l-navbar--custom.l-navbar--dark .l-navbar__sponsor:before{background:rgba(0,0,0,.1)}.l-navbar--custom .l-navbar__list{display:flex;flex-flow:row nowrap;height:100%;margin-left:16px;line-height:4rem;overflow:visible}.l-navbar--custom .l-navbar__item{flex-shrink:0}.l-navbar--custom .l-navbar__item:last-child{padding-right:32px}.l-navbar--custom .l-navbar__link{margin-right:32px;color:#fff;font-size:.9375rem;letter-spacing:.0075rem}.l-navbar--custom .l-navbar__link:before{content:"";position:absolute;left:0;right:0;border-bottom:2px solid #fff;opacity:0;bottom:0}.l-navbar--custom .l-navbar__link:hover:before{opacity:1}.l-navbar--custom .l-navbar__link:focus:before,.l-navbar--custom .l-navbar__link:hover:before{-webkit-animation:underlineSlide .1s linear forwards;animation:underlineSlide .1s linear forwards;transform-origin:bottom}.l-navbar--custom .l-navbar__labelLink{border-bottom:0;line-height:1.0625rem}.l-navbar--custom .l-navbar__labelLink:before{content:"";position:absolute;left:0;right:32px;border-bottom:2px solid #fff;opacity:0;bottom:0}.l-navbar--custom .l-navbar__labelLink:hover:before{opacity:1}.l-navbar--custom .l-navbar__labelLink:focus:before,.l-navbar--custom .l-navbar__labelLink:hover:before{-webkit-animation:underlineSlide .1s linear forwards;animation:underlineSlide .1s linear forwards;transform-origin:bottom}@keyframes underlineSlide{0%{transform:scaleY(0)}to{transform:scaleX(1)}}.l-navbar--custom .l-navbar__labelLink:focus:before{opacity:1;border:2px solid #e41b23;top:0;bottom:0;right:0;left:-8px}.l-navbar--custom .l-navbar__label--graphic .l-navbar__labelLink{display:flex;margin-right:16px}.l-navbar--custom .l-navbar__label--long .l-navbar__labelLink{margin-right:0}.l-navbar--custom .l-navbar__link:focus,.l-navbar--custom .l-navbar__link:hover{background-color:initial}.l-navbar--custom .l-navbar__gradient{position:absolute;top:0;width:64px;height:100%}.l-navbar--custom .l-navbar__gradient--left{left:0;background:linear-gradient(270deg,rgba(0,82,204,0),#0052cc)}.l-navbar--custom .l-navbar__gradient--right{right:0;background:linear-gradient(90deg,rgba(0,82,204,0),#0052cc)}.l-navbar--custom .l-navbar__tinter{position:absolute;top:0;left:0;width:100%;height:100%;background-color:#000;opacity:.25}.l-overflow__arrows{display:none}.l-panel{position:fixed;top:0;width:100%;padding:0 16px 16px;background-color:#fff;overflow-y:scroll;transform:matrix(1,0,0,1,0,-20);visibility:hidden;opacity:0;scroll-behavior:smooth;box-shadow:0 0 12px 0 rgba(0,0,0,.16)}.l-panel__inner{display:none}.l-panel--init .l-panel__inner{display:block}.l-panel__header{display:flex;justify-content:space-between}.l-panel__icon{width:16px;height:16px;margin:0 8px}.l-panel__dark{background-color:#ededf0}.l-panel--popup{position:relative;width:auto;overflow:auto;box-shadow:none}.l-panel--popup .l-panel__header{border-bottom:1px solid #ededf0;align-items:center}.l-panel--popup .c-heading--primary{border-bottom:none}.l-panel__button{display:block}.l-panel__button--close{display:none}.l-panel--single .l-panel__button--close{display:block}.l-panel--single .l-panel__button--back{display:none}.l-panel--single .l-panel__header{flex-direction:row-reverse}@media (max-width:767px){.l-panel__firstHeading{display:none}.l-panel--bottom{top:auto;bottom:0;height:auto!important;max-height:none!important;padding-bottom:64px!important;border-radius:8px 8px 0 0;transform:matrix(1,0,0,1,0,20)}.l-panel--bottom .l-panel__header{padding-bottom:16px}}.l-notification{z-index:7000;overflow:hidden;display:none;top:60px;position:-webkit-sticky;position:sticky;padding-bottom:12px;margin-bottom:-12px}.l-notification__container{position:relative;background:#fff;box-shadow:0 4px 12px 0 rgba(0,0,0,.08)}.l-notification__inner{max-width:1280px;margin:0 auto;padding-left:16px;display:flex;justify-content:space-between;width:100%}.l-notification__item{display:flex}.l-notification__video{display:none;width:176px;overflow:hidden;flex-shrink:0;margin:8px 16px 8px 0;border-bottom:none;position:relative}.l-notification__video:after{content:"";position:absolute;top:0;right:0;bottom:0;left:0;border-radius:0;border:2px solid #000;opacity:0;pointer-events:none}.l-notification__video:focus:after{opacity:1}.l-notification__video:before{content:"";display:block;padding:0 0 56.25%;width:100%;height:0}.l-notification__video>:first-child{position:absolute;left:50%;top:50%;transform:translateX(-50%) translateY(-50%);width:100%;height:100%}.l-notification__video:focus,.l-notification__video:hover{border-bottom:none;background:none;outline:none}.l-notification__video video{width:100%}.l-notification__image{height:auto;width:100%}.l-notification__text{display:inline-block;-ms-grid-row-align:center;align-self:center;margin:12px 0}.l-notification__label{text-transform:uppercase;font-size:.6875rem;line-height:.875rem;margin-bottom:4px}.l-notification__headline{font-size:.9375rem;line-height:1.1875rem;letter-spacing:0;font-weight:600;color:inherit;border-bottom:none;position:relative}.l-notification__headline:focus,.l-notification__headline:hover{background-color:transparent;border-bottom:2px solid hsla(0,0%,100%,.2)}.l-notification__button{display:flex;position:relative;border-radius:2px;padding:10px;border-bottom:0}.l-notification__icon{width:11px;height:11px}.l-notification--active{display:block}.l-notification--active .l-notification__wrapper{-webkit-animation-name:slide;animation-name:slide;-webkit-animation-duration:.35s;animation-duration:.35s;-webkit-animation-direction:normal;animation-direction:normal;-webkit-animation-timing-function:ease;animation-timing-function:ease;-webkit-animation-iteration-count:1;animation-iteration-count:1;-webkit-animation-fill-mode:none;animation-fill-mode:none}.l-notification--hiding{display:block}.l-notification--hiding .l-notification__container{transform:translate3d(0,-100%,0);-webkit-animation-name:slide;animation-name:slide;-webkit-animation-duration:.35s;animation-duration:.35s;animation-direction:reverse;-webkit-animation-timing-function:ease;animation-timing-function:ease;-webkit-animation-iteration-count:1;animation-iteration-count:1;-webkit-animation-fill-mode:none;animation-fill-mode:none}.l-notification--breaking .l-notification__container{background:#e41b23;color:#fff}.l-notification--special .l-notification__container{background:#808083;color:#fff}.l-notification--listen .l-notification__container,.l-notification--live .l-notification__container{background:#f99500;color:#000}.l-notification--listen .l-notification__headline:focus,.l-notification--listen .l-notification__headline:hover,.l-notification--live .l-notification__headline:focus,.l-notification--live .l-notification__headline:hover{border-color:rgba(0,0,0,.2)}.l-notification--shift{transform:translate3d(0,-8px,0)}.l-notification__video button{display:none}.l-radioHeader{background:url(/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/images/radio-header-bg.jpg) no-repeat 50% #000;background-size:cover;padding:16px;position:relative;overflow:hidden;margin-bottom:-14px}.l-radioHeader:before{content:"";background:rgba(0,0,0,.6);display:block;position:absolute;left:0;right:0;top:0;bottom:0;pointer-events:none}.l-radioHeader__headingWrapper{border-bottom:1px solid hsla(0,0%,100%,.6);padding-bottom:16px;margin-bottom:16px}.l-radioHeader__headingWrapper .l-radioHeader__branding{display:flex}.l-radioHeader__headingWrapper .l-radioHeader__heading{padding-bottom:0;border-bottom:none;max-width:120px;margin:0;z-index:1}.l-radioHeader__headingWrapper .l-radioHeader__branding .l-radioHeader__logo{height:auto;max-height:none;width:100%;image-rendering:-moz-crisp-edges;image-rendering:-o-crisp-edges;image-rendering:-webkit-optimize-contrast;image-rendering:crisp-edges;-ms-interpolation-mode:nearest-neighbor}.l-radioHeader__headingWrapper .l-radioHeader__nav{border-bottom:none}.l-radioHeader__headingWrapper .l-radioHeader__navList{display:flex;flex-flow:wrap}.l-radioHeader__scheduleWrapper{margin:16px -16px -16px 0}.l-radioHeader__scheduleWrapper .l-radioHeader__schedule{padding:18px 0}.l-radioHeader__scheduleWrapper .l-radioHeader__show--current{display:none}.l-radioHeader__show .l-radioHeader__play{display:flex;width:40px;height:40px;position:absolute;left:64px;top:62px;z-index:1}.l-radioHeader__show .l-radioHeader__icon{width:24px;height:24px;margin-left:2px}.l-radioHeader__navItem .l-radioHeader__link{color:#fff!important}.l-section{position:relative;padding:0 16px;margin:64px 0;overflow:hidden}.l-section__grid{display:flex;flex-direction:column}.l-section__sidebar{display:block;order:3}.l-section__sidebar--bottom{order:7}.l-section__sidebar .l-section__carousel{margin:64px 0 32px}.l-section__sidebar .l-section__widget{margin:0 -16px}.l-section__break{border-top:4px solid #e41b23;padding-top:28px}.l-section__listenLive{order:2;margin:64px -16px 0;padding:0}.l-section__radioCarousel{margin:32px auto 0}.l-section__main .l-section__listenLive{margin-top:32px}.l-section__widget .l-section__widgetFooter{text-align:right;padding:16px 0;border-bottom:1px solid #ededf0}.l-section__widget .l-section__widgetFooter--noBorder{border-bottom:none}.l-section__widget .l-section__widgetFooter--listenLive{padding:0;margin:64px -16px 0}.l-section__priority{grid-area:H}.l-section__heading{grid-area:H;margin:0 0 16px}.l-section__heading--withMenu{display:flex;justify-content:space-between}.l-section__headingLink{margin-left:16px}.l-section__carousel .l-section__heading{margin-bottom:0}.l-section__menu{display:flex;justify-content:space-between}.l-section__menu .l-section__menuLink:not(:last-child){margin-right:32px}.l-section__sponsorship{height:52px;padding:0 32px;margin:0 -32px;background-color:#ededf0}.l-section__main--radioCarousel{max-width:100%}.l-section--overflow{overflow:visible}.l-section--anchored{margin-top:-24px!important}.l-section--overlap{background-color:#ededf0;margin:96px 0 64px;padding:0 16px}.l-section--overlap .l-section__widget{position:relative;top:-24px}.l-section--overlap .l-section__heading{color:#fff;background-color:#e41b23;display:inline-block;padding:12px;margin-bottom:32px}.l-section--overlap .c-posts__info--highlight{color:#cd1820}.l-section--dark{background:#000;padding:32px 16px}.l-section--dark .l-section__widget .l-section__widgetFooter{border-bottom:1px solid rgba(237,237,240,.2)}.l-section--dark .l-section__widget .l-section__widgetFooter--noBorder{border-bottom:none;margin-bottom:-32px}.l-section--dark .l-section__heading,.l-section--dark .l-section__main{color:#fff}.l-section--dark .c-link{color:#e73239}.l-section--dark .c-link:after{border-color:#fff}.l-section--dark .c-posts__info--highlight{color:#e73239}.l-section--gradient{background:linear-gradient(180deg,#ededf0,#fff 50%);padding:24px 16px 0}.l-section--pageHeader,.l-section--withSubmenu{margin-bottom:-64px}.l-section--withSponsor{margin-bottom:-32px}.l-section--withSubmenu .l-section__heading{justify-content:space-between}.l-section--radioHeader{margin:0 0 -32px;padding:16px}.l-section--archive .l-section__widget:not(:last-child){margin-bottom:32px}.l-section--archive .l-section__listenLive{margin:0 -16px}.l-section__grid .l-section__main{order:1}.l-section__grid .l-section__main:empty{display:none}.l-section__grid .l-section__main--bottom{order:5}.l-section--tablet{height:0;margin-bottom:-32px}.l-section--header{padding:0;margin:0}.l-section:empty{display:none!important}.l-section:first-of-type{margin-top:0}.l-section:last-of-type{padding-bottom:64px;margin-bottom:0}.l-sidebar__ad{width:100%;margin:0}.l-sidebar__widget--shiftUp{margin-bottom:32px}.l-sidebar__widget--sportsnet{margin-top:32px;margin-bottom:0}.l-sidebar__widgetCaption{padding:16px;font-size:1rem;font-weight:700;background-color:#ededf0}.l-sidebar__widgetFooter{display:flex;justify-content:flex-end;padding:10px 0;border-bottom:1px solid #ededf0}.l-subnav{border-top:1px solid #ededf0;border-bottom:1px solid #ededf0}.l-subnav--framed{border-bottom:none}.l-subnav.is-expanded{margin-bottom:16px}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.l-navbar__radio{display:none}.l-article__details{visibility:hidden;height:106px}.l-interactive-header__right,.l-longform-header__right{display:none}.is-slid-and-faded-out{visibility:hidden;opacity:0;transition:visibility 0s .3s,opacity .3s ease-out,transform .3s ease-out}.is-slid-and-faded-in{visibility:visible;transform:matrix(1,0,0,1,0,0)!important;opacity:1;transition:opacity .3s ease-out,transform .3s ease-out}.is-faded-out{visibility:hidden;opacity:0}.is-faded-in{visibility:visible;opacity:1!important}.is-animated{transition:transform .3s ease-out}.is-animated-fast{transition:transform .2s cubic-bezier(.22,1,.36,1)}.is-animated-slow{transition:transform .4s ease-out}.is-faded-out.is-animated{transition:visibility 0s .3s,opacity .3s ease-out}.is-faded-in.is-animated{transition:opacity .3s ease-out}.is-faded-out.is-animated-fast{transition:visibility 0s .2s,opacity .2s cubic-bezier(.22,1,.36,1)}.is-faded-in.is-animated-fast{transition:opacity .2s cubic-bezier(.22,1,.36,1)}.is-slid-and-faded-out.is-animated-fast{transition:visibility 0s .2s,transform .2s,opacity .2s cubic-bezier(.22,1,.36,1)}.is-slid-and-faded-in.is-animated-fast{transition:transform .2s,opacity .2s cubic-bezier(.22,1,.36,1)}.is-hidden{display:none!important}.is-reset{transform:translateZ(0)!important}.is-disabled{opacity:.2}.is-disabled[aria-expanded=true]{opacity:1}.is-expandable{visibility:hidden;height:0;overflow:hidden;transition:visibility 0s .3s,height .3s ease-out}.is-expanded{visibility:visible;transition:visibility 0s,height .3s ease-out}.is-full-width{width:100%!important;max-width:none!important;margin-bottom:5%;transition:width .4s ease-out}.is-toggled .toggle-off,.toggle-on,.toggle-on--flex{display:none!important}.is-toggled .toggle-on{display:inline-block!important;display:initial!important}.is-toggled .toggle-on--flex{display:flex!important}.is-open{visibility:visible!important;transition:visibility 0s!important}.is-no-scroll{overflow:hidden}.is-no-smooth-scroll{scroll-behavior:auto}.is-compact{padding:0!important}.is-uncollapsed{max-height:1000px!important}.is-static{position:static!important}.is-darkMode{background:#000}.u-show-desktop,.u-show-mobile,.u-show-small-mobile,.u-show-tablet-landscape,.u-show-tablet-portrait{display:none!important}.u-hide-desktop,.u-hide-mobile,.u-hide-small-mobile,.u-hide-tablet-landscape,.u-hide-tablet-portrait{display:block!important}@media (min-width:340px){.u-show-small-mobile{display:block!important}.u-hide-small-mobile{display:none!important}}.c-ad--depreciatedHouseAd .c-ad__unit{width:300px;min-height:100px}.c-ad--storyStream .c-ad__label{margin:0;width:auto;text-align:left;display:inline-block;background:#e41b23;color:#fff;padding:4px 5px;font-size:.6875rem;letter-spacing:.06875rem;font-weight:100}.c-ad--storyStream .c-posts__excerpt{display:none}.c-ad--storyStream .c-ad__container,.c-ad--storyStream .c-ad__placeholder{background:#fff;padding:0!important}.AR_14,.c-ad--storyStream .c-posts__inner{border-bottom:none!important}.stream-ad{margin-bottom:32px}@media (min-width:1480px){.has-wallpaper .l-content__inner,.has-wallpaper .l-headerAd__inner,.has-wallpaper .l-notification,.has-wallpaper .rotator,.has-wallpaper .sub-mast,.has-wallpaper .tvnp-schedule-container{max-width:1312px;margin-left:auto;margin-right:auto}.has-wallpaper .l-headerAd__container{box-shadow:none}.has-wallpaper .l-headerAd__container--stuck{left:0}}.c-eventFilter{display:flex;flex-wrap:wrap;justify-content:space-between;align-items:flex-end;border-bottom:1px solid #ededf0}.c-eventFilter__currentDate{margin:8px 8px 8px 0}.c-eventFilter__currentType{display:inline-block;background-color:#ededf0;border-radius:4px;font-size:.75rem;padding:8px 16px}.c-eventFilter__dateControls{margin-top:8px}.c-eventFilter__spacer{display:none}.c-eventFilter__button{position:relative;border-radius:0;display:flex;align-items:center;justify-content:center;border-right:2px solid #002e5d;border-left:2px solid #002e5d;font-size:.75rem;font-weight:400;margin-left:8px}.c-eventFilter__button:focus{border-top:2px solid #e41b23;border-right:2px solid #e41b23;border-left:2px solid #e41b23}.c-eventFilter__previous{position:relative;padding-right:16px;padding-left:32px;margin-left:0}.c-eventFilter__previous:before{content:"";display:inline-block;height:8px;width:8px;border-color:#fff;border-style:solid;border-width:2px 2px 0 0;background-color:transparent;transform:rotate(-135deg) translateY(50%);position:absolute;top:20px;left:17px}.c-eventFilter__next{position:relative;padding-right:32px;padding-left:16px}.c-eventFilter__next:before{content:"";display:inline-block;height:8px;width:8px;border-color:#fff;border-style:solid;border-width:2px 2px 0 0;background-color:transparent;transform:rotate(45deg) translateY(-50%);position:absolute;top:20px;right:24px}.c-eventFilter__button--large{display:none}.c-eventFilter__button--small{display:flex}.c-eventFilter__button--square{height:48px;width:48px;padding:0}.c-eventFilter__icon{width:22px;height:22px}@media (min-width:600px){.c-eventFilter__spacer{display:block}}.datepicker--hybrid .ui-state-active,.datepicker--hybrid .ui-state-default.ui-state-hover{background-color:#e41b23!important;border-color:#e41b23!important}.datepicker--hybrid .ui-datepicker-next,.datepicker--hybrid .ui-datepicker-prev{color:#fff!important}.datepicker--hybrid .ui-datepicker-next:hover,.datepicker--hybrid .ui-datepicker-prev:hover{background-color:#133f6f!important}.gnca-button.ev-view-more:hover{background-color:#000!important}.ev-date-controls{display:flex}.socialShare li a{position:relative;border-bottom:0}.socialShare li a:after{content:"";position:absolute;top:0;right:0;bottom:0;left:0;border-radius:0;border:2px solid #000;opacity:0;pointer-events:none}.socialShare li a:focus:after{opacity:1}.ev-info-row-icon{margin-right:10px}.ev-buttons-icon,.ev-info-row-icon{vertical-align:middle}label[for=ugc-input-submit-event]{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}body{color:#000}hr{border:1px solid #ededf0}a:focus{outline:none}input[type=email],input[type=number],input[type=tel],input[type=text],textarea{box-shadow:none}form input[type=text]{border:2px solid #ededf0;border-radius:4px}aside>*{margin-bottom:32px}.meta-bar-cat-divLabel,.meta-bar-cat a,.meta-bar-time-group,.story-tag a{padding:5px 6px}.meta-bar-cat a{position:relative}.meta-bar-cat a:after{content:"";position:absolute;top:0;right:0;bottom:0;left:0;border-radius:0;border:2px solid #000;opacity:0;pointer-events:none}.meta-bar-cat a:focus:after{opacity:1}.meta-bar-cat{background:#e41b23}.meta-bar-time{color:#1d2d44}.layout-contain{margin:0 auto;max-width:1312px;box-shadow:none}.story-img-link{border-bottom:none}.story-img-link:not(.expanded):after{content:"";display:block;position:absolute;width:100%;height:100%;background-color:rgba(0,82,204,.2);opacity:0;transition:opacity .2s ease-out;top:0}.story-float-img .story-h a{border-bottom:0}.story-img-link:focus,.story-img-link:hover{background-color:transparent;outline:none}.story-img-link:focus:after,.story-img-link:hover:after{opacity:1}.story-img-link:focus:after{border:2px solid #000}.popular-now-well .image-container:focus,.popular-now-well .image-container:hover{background-color:#000}.story-stats li a:focus,.story-stats li a:hover{text-decoration:underline}.story-float-img .story-h a:focus,.story-float-img .story-h a:hover{text-decoration:underline;background-color:transparent}.layout-contain .wells-ads{margin-bottom:32px}.layout-contain .dynamic-widgets-wrapper{width:100%;max-width:none}.dynamic-widgets-wrapper.affix-bottom,.dynamic-widgets-wrapper.affix-top{position:relative!important;top:auto!important}.l-content .c-heading--legacyWidget{padding-bottom:16px}.wells .l-sidebar__widgetFooter--legacy{border-top:1px solid #ededf0}.section-h-new:after{background-color:#ededf0}.popular-now-well .story-h a:focus,.popular-now-well .story-h a:hover{text-decoration:underline}.l-header .l-header__button,.l-header .l-header__subscribe{color:#fff;transition:none}.l-header .l-header__media,.l-navbar__top .c-nav__link,.l-panel--local .c-nav__link,.l-panel .c-nav--dropdown .c-nav__link,.l-panel__menu .c-nav__link{color:#000;transition:none}.sub-mast-hybrid{padding:0}.sub-mast-inner{margin:16px;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap}.sub-mast-inner .sm-title{float:none;width:auto;padding:0;display:block;color:#000}.sub-mast-inner .sm-button{margin:10px 0}.sub-mast-inner a,.sub-mast a{border-bottom:none}.sub-mast-inner a:focus,.sub-mast-inner a:hover,.sub-mast a:focus,.sub-mast a:hover{background:none}.sub-mast-taxonomy{border-bottom:1px solid #ededf0}.sub-mast-taxonomy .sm-logo-link-radio{display:flex;align-items:center;margin-right:16px;margin-top:10px}.tabs{background-color:#002e5d}.rotator-slide .rotator-slide-text{top:auto!important;width:340px!important;bottom:16px;text-shadow:0 0 8px rgba(0,0,0,.5)!important;z-index:1000}.rotator-slide .rotator-slide-heading,.rotator-slide .rotator-slide-subhead{margin:0 16px;width:100%}.rotator-slide .rotator-slide-heading{font-size:2.375rem;line-height:2.625rem;padding-top:0}.rotator-slide .rotator-slide-subhead{font-size:1.25rem;line-height:1.625rem}.rotator-slide .headshots{width:auto!important;height:100%!important}.rotator.radio .rotator-slide .rotator-slide-heading,.rotator.radio .rotator-slide .rotator-slide-subhead{color:#fff!important}.rotator .ls-inner:after{content:"";display:block;background:linear-gradient(180deg,transparent,rgba(0,0,0,.8));width:100%;height:160px;bottom:0;position:absolute;z-index:100}.l-navbar__list{margin:0;padding:0}.jwplayer .jw-controls .jw-controlbar{z-index:6000}.video-navigation{margin-top:4em}.video-navigation h2{border-bottom:1px solid #b5b5b8}.video-browse-container--outer .video-search-container{position:relative}.video-search-container .search-submit.icon:focus{border:2px solid #000}.video-navigation-column h2{border-bottom:0}.video-browse-container--outer .video-browse h2{margin:0}.video-browse-container--outer .video-navigation{padding-top:0}ul.video-browse-container{margin:8px -8px}ul.video-browse-container li{padding:16px 8px}.video-teaser .upcoming li{color:#1d2d44}.video-teaser img.c-iconLink__icon{width:24px;height:22px}.video-teaser .c-iconLink{margin-bottom:0}.video-feedback{display:flex;border-bottom:1px solid #e5e5e5;border-top:1px solid #e5e5e5;padding:16px 0;margin-top:32px}.video-navigation-column li:first-child{border-top:1px solid #b5b5b8}.video-navigation-column .video-tab-subnav li:last-child{border-bottom:0}.live-cam .story,.video-teaser .story{color:#0d1321}.video-player .socialShare.collapsed{height:auto}.video-thumb{border-bottom:0}.video-thumb .video-thumb-program,.video-thumb .video-thumb-title,.video-thumb h5{color:#000}.video-thumb:focus .video-thumb-program,.video-thumb:focus .video-thumb-title,.video-thumb:hover .video-thumb-program,.video-thumb:hover .video-thumb-title{text-decoration:underline}.load-more-btn,.story-meter-value{background-color:#e41b23}.video-navigation a,.video-navigation span{color:#4d7192}.video-navigation span{display:inline-block}.video-navigation-column a{position:relative}.video-navigation-column a:after{content:"";position:absolute;top:0;right:0;bottom:0;left:0;border-radius:0;border:2px solid #000;opacity:0;pointer-events:none}.video-navigation-column a:focus:after{opacity:1}.video-browse h2 a{position:relative}.video-browse h2 a:after{content:"";position:absolute;top:0;right:0;bottom:0;left:0;border-radius:0;border:2px solid #000;opacity:0;pointer-events:none}.video-browse h2 a:focus:after{opacity:1}.video-navigation a:hover{color:#e41b23}.ie-lte8 .video-navigation>a{border-bottom:1px solid #b5b5b8}.video-browse-container a:not(.load-more-btn){border-bottom:none}.video-browse h2 a:focus{right:-8px;left:-8px}.video-browse-container a:not(.load-more-btn):focus,.video-browse-container a:not(.load-more-btn):hover{background:none}.video-thumb .stats{color:#4d7192}.video-browse .video-thumb .video-thumb-title,.video-browse .video-thumb h5{color:#000}.video-browse .video-thumb-image{overflow-y:hidden;position:relative}.video-browse .video-thumb-image:after{content:"";position:absolute;top:0;right:0;bottom:0;left:0;border-radius:0;border:2px solid #000;opacity:0;pointer-events:none}.video-browse .video-thumb-image:focus:after{opacity:1}.video-browse .video-thumb-info{position:relative}.video-browse .video-thumb-info:after{content:"";position:absolute;top:0;right:0;bottom:0;left:0;border-radius:0;border:2px solid #000;opacity:0;pointer-events:none}.video-browse .video-thumb-info:focus:after{opacity:1}.video-details h1{line-height:1.45}.video-details h1.no-videos-h1{margin-bottom:0}.video-details .gn-speakable-title{margin-top:20px;color:#000}.ab-detect,.player-message{z-index:6200!important}.search-form input[type=search]{border:2px solid #ededf0;border-radius:4px;padding:8px 16px;font-size:1.125rem;width:100%;display:block;height:52px;box-shadow:none;color:#000}.search-form input[type=search]::-moz-placeholder{color:#4d7192}.search-form input[type=search]:-ms-input-placeholder{color:#4d7192}.search-form input[type=search]::placeholder{color:#4d7192}.search-form input[type=search]:focus{outline:auto}.search-form input.search-submit{width:20px;height:20px;right:16px;top:16px}.CRAB_2.ob-strip-layout .ob-widget-header{position:relative;font-weight:700}.OUTBRAIN{box-shadow:none}.carousel .video-thumb-image{padding:56.25% 0 0;height:0;overflow:hidden}.carousel .video-thumb-image img{position:absolute;top:50%;transform:translateY(-50%)}.video-article-wrapper{outline:none}.video-teaser .upcoming .video-thumb .stats{color:#4d7192}.video-teaser .upcoming .video-thumb .video-thumb-imageContainer{flex-shrink:0;margin-right:8px}.video-teaser .upcoming .video-thumb .video-thumb-imageContainer img{margin-right:0} </style> <link rel="stylesheet" id="all-css-0" href="https://web.archive.org/web/20220322044914cs_/https://globalnews.ca/_static/??-eJx9jcEKwjAQRH/IdKnU9iR+S9wsNbpJQ2ZL6d8bBMFePL4Z3gxtxcXMugYBPUFJQvSikiTbAYr6XapTmT3vXYq5Y+BE//TW/fJB4iXb52J1Rdc5ZhDEV36QqIdFLlUAChFGzaHaYpPgygKDu+vCLwfbVfCdvaVrPw7T2F+G8/QGkwVQOQ==" type="text/css" media="all"/> <style id="global-styles-inline-css"> body{--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--duotone--dark-grayscale: url('/web/20220322044914im_/https://globalnews.ca/bc/events/#wp-duotone-dark-grayscale');--wp--preset--duotone--grayscale: url('/web/20220322044914im_/https://globalnews.ca/bc/events/#wp-duotone-grayscale');--wp--preset--duotone--purple-yellow: url('/web/20220322044914im_/https://globalnews.ca/bc/events/#wp-duotone-purple-yellow');--wp--preset--duotone--blue-red: url('/web/20220322044914im_/https://globalnews.ca/bc/events/#wp-duotone-blue-red');--wp--preset--duotone--midnight: url('/web/20220322044914im_/https://globalnews.ca/bc/events/#wp-duotone-midnight');--wp--preset--duotone--magenta-yellow: url('/web/20220322044914im_/https://globalnews.ca/bc/events/#wp-duotone-magenta-yellow');--wp--preset--duotone--purple-green: url('/web/20220322044914im_/https://globalnews.ca/bc/events/#wp-duotone-purple-green');--wp--preset--duotone--blue-orange: url('/web/20220322044914im_/https://globalnews.ca/bc/events/#wp-duotone-blue-orange');--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;} </style> <link rel="stylesheet" id="screen-css-2" href="https://web.archive.org/web/20220322044914cs_/https://globalnews.ca/_static/??-eJyllEGKwzAMRS/UxAyUtpsyV5grKI4mEchSsOSGzOnHTDfdTrWwDfb/j2cwTvs2ZBVH8eQrFrRkK+zDwjoBC+6WsvWhksGTaC3A9IMj0zQWkrEfntK/GN89aSMwv9mfwCgH+s/diAHDoc0DgILSAnXqa8TfXOsxFJ0bY0SjwIJ/eSDBGiB5RZlJlghiJ/eQxKo9kCuiBCAPmlGj/a/+wEJXMc0EHABszdbBaJG2RTSOMikb+utv8VnuH5fz9Xa99fkXliSwxg==" type="text/css" media="screen"/> <link rel="stylesheet" id="screen and (min-width:36em)-css-2" href="https://web.archive.org/web/20220322044914cs_/https://globalnews.ca/_static/??-eJylzEEKgDAMBMAPaYMg6kV8gY+obdBCm4hJKf7eXj2Kh93LsgPlbB2TIinogQkF5LCl3SNvNhIWASc1TM4qRHtzVlOCR5MCmTo18ElISPnPX5Sve2WfI/5h9ELygfaXsaS5G/pxGqfaD7h3aNU=" type="text/css" media="screen and (min-width:36em)"/> <!--[if lte IE 8]> <link rel='stylesheet' id='gnca-IE8-normalize-css' href='https://globalnews.ca/wp-content/themes/shaw-globalnews/css/concat/normalize.lib.ie.css?ver=1' media='screen' /> <![endif]--> <!--[if lte IE 8]> <link rel='stylesheet' id='gnca-IE8-fonts-css' href='https://globalnews.ca/wp-content/themes/shaw-globalnews/css/concat/fonts.all.ie.css?ver=1' media='screen' /> <![endif]--> <!--[if lte IE 8]> <link rel='stylesheet' id='gnca-IE8-basic-css' href='https://globalnews.ca/wp-content/themes/shaw-globalnews/css/concat/basic.all.ie.css?ver=1' media='screen' /> <![endif]--> <!--[if lte IE 8]> <link rel='stylesheet' id='gnca-IE8-globals-css' href='https://globalnews.ca/wp-content/themes/shaw-globalnews/css/concat/globals.all.ie.css?ver=1' media='screen' /> <![endif]--> <!--[if lte IE 8]> <link rel='stylesheet' id='gnca-IE8-layout-css' href='https://globalnews.ca/wp-content/themes/shaw-globalnews/css/concat/layout.all.ie.css?ver=1' media='screen' /> <![endif]--> <!--[if lte IE 8]> <link rel='stylesheet' id='gnca-IE8-menu-css' href='https://globalnews.ca/wp-content/themes/shaw-globalnews/css/concat/menu.all.ie.css?ver=1' media='screen' /> <![endif]--> <!--[if lte IE 8]> <link rel='stylesheet' id='gnca-IE8-icons-css' href='https://globalnews.ca/wp-content/themes/shaw-globalnews/css/concat/icons.all.ie.css?ver=1' media='screen' /> <![endif]--> <!--[if lte IE 8]> <link rel='stylesheet' id='gnca-IE8-story-module-css' href='https://globalnews.ca/wp-content/themes/shaw-globalnews/css/concat/story-module.all.ie.css?ver=1' media='screen' /> <![endif]--> <!--[if lte IE 8]> <link rel='stylesheet' id='gnca-IE8-image-container-css' href='https://globalnews.ca/wp-content/themes/shaw-globalnews/css/concat/image-container.all.ie.css?ver=1' media='screen' /> <![endif]--> <!--[if lte IE 8]> <link rel='stylesheet' id='gnca-IE8-trending-css' href='https://globalnews.ca/wp-content/themes/shaw-globalnews/css/concat/trending.all.ie.css?ver=1' media='screen' /> <![endif]--> <!--[if lte IE 8]> <link rel='stylesheet' id='gnca-IE8-twitter-css' href='https://globalnews.ca/wp-content/themes/shaw-globalnews/css/concat/twitter.all.ie.css?ver=1' media='screen' /> <![endif]--> <!--[if lte IE 8]> <link rel='stylesheet' id='gnca-IE8-homescreen-css' href='https://globalnews.ca/wp-content/themes/shaw-globalnews/css/concat/homescreen.all.ie.css?ver=1' media='screen' /> <![endif]--> <!--[if lte IE 8]> <link rel='stylesheet' id='gnca-IE8-video-css' href='https://globalnews.ca/wp-content/themes/shaw-globalnews/css/concat/video.all.ie.css?ver=1' media='screen' /> <![endif]--> <!--[if lte IE 8]> <link rel='stylesheet' id='gnca-IE8-videoPlayer-css' href='https://globalnews.ca/wp-content/themes/shaw-globalnews/css/concat/videoPlayer.all.ie.css?ver=1' media='screen' /> <![endif]--> <!--[if lte IE 8]> <link rel='stylesheet' id='gnca-IE8-social-css' href='https://globalnews.ca/wp-content/themes/shaw-globalnews/css/concat/social.all.ie.css?ver=1' media='screen' /> <![endif]--> <!--[if lte IE 8]> <link rel='stylesheet' id='gnca-IE8-push-signup-css' href='https://globalnews.ca/wp-content/themes/shaw-globalnews/css/concat/push-signup.all.ie.css?ver=1' media='screen' /> <![endif]--> <!--[if lte IE 8]> <link rel='stylesheet' id='gnca-IE8-symbolset-css' href='https://globalnews.ca/wp-content/themes/shaw-globalnews/css/concat/symbolset.lib.ie.css?ver=1' media='screen' /> <![endif]--> <!--[if lte IE 8]> <link rel='stylesheet' id='gnca-IE8-36em-layout-css' href='https://globalnews.ca/wp-content/themes/shaw-globalnews/css/concat/layout.wide.ie.css?ver=1' media='screen' /> <![endif]--> <!--[if lte IE 8]> <link rel='stylesheet' id='gnca-IE8-36em-menu-css' href='https://globalnews.ca/wp-content/themes/shaw-globalnews/css/concat/menu.wide.ie.css?ver=1' media='screen' /> <![endif]--> <!--[if lte IE 8]> <link rel='stylesheet' id='gnca-IE8-36em-storyModule-css' href='https://globalnews.ca/wp-content/themes/shaw-globalnews/css/concat/storyModule.wide.ie.css?ver=1' media='screen' /> <![endif]--> <!--[if lte IE 8]> <link rel='stylesheet' id='gnca-IE8-36em-trending-css' href='https://globalnews.ca/wp-content/themes/shaw-globalnews/css/concat/trending.wide.ie.css?ver=1' media='screen' /> <![endif]--> <link rel="stylesheet" id="gnca-fontawesome-lib-css" href="//web.archive.org/web/20220322044914cs_/https://netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css?ver=1" media="all"/> <link rel="stylesheet" id="screen-css-46" href="https://web.archive.org/web/20220322044914cs_/https://globalnews.ca/_static/??-eJyljrEOAjEMQ3+INkJC3C2IhR9JS+AqpcmpCfT36cgKHezBsp8MfQ9ZxUkcfKNKBrZhD0/WhCzUDbINqWR0wOYlM93IsXBE5liLxFE4wE8ceo+eTQAe2urMflee+Z+RSe7YQnq5q0Qu6U9SRfMwwu8z13o5nk/LuqzDP6ZVm4s=" type="text/css" media="screen"/> <link rel="stylesheet" id="screen and (min-width:36em)-css-46" href="https://web.archive.org/web/20220322044914cs_/https://globalnews.ca/_static/??-eJyVjDEOgCAMAD8kNCZGWIyLH6lYhQSKsU34vqyODnfT5aDdJlRWYgWNVEhAIjZz5bpjZmoCQTqVAyrgoylk2kgxZdvSQbYktr0Y4NforE+Rz2AtyzhPzjvf/QLDODcK" type="text/css" media="screen and (min-width:36em)"/> <link rel="stylesheet" id="print-css-46" href="https://web.archive.org/web/20220322044914cs_/https://globalnews.ca/wp-content/themes/shaw-globalnews/css/concat/print-article.all.min.css?m=1647878647g" type="text/css" media="print"/> <!--[if lte IE 8]> <link rel='stylesheet' id='gnca-IE8-articleDetail-css' href='https://globalnews.ca/wp-content/themes/shaw-globalnews/css/concat/articleDetail.all.ie.css?ver=1' media='screen' /> <![endif]--> <!--[if lte IE 8]> <link rel='stylesheet' id='gnca-IE8-events-css' href='https://globalnews.ca/wp-content/themes/shaw-globalnews/css/concat/events.all.ie.css?ver=1' media='screen' /> <![endif]--> <!--[if lte IE 8]> <link rel='stylesheet' id='gnca-IE8-forms-css' href='https://globalnews.ca/wp-content/themes/shaw-globalnews/css/concat/forms.all.ie.css?ver=1' media='screen' /> <![endif]--> <!--[if lte IE 8]> <link rel='stylesheet' id='gnca-IE8-poll-css' href='https://globalnews.ca/wp-content/themes/shaw-globalnews/css/concat/poll.all.ie.css?ver=1' media='screen' /> <![endif]--> <!--[if lte IE 8]> <link rel='stylesheet' id='gnca-IE8-calendar-button-css' href='https://globalnews.ca/wp-content/themes/shaw-globalnews/css/concat/calendar-button.lib.ie.css?ver=1' media='screen' /> <![endif]--> <!--[if lte IE 8]> <link rel='stylesheet' id='gnca-IE8-mast-new-css' href='https://globalnews.ca/wp-content/themes/shaw-globalnews/css/concat/mast-new.all.ie.css?ver=1' media='screen' /> <![endif]--> <!--[if lte IE 8]> <link rel='stylesheet' id='gnca-IE8-36em-articleDetail-css' href='https://globalnews.ca/wp-content/themes/shaw-globalnews/css/concat/articleDetail.wide.ie.css?ver=1' media='screen' /> <![endif]--> <!--[if lte IE 8]> <link rel='stylesheet' id='gnca-IE8-36em-forms-css' href='https://globalnews.ca/wp-content/themes/shaw-globalnews/css/concat/forms.wide.ie.css?ver=1' media='screen' /> <![endif]--> <!--[if lte IE 8]> <link rel='stylesheet' id='gnca-IE8-print-article-css' href='https://globalnews.ca/wp-content/themes/shaw-globalnews/css/concat/print-article.all.ie.css?ver=1' media='print' /> <![endif]--> <link rel="stylesheet" id="all-css-64" href="https://web.archive.org/web/20220322044914cs_/https://globalnews.ca/wp-content/themes/shaw-globalnews/css/all/events.css?m=1647878647g" type="text/css" media="all"/> <link rel="stylesheet" id="hybrid-critical-mobile-css" href="https://web.archive.org/web/20220322044914cs_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/css/hybrid-critical-mobile.css?ver=198aSWJG2Y8VvcE3VsM5P8alJFk%3D" media="(min-width: 498px)"/> <link rel="stylesheet" id="hybrid-critical-tablet-portrait-css" href="https://web.archive.org/web/20220322044914cs_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/css/hybrid-critical-tablet-portrait.css?ver=iZXjx6mrBj9jfuw6Ed9aJnojkh4%3D" media="(min-width: 768px)"/> <link rel="stylesheet" id="hybrid-critical-tablet-landscape-css" href="https://web.archive.org/web/20220322044914cs_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/css/hybrid-critical-tablet-landscape.css?ver=HhO7mTOKHKpA9grqXOS3%2FAc2SDM%3D" media="(min-width: 1024px)"/> <link rel="stylesheet" id="hybrid-critical-desktop-css" href="https://web.archive.org/web/20220322044914cs_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/css/hybrid-critical-desktop.css?ver=xm9J%2FcF01VhvFFKDv%2FqOaQ7o69g%3D" media="(min-width: 1312px)"/> <link rel="stylesheet" id="all-css-72" href="https://web.archive.org/web/20220322044914cs_/https://globalnews.ca/wp-content/mu-plugins/jetpack-10.7/css/jetpack.css?m=1646336939g" type="text/css" media="all"/> <script defer="defer" src="https://web.archive.org/web/20220322044914js_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/vendor/svgxuse/svgxuse.min.js?ver=5.9.2" id="svgxuse-js"></script> <script defer="defer" src="https://web.archive.org/web/20220322044914js_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/vendor/adobe/app-measurement-v222.js?ver=5.9.2" id="adobe-js"></script> <script defer="defer" src="https://web.archive.org/web/20220322044914js_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/js/polyfills~article~hybrid~interactive~longform~main~monetize~video.bundle.js?ver=VJriZB3vWSYGGIKKoYnMjmKRfGg%3D" id="polyfills~article~hybrid~interactive~longform~main~monetize~video-js"></script> <script defer="defer" src="https://web.archive.org/web/20220322044914js_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/js/utils~admin~analytics~article~gallery~hybrid~interactive~longform~main~monetize~video.bundle.js?ver=XU%2B07lIu%2BbuDoUX%2BFx457JE01Ww%3D" id="utils~admin~analytics~article~gallery~hybrid~interactive~longform~main~monetize~video-js"></script> <script defer="defer" src="https://web.archive.org/web/20220322044914js_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/js/utils~analytics~article~gallery~hybrid~interactive~longform~main~monetize~video.bundle.js?ver=BrqlgXoaEIWMNlckjDacvfqsBc8%3D" id="utils~analytics~article~gallery~hybrid~interactive~longform~main~monetize~video-js"></script> <script defer="defer" src="https://web.archive.org/web/20220322044914js_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/js/utils~article~hybrid~interactive~longform~main~monetize~video.bundle.js?ver=8RncedLpFcTYNF9lAciBqCeXkiw%3D" id="utils~article~hybrid~interactive~longform~main~monetize~video-js"></script> <script defer="defer" src="https://web.archive.org/web/20220322044914js_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/js/utils~gallery~main~monetize~video.bundle.js?ver=wXT9hBssnRaIBifIAC3aQL9xCUA%3D" id="utils~gallery~main~monetize~video-js"></script> <script defer="defer" src="https://web.archive.org/web/20220322044914js_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/js/utils~main~monetize.bundle.js?ver=aMcyh6vS64Ji1Jh1P9sKDmZmJ58%3D" id="utils~main~monetize-js"></script> <script defer="defer" src="https://web.archive.org/web/20220322044914js_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/js/vendor~article~hybrid~main~monetize.bundle.js?ver=vnk38sV8Xul4jxz7IwaWEiPBGt8%3D" id="vendor~article~hybrid~main~monetize-js"></script> <script defer="defer" src="https://web.archive.org/web/20220322044914js_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/js/vendor~monetize.bundle.js?ver=zngWNi8xryTugGzup4eRsCb6kZg%3D" id="vendor~monetize-js"></script> <script id="gn-monetize-js-extra"> var gnca_settings = {"video_settings":{"sticky_enabled":true,"anchor_enabled":false,"mini_sticky":true,"muted_autoplay":true,"ad_bidding":true},"ad_settings":{"bidding_enabled":true,"bidding_timeout":1200},"notification_settings":{"region":"gnca-national"},"override_links":{"\/london":"\/radio\/am980","\/hamilton":"\/radio\/900chml"},"svg_sprite_uri":"https:\/\/web.archive.org\/web\/20220322044914\/https:\/\/globalnews.ca\/wp-content\/themes\/shaw-globalnews\/assets\/dist\/icons\/out\/symbol\/svg\/sprite.symbol.svg?v=msjiw4cvn","js_base_path":"https:\/\/web.archive.org\/web\/20220322044914\/https:\/\/globalnews.ca\/wp-content\/themes\/shaw-globalnews","is_admin":"","is_public":"1","is_preprod":"","user_region":"gnca-national","content_region":"","beta":"","template_type":"regular","page_type":""}; </script> <script defer="defer" src="https://web.archive.org/web/20220322044914js_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/js/monetize.bundle.js?ver=BgDShucN59%2BIFCYSkmavuw31hHU%3D" id="gn-monetize-js"></script> <script defer="defer" src="https://web.archive.org/web/20220322044914js_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/js/analytics.bundle.js?ver=MkgEEDrhQgCLYrbm7g8hYklbCiI%3D" id="gn-analytics-js"></script> <script defer="defer" src="https://web.archive.org/web/20220322044914js_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/js/vendor~admin_s~gallery_s~hybrid_s~interactive_s~internal_s~longform_s~program_s~styles~video_s.bundle.js?ver=tyDkjx5t7v7UOSvaVtKbqVmDyC4%3D" id="vendor~admin_s~gallery_s~hybrid_s~interactive_s~internal_s~longform_s~program_s~styles~video_s-js"></script> <script defer="defer" src="https://web.archive.org/web/20220322044914js_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/js/vendor~hybrid_s~styles~video_s.bundle.js?ver=JfvyrGSlhEoBF6xzPk86u59o4lM%3D" id="vendor~hybrid_s~styles~video_s-js"></script> <script defer="defer" src="https://web.archive.org/web/20220322044914js_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/js/hybrid_s.bundle.js?ver=Rf3tFz%2B02PLnw%2BNvLHcSXg3r0pc%3D" id="gn-hybrid_s-js"></script> <script defer="defer" src="https://web.archive.org/web/20220322044914js_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/js/polyfills~admin~hybrid~main.bundle.js?ver=aGRE1sHM3RTBMI0kRWvGZW5jG8w%3D" id="polyfills~admin~hybrid~main-js"></script> <script defer="defer" src="https://web.archive.org/web/20220322044914js_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/js/polyfills~gallery~hybrid~main.bundle.js?ver=w%2FLJaSt1KgXacd45nrSHJmzxNRU%3D" id="polyfills~gallery~hybrid~main-js"></script> <script defer="defer" src="https://web.archive.org/web/20220322044914js_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/js/utils~article~gallery~hybrid.bundle.js?ver=%2FbYa9eKNQLAk6cjFEJ8YVoiCWsg%3D" id="utils~article~gallery~hybrid-js"></script> <script defer="defer" src="https://web.archive.org/web/20220322044914js_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/js/utils~article~gallery~hybrid~interactive~main.bundle.js?ver=GOorpjN8e7x%2ByrJXanoJO7LLRk4%3D" id="utils~article~gallery~hybrid~interactive~main-js"></script> <script defer="defer" src="https://web.archive.org/web/20220322044914js_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/js/utils~article~hybrid~interactive~main~video.bundle.js?ver=pZG7yFnH7kNuVai9vejn%2FqOpA9Q%3D" id="utils~article~hybrid~interactive~main~video-js"></script> <script defer="defer" src="https://web.archive.org/web/20220322044914js_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/js/utils~hybrid~main.bundle.js?ver=qODT0oL4KaBeD2lcseSfuTVXklc%3D" id="utils~hybrid~main-js"></script> <script defer="defer" src="https://web.archive.org/web/20220322044914js_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/js/utils~hybrid~main~video.bundle.js?ver=w8k7wSzqWMjk4AYZH9YoYJF%2BmNI%3D" id="utils~hybrid~main~video-js"></script> <script defer="defer" src="https://web.archive.org/web/20220322044914js_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/js/vendor~hybrid~longform~main~video.bundle.js?ver=zP8Eiy%2BgNVsBcbzjeMQBlaeb58E%3D" id="vendor~hybrid~longform~main~video-js"></script> <script defer="defer" src="https://web.archive.org/web/20220322044914js_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/js/vendor~hybrid~main.bundle.js?ver=EcIlCtdDIezFGNehIpQoy5BiBqI%3D" id="vendor~hybrid~main-js"></script> <script defer="defer" src="https://web.archive.org/web/20220322044914js_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/js/hybrid.bundle.js?ver=q819r3pJ8zf65l%2FhmcB0FaMa%2FpQ%3D" id="gn-hybrid-js"></script> <script id="gnca-get-in-touch-js-extra"> var gncaGetInTouch = {"ajaxurl":"https:\/\/web.archive.org\/web\/20220322044914\/https:\/\/globalnews.ca\/wp-admin\/admin-ajax.php"}; </script> <script id="gnca-moreposts-js-extra"> var gncaPageVars = {"queryType":"frontPage","enable_lazy_load_ads":"1"}; </script> <script type="text/javascript" src="https://web.archive.org/web/20220322044914js_/https://globalnews.ca/_static/??-eJyllFFuwyAMQC80N2tVrf2ZdhYX3OAMcAaO0vb0I1vU7WsTVIkSReE9gw3u5hE4Gj9Zyt1Q7o+J0nV9bQLHzZCfur8GQeA+odLvwUaiUtROHYWCZIcz9F5O6CPNXwrPp64AXR8NwqTs8wP8jGocpTrDQq8rGBe+Lf5qMCLvXJmCBbcSiqktNEsGMQ5jT3DmS31wIyFIfCDvWQyjbxNYUixVh1H89cy+0RLEUop8q6z9HV8KH8gytvEjG50S1c//J4WaOPYNMGk5kqAyGQcz2/LdOAOdWZXSt6rRgQM27D8n5adJRI17MOHokDzsYAu7xxQ3kQDP5drXLyNIolGyVnawe/K8oIVF8k+7nbic2FTZZNCubQYSob0W8C28bl/2h+PhWJ7DJ/QGPHA="></script><script src="https://web.archive.org/web/20220322044914js_/https://globalnews.ca/wp-includes/js/jquery/ui/datepicker.min.js?ver=1.13.1" id="jquery-ui-datepicker-js"></script> <script id="jquery-ui-datepicker-js-after"> jQuery(function(jQuery){jQuery.datepicker.setDefaults({"closeText":"Close","currentText":"Today","monthNames":["January","February","March","April","May","June","July","August","September","October","November","December"],"monthNamesShort":["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],"nextText":"Next","prevText":"Previous","dayNames":["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],"dayNamesShort":["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],"dayNamesMin":["S","M","T","W","T","F","S"],"dateFormat":"MM d, yy","firstDay":1,"isRTL":false});}); </script> <script src="https://web.archive.org/web/20220322044914js_/https://addevent.com/libs/atc/1.6.1/atc.min.js?ver=5.9.2" id="gnca-calendar-button-js"></script> <script type="text/javascript" src="https://web.archive.org/web/20220322044914js_/https://globalnews.ca/wp-content/themes/shaw-globalnews/js/min/events.min.js?m=1647878647g"></script><link rel="https://api.w.org/" href="https://globalnews.ca/wp-json/"/><style type="text/css">img#wpstats{display:none}</style> <script type="text/javascript">var _sf_startpt=(new Date()).getTime()</script> <script type="text/javascript"> var _sf_async_config = _sf_async_config || {}; _sf_async_config.uid = "51927"; _sf_async_config.domain = "globalnews.ca"; _sf_async_config.useCanonical = "true"; </script> <script src="//web.archive.org/web/20220322044914js_/https://static.chartbeat.com/js/chartbeat_mab.js"></script> <script> if ('serviceWorker' in navigator) { window.addEventListener('load', function() { navigator.serviceWorker.register( '/pwaworker.js' ) .then( function( registration ) { console.log( 'SW registered! Scope: ' + registration.scope ); }) .catch( function( err ) { console.log( 'SW registration failed: ' + err ); }); }); } </script> <link rel="alternate" type="application/rss+xml" title="Global News Feed" href="https://web.archive.org/web/20220322044914/https://globalnews.ca/feed/"/> <!-- define default googletag --> <script> var googletag = googletag || {}; googletag.cmd = googletag.cmd || []; </script> <script async="async" src="https://web.archive.org/web/20220322044914js_/https://www.googletagservices.com/tag/js/gpt.js"></script> <!-- Casale Media Index bidding Script (IX wrapper) --> <script type="text/javascript" async="async" src="//web.archive.org/web/20220322044914js_/https://js-sec.indexww.com/ht/p/183422-173052907676579.js"></script> <!-- Sharethrough scripts --> <script type="text/javascript" async="async" src="//web.archive.org/web/20220322044914js_/https://sdk.sharethrough.com/gc.js"></script> <script type="text/javascript"> var gnAdSettings = gnAdSettings || {}; gnAdSettings.ads = gnAdSettings.ads || []; gnAdSettings = {"adPath":"\/6872\/shaw.globalnews.ca\/events\/bc","gnLive":false,"isTesting":false,"pageTargeting":{"userregion":"national","contentregion":"bc","page":"home","template":"index","weathertemp":"3","weatherprec":"x","weathercode":"x","site":"globalnews","network":"shaw","redesign":"true"}}; </script> <script> // Load the APS JavaScript Library !function(a9,a,p,s,t,A,g){if(a[a9])return;function q(c,r){a[a9]._Q.push([c,r])}a[a9]={init:function(){q("i",arguments)},fetchBids:function(){q("f",arguments)},setDisplayBids:function(){},targetingKeys:function(){return[]},_Q:[]};A=p.createElement(s);A.async=!0;A.src=t;g=p.getElementsByTagName(s)[0];g.parentNode.insertBefore(A,g)}("apstag",window,document,"script","//web.archive.org/web/20220322044914/https://c.amazon-adsystem.com/aax2/apstag.js"); // Initialize the Library apstag.init( {"pubID":"3311","adServer":"googletag"} ); // Set a flag so inline video (not embedded via iframe) skips the apstag.init window.gncaApstagInit = true; </script> <!-- Google Analytics --> <script> (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','//web.archive.org/web/20220322044914/https://www.google-analytics.com/analytics.js','ga'); ga('create', 'UA-37934458-1', 'auto' ); ga('set', 'dimension1', "national"); // User Region ga('set', 'dimension2', "bc"); // Content Region ga('send', 'pageview'); </script> <!-- End Google Analytics --> <!-- Analytics Settings --> <script type="text/javascript"> var gnAnalyticsSettings = { "adobe": {"trackingDomain":"metrics.globalnews.ca","StrackingDomain":"smetrics.globalnews.ca","accounts":"corus-tv-globalnews"} }; </script> <script> var permutiveData = {"content":{"sections":["events","bc"]},"user":{"client":"web","region":"national"}}; // Get PWA browser mode var isStandalone = window.matchMedia( '(display-mode: standalone)' ).matches; if ( /^android-app:\/\//.test( document.referrer ) || navigator.standalone || isStandalone ) { permutiveData.user.client = 'pwa'; } !function(n,e,i){if(!n){n=n||{},window.permutive=n,n.q=[],n.config=i||{},n.config.apiKey=e,n.config.environment=n.config.environment||"production";for(var o=["addon","identify","track","trigger","query","segment","segments","ready","on","once","user","consent"],r=0;r<o.length;r++){var t=o[r];n[t]=function(e){return function(){var i=Array.prototype.slice.call(arguments,0);n.q.push({functionName:e,arguments:i})}}(t)}}}(window.permutive,"2e14a473-6c86-4a13-b06d-59143665c372",{}); permutive.addon('web', { "page": permutiveData } ) </script> <script async src="https://web.archive.org/web/20220322044914js_/https://f7e98148-cb09-4cf1-9b9f-b5aee3465d6e.edge.permutive.app/f7e98148-cb09-4cf1-9b9f-b5aee3465d6e-web.js"></script> <!-- MOAT Analytics Code - UPDATED --> <script> (function(){try{var e={a:{}};e.a.f={t:(new Date).getTime(),de:Math.floor(Math.random()*Math.pow(10,12)),zMoatAB_SNPT:"true"};e.a.client="CORUS_HEADER1";e.a.b="corusheader424700441673";e.a.g="px.moatads.com";window["__MHS_P__"+e.a.b]=e.a.f;window["__MHS_E__"+e.a.b]=function(){};(function(n){function l(f){var a=f=f.replace(":","");try{for(var g=0;10>g&&(f=decodeURIComponent(f),a!=f)&&!f.match(/^http(s)?\:/);g++)a=f}catch(c){}return f.replace(/(^\s+|\s+$)/g,"")}function e(a,c,g,b){return a[c]===b&&0=== g||a[g]===b&&0===c}var b=n.a.f;if(!location||!location.hostname||!location.pathname)return!1;var h=document.location.hostname.replace(/^www\./,""),q=function(){for(var a,c=document.getElementsByTagName("meta"),g,b=0,m=c.length;b<m;b++)if(g=c[b],"og:title"===g.getAttribute("property")){a=g.getAttribute("content");break}a||(a=document.title||"Untitled");return a}();(function(a,c,b){a.l1=c;a.l2=b;a.l3="__page__";a.l4="-"})(b,h,q);var t=(new Date).getTime().toString(35),h=n.a.client,q=[l(b.l1),l(b.l2), l(b.l3),l(b.l4)].join(":"),r="",k=/zct[a-z0-9]+/i,d;for(d in b)b.hasOwnProperty(d)&&d.match(k)&&(r+="&"+d+"="+b[d]);d=(d=document.referrer.match(/^([^:]{2,}:\/\/[^\/]*)/))?d[1]:document.referrer;var p=["e=17","d="+encodeURIComponent(q),"de="+b.de,"t="+b.t,"i="+h,"cm=1","gu="+document.location.href,String("j="+encodeURIComponent(d)+r),"mp=1","ac=1","pl=1","bq=10","vc=2"],a="https://web.archive.org/web/20220322044914/https://pci3oo5mg4mn-a.akamaihd.net/"+t+".gif?",c=function(a){for(var c="",b=0;b<a.length;b++)c+=(0===b?"":"&")+a[b];return c}(function(a){for(var c= 0;c<a.length;c++){var b=Math.floor(Math.random()*(a.length-c)+c),m=a[c],d=e(a,c,b,p[1]);e(a,c,b,p[0])||d?c--:(a[c]=a[b],a[b]=m)}return a}(p)),t=n.a.g,k=b.de,b=b.t,a=a+c+"&cs=0",c="https://"+t+"/pixel.gif?e=17&d="+encodeURIComponent(q)+"&de="+k+"&t="+b+"&i="+h+"&cm=1&j="+encodeURIComponent(d)+r+"&mp=0&ac=1&pl=1&bq=10&ad_type=img&vc=2&cs=0",m="https://"+t+"/pixel.gif?e=17&d="+encodeURIComponent(q)+"&de="+k+"&t="+b+"&i="+h+"&cm=1&j="+encodeURIComponent(d)+r+"&ku=1&ac=1&pl=1&bq=10&ad_type=img&vc=2&cs=0"; (new Image).src=a;(new Image).src=c;window["__MHS_E__"+n.a.b]=function(){(new Image).src=m}})(e);(function(){function e(a){k&&console.log(">>>MOAT YIELD INTELLIGENCE/"+a)}function l(){try{var a=window.googletag;return a.apiReady?a.pubads():!1}catch(c){return e("init:"+c),!1}}function u(a){var c=l(),m=b(a);c?m(c,window.googletag):(window.googletag=window.googletag||{},window.googletag.cmd=window.googletag.cmd||[],window.googletag.cmd.push(function(){var a=l();a&&m(a,window.googletag)}))}function b(a){return function(){try{return a&& a.apply?a.apply(null,arguments):a()}catch(b){try{var c=document.referrer}catch(d){c=""}try{var m="//web.archive.org/web/20220322044914/https://pixel.moatads.com/pixel.gif?e=24&d=data%3Adata%3Adata%3Adata&i=MOATHEADERSNIPPET1&vc=2&ac=1&k="+encodeURIComponent(void 0)+"&j="+encodeURIComponent(c)+"&cs="+(new Date).getTime();(new Image).src=m}catch(d){}throw b;}}}function h(a){u(function(c){var b={};a.c?(c={}.toString.call(a.c),c=!c||"[object Array]"!==c&&"[object Array Iterator]"!==c?[a.c]:a.c):c=c.getSlots();b.slots=c;b.slots&&window&&window.setTimeout? (c=a.timeout,"number"===typeof c&&!isNaN(c)||(a.timeout=1E3),b.fired=!1,b.callback="function"===typeof a.callback?a.callback:void 0,b.disableAdCall="boolean"===typeof a.disableAdCall?a.disableAdCall:!1,b.timeoutId=window.setTimeout(q(b),a.timeout),r.push(b)):e("init: No valid slots found or provided, exiting.")})}function q(a){return function(){if(d)return d(a);t(a)}}function t(a){u(function(c,d){a.fired=!0;if(a.disableAdCall)e("init: Ad call disabled, not making ad call.");else{e("init: Making ad Call."); for(var f=0;f<a.slots.length;f++){var l=d,g=c,h=a.slots[f],k=l.pubadsReady&&!g.enableSingleRequest();k&&l.display(h);(!k||"function"===typeof g.isInitialLoadDisabled&&g.isInitialLoadDisabled())&&g.refresh([h])}}"function"===typeof a.callback&&(f=b(a.callback),e("init: Firing callback."),f(!1))})}var r=[],k=!1,d;if(!window.moatPrebidApi||"object"!==typeof window.moatPrebidApi){window.moatPrebidApi={};var p=window.moatPrebidApi;p.init=function(a){h(a||{})};p.enableLogging=function(){return k=!0};p.disableLogging= function(){k=!1;return!0};p.__onScriptLoad=function(){return{entries:r,enableLogging:k,setTimeoutFn:function(a){d||"function"!==typeof a||(d=a)}}}}})()}catch(n){(function(e){try{var n=document.referrer}catch(h){n=""}try{var b="//web.archive.org/web/20220322044914/https://pixel.moatads.com/pixel.gif?e=24&d=data%3Adata%3Adata%3Adata&i=MOATHEADERSNIPPET1&vc=2&ac=1&k="+encodeURIComponent(e)+"&j="+encodeURIComponent(n)+"&cs="+(new Date).getTime();(new Image).src=b}catch(h){}})()}})(); </script> <script type="text/javascript" src="https://web.archive.org/web/20220322044914js_/https://z.moatads.com/corusheader424700441673/moatheader.js#zMoatAB_SNPT=true" onerror="window['__MHS_E__corusheader424700441673']()"></script> <!-- End of MOAT Analytics Code --> </head> <body class="home blog reskin-enabled"> <div class="l-container"> <header id="header" class="l-header"> <div class="l-header__inner"> <a class="l-header__skip" href="#content">SKIP TO MAIN CONTENT</a> <div class="l-header__logo"> <a class="c-logo c-logo--header" href="https://web.archive.org/web/20220322044914/https://globalnews.ca/"> <span class="sr-only">Global News Home</span> <img class="c-logo__image" src="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/images/logo-mobile.svg" alt="" width="124" height="25"/> </a> </div> <div class="l-header__actions"> <a class="l-header__subscribe l-header__button c-button c-button--small" href="/web/20220322044914/https://globalnews.ca/pages/email-alerts/" data-trackable="true" data-trackaction="Header | Subscribe"> <svg class="c-icon c-icon--red l-header__icon u-show-tablet-portrait" focusable="false"> <use xlink:href="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/icons/out/symbol/svg/sprite.symbol.svg?v=msjiw4cvn#mail"></use> </svg> <span>SUBSCRIBE</span> </a> <a class="l-header__button l-header__secondary l-header__button--light l-header__live c-button c-button--small" href="/web/20220322044914/https://globalnews.ca/live/national/"> <div class="c-pulse"><span>LIVE</span></div> </a> </div> <div class="l-header__otherActions"> <div class="l-header__search"> <button class="l-header__searchButton" data-toggle-menu="#menuSearch" aria-expanded="false" data-trackable="true" data-trackaction="Search Menu | open true"> <span class="sr-only">Search</span> <svg class="c-icon c-icon--white l-header__icon" focusable="false"> <use xlink:href="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/icons/out/symbol/svg/sprite.symbol.svg?v=msjiw4cvn#search"></use> </svg> </button> </div> <a class="l-header__choices" href="https://web.archive.org/web/20220322044914/https://www.corusent.com/privacy-policy/#adchoices" target="_blank" rel="noreferrer"> <span class="sr-only">AdChoices</span> <span class="l-header__choicesText">AdChoices</span> <img class="l-header__choicesLogo" src="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/images/ad-choices.png" alt="" width="16" height="16"/> </a> </div> </div> </header><section class="l-navbar" aria-label="Main website navigation"> <div class="l-navbar__background"></div> <div class="l-navbar__top"> <div class="l-navbar__inner"> <div id="menuMain" class="l-navbar__standard is-slid-and-faded-out"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/" class="l-navbar__logo"> <img class="l-navbar__logoText" src="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/images/logo-text.svg" alt="GlobalNews" width="116" height="64"/> <img class="l-navbar__morty" src="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/images/logo-morty.svg" alt="" width="33" height="55"/> </a> <nav class="l-navbar__topics" role="group" aria-label="Site Topics"> <div class="l-navbar__track"> <ul id="menuMain-topics" class="c-nav c-nav--main l-navbar__list"><li class="c-nav__item"><a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/world/" class="c-nav__link" data-disabled="all">World</a></li><li class="c-nav__item"><a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/canada/" class="c-nav__link" data-disabled="all">Canada</a></li><li class="c-nav__item"><button data-hover-toggle-menu="#menuLocal" aria-controls="menuLocal" aria-expanded="false" data-trackable="true" data-trackaction="Main | Region Change | open ${aria-expanded}" class="c-nav__link" data-disabled="all"><div class="c-nav__local">Local<span class="c-nav__icon c-nav__icon--chevron" focusable="false"></span></div></button></li><li class="c-nav__item"><a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/politics/" class="c-nav__link" data-disabled="all">Politics</a></li><li class="c-nav__item"><a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/money/" class="c-nav__link" data-disabled="all">Money</a></li><li class="c-nav__item"><a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/health/" class="c-nav__link" data-disabled="all">Health</a></li><li class="c-nav__item"><a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/entertainment/" class="c-nav__link" data-disabled="all">Entertainment</a></li><li class="c-nav__item"><a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/lifestyle/" class="c-nav__link" data-disabled="all">Lifestyle</a></li><li class="c-nav__item"><a href="/web/20220322044914/https://globalnews.ca/videos/" class="c-nav__link" data-disabled="all">Watch</a></li><li class="c-nav__item"><a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/perspectives/" class="c-nav__link" data-disabled="all">Perspectives</a></li><li class="c-nav__item"><a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/sports/" class="c-nav__link" data-disabled="all">Sports</a></li><li class="c-nav__item"><a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/commentary/" class="c-nav__link" data-disabled="all">Commentary</a></li><li class="c-nav__item"><a href="/web/20220322044914/https://globalnews.ca/contests/" class="c-nav__link" data-disabled="all">Contests</a></li><li class="c-nav__item"><a target="_blank" rel="noreferrer" href="https://web.archive.org/web/20220322044914/https://curiouscast.ca/" class="c-nav__link" data-disabled="all">Podcasts</a></li></ul> <div id="menuScrolling" class="l-navbar__scrolling"> <div class="l-navbar__scrollingLeft"> </div> <div class="l-navbar__scrollingRight"> </div> </div> </div> </nav> <section class="l-navbar__toggles" aria-label="Website menu and search buttons"> <div class="c-nav c-nav--buttons"> <button class="c-nav__item" data-toggle-menu="#menuMore" aria-expanded="false" data-trackable="true" data-trackaction="Mega Menu | open ${aria-expanded}"> <span class="sr-only">Full Menu</span> <span class="toggle-off"> <svg class="c-icon c-icon--white c-nav__icon c-nav__icon--menuDesk l-navbar__mobileIcon l-navbar__blackIcon" focusable="false"> <use xlink:href="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/icons/out/symbol/svg/sprite.symbol.svg?v=msjiw4cvn#menu"></use> </svg> <svg class="c-icon c-icon--blue c-nav__icon c-nav__icon--menuDesk l-navbar__mobileIcon l-navbar__blueIcon" focusable="false"> <use xlink:href="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/icons/out/symbol/svg/sprite.symbol.svg?v=msjiw4cvn#menu"></use> </svg> </span> <span class="toggle-on"> <svg class="c-icon c-icon--white c-nav__icon c-nav__icon--menuDesk l-navbar__mobileIcon" focusable="false"> <use xlink:href="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/icons/out/symbol/svg/sprite.symbol.svg?v=msjiw4cvn#close"></use> </svg> </span> </button> <button class="c-nav__item l-navbar__search" data-toggle-menu="#menuSearch" aria-expanded="false" data-trackable="true" data-trackaction="Search Menu | open ${aria-expanded}"> <span class="sr-only">Search Menu</span> <span> <svg class="c-icon c-icon--white c-nav__icon c-nav__icon--searchDesk" focusable="false"> <use xlink:href="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/icons/out/symbol/svg/sprite.symbol.svg?v=msjiw4cvn#search"></use> </svg> </span> </button> </div> </section> </div> <nav id="menuMain-quickLinks" class="l-navbar__buttons l-navbar__buttons--mobile c-nav--buttons c-nav" aria-label="Quick Links"> <div class="c-nav__item" name="home"> <a href="/web/20220322044914/https://globalnews.ca/" class="c-nav__link" data-trackable="true" data-tracktypes="ga" data-track-event-type="quick link" data-trackaction="home"> <div class="c-nav__content"> <svg class="c-icon c-icon--blue c-nav__icon c-nav__icon--blue c-nav__icon--latest l-navbar__mobileIcon" focusable="false"> <use xlink:href="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/icons/out/symbol/svg/sprite.symbol.svg?v=msjiw4cvn#home"></use> </svg> <svg class="c-icon c-icon--white c-nav__icon c-nav__icon--white c-nav__icon--latest l-navbar__mobileIcon" focusable="false"> <use xlink:href="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/icons/out/symbol/svg/sprite.symbol.svg?v=msjiw4cvn#home"></use> </svg> <div class="c-nav__label">Home</div> </div> </a> </div> <div class="c-nav__item" name="trending"> <a href="/web/20220322044914/https://globalnews.ca/top-trending" class="c-nav__link" data-trackable="true" data-tracktypes="ga" data-track-event-type="quick link" data-trackaction="trending"> <div class="c-nav__content"> <svg class="c-icon c-icon--blue c-nav__icon c-nav__icon--blue c-nav__icon--trending l-navbar__mobileIcon" focusable="false"> <use xlink:href="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/icons/out/symbol/svg/sprite.symbol.svg?v=msjiw4cvn#trending"></use> </svg> <svg class="c-icon c-icon--white c-nav__icon c-nav__icon--white c-nav__icon--trending l-navbar__mobileIcon" focusable="false"> <use xlink:href="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/icons/out/symbol/svg/sprite.symbol.svg?v=msjiw4cvn#trending"></use> </svg> <div class="c-nav__label">Trending</div> </div> </a> </div> <div class="c-nav__item" name="live"> <a href="/web/20220322044914/https://globalnews.ca/live/national/" class="c-nav__link" data-trackable="true" data-tracktypes="ga" data-track-event-type="quick link" data-trackaction="live"> <div class="c-nav__content c-pulse l-navbar__mobileIcon"> <svg class="c-icon c-icon--blue c-nav__icon c-nav__icon--blue c-nav__icon--live c-icon c-icon--blue" focusable="false"> <use xlink:href="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/icons/out/symbol/svg/sprite.symbol.svg?v=msjiw4cvn#live"></use> </svg> <svg class="c-icon c-icon--white c-nav__icon c-nav__icon--white c-nav__icon--live c-icon c-icon--white" focusable="false"> <use xlink:href="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/icons/out/symbol/svg/sprite.symbol.svg?v=msjiw4cvn#live"></use> </svg> <div class="c-nav__label">Live</div> </div> </a> </div> <div class="c-nav__item" name="local" data-trackable="true" data-tracktypes="ga" data-track-event-type="quick link" data-trackaction="local"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/national/" class="c-nav__link"> <div class="c-nav__content"> <svg class="c-icon c-icon--blue c-nav__icon c-nav__icon--blue c-nav__icon--local l-navbar__mobileIcon" focusable="false"> <use xlink:href="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/icons/out/symbol/svg/sprite.symbol.svg?v=msjiw4cvn#local"></use> </svg> <svg class="c-icon c-icon--white c-nav__icon c-nav__icon--white c-nav__icon--local l-navbar__mobileIcon" focusable="false"> <use xlink:href="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/icons/out/symbol/svg/sprite.symbol.svg?v=msjiw4cvn#local"></use> </svg> <div class="c-nav__label">Local</div> </div> </a> </div> <button name="megamenu" class="c-nav__item" data-toggle-menu="#menuMore" aria-expanded="false" data-trackable="true" data-trackaction="Mega Menu | open true"> <svg class="c-icon c-icon--blue c-nav__icon c-nav__icon--blue c-nav__icon--menu l-navbar__mobileIcon" focusable="false"> <use xlink:href="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/icons/out/symbol/svg/sprite.symbol.svg?v=msjiw4cvn#menu"></use> </svg> <svg class="c-icon c-icon--white c-nav__icon c-nav__icon--white c-nav__icon--menu l-navbar__mobileIcon" focusable="false"> <use xlink:href="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/icons/out/symbol/svg/sprite.symbol.svg?v=msjiw4cvn#menu"></use> </svg> <div class="c-nav__label">Menu</div> </button> </nav> </div> </div> <div class="l-navbar__submenus"> <section id="menuMore" class="l-panel l-panel--more" role="group" aria-labelledby="menuMoreLabel" data-menu-full-height="true"> <div class="l-panel__inner"> <h2 class="l-panel__header c-heading c-heading--primary"> <span id="menuMoreLabel">Menu</span> <button data-close-menu data-trackable="true" data-trackaction="Mega Menu | open false"> <span class="sr-only">Close</span> <svg class="c-icon c-icon--black l-panel__icon" focusable="false"> <use xlink:href="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/icons/out/symbol/svg/sprite.symbol.svg?v=msjiw4cvn#close"></use> </svg> </button> </h2> <div class="l-panel__grid l-panel__grid--noRadio o-container"> <!-- @TODO: integrate with bing search --> <form class="c-search l-panel__search" method="get" action="https://web.archive.org/web/20220322044914/https://globalnews.ca/" role="search" aria-label="Search site content in submenu"> <input class="c-search__input" type="text" autocomplete="off" name="s" placeholder="Search Global News" value=""/> <button class="c-search__submit" type="submit"> <span class="sr-only">Submit Search</span> <svg class="c-icon c-icon--black c-search__icon" focusable="false"> <use xlink:href="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/icons/out/symbol/svg/sprite.symbol.svg?v=msjiw4cvn#search"></use> </svg> </button> </form> <section class="l-panel__topics" role="group" aria-labelledby="topicsMore"> <h3 id="topicsMore" class="l-panel__firstHeading c-heading c-heading--secondary">Topics</h3> <ul id="megaMenu-topics" class="c-nav c-nav--dropdown c-nav--dropdown--topics"><li class="c-nav__item"><a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/world/" class="c-nav__link">World</a></li><li class="c-nav__item"><a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/canada/" class="c-nav__link">Canada</a></li><li class="c-nav__item u-hide-tablet-portrait"><a data-localize-link="https://globalnews.ca/" class="c-nav__link"><span data-localize-text>Local</span><button class="c-nav__change" data-toggle-menu="#menuLocal" aria-expanded="false" data-trackable="true" data-trackaction="Mega Menu | Region Change | open true">Change location</button></a></li><li class="c-nav__item"><a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/politics/" class="c-nav__link">Politics</a></li><li class="c-nav__item"><a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/money/" class="c-nav__link">Money</a></li><li class="c-nav__item"><a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/health/" class="c-nav__link">Health</a></li><li class="c-nav__item"><a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/entertainment/" class="c-nav__link">Entertainment</a></li><li class="c-nav__item"><a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/lifestyle/" class="c-nav__link">Lifestyle</a></li><li class="c-nav__item"><a href="/web/20220322044914/https://globalnews.ca/videos/" class="c-nav__link">Watch</a></li><li class="c-nav__item"><a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/perspectives/" class="c-nav__link">Perspectives</a></li><li class="c-nav__item"><a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/sports/" class="c-nav__link">Sports</a></li><li class="c-nav__item"><a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/commentary/" class="c-nav__link">Commentary</a></li><li class="c-nav__item"><a href="/web/20220322044914/https://globalnews.ca/contests/" class="c-nav__link">Contests</a></li><li class="c-nav__item"><a target="_blank" rel="noreferrer" href="https://web.archive.org/web/20220322044914/https://curiouscast.ca/" class="c-nav__link">Podcasts</a></li></ul> </section> <section class="l-panel__menu l-panel__menu--programs" role="group" aria-labelledby="programsMore"> <h3 id="programsMore" class="c-heading c-heading--secondary">TV Programs</h3> <ul id="megaMenu-programs" class="c-nav c-nav--dropdown c-nav--dropdown--generic"><li class="c-nav__item"><a href="/web/20220322044914/https://globalnews.ca/national/program/global-national" class="c-nav__link">Global National</a></li><li class="c-nav__item"><a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/national/program/the-west-block" class="c-nav__link">West Block</a></li><li class="c-nav__item"><a href="/web/20220322044914/https://globalnews.ca/national/staff/personalities/" class="c-nav__link">Personalities</a></li><li class="c-nav__item"><a href="/web/20220322044914/https://globalnews.ca/national/videos/" class="c-nav__link">Video Centre</a></li><li class="c-nav__item"><a href="/web/20220322044914/https://globalnews.ca/national/tv-news-programs" class="c-nav__link">More…</a></li></ul> </section> <section class="l-panel__menu l-panel__menu--connect" role="group" aria-labelledby="connectMore"> <h3 id="connectMore" class="c-heading c-heading--secondary">Connect</h3> <ul id="megaMenu-connect" class="c-nav c-nav--dropdown c-nav--dropdown--generic"><li class="c-nav__item"><a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/pages/email-alerts/" class="c-nav__link">Email alerts</a></li><li class="c-nav__item"><a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/pages/alexa/" class="c-nav__link">Alexa</a></li><li class="c-nav__item"><a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/pages/notifications/" class="c-nav__link">Notifications</a></li><li class="c-nav__item"><a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/pages/contact-us/" class="c-nav__link">Contact Us</a></li></ul> </section> <section id="megaMenu-regionChange" class="l-panel__region" aria-label="Change your location"> <div class="c-regions "> <div class="c-regions__heading l-panel__regionLabel"> <div> <a data-region-link data-region-link-override="true" data-region-label href="/web/20220322044914/https://globalnews.ca/national/" data-region-change="false" class="c-link c-link--large" title="National"> <div class="c-link__inner"> <span class="c-link__label c-link__label--lowercase"> National </span> <span class="c-link__icon"></span> </div> </a> </div> <!-- Button to trigger region menu on desktop --> <button class="c-button c-button--small c-button--blue c-button--buffer toggle-switch u-show-tablet-portrait" data-expand="#megaMenu-regionExpand" data-scroll-target="#menuMore" aria-expanded="false" aria-label="Change your local region" data-trackable="true" data-trackaction="Mega Menu | Region Change | open ${aria-expanded}"> <span class="toggle-off">Change</span> <span class="toggle-on">Close</span> </button> <!-- Button to trigger region menu on mobile --> <button class="c-button c-button--small c-button--blue c-button--buffer toggle-switch u-hide-tablet-portrait" data-toggle-menu="#menuLocal" data-skip-parent="true" aria-expanded="false" data-trackable="true" data-trackaction="Mega Menu | Region Change | open ${aria-expanded}"> <span class="toggle-off">Change</span> <span class="toggle-on">Close</span> </button> </div> <div id="megaMenu-regionExpand" class="is-expandable" role="group" aria-label="Regions list" data-region-picker> <ul id="megaMenu-regionMenu" class="c-regions__selector c-nav c-nav--dropdown c-nav--dropdown--region"><li class="c-nav__item"><a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/barrie/" class="c-nav__link">Barrie</a></li><li class="c-nav__item"><a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/bc/" class="c-nav__link">BC</a></li><li class="c-nav__item"><a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/calgary/" class="c-nav__link">Calgary</a></li><li class="c-nav__item"><a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/durham/" class="c-nav__link">Durham</a></li><li class="c-nav__item"><a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/edmonton/" class="c-nav__link">Edmonton</a></li><li class="c-nav__item"><a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/guelph/" class="c-nav__link">Guelph</a></li><li class="c-nav__item"><a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/halifax/" class="c-nav__link">Halifax</a></li><li class="c-nav__item"><a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/radio/900chml/" class="c-nav__link"><span>Hamilton</span><svg class="c-nav__icon c-icon c-icon--red" focusable="false"><use xlink:href="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/icons/out/symbol/svg/sprite.symbol.svg?v=msjiw4cvn#radio"/></svg></a></li><li class="c-nav__item"><a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/kingston/" class="c-nav__link">Kingston</a></li><li class="c-nav__item"><a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/kitchener/" class="c-nav__link">Kitchener</a></li><li class="c-nav__item"><a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/lethbridge/" class="c-nav__link">Lethbridge</a></li><li class="c-nav__item"><a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/radio/am980/" class="c-nav__link"><span>London</span><svg class="c-nav__icon c-icon c-icon--red" focusable="false"><use xlink:href="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/icons/out/symbol/svg/sprite.symbol.svg?v=msjiw4cvn#radio"/></svg></a></li><li class="c-nav__item"><a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/montreal/" class="c-nav__link">Montreal</a></li><li class="c-nav__item"><a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/new-brunswick/" class="c-nav__link">New Brunswick</a></li><li class="c-nav__item"><a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/okanagan/" class="c-nav__link">Okanagan</a></li><li class="c-nav__item"><a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/ottawa/" class="c-nav__link">Ottawa</a></li><li class="c-nav__item"><a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/peterborough/" class="c-nav__link">Peterborough</a></li><li class="c-nav__item"><a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/regina/" class="c-nav__link">Regina</a></li><li class="c-nav__item"><a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/saskatoon/" class="c-nav__link">Saskatoon</a></li><li class="c-nav__item"><a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/toronto/" class="c-nav__link">Toronto</a></li><li class="c-nav__item"><a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/winnipeg/" class="c-nav__link">Winnipeg</a></li></ul> </div> </div> </section> <div id="megaMenu-social" class="l-panel__social"> <nav class="c-social" aria-label="Social links submenu"> <a class="c-social__link" href="/web/20220322044914/https://globalnews.ca/pages/facebook/"> <span class="sr-only">Global News Facebook Pages</span> <svg class="c-icon c-icon--black c-social__icon c-social__icon--facebook" focusable="false"> <use xlink:href="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/icons/out/symbol/svg/sprite.symbol.svg?v=msjiw4cvn#facebook_f"></use> </svg> </a> <a class="c-social__link" href="/web/20220322044914/https://globalnews.ca/pages/twitter/"> <span class="sr-only">Global News Twitter Accounts</span> <svg class="c-icon c-icon--black c-social__icon c-social__icon--twitter" focusable="false"> <use xlink:href="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/icons/out/symbol/svg/sprite.symbol.svg?v=msjiw4cvn#twitter"></use> </svg> </a> <a class="c-social__link" href="https://web.archive.org/web/20220322044914/https://www.youtube.com/globalnews" target="_blank" rel="noreferrer"> <span class="sr-only">Global News Youtube Channel</span> <svg class="c-icon c-icon--black c-social__icon c-social__icon--youtube" focusable="false"> <use xlink:href="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/icons/out/symbol/svg/sprite.symbol.svg?v=msjiw4cvn#youtube"></use> </svg> </a> <a class="c-social__link" href="https://web.archive.org/web/20220322044914/https://instagram.com/globalnews" target="_blank" rel="noreferrer"> <span class="sr-only">Global News on Instagram</span> <svg class="c-icon c-icon--black c-social__icon c-social__icon--instagram" focusable="false"> <use xlink:href="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/icons/out/symbol/svg/sprite.symbol.svg?v=msjiw4cvn#instagram"></use> </svg> </a> <a class="c-social__link" href="https://web.archive.org/web/20220322044914/https://www.linkedin.com/company/global-television?trk=biz-companies-cym" target="_blank" rel="noreferrer"> <span class="sr-only">Global News on Linked-In</span> <svg class="c-icon c-icon--black c-social__icon c-social__icon--linkedin" focusable="false"> <use xlink:href="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/icons/out/symbol/svg/sprite.symbol.svg?v=msjiw4cvn#linkedin"></use> </svg> </a> <a class="c-social__link" href="https://web.archive.org/web/20220322044914/https://www.pinterest.com/globaltvnews/" target="_blank" rel="noreferrer"> <span class="sr-only">Global News on Pinterest</span> <svg class="c-icon c-icon--black c-social__icon c-social__icon--pinterest" focusable="false"> <use xlink:href="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/icons/out/symbol/svg/sprite.symbol.svg?v=msjiw4cvn#pinterest"></use> </svg> </a> <a class="c-social__link" href="/web/20220322044914/https://globalnews.ca/pages/feeds/"> <span class="sr-only">Global News RSS Feeds</span> <svg class="c-icon c-icon--black c-social__icon c-social__icon--rss" focusable="false"> <use xlink:href="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/icons/out/symbol/svg/sprite.symbol.svg?v=msjiw4cvn#rss"></use> </svg> </a> </nav> </div> </div> </div> </section> <div id="menuLocal" class="l-panel l-panel--local" data-region-picker> <div class="l-panel__inner"> <h2 class="l-panel__header c-heading c-heading--primary"> <button class="l-panel__button l-panel__button--back" data-toggle-menu="#menuMore" aria-expanded="false" data-trackable="true" data-trackaction="Mega Menu | Region Change | open false"> <svg class="c-icon c-icon--black l-panel__icon" focusable="false"> <use xlink:href="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/icons/out/symbol/svg/sprite.symbol.svg?v=msjiw4cvn#back"></use> </svg> </button> <button class="l-panel__button l-panel__button--close" data-close-menu="" data-trackable="true" data-trackaction="Mega Menu | open false"> <span class="sr-only">Close</span> <svg class="c-icon c-icon--black l-panel__icon" focusable="false"> <use xlink:href="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/icons/out/symbol/svg/sprite.symbol.svg?v=msjiw4cvn#close"></use> </svg> </button> <span>Local</span> </h2> <div class="o-container"> <section class="l-panel__region" aria-label="Your current location"> <div class="c-regions"> <div class="l-panel__firstHeading c-regions__heading"> <div> <h4 class="c-heading c-heading--subhead">your local region</h4> <a href="/web/20220322044914/https://globalnews.ca/national/" class="c-link c-link--xlarge" title="National" data-region-change="false" data-region-link data-region-link-override="true" data-region-label> <div class="c-link__inner"> <span class="c-link__label c-link__label--lowercase"> National </span> <span class="c-link__icon"></span> </div> </a> </div> </div> <div role="group" aria-label="Regions list"> <ul id="regionMenu" class="c-nav c-nav--dropdown c-nav--dropdown--regionStandalone"><li class="c-nav__item"><a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/barrie/" class="c-nav__link">Barrie</a></li><li class="c-nav__item"><a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/bc/" class="c-nav__link">BC</a></li><li class="c-nav__item"><a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/calgary/" class="c-nav__link">Calgary</a></li><li class="c-nav__item"><a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/durham/" class="c-nav__link">Durham</a></li><li class="c-nav__item"><a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/edmonton/" class="c-nav__link">Edmonton</a></li><li class="c-nav__item"><a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/guelph/" class="c-nav__link">Guelph</a></li><li class="c-nav__item"><a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/halifax/" class="c-nav__link">Halifax</a></li><li class="c-nav__item"><a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/radio/900chml/" class="c-nav__link"><span>Hamilton</span><svg class="c-nav__icon c-icon c-icon--red" focusable="false"><use xlink:href="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/icons/out/symbol/svg/sprite.symbol.svg?v=msjiw4cvn#radio"/></svg></a></li><li class="c-nav__item"><a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/kingston/" class="c-nav__link">Kingston</a></li><li class="c-nav__item"><a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/kitchener/" class="c-nav__link">Kitchener</a></li><li class="c-nav__item"><a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/lethbridge/" class="c-nav__link">Lethbridge</a></li><li class="c-nav__item"><a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/radio/am980/" class="c-nav__link"><span>London</span><svg class="c-nav__icon c-icon c-icon--red" focusable="false"><use xlink:href="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/icons/out/symbol/svg/sprite.symbol.svg?v=msjiw4cvn#radio"/></svg></a></li><li class="c-nav__item"><a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/montreal/" class="c-nav__link">Montreal</a></li><li class="c-nav__item"><a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/new-brunswick/" class="c-nav__link">New Brunswick</a></li><li class="c-nav__item"><a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/okanagan/" class="c-nav__link">Okanagan</a></li><li class="c-nav__item"><a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/ottawa/" class="c-nav__link">Ottawa</a></li><li class="c-nav__item"><a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/peterborough/" class="c-nav__link">Peterborough</a></li><li class="c-nav__item"><a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/regina/" class="c-nav__link">Regina</a></li><li class="c-nav__item"><a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/saskatoon/" class="c-nav__link">Saskatoon</a></li><li class="c-nav__item"><a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/toronto/" class="c-nav__link">Toronto</a></li><li class="c-nav__item"><a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/winnipeg/" class="c-nav__link">Winnipeg</a></li></ul> </div> </div> </section> </div> </div> </div> <div id="menuSocialShareNav" class="l-panel l-panel--bottom l-panel--social l-panel"> <div class="l-panel__inner"> <h2 class="l-panel__header c-heading c-heading--primary"> <span>Share</span> <button data-close-menu> <svg class="c-icon c-icon--black l-panel__icon" focusable="false"> <use xlink:href="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/icons/out/symbol/svg/sprite.symbol.svg?v=msjiw4cvn#close"></use> </svg> </button> </h2> <div class="o-container"> <div class="c-socialShare c-socialShare--popup c-socialShare--rounded" data-socialshare-template-type="regular"> <ul class="c-socialShare__list"> <li data-socialshare-provider="facebook" class="c-socialShare__item c-socialShare__item--facebook " style="list-style: none;"> <a href="" class="c-socialShare__link " data-close-menu> <span class="sr-only">Share this item on Facebook</span> <svg class="c-icon c-socialShare__icon c-socialShare__icon--facebook c-icon--white" focusable="false"> <use xlink:href="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/icons/out/symbol/svg/sprite.symbol.svg?v=msjiw4cvn#facebook_f"></use> </svg> <span class="c-socialShare__text">facebook</span> </a> </li> <li data-socialshare-provider="whatsapp" class="c-socialShare__item c-socialShare__item--whatsapp " style="list-style: none;"> <a href="" class="c-socialShare__link " data-close-menu> <span class="sr-only">Share this item via WhatsApp</span> <svg class="c-icon c-socialShare__icon c-socialShare__icon--whatsapp c-icon--white" focusable="false"> <use xlink:href="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/icons/out/symbol/svg/sprite.symbol.svg?v=msjiw4cvn#whatsapp"></use> </svg> <span class="c-socialShare__text">whatsapp</span> </a> </li> <li data-socialshare-provider="twitter" class="c-socialShare__item c-socialShare__item--twitter " style="list-style: none;"> <a href="" class="c-socialShare__link " data-close-menu> <span class="sr-only">Share this item on Twitter</span> <svg class="c-icon c-socialShare__icon c-socialShare__icon--twitter c-icon--white" focusable="false"> <use xlink:href="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/icons/out/symbol/svg/sprite.symbol.svg?v=msjiw4cvn#twitter"></use> </svg> <span class="c-socialShare__text">twitter</span> </a> </li> <li data-socialshare-provider="email" class="c-socialShare__item c-socialShare__item--email " style="list-style: none;"> <a href="" class="c-socialShare__link " data-close-menu> <span class="sr-only">Send this page to someone via email</span> <svg class="c-icon c-socialShare__icon c-socialShare__icon--email c-icon--white" focusable="false"> <use xlink:href="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/icons/out/symbol/svg/sprite.symbol.svg?v=msjiw4cvn#mail"></use> </svg> <span class="c-socialShare__text">email</span> </a> </li> <li data-socialshare-provider="pinterest" class="c-socialShare__item c-socialShare__item--pinterest " style="list-style: none;"> <a href="" class="c-socialShare__link " data-close-menu> <span class="sr-only">Share this item on Pinterest</span> <svg class="c-icon c-socialShare__icon c-socialShare__icon--pinterest c-icon--white" focusable="false"> <use xlink:href="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/icons/out/symbol/svg/sprite.symbol.svg?v=msjiw4cvn#pinterest"></use> </svg> <span class="c-socialShare__text">pinterest</span> </a> </li> <li data-socialshare-provider="linkedin" class="c-socialShare__item c-socialShare__item--linkedin " style="list-style: none;"> <button class="c-socialShare__link " data-close-menu> <span class="sr-only">Share this item on LinkedIn</span> <svg class="c-icon c-socialShare__icon c-socialShare__icon--linkedin c-icon--white" focusable="false"> <use xlink:href="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/icons/out/symbol/svg/sprite.symbol.svg?v=msjiw4cvn#linkedin"></use> </svg> <span class="c-socialShare__text">linkedin</span> </a> </li> <li data-socialshare-provider="reddit" class="c-socialShare__item c-socialShare__item--reddit " style="list-style: none;"> <a href="" class="c-socialShare__link " data-close-menu> <span class="sr-only">Share this item on Reddit</span> <svg class="c-icon c-socialShare__icon c-socialShare__icon--reddit c-icon--white" focusable="false"> <use xlink:href="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/icons/out/symbol/svg/sprite.symbol.svg?v=msjiw4cvn#reddit"></use> </svg> <span class="c-socialShare__text">reddit</span> </a> </li> <li data-socialshare-provider="copy" class="c-socialShare__item c-socialShare__item--copy " style="list-style: none;"> <button class="c-socialShare__link " data-close-menu> <span class="sr-only">Copy article link</span> <svg class="c-icon c-socialShare__icon c-socialShare__icon--copy c-icon--white" focusable="false"> <use xlink:href="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/icons/out/symbol/svg/sprite.symbol.svg?v=msjiw4cvn#embed"></use> </svg> <span class="c-socialShare__text">Copy link</span> </a> </li> </ul> </div> </div> </div> </div> <div id="eventsCalendarNav" class="l-panel l-panel--events l-panel--bottom"> <div class="l-panel__inner"> <h2 class="l-panel__header c-heading c-heading--primary"> <span>Calendar</span> <button data-close-menu> <svg class="c-icon c-icon--black l-panel__icon" focusable="false"> <use xlink:href="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/icons/out/symbol/svg/sprite.symbol.svg?v=msjiw4cvn#close"></use> </svg> </button> </h2> <div class="o-container"> <div class="datepicker mobile datepicker--hybrid"></div> </div> </div> </div> <div id="eventsTypesNav" class="l-panel l-panel--events l-panel--bottom"> <div class="l-panel__inner"> <h2 class="l-panel__header c-heading c-heading--primary"> <span>Calendar</span> <button data-close-menu> <svg class="c-icon c-icon--black l-panel__icon" focusable="false"> <use xlink:href="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/icons/out/symbol/svg/sprite.symbol.svg?v=msjiw4cvn#close"></use> </svg> </button> </h2> <div class="o-container"> <ul id="event_type_select" class="c-eventType c-nav c-nav--dropdown"> <li class="c-eventType__item c-nav__item"> <button class="c-eventType__link c-nav__link c-eventType__link--selected" value="xx">All event types</button> </li> <li class="c-eventType__item c-nav__item"> <button class="c-eventType__link c-nav__link " value="comedy"> Comedy </button> </li> <li class="c-eventType__item c-nav__item"> <button class="c-eventType__link c-nav__link " value="festival"> Festival </button> </li> <li class="c-eventType__item c-nav__item"> <button class="c-eventType__link c-nav__link " value="food"> Food </button> </li> <li class="c-eventType__item c-nav__item"> <button class="c-eventType__link c-nav__link " value="music"> Music </button> </li> <li class="c-eventType__item c-nav__item"> <button class="c-eventType__link c-nav__link " value="sports"> Sports </button> </li> <li class="c-eventType__item c-nav__item"> <button class="c-eventType__link c-nav__link " value="theater"> Theater </button> </li> <li class="c-eventType__item c-nav__item"> <button class="c-eventType__link c-nav__link " value="virtual"> Virtual </button> </li> <li class="c-eventType__item c-nav__item"> <button class="c-eventType__link c-nav__link " value="other">Other</button> </li> </ul> </div> </div> </div> <div id="menuSearch" class="l-panel l-panel--search" data-menu-full-height="true"> <div class="l-panel__inner"> <h2 class="l-panel__header c-heading c-heading--primary"> <span>Search</span> <button data-close-menu data-trackable="true" data-trackaction="Search Menu | open false"> <svg class="c-icon c-icon--black l-panel__icon" focusable="false"> <use xlink:href="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/icons/out/symbol/svg/sprite.symbol.svg?v=msjiw4cvn#close"></use> </svg> </button> </h2> <div class="l-panel__grid o-container"> <form class="c-search l-panel__search" method="get" action="https://web.archive.org/web/20220322044914/https://globalnews.ca/" role="search" aria-label="Search site content"> <input class="c-search__input" type="text" autocomplete="off" name="s" placeholder="Search Global News" value=""/> <button class="c-search__submit" type="submit"> <span class="sr-only">Submit search</span> <svg class="c-icon c-icon--black c-search__icon" focusable="false"> <use xlink:href="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/icons/out/symbol/svg/sprite.symbol.svg?v=msjiw4cvn#search"></use> </svg> </button> </form> <section id="search-panel-suggestion" class="l-panel__suggested" aria-label="Quick search by content type"> <h4 class="l-panel__subhead c-heading c-heading--secondary">Quick Search</h4> <div data-load-content="quick-search" data-load-content-params="%7B%22object_id%22%3A%220%22%2C%22is_singular%22%3A%22false%22%7D"> <ul class="c-nav c-nav--dropdown c-nav--dropdown--skeleton c-shimmer"> <li class="c-nav__item"> <div class="c-nav__link"> </div> </li> <li class="c-nav__item"> <div class="c-nav__link"> </div> </li> <li class="c-nav__item"> <div class="c-nav__link"> </div> </li> <li class="c-nav__item"> <div class="c-nav__link"> </div> </li> <li class="c-nav__item"> <div class="c-nav__link"> </div> </li> <li class="c-nav__item"> <div class="c-nav__link"> </div> </li> </ul> </div> </section> <section id="search-panel-trending" class="l-panel__trending" aria-label="Trending articles"> <h4 class="l-panel__subhead c-heading c-heading--secondary">Trending Now</h4> <div class="l-panel__stories" data-load-content="nav-trending"> <ul class="c-posts c-posts--skeleton c-posts--tile c-posts--grid c-shimmer"> <li class="c-posts__item l-panel__story"> <div class="c-posts__inner"> <div class="c-posts__media"> </div> <div class="c-posts__details"> <div class="c-posts__headline"> </div> </div> </div> </li> <li class="c-posts__item l-panel__story"> <div class="c-posts__inner"> <div class="c-posts__media"> </div> <div class="c-posts__details"> <div class="c-posts__headline"> </div> </div> </div> </li> <li class="c-posts__item l-panel__story"> <div class="c-posts__inner"> <div class="c-posts__media"> </div> <div class="c-posts__details"> <div class="c-posts__headline"> </div> </div> </div> </li> <li class="c-posts__item l-panel__story"> <div class="c-posts__inner"> <div class="c-posts__media"> </div> <div class="c-posts__details"> <div class="c-posts__headline"> </div> </div> </div> </li> <li class="c-posts__item l-panel__story"> <div class="c-posts__inner"> <div class="c-posts__media"> </div> <div class="c-posts__details"> <div class="c-posts__headline"> </div> </div> </div> </li> <li class="c-posts__item l-panel__story"> <div class="c-posts__inner"> <div class="c-posts__media"> </div> <div class="c-posts__details"> <div class="c-posts__headline"> </div> </div> </div> </li> </ul> </div> </section> </div> </div> </div> </div> </section> <div class="l-content"> <div class="l-flexitiveGuide contain"></div><!-- "contain" is required for Flexitive --> <div class="l-content__inner"> <section class="l-notification" id="notification" aria-label="Notification banner" data-header-sticky="true"> <div class="l-notification__wrapper"> <div class="l-notification__container"> <div class="l-notification__inner"> <div class="l-notification__item"> <a class="l-notification__video l-notification__link" href="https://web.archive.org/web/20220322044914/https://globalnews.ca/"><span class="sr-only">Video link</span></a> <div class="l-notification__text"> <div class="l-notification__label"></div> <a class="l-notification__headline l-notification__link" href="https://web.archive.org/web/20220322044914/https://globalnews.ca/"><span class="sr-only">Headline link</span></a> </div> </div> <div class="l-notification__buttons"> <button class="l-notification__button l-notification__button--close" aria-label="Click to close notification" data-trackable="true" data-trackaction="Notification | Close" data-trackdata="{'notification.close': '1'}"> <svg class="c-icon l-notification__icon l-notification__icon--close" focusable="false"> <use xlink:href="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/icons/out/symbol/svg/sprite.symbol.svg?v=msjiw4cvn#close"></use> </svg> </button> </div> </div> </div> </div> </section> <section id="headerAd" class="l-headerAd " aria-label="Advertisement in header"> <div class="l-headerAd__container" data-header-sticky="true"> <div class="l-headerAd__inner"> <div class="c-ad c-ad--leaderboardCombo "> <div class="c-ad__label">Advertisement</div> <div id="gpt-ad-72890-1" class="c-ad__unit" data-ad-pos="1"> </div> <script> if ( typeof( gn_monetize ) !== 'undefined' && typeof( gn_monetize.Ads ) !== 'undefined' && gn_monetize.Ads.initialRequestMade() ) { // Ads script has been loaded, create the ad. gn_monetize.Ads.create( {"sizes":"[728,90]","biddable":true,"id":"gpt-ad-72890-1","lazy":false,"targeting":{"pos":1,"slotid":"gpt-ad-72890-1"},"companion":false,"mapping":{"[970,0]":"[[970,90],[728,90]]","[728,0]":"[728,90]","[0,0]":"[[320,100],[320,50]]"}} ); } else { // if Ads script not yet loaded, queue up ad data for initialization. var gnAdSettings = gnAdSettings || {}; gnAdSettings.ads = gnAdSettings.ads || []; gnAdSettings.ads.push( {"sizes":"[728,90]","biddable":true,"id":"gpt-ad-72890-1","lazy":false,"targeting":{"pos":1,"slotid":"gpt-ad-72890-1"},"companion":false,"mapping":{"[970,0]":"[[970,90],[728,90]]","[728,0]":"[728,90]","[0,0]":"[[320,100],[320,50]]"}} ); } </script> </div> <div class="l-headerAd__countdown"> <span class="l-headerAd__message"></span> <button class="l-headerAd__close" data-trackable="true" data-trackaction="Close sticky ad" data-trackdata="{'stickyad': 'close'}">Close X</button> </div> </div> </div> </section> <section class="sub-mast sub-mast-hybrid sub-mast-taxonomy" aria-label="Secondary header"> <div class="o-container"> <div class="sub-mast-inner"> <div class="sm-title"> <h1> bc Events </h1> </div> <div class="event-add-container sm-button"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/bc/events/add/" class="event-add-btn">Add Event</a> </div> </div> </div> </section> <main id="content" class="layout-contain right-well"> <div class="stream"> <aside class="c-inline-sponsor" aria-label="Sponsorship section"> <a class="c-inline-sponsor__link" href="https://web.archive.org/web/20220322044914/https://globalnews.ca/tag/bccommunity/" target="_blank"> <img class="c-inline-sponsor__image" src="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2020/06/glbc_all_events_900x263_2020.jpg" alt="GlobalNews BC - All Events"/> </a> </aside> <div class="events"> <section aria-label="Events date and type filters"> <span id="ev-more"></span> <div class="ev-filters c-eventFilter" data-region="bc" data-type="" data-date="" data-tag=""> <!-- Selected Date --> <div class="ev-date c-eventFilter__currentDate"> Tuesday March 22nd, 2022 </div> <!-- Move to next or previous day --> <div class="ev-date-controls c-eventFilter__dateControls"> <a class="c-eventFilter__button c-eventFilter__previous c-button prev-day" href="javascript:void(0)" data-date="21-03-2022"> Previous Day </a> <a class="c-eventFilter__button c-eventFilter__next c-button next-day" href="javascript:void(0)" data-date="23-03-2022"> Next Day </a> <button class="c-eventFilter__button c-eventFilter__button--square c-eventFilter__button--large c-button" title="Events by date" data-toggle-menu="#eventsCalendarPopup" data-disabled="self"> <span class="sr-only">Select date on the calendar</span> <svg class="c-icon c-icon--white c-eventFilter__icon" focusable="false"> <use xlink:href="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/icons/out/symbol/svg/sprite.symbol.svg?v=msjiw4cvn#calendar"></use> </svg> </button> <button class="c-eventFilter__button c-eventFilter__button--square c-eventFilter__button--small c-button" title="Events by date" data-toggle-menu="#eventsCalendarNav" data-disabled="all"> <span class="sr-only">Select date on the calendar</span> <svg class="c-icon c-icon--white c-eventFilter__icon" focusable="false"> <use xlink:href="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/icons/out/symbol/svg/sprite.symbol.svg?v=msjiw4cvn#calendar"></use> </svg> </button> <button class="c-eventFilter__button c-eventFilter__button--square c-eventFilter__button--large c-button" title="Events by type" data-toggle-menu="#eventsTypePopup" data-disabled="self"> <span class="sr-only">Select event type</span> <svg class="c-icon c-icon--white c-eventFilter__icon" focusable="false"> <use xlink:href="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/icons/out/symbol/svg/sprite.symbol.svg?v=msjiw4cvn#filter"></use> </svg> </button> <button class="c-eventFilter__button c-eventFilter__button--square c-eventFilter__button--small c-button" title="Event by type" data-toggle-menu="#eventsTypesNav" data-disabled="all"> <span class="sr-only">Select event type</span> <svg class="c-icon c-icon--white c-eventFilter__icon" focusable="false"> <use xlink:href="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/icons/out/symbol/svg/sprite.symbol.svg?v=msjiw4cvn#filter"></use> </svg> </button> </div> </div> <!-- Filter by date --> <div id="eventsCalendarPopup" class="l-panel l-panel--eventsPopup l-panel--eventsCalendarPopup u-show-tablet-portrait"> <div class="datepicker mobile datepicker--hybrid"></div> </div> <!-- Filter by event type --> <div id="eventsTypePopup" class="l-panel l-panel--eventsPopup l-panel--eventsTypesPopup u-show-tablet-portrait"> <ul id="event_type_select" class="c-eventType c-nav c-nav--dropdown"> <li class="c-eventType__item c-nav__item"> <button class="c-eventType__link c-nav__link c-eventType__link--selected" value="xx">All event types</button> </li> <li class="c-eventType__item c-nav__item"> <button class="c-eventType__link c-nav__link " value="comedy"> Comedy </button> </li> <li class="c-eventType__item c-nav__item"> <button class="c-eventType__link c-nav__link " value="festival"> Festival </button> </li> <li class="c-eventType__item c-nav__item"> <button class="c-eventType__link c-nav__link " value="food"> Food </button> </li> <li class="c-eventType__item c-nav__item"> <button class="c-eventType__link c-nav__link " value="music"> Music </button> </li> <li class="c-eventType__item c-nav__item"> <button class="c-eventType__link c-nav__link " value="sports"> Sports </button> </li> <li class="c-eventType__item c-nav__item"> <button class="c-eventType__link c-nav__link " value="theater"> Theater </button> </li> <li class="c-eventType__item c-nav__item"> <button class="c-eventType__link c-nav__link " value="virtual"> Virtual </button> </li> <li class="c-eventType__item c-nav__item"> <button class="c-eventType__link c-nav__link " value="other">Other</button> </li> </ul> </div> </section> <section class="events-list" aria-label="List of events"> <div class="events-list-inner"> <article class="story story-float-img" data-post_id="8619487" aria-label="Washed Ashore exhibition (Feb 23 - Apr 30 | 11:00 AM - 7:00 PM)"> <div class="meta-bar"> <div class="meta-bar-cat"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/bc/events/type/other/"> Other </a> </div> <button class="meta-share-expand"> <img src="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/_img/plus.png" alt="Hover to see article share options" width="17" height="17"> </button> <div class="socialShare meta-share-list" data-socialshare="facebook,twitter,google" data-socialshare-count="false" data-socialshare-collapsable="false" data-socialshare-url="https://globalnews.ca/event/8619487/washed-ashore-exhibition/" data-socialshare-title="Washed Ashore exhibition"></div> </div> <div class="story-h"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/event/8619487/washed-ashore-exhibition/">Washed Ashore exhibition</a> </div> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/event/8619487/washed-ashore-exhibition/" class="story-img-link"> <span class="sr-only">Click to open Washed Ashore exhibition</span> <span class="icon-media" aria-label="Event duration"> Feb 23 - Apr 30 </span> <img width="256" height="144" src="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/_img/events/ev-banner-default.png?quality=70&strip=all&w=256&h=144&crop=1" class="story-img wp-post-image" alt="Other event"> <span class="ev-default-text">Events</span> </a> <div class="story-txt"> <p>The famous sustainable art exhibit, Washed Ashore, will be on display in the Grand Court of Metropolis at Metrotown from February 23 to April 30, 2022! Approximately six million tons of plastic waste enter the oceans every year – from beach toys and plastic containers to automobile tires and electronics. Artula Institute for Arts and…</p> </div> </article> <article class="story story-float-img" data-post_id="8607021" aria-label="Science World presents T. rex: The Ultimate Predator (Feb 26 - Jan 22 | 10:00 AM - 5:00 PM)"> <div class="meta-bar"> <div class="meta-bar-cat"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/bc/events/type/other/"> Other </a> </div> <button class="meta-share-expand"> <img src="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/_img/plus.png" alt="Hover to see article share options" width="17" height="17"> </button> <div class="socialShare meta-share-list" data-socialshare="facebook,twitter,google" data-socialshare-count="false" data-socialshare-collapsable="false" data-socialshare-url="https://globalnews.ca/event/8607021/science-world-presents-t-rex-the-ultimate-predator/" data-socialshare-title="Science World presents T. rex: The Ultimate Predator"></div> </div> <div class="story-h"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/event/8607021/science-world-presents-t-rex-the-ultimate-predator/">Science World presents T. rex: The Ultimate Predator</a> </div> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/event/8607021/science-world-presents-t-rex-the-ultimate-predator/" class="story-img-link"> <span class="sr-only">Click to open Science World presents T. rex: The Ultimate Predator</span> <span class="icon-media" aria-label="Event duration"> Feb 26 - Jan 22 </span> <img width="256" height="144" src="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/SW-T-Rex-1920x1080-01.jpg?quality=85&strip=all&w=256&h=144&crop=1" class="story-img landscape wp-post-image" alt="" srcset="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/SW-T-Rex-1920x1080-01.jpg 1920w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/SW-T-Rex-1920x1080-01.jpg?resize=150,84 150w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/SW-T-Rex-1920x1080-01.jpg?resize=300,169 300w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/SW-T-Rex-1920x1080-01.jpg?resize=768,432 768w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/SW-T-Rex-1920x1080-01.jpg?resize=1024,576 1024w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/SW-T-Rex-1920x1080-01.jpg?resize=1536,864 1536w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/SW-T-Rex-1920x1080-01.jpg?resize=250,141 250w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/SW-T-Rex-1920x1080-01.jpg?resize=276,155 276w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/SW-T-Rex-1920x1080-01.jpg?resize=336,189 336w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/SW-T-Rex-1920x1080-01.jpg?resize=672,378 672w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/SW-T-Rex-1920x1080-01.jpg?resize=1200,675 1200w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/SW-T-Rex-1920x1080-01.jpg?resize=1600,900 1600w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/SW-T-Rex-1920x1080-01.jpg?resize=720,405 720w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/SW-T-Rex-1920x1080-01.jpg?resize=560,315 560w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/SW-T-Rex-1920x1080-01.jpg?resize=450,253 450w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/SW-T-Rex-1920x1080-01.jpg?resize=282,159 282w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/SW-T-Rex-1920x1080-01.jpg?resize=128,72 128w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/SW-T-Rex-1920x1080-01.jpg?resize=256,144 256w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/SW-T-Rex-1920x1080-01.jpg?resize=352,198 352w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/SW-T-Rex-1920x1080-01.jpg?resize=512,288 512w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/SW-T-Rex-1920x1080-01.jpg?resize=135,76 135w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/SW-T-Rex-1920x1080-01.jpg?resize=98,55 98w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/SW-T-Rex-1920x1080-01.jpg?resize=400,225 400w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/SW-T-Rex-1920x1080-01.jpg?resize=800,450 800w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/SW-T-Rex-1920x1080-01.jpg?resize=1120,630 1120w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/SW-T-Rex-1920x1080-01.jpg?resize=1040,585 1040w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/SW-T-Rex-1920x1080-01.jpg?resize=480,270 480w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/SW-T-Rex-1920x1080-01.jpg?resize=320,180 320w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/SW-T-Rex-1920x1080-01.jpg?resize=100,56 100w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/SW-T-Rex-1920x1080-01.jpg?resize=57,32 57w" sizes="(max-width: 256px) 100vw, 256px"/> </a> <div class="story-txt"> <p>Science World presents T. rex: The Ultimate Predator, presented by RBC and White Spot Restaurants, on display at Science World from February 26, 2022 until January, 22 2023. This exciting exhibition will introduce you to the entire tyrannosaur family, revealing the amazing story of the most iconic dinosaur in the world through life-sized models, fossil…</p> </div> </article> <article class="story story-float-img" data-post_id="8653097" aria-label="Nanaimo Hospice Dream Lottery and 50/50 (Feb 28 - Apr 8 | 1:00 AM - 11:45 PM)"> <div class="meta-bar"> <div class="meta-bar-cat"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/bc/events/type/other/"> Other </a> </div> <button class="meta-share-expand"> <img src="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/_img/plus.png" alt="Hover to see article share options" width="17" height="17"> </button> <div class="socialShare meta-share-list" data-socialshare="facebook,twitter,google" data-socialshare-count="false" data-socialshare-collapsable="false" data-socialshare-url="https://globalnews.ca/event/8653097/nanaimo-hospice-dream-lottery-and-50-50/" data-socialshare-title="Nanaimo Hospice Dream Lottery and 50/50"></div> </div> <div class="story-h"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/event/8653097/nanaimo-hospice-dream-lottery-and-50-50/">Nanaimo Hospice Dream Lottery and 50/50</a> </div> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/event/8653097/nanaimo-hospice-dream-lottery-and-50-50/" class="story-img-link"> <span class="sr-only">Click to open Nanaimo Hospice Dream Lottery and 50/50</span> <span class="icon-media" aria-label="Event duration"> Feb 28 - Apr 8 </span> <img width="256" height="144" src="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/nanaimo-hospice-dream-lottery-900x600-1.jpg?quality=85&strip=all&w=256&h=144&crop=1" class="story-img landscape wp-post-image" alt="" loading="lazy" srcset="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/nanaimo-hospice-dream-lottery-900x600-1.jpg?resize=250,141 250w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/nanaimo-hospice-dream-lottery-900x600-1.jpg?resize=128,72 128w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/nanaimo-hospice-dream-lottery-900x600-1.jpg?resize=150,84 150w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/nanaimo-hospice-dream-lottery-900x600-1.jpg?resize=256,144 256w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/nanaimo-hospice-dream-lottery-900x600-1.jpg?resize=512,288 512w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/nanaimo-hospice-dream-lottery-900x600-1.jpg?resize=100,56 100w" sizes="(max-width: 256px) 100vw, 256px"/> </a> <div class="story-txt"> <p>One Grand Prize Winner will win a home valued at $1.7 Million! Set in the Foothills in Lantzville, BC, built by Momentum Design Build a Hazelwood company this home takes full advantage of the stunning panoramic views. This project will support the programs and services provided to families and children while they grieve loss. It…</p> </div> </article> <article class="story story-float-img" data-post_id="8671567" aria-label="Surrey Hospitals Foundation: Operating Rooms Campaign (Mar 1 - Mar 31 | 12:00 AM - 11:59 PM)"> <div class="meta-bar"> <div class="meta-bar-cat"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/bc/events/type/virtual/"> Virtual </a> </div> <button class="meta-share-expand"> <img src="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/_img/plus.png" alt="Hover to see article share options" width="17" height="17"> </button> <div class="socialShare meta-share-list" data-socialshare="facebook,twitter,google" data-socialshare-count="false" data-socialshare-collapsable="false" data-socialshare-url="https://globalnews.ca/event/8671567/surrey-hospitals-foundation-operating-rooms-campaign/" data-socialshare-title="Surrey Hospitals Foundation: Operating Rooms Campaign"></div> </div> <div class="story-h"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/event/8671567/surrey-hospitals-foundation-operating-rooms-campaign/">Surrey Hospitals Foundation: Operating Rooms Campaign</a> </div> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/event/8671567/surrey-hospitals-foundation-operating-rooms-campaign/" class="story-img-link"> <span class="sr-only">Click to open Surrey Hospitals Foundation: Operating Rooms Campaign</span> <span class="icon-media" aria-label="Event duration"> Mar 1 - Mar 31 </span> <img width="256" height="144" src="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/SHF_Logo_PRIMARY.png?w=256&h=144&crop=1" class="story-img landscape wp-post-image" alt="" loading="lazy" srcset="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/SHF_Logo_PRIMARY.png?resize=250,141 250w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/SHF_Logo_PRIMARY.png?resize=128,72 128w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/SHF_Logo_PRIMARY.png?resize=150,84 150w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/SHF_Logo_PRIMARY.png?resize=256,144 256w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/SHF_Logo_PRIMARY.png?resize=512,288 512w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/SHF_Logo_PRIMARY.png?resize=1024,576 1024w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/SHF_Logo_PRIMARY.png?resize=100,56 100w" sizes="(max-width: 256px) 100vw, 256px"/> </a> <div class="story-txt"> <p>Spring 2022</p> </div> </article> <article class="story story-float-img" data-post_id="8671451" aria-label="Hike for Hospice 50/50 Raffle (Mar 1 - May 1 | 8:00 AM - 11:30 AM)"> <div class="meta-bar"> <div class="meta-bar-cat"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/bc/events/type/other/"> Other </a> </div> <button class="meta-share-expand"> <img src="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/_img/plus.png" alt="Hover to see article share options" width="17" height="17"> </button> <div class="socialShare meta-share-list" data-socialshare="facebook,twitter,google" data-socialshare-count="false" data-socialshare-collapsable="false" data-socialshare-url="https://globalnews.ca/event/8671451/hike-for-hospice-50-50-raffle/" data-socialshare-title="Hike for Hospice 50/50 Raffle"></div> </div> <div class="story-h"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/event/8671451/hike-for-hospice-50-50-raffle/">Hike for Hospice 50/50 Raffle</a> </div> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/event/8671451/hike-for-hospice-50-50-raffle/" class="story-img-link"> <span class="sr-only">Click to open Hike for Hospice 50/50 Raffle</span> <span class="icon-media" aria-label="Event duration"> Mar 1 - May 1 </span> <img width="256" height="144" src="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/H4H-5050draft-v3.jpg?quality=85&strip=all&w=256&h=144&crop=1" class="story-img landscape wp-post-image" alt="" loading="lazy" srcset="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/H4H-5050draft-v3.jpg?resize=250,141 250w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/H4H-5050draft-v3.jpg?resize=128,72 128w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/H4H-5050draft-v3.jpg?resize=150,84 150w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/H4H-5050draft-v3.jpg?resize=256,144 256w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/H4H-5050draft-v3.jpg?resize=512,288 512w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/H4H-5050draft-v3.jpg?resize=100,56 100w" sizes="(max-width: 256px) 100vw, 256px"/> </a> <div class="story-txt"> <p>Ready, set, raffle! Win big while supporting compassionate care at Victoria Hospice! Tickets are now available for the 2022 Hike for Hospice 50/50 raffle. Sales are open until Sunday, May 1 at 10:30 am with the draw set for 11:30 am at Hike for Hospice at Fisherman’s Wharf Park. Come down to watch the draw…</p> </div> </article> <article class="story story-float-img" data-post_id="8647427" aria-label="Nanaimo Hospice Dream Home Lottery (Mar 4 - Apr 8 | 12:00 AM - 11:59 PM)"> <div class="meta-bar"> <div class="meta-bar-cat"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/bc/events/type/other/"> Other </a> </div> <button class="meta-share-expand"> <img src="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/_img/plus.png" alt="Hover to see article share options" width="17" height="17"> </button> <div class="socialShare meta-share-list" data-socialshare="facebook,twitter,google" data-socialshare-count="false" data-socialshare-collapsable="false" data-socialshare-url="https://globalnews.ca/event/8647427/nanaimo-hospice-dream-home-lottery/" data-socialshare-title="Nanaimo Hospice Dream Home Lottery"></div> </div> <div class="story-h"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/event/8647427/nanaimo-hospice-dream-home-lottery/">Nanaimo Hospice Dream Home Lottery</a> </div> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/event/8647427/nanaimo-hospice-dream-home-lottery/" class="story-img-link"> <span class="sr-only">Click to open Nanaimo Hospice Dream Home Lottery</span> <span class="icon-media" aria-label="Event duration"> Mar 4 - Apr 8 </span> <img width="256" height="144" src="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/Hospice-Logo.png?w=256&h=144&crop=1" class="story-img landscape wp-post-image" alt="" loading="lazy" srcset="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/Hospice-Logo.png?resize=250,141 250w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/Hospice-Logo.png?resize=128,72 128w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/Hospice-Logo.png?resize=150,84 150w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/Hospice-Logo.png?resize=256,144 256w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/Hospice-Logo.png?resize=512,288 512w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/Hospice-Logo.png?resize=1024,576 1024w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/Hospice-Logo.png?resize=100,56 100w" sizes="(max-width: 256px) 100vw, 256px"/> </a> <div class="story-txt"> <p>On now until April 8</p> </div> </article> <article class="story story-float-img" data-post_id="8641945" aria-label="The Matinee (Mar 5 - Apr 30 | 2:00 PM - 2:45 PM)"> <div class="meta-bar"> <div class="meta-bar-cat"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/bc/events/type/comedy/"> Comedy </a> </div> <button class="meta-share-expand"> <img src="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/_img/plus.png" alt="Hover to see article share options" width="17" height="17"> </button> <div class="socialShare meta-share-list" data-socialshare="facebook,twitter,google" data-socialshare-count="false" data-socialshare-collapsable="false" data-socialshare-url="https://globalnews.ca/event/8641945/the-matinee-2/" data-socialshare-title="The Matinee"></div> </div> <div class="story-h"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/event/8641945/the-matinee-2/">The Matinee</a> </div> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/event/8641945/the-matinee-2/" class="story-img-link"> <span class="sr-only">Click to open The Matinee</span> <span class="icon-media" aria-label="Event duration"> Mar 5 - Apr 30 </span> <img width="256" height="144" src="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/the-matinee-facebook-1.jpg?quality=85&strip=all&w=256&h=144&crop=1" class="story-img landscape wp-post-image" alt="" loading="lazy" srcset="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/the-matinee-facebook-1.jpg?resize=250,141 250w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/the-matinee-facebook-1.jpg?resize=128,72 128w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/the-matinee-facebook-1.jpg?resize=150,84 150w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/the-matinee-facebook-1.jpg?resize=256,144 256w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/the-matinee-facebook-1.jpg?resize=512,288 512w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/the-matinee-facebook-1.jpg?resize=1024,576 1024w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/the-matinee-facebook-1.jpg?resize=1600,900 1600w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/the-matinee-facebook-1.jpg?resize=2048,1152 2048w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/the-matinee-facebook-1.jpg?resize=100,56 100w" sizes="(max-width: 256px) 100vw, 256px"/> </a> <div class="story-txt"> <p>Join us every Saturday at our brand new show, where the laughs are family friendly and the vibe fits in to your crew’s weekend schedule. Whether you’re on Granville Island to shop at the Public Market, or dropping the kids off to art class, this express show brings laughs for all ages and sets your…</p> </div> </article> <article class="story story-float-img" data-post_id="8658171" aria-label="The Circle of Life Exhibition (Mar 9 - Mar 25 | 9:00 AM - 5:00 PM)"> <div class="meta-bar"> <div class="meta-bar-cat"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/bc/events/type/other/"> Other </a> </div> <button class="meta-share-expand"> <img src="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/_img/plus.png" alt="Hover to see article share options" width="17" height="17"> </button> <div class="socialShare meta-share-list" data-socialshare="facebook,twitter,google" data-socialshare-count="false" data-socialshare-collapsable="false" data-socialshare-url="https://globalnews.ca/event/8658171/the-circle-of-life-exhibition/" data-socialshare-title="The Circle of Life Exhibition"></div> </div> <div class="story-h"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/event/8658171/the-circle-of-life-exhibition/">The Circle of Life Exhibition</a> </div> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/event/8658171/the-circle-of-life-exhibition/" class="story-img-link"> <span class="sr-only">Click to open The Circle of Life Exhibition</span> <span class="icon-media" aria-label="Event duration"> Mar 9 - Mar 25 </span> <img width="256" height="144" src="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/ExhibitionDates_TheCircleofLife_GuoYanPepeHidalgo.jpg?quality=85&strip=all&w=256&h=144&crop=1" class="story-img landscape wp-post-image" alt="" loading="lazy" srcset="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/ExhibitionDates_TheCircleofLife_GuoYanPepeHidalgo.jpg?resize=250,141 250w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/ExhibitionDates_TheCircleofLife_GuoYanPepeHidalgo.jpg?resize=128,72 128w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/ExhibitionDates_TheCircleofLife_GuoYanPepeHidalgo.jpg?resize=150,84 150w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/ExhibitionDates_TheCircleofLife_GuoYanPepeHidalgo.jpg?resize=256,144 256w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/ExhibitionDates_TheCircleofLife_GuoYanPepeHidalgo.jpg?resize=512,288 512w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/ExhibitionDates_TheCircleofLife_GuoYanPepeHidalgo.jpg?resize=1024,576 1024w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/ExhibitionDates_TheCircleofLife_GuoYanPepeHidalgo.jpg?resize=100,56 100w" sizes="(max-width: 256px) 100vw, 256px"/> </a> <div class="story-txt"> <p>YouKnowArts Gallery is proud to present The Circle of Life exhibition by artist Guo Yan and Pepe Hidalgo. Both artists seamlessly integrate their unique artistic languages and expressions into stunning paintings depicting lush, dreamlike sceneries. The show also includes several paintings independently created by the artists around the theme of magic realistic time travel with…</p> </div> </article> <article class="story story-float-img" data-post_id="8671591" aria-label="T.rex: The Ultimate Predator (Mar 11 - Jan 22 | 12:00 AM - 5:00 PM)"> <div class="meta-bar"> <div class="meta-bar-cat"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/bc/events/"> Event </a> </div> <button class="meta-share-expand"> <img src="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/_img/plus.png" alt="Hover to see article share options" width="17" height="17"> </button> <div class="socialShare meta-share-list" data-socialshare="facebook,twitter,google" data-socialshare-count="false" data-socialshare-collapsable="false" data-socialshare-url="https://globalnews.ca/event/8671591/t-rex-the-ultimate-predator/" data-socialshare-title="T.rex: The Ultimate Predator"></div> </div> <div class="story-h"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/event/8671591/t-rex-the-ultimate-predator/">T.rex: The Ultimate Predator</a> </div> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/event/8671591/t-rex-the-ultimate-predator/" class="story-img-link"> <span class="sr-only">Click to open T.rex: The Ultimate Predator</span> <span class="icon-media" aria-label="Event duration"> Mar 11 - Jan 22 </span> <img width="256" height="144" src="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/20220302_2212-SW-T-Rex-Global-TV-Contest-Image01-1.jpg?quality=85&strip=all&w=256&h=144&crop=1" class="story-img landscape wp-post-image" alt="" loading="lazy" srcset="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/20220302_2212-SW-T-Rex-Global-TV-Contest-Image01-1.jpg?resize=250,141 250w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/20220302_2212-SW-T-Rex-Global-TV-Contest-Image01-1.jpg?resize=128,72 128w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/20220302_2212-SW-T-Rex-Global-TV-Contest-Image01-1.jpg?resize=150,84 150w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/20220302_2212-SW-T-Rex-Global-TV-Contest-Image01-1.jpg?resize=256,144 256w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/20220302_2212-SW-T-Rex-Global-TV-Contest-Image01-1.jpg?resize=512,288 512w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/20220302_2212-SW-T-Rex-Global-TV-Contest-Image01-1.jpg?resize=1024,576 1024w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/20220302_2212-SW-T-Rex-Global-TV-Contest-Image01-1.jpg?resize=100,56 100w" sizes="(max-width: 256px) 100vw, 256px"/> </a> <div class="story-txt"> <p>On now until January 22, 2023 | Science World, Vancouver</p> </div> </article> <article class="story story-float-img" data-post_id="8671617" aria-label="Global BC sponsors ‘The Imitation Game: Visual Culture in the Age of Artificial Intelligence ‘ (Mar 11 - Mar 31 | 12:00 AM - 5:00 PM)"> <div class="meta-bar"> <div class="meta-bar-cat"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/bc/events/"> Event </a> </div> <button class="meta-share-expand"> <img src="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/_img/plus.png" alt="Hover to see article share options" width="17" height="17"> </button> <div class="socialShare meta-share-list" data-socialshare="facebook,twitter,google" data-socialshare-count="false" data-socialshare-collapsable="false" data-socialshare-url="https://globalnews.ca/event/8671617/global-bc-sponsors-the-imitation-game-visual-culture-in-the-age-of-artificial-intelligence/" data-socialshare-title="Global BC sponsors ‘The Imitation Game: Visual Culture in the Age of Artificial Intelligence ‘"></div> </div> <div class="story-h"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/event/8671617/global-bc-sponsors-the-imitation-game-visual-culture-in-the-age-of-artificial-intelligence/">Global BC sponsors ‘The Imitation Game: Visual Culture in the Age of Artificial Intelligence ‘</a> </div> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/event/8671617/global-bc-sponsors-the-imitation-game-visual-culture-in-the-age-of-artificial-intelligence/" class="story-img-link"> <span class="sr-only">Click to open Global BC sponsors ‘The Imitation Game: Visual Culture in the Age of Artificial Intelligence ‘</span> <span class="icon-media" aria-label="Event duration"> Mar 11 - Mar 31 </span> <img width="256" height="144" src="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/Imitation-game-exhibition-vancouver-art-gallery.jpg?quality=85&strip=all&w=256&h=144&crop=1" class="story-img landscape wp-post-image" alt="" loading="lazy" srcset="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/Imitation-game-exhibition-vancouver-art-gallery.jpg?resize=250,141 250w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/Imitation-game-exhibition-vancouver-art-gallery.jpg?resize=128,72 128w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/Imitation-game-exhibition-vancouver-art-gallery.jpg?resize=150,84 150w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/Imitation-game-exhibition-vancouver-art-gallery.jpg?resize=256,144 256w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/Imitation-game-exhibition-vancouver-art-gallery.jpg?resize=512,288 512w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/Imitation-game-exhibition-vancouver-art-gallery.jpg?resize=1024,576 1024w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/Imitation-game-exhibition-vancouver-art-gallery.jpg?resize=100,56 100w" sizes="(max-width: 256px) 100vw, 256px"/> </a> <div class="story-txt"> <p>On now until October 23 | Vancouver Art Gallery</p> </div> </article> <article class="story story-float-img" data-post_id="8614375" aria-label="The Polygon Gallery: Cloud Album (Mar 11 - May 1 | 10:00 AM - 5:00 PM)"> <div class="meta-bar"> <div class="meta-bar-cat"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/bc/events/type/other/"> Other </a> </div> <button class="meta-share-expand"> <img src="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/_img/plus.png" alt="Hover to see article share options" width="17" height="17"> </button> <div class="socialShare meta-share-list" data-socialshare="facebook,twitter,google" data-socialshare-count="false" data-socialshare-collapsable="false" data-socialshare-url="https://globalnews.ca/event/8614375/the-polygon-gallery-cloud-album/" data-socialshare-title="The Polygon Gallery: Cloud Album"></div> </div> <div class="story-h"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/event/8614375/the-polygon-gallery-cloud-album/">The Polygon Gallery: Cloud Album</a> </div> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/event/8614375/the-polygon-gallery-cloud-album/" class="story-img-link"> <span class="sr-only">Click to open The Polygon Gallery: Cloud Album</span> <span class="icon-media" aria-label="Event duration"> Mar 11 - May 1 </span> <img width="256" height="144" src="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/Anonymous-WWII-Bomb-raid-web.jpg?quality=85&strip=all&w=256&h=144&crop=1" class="story-img landscape wp-post-image" alt="" loading="lazy" srcset="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/Anonymous-WWII-Bomb-raid-web.jpg?resize=250,141 250w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/Anonymous-WWII-Bomb-raid-web.jpg?resize=128,72 128w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/Anonymous-WWII-Bomb-raid-web.jpg?resize=150,84 150w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/Anonymous-WWII-Bomb-raid-web.jpg?resize=256,144 256w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/Anonymous-WWII-Bomb-raid-web.jpg?resize=512,288 512w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/Anonymous-WWII-Bomb-raid-web.jpg?resize=1024,576 1024w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/Anonymous-WWII-Bomb-raid-web.jpg?resize=1600,900 1600w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/Anonymous-WWII-Bomb-raid-web.jpg?resize=2048,1152 2048w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/Anonymous-WWII-Bomb-raid-web.jpg?resize=100,56 100w" sizes="(max-width: 256px) 100vw, 256px"/> </a> <div class="story-txt"> <p>From March 11 to May 1, The Polygon Gallery presents Cloud Album, a new exhibition that celebrates a subject that has long captured the imagination of artists, scientists, and amateur photographers. The exhibition features more than 250 historically and culturally significant works drawn from the collection of the London-based Archive of Modern Conflict, an organization…</p> </div> </article> <article class="story story-float-img" data-post_id="8652999" aria-label="NUNSENSE (Mar 11 - Mar 27 | 8:00 PM)"> <div class="meta-bar"> <div class="meta-bar-cat"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/bc/events/type/theater/"> Theater </a> </div> <button class="meta-share-expand"> <img src="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/_img/plus.png" alt="Hover to see article share options" width="17" height="17"> </button> <div class="socialShare meta-share-list" data-socialshare="facebook,twitter,google" data-socialshare-count="false" data-socialshare-collapsable="false" data-socialshare-url="https://globalnews.ca/event/8652999/nunsense-2/" data-socialshare-title="NUNSENSE"></div> </div> <div class="story-h"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/event/8652999/nunsense-2/">NUNSENSE</a> </div> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/event/8652999/nunsense-2/" class="story-img-link"> <span class="sr-only">Click to open NUNSENSE</span> <span class="icon-media" aria-label="Event duration"> Mar 11 - Mar 27 </span> <img width="256" height="144" src="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/CE-1.jpg?quality=85&strip=all&w=256&h=144&crop=1" class="story-img landscape wp-post-image" alt="" loading="lazy" srcset="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/CE-1.jpg?resize=250,141 250w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/CE-1.jpg?resize=128,72 128w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/CE-1.jpg?resize=150,84 150w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/CE-1.jpg?resize=256,144 256w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/CE-1.jpg?resize=100,56 100w" sizes="(max-width: 256px) 100vw, 256px"/> </a> <div class="story-txt"> <p>Boone Dog Productions in association with Metro Theatre presents NUNSENSE is a hilarious spoof created by Dan Goggin in 1985 and follows the misadventures of five nuns trying to manage a fundraiser; the ballet-loving Sister Leo, street-wise Sister Robert Anne, befuddled Sister Mary Amnesia, the Mother Superior Sister Regina, and Mistress of the Novices Sister…</p> </div> </article> <article class="story story-float-img" data-post_id="8592115" aria-label="SPRING POP UP MARKET AT THE GALLERIA AMBLESIDE (Mar 12 - Apr 16 | 10:00 AM - 2:00 PM)"> <div class="meta-bar"> <div class="meta-bar-cat"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/bc/events/type/other/"> Other </a> </div> <button class="meta-share-expand"> <img src="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/_img/plus.png" alt="Hover to see article share options" width="17" height="17"> </button> <div class="socialShare meta-share-list" data-socialshare="facebook,twitter,google" data-socialshare-count="false" data-socialshare-collapsable="false" data-socialshare-url="https://globalnews.ca/event/8592115/spring-pop-up-market-at-the-galleria-ambleside/" data-socialshare-title="SPRING POP UP MARKET AT THE GALLERIA AMBLESIDE"></div> </div> <div class="story-h"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/event/8592115/spring-pop-up-market-at-the-galleria-ambleside/">SPRING POP UP MARKET AT THE GALLERIA AMBLESIDE</a> </div> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/event/8592115/spring-pop-up-market-at-the-galleria-ambleside/" class="story-img-link"> <span class="sr-only">Click to open SPRING POP UP MARKET AT THE GALLERIA AMBLESIDE</span> <span class="icon-media" aria-label="Event duration"> Mar 12 - Apr 16 </span> <img width="256" height="144" src="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/Coast_Valley_Market_logo.jpg?quality=85&strip=all&w=256&h=144&crop=1" class="story-img landscape wp-post-image" alt="" loading="lazy" srcset="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/Coast_Valley_Market_logo.jpg?resize=250,141 250w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/Coast_Valley_Market_logo.jpg?resize=128,72 128w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/Coast_Valley_Market_logo.jpg?resize=150,84 150w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/Coast_Valley_Market_logo.jpg?resize=256,144 256w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/Coast_Valley_Market_logo.jpg?resize=512,288 512w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/Coast_Valley_Market_logo.jpg?resize=1024,576 1024w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/Coast_Valley_Market_logo.jpg?resize=100,56 100w" sizes="(max-width: 256px) 100vw, 256px"/> </a> <div class="story-txt"> <p>Announcing the Spring Pop Up Market at the Galleria Ambleside, If you are a local vendor who offers high quality, artisan products and would like to join us to offer your products to the public please contact us to learn more and apply. URLs: Brochure: <a href="https://web.archive.org/web/20220322044914/https://go.evvnt.com/1000552-2?pid=6986" rel="nofollow">https://go.evvnt.com/1000552-2?pid=6986</a> Facebook: <a href="https://web.archive.org/web/20220322044914/https://go.evvnt.com/1000552-3?pid=6986" rel="nofollow">https://go.evvnt.com/1000552-3?pid=6986</a> Category: Community | Markets</p> </div> </article> <article class="story story-float-img" data-post_id="8649969" aria-label="Spring Pop Up Market At Grosvenor Ambleside (Mar 12 - Apr 16 | 10:00 AM - 2:00 PM)"> <div class="meta-bar"> <div class="meta-bar-cat"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/bc/events/type/other/"> Other </a> </div> <button class="meta-share-expand"> <img src="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/_img/plus.png" alt="Hover to see article share options" width="17" height="17"> </button> <div class="socialShare meta-share-list" data-socialshare="facebook,twitter,google" data-socialshare-count="false" data-socialshare-collapsable="false" data-socialshare-url="https://globalnews.ca/event/8649969/spring-pop-up-market-at-grosvenor-ambleside/" data-socialshare-title="Spring Pop Up Market At Grosvenor Ambleside"></div> </div> <div class="story-h"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/event/8649969/spring-pop-up-market-at-grosvenor-ambleside/">Spring Pop Up Market At Grosvenor Ambleside</a> </div> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/event/8649969/spring-pop-up-market-at-grosvenor-ambleside/" class="story-img-link"> <span class="sr-only">Click to open Spring Pop Up Market At Grosvenor Ambleside</span> <span class="icon-media" aria-label="Event duration"> Mar 12 - Apr 16 </span> <img width="256" height="144" src="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/aa.jpg?quality=85&strip=all&w=256&h=144&crop=1" class="story-img landscape wp-post-image" alt="" loading="lazy" srcset="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/aa.jpg?resize=250,141 250w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/aa.jpg?resize=128,72 128w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/aa.jpg?resize=150,84 150w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/aa.jpg?resize=256,144 256w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/aa.jpg?resize=512,288 512w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/aa.jpg?resize=100,56 100w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/aa.jpg?resize=55,32 55w" sizes="(max-width: 256px) 100vw, 256px"/> </a> <div class="story-txt"> <p>Spring is in the air at Grosvenor Ambleside in West Vancouver! Join us every Saturday from 10am to 2pm from March 12 to April 16 for the Spring Pop-Up Market. You will discover over 30 local artisans offering high-quality, handcrafted items for sale including pottery, clothing, candles, wood works, baked goods and much more. Category:…</p> </div> </article> <article class="story story-float-img" data-post_id="8668497" aria-label="Spring Break at the FRDC! (Mar 12 - Mar 27 | 10:00 AM - 4:00 PM)"> <div class="meta-bar"> <div class="meta-bar-cat"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/bc/events/type/other/"> Other </a> </div> <button class="meta-share-expand"> <img src="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/_img/plus.png" alt="Hover to see article share options" width="17" height="17"> </button> <div class="socialShare meta-share-list" data-socialshare="facebook,twitter,google" data-socialshare-count="false" data-socialshare-collapsable="false" data-socialshare-url="https://globalnews.ca/event/8668497/spring-break-at-the-frdc-2/" data-socialshare-title="Spring Break at the FRDC!"></div> </div> <div class="story-h"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/event/8668497/spring-break-at-the-frdc-2/">Spring Break at the FRDC!</a> </div> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/event/8668497/spring-break-at-the-frdc-2/" class="story-img-link"> <span class="sr-only">Click to open Spring Break at the FRDC!</span> <span class="icon-media" aria-label="Event duration"> Mar 12 - Mar 27 </span> <img width="256" height="144" src="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/Spring-Break-2022-Web-Banner-JPG.jpg?quality=85&strip=all&w=256&h=144&crop=1" class="story-img landscape wp-post-image" alt="" loading="lazy" srcset="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/Spring-Break-2022-Web-Banner-JPG.jpg?resize=250,141 250w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/Spring-Break-2022-Web-Banner-JPG.jpg?resize=128,72 128w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/Spring-Break-2022-Web-Banner-JPG.jpg?resize=150,84 150w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/Spring-Break-2022-Web-Banner-JPG.jpg?resize=256,144 256w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/Spring-Break-2022-Web-Banner-JPG.jpg?resize=512,288 512w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/Spring-Break-2022-Web-Banner-JPG.jpg?resize=1024,576 1024w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/Spring-Break-2022-Web-Banner-JPG.jpg?resize=1600,900 1600w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/Spring-Break-2022-Web-Banner-JPG.jpg?resize=2048,1152 2048w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/Spring-Break-2022-Web-Banner-JPG.jpg?resize=100,56 100w" sizes="(max-width: 256px) 100vw, 256px"/> </a> <div class="story-txt"> <p>The Fraser River Discovery Centre, located in Downtown New Westminster, invites you to spend Spring Break with us in ‘Spring Discovery Days’ running between Saturday, March 12th – Sunday, March 27th! Throughout Spring Break, the FRDC will be open seven days a week, with additional guided and self-led activities, plus scheduled walking tours along the…</p> </div> </article> <article class="story story-float-img" data-post_id="8638793" aria-label="Spring Break at Britannia Mine Museum (Mar 12 - Mar 27 | 1:30 PM - 4:00 PM)"> <div class="meta-bar"> <div class="meta-bar-cat"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/bc/events/type/other/"> Other </a> </div> <button class="meta-share-expand"> <img src="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/_img/plus.png" alt="Hover to see article share options" width="17" height="17"> </button> <div class="socialShare meta-share-list" data-socialshare="facebook,twitter,google" data-socialshare-count="false" data-socialshare-collapsable="false" data-socialshare-url="https://globalnews.ca/event/8638793/spring-break-at-britannia-mine-museum-3/" data-socialshare-title="Spring Break at Britannia Mine Museum"></div> </div> <div class="story-h"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/event/8638793/spring-break-at-britannia-mine-museum-3/">Spring Break at Britannia Mine Museum</a> </div> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/event/8638793/spring-break-at-britannia-mine-museum-3/" class="story-img-link"> <span class="sr-only">Click to open Spring Break at Britannia Mine Museum</span> <span class="icon-media" aria-label="Event duration"> Mar 12 - Mar 27 </span> <img width="256" height="144" src="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/February-2022-SM.jpg?quality=85&strip=all&w=256&h=144&crop=1" class="story-img landscape wp-post-image" alt="" loading="lazy" srcset="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/February-2022-SM.jpg?resize=250,141 250w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/February-2022-SM.jpg?resize=128,72 128w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/February-2022-SM.jpg?resize=150,84 150w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/February-2022-SM.jpg?resize=256,144 256w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/February-2022-SM.jpg?resize=512,288 512w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/February-2022-SM.jpg?resize=1024,576 1024w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/February-2022-SM.jpg?resize=100,56 100w" sizes="(max-width: 256px) 100vw, 256px"/> </a> <div class="story-txt"> <p>Live in the Lab – Mini Mud Monsters Join us before or after your guided tour from 1:30 pm to 4:00 on Thursday, Saturday, Sunday and Monday during Spring Break from Saturday March 12th to Sunday March 27th All kinds of strange creatures hide in the depths of our freshwater ecosystems. Using the power of…</p> </div> </article> <article class="story story-float-img" data-post_id="8668301" aria-label="Sea to Sky Gondola: Spring Break (Mar 14 - Mar 24 | 9:00 AM - 5:00 PM)"> <div class="meta-bar"> <div class="meta-bar-cat"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/bc/events/type/other/"> Other </a> </div> <button class="meta-share-expand"> <img src="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/_img/plus.png" alt="Hover to see article share options" width="17" height="17"> </button> <div class="socialShare meta-share-list" data-socialshare="facebook,twitter,google" data-socialshare-count="false" data-socialshare-collapsable="false" data-socialshare-url="https://globalnews.ca/event/8668301/sea-to-sky-gondola-spring-break/" data-socialshare-title="Sea to Sky Gondola: Spring Break"></div> </div> <div class="story-h"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/event/8668301/sea-to-sky-gondola-spring-break/">Sea to Sky Gondola: Spring Break</a> </div> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/event/8668301/sea-to-sky-gondola-spring-break/" class="story-img-link"> <span class="sr-only">Click to open Sea to Sky Gondola: Spring Break</span> <span class="icon-media" aria-label="Event duration"> Mar 14 - Mar 24 </span> <img width="256" height="144" src="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/image.jpg?quality=85&strip=all&w=256&h=144&crop=1" class="story-img landscape wp-post-image" alt="" loading="lazy" srcset="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/image.jpg?resize=250,141 250w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/image.jpg?resize=128,72 128w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/image.jpg?resize=150,84 150w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/image.jpg?resize=256,144 256w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/image.jpg?resize=100,56 100w" sizes="(max-width: 256px) 100vw, 256px"/> </a> <div class="story-txt"> <p>March 14 to 24 | 9am-5pm | Sea to Sky Gondola, Squamish</p> </div> </article> <article class="story story-float-img" data-post_id="8653501" aria-label="Global BC sponsors Burnaby Village Museum (Mar 14 - Mar 25 | 11:00 AM - 5:00 PM)"> <div class="meta-bar"> <div class="meta-bar-cat"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/bc/events/type/other/"> Other </a> </div> <button class="meta-share-expand"> <img src="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/_img/plus.png" alt="Hover to see article share options" width="17" height="17"> </button> <div class="socialShare meta-share-list" data-socialshare="facebook,twitter,google" data-socialshare-count="false" data-socialshare-collapsable="false" data-socialshare-url="https://globalnews.ca/event/8653501/global-bc-sponsors-burnaby-village-museum/" data-socialshare-title="Global BC sponsors Burnaby Village Museum"></div> </div> <div class="story-h"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/event/8653501/global-bc-sponsors-burnaby-village-museum/">Global BC sponsors Burnaby Village Museum</a> </div> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/event/8653501/global-bc-sponsors-burnaby-village-museum/" class="story-img-link"> <span class="sr-only">Click to open Global BC sponsors Burnaby Village Museum</span> <span class="icon-media" aria-label="Event duration"> Mar 14 - Mar 25 </span> <img width="256" height="144" src="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/BVM-Spring-Break-1024x790-1.jpg?quality=85&strip=all&w=256&h=144&crop=1" class="story-img landscape wp-post-image" alt="" loading="lazy" srcset="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/BVM-Spring-Break-1024x790-1.jpg?resize=250,141 250w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/BVM-Spring-Break-1024x790-1.jpg?resize=128,72 128w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/BVM-Spring-Break-1024x790-1.jpg?resize=150,84 150w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/BVM-Spring-Break-1024x790-1.jpg?resize=256,144 256w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/BVM-Spring-Break-1024x790-1.jpg?resize=512,288 512w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/BVM-Spring-Break-1024x790-1.jpg?resize=1024,576 1024w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/BVM-Spring-Break-1024x790-1.jpg?resize=100,56 100w" sizes="(max-width: 256px) 100vw, 256px"/> </a> <div class="story-txt"> <p>March 14 to 25 | 11am-5pm</p> </div> </article> <article class="story story-float-img" data-post_id="8614937" aria-label="Dragon Boat paddlers (Mar 15 - Oct 1 | 5:30 PM - 1:00 AM)"> <div class="meta-bar"> <div class="meta-bar-cat"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/bc/events/type/other/"> Other </a> </div> <button class="meta-share-expand"> <img src="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/_img/plus.png" alt="Hover to see article share options" width="17" height="17"> </button> <div class="socialShare meta-share-list" data-socialshare="facebook,twitter,google" data-socialshare-count="false" data-socialshare-collapsable="false" data-socialshare-url="https://globalnews.ca/event/8614937/dragon-boat-paddlers/" data-socialshare-title="Dragon Boat paddlers"></div> </div> <div class="story-h"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/event/8614937/dragon-boat-paddlers/">Dragon Boat paddlers</a> </div> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/event/8614937/dragon-boat-paddlers/" class="story-img-link"> <span class="sr-only">Click to open Dragon Boat paddlers</span> <span class="icon-media" aria-label="Event duration"> Mar 15 - Oct 1 </span> <img width="256" height="144" src="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/77A3F0FB-AB8F-4E53-8E07-DCE6B22FD97A.jpeg?quality=85&strip=all&w=256&h=144&crop=1" class="story-img landscape wp-post-image" alt="" loading="lazy" srcset="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/77A3F0FB-AB8F-4E53-8E07-DCE6B22FD97A.jpeg?resize=250,141 250w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/77A3F0FB-AB8F-4E53-8E07-DCE6B22FD97A.jpeg?resize=128,72 128w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/77A3F0FB-AB8F-4E53-8E07-DCE6B22FD97A.jpeg?resize=150,84 150w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/77A3F0FB-AB8F-4E53-8E07-DCE6B22FD97A.jpeg?resize=256,144 256w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/77A3F0FB-AB8F-4E53-8E07-DCE6B22FD97A.jpeg?resize=512,288 512w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/77A3F0FB-AB8F-4E53-8E07-DCE6B22FD97A.jpeg?resize=100,56 100w" sizes="(max-width: 256px) 100vw, 256px"/> </a> <div class="story-txt"> <p>Are you a breast cancer survivor looking to get back into leading a healthy active lifestyle… join Abreast In the City on Tuesday and Thursday evenings at Creekside Park in Olympic Village beginning in March 2022. Check us out at abreastinaboat.com</p> </div> </article> <article class="story story-float-img" data-post_id="8675231" aria-label="Silver Treads Indoor Walking Group (Mar 16 - Apr 27 | 9:00 AM - 10:00 AM)"> <div class="meta-bar"> <div class="meta-bar-cat"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/bc/events/type/other/"> Other </a> </div> <button class="meta-share-expand"> <img src="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/_img/plus.png" alt="Hover to see article share options" width="17" height="17"> </button> <div class="socialShare meta-share-list" data-socialshare="facebook,twitter,google" data-socialshare-count="false" data-socialshare-collapsable="false" data-socialshare-url="https://globalnews.ca/event/8675231/silver-treads-indoor-walking-group/" data-socialshare-title="Silver Treads Indoor Walking Group"></div> </div> <div class="story-h"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/event/8675231/silver-treads-indoor-walking-group/">Silver Treads Indoor Walking Group</a> </div> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/event/8675231/silver-treads-indoor-walking-group/" class="story-img-link"> <span class="sr-only">Click to open Silver Treads Indoor Walking Group</span> <span class="icon-media" aria-label="Event duration"> Mar 16 - Apr 27 </span> <img width="256" height="144" src="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/1058100460.jpg?quality=85&strip=all&w=256&h=144&crop=1" class="story-img landscape wp-post-image" alt="" loading="lazy" srcset="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/1058100460.jpg?resize=250,141 250w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/1058100460.jpg?resize=128,72 128w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/1058100460.jpg?resize=150,84 150w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/1058100460.jpg?resize=256,144 256w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/1058100460.jpg?resize=100,56 100w" sizes="(max-width: 256px) 100vw, 256px"/> </a> <div class="story-txt"> <p>Group meets every Wednesday morning – rain or shine! Blood pressure testing will be available monthly. Cost is $2 for Silver Threads members and $5 for non-members. Call 250 388-4268 for more information and to book a space. Category: Community | Recreation</p> </div> </article> <article class="story story-float-img" data-post_id="8599444" aria-label="unladylike co. presents: bad eggs (Mar 16 - Mar 27 | 5:00 PM - 11:45 PM)"> <div class="meta-bar"> <div class="meta-bar-cat"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/bc/events/type/theater/"> Theater </a> </div> <button class="meta-share-expand"> <img src="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/_img/plus.png" alt="Hover to see article share options" width="17" height="17"> </button> <div class="socialShare meta-share-list" data-socialshare="facebook,twitter,google" data-socialshare-count="false" data-socialshare-collapsable="false" data-socialshare-url="https://globalnews.ca/event/8599444/unladylike-co-presents-bad-eggs/" data-socialshare-title="unladylike co. presents: bad eggs"></div> </div> <div class="story-h"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/event/8599444/unladylike-co-presents-bad-eggs/">unladylike co. presents: bad eggs</a> </div> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/event/8599444/unladylike-co-presents-bad-eggs/" class="story-img-link"> <span class="sr-only">Click to open unladylike co. presents: bad eggs</span> <span class="icon-media" aria-label="Event duration"> Mar 16 - Mar 27 </span> <img width="256" height="144" src="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/bad-eggs_Facebook-Event-Banner.jpg?quality=85&strip=all&w=256&h=144&crop=1" class="story-img landscape wp-post-image" alt="" loading="lazy" srcset="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/bad-eggs_Facebook-Event-Banner.jpg?resize=250,141 250w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/bad-eggs_Facebook-Event-Banner.jpg?resize=128,72 128w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/bad-eggs_Facebook-Event-Banner.jpg?resize=150,84 150w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/bad-eggs_Facebook-Event-Banner.jpg?resize=256,144 256w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/bad-eggs_Facebook-Event-Banner.jpg?resize=512,288 512w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/bad-eggs_Facebook-Event-Banner.jpg?resize=1024,576 1024w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/bad-eggs_Facebook-Event-Banner.jpg?resize=100,56 100w" sizes="(max-width: 256px) 100vw, 256px"/> </a> <div class="story-txt"> <p>bad eggs is a film/theatre hybrid written by Jessica Hood. A magically twisted reimagining of the myth of Persephone. ********************************************************************** Persephone and Hades have been trying to have a baby for nearly a year with no luck. Growing anxious, Persephone decides to see the fertility doctor, Eve, who also happens to be her mother. Problem…</p> </div> </article> <article class="story story-float-img" data-post_id="8628178" aria-label="Hey Viola! (Mar 16 - Mar 27 | 7:30 PM - 4:00 PM)"> <div class="meta-bar"> <div class="meta-bar-cat"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/bc/events/type/theater/"> Theater </a> </div> <button class="meta-share-expand"> <img src="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/_img/plus.png" alt="Hover to see article share options" width="17" height="17"> </button> <div class="socialShare meta-share-list" data-socialshare="facebook,twitter,google" data-socialshare-count="false" data-socialshare-collapsable="false" data-socialshare-url="https://globalnews.ca/event/8628178/hey-viola/" data-socialshare-title="Hey Viola!"></div> </div> <div class="story-h"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/event/8628178/hey-viola/">Hey Viola!</a> </div> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/event/8628178/hey-viola/" class="story-img-link"> <span class="sr-only">Click to open Hey Viola!</span> <span class="icon-media" aria-label="Event duration"> Mar 16 - Mar 27 </span> <img width="256" height="144" src="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/Viola-380x530-1.jpg?quality=85&strip=all&w=256&h=144&crop=1" class="story-img landscape wp-post-image" alt="" loading="lazy" srcset="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/Viola-380x530-1.jpg?resize=250,141 250w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/Viola-380x530-1.jpg?resize=128,72 128w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/Viola-380x530-1.jpg?resize=150,84 150w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/Viola-380x530-1.jpg?resize=256,144 256w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/Viola-380x530-1.jpg?resize=380,215 380w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/Viola-380x530-1.jpg?resize=100,56 100w" sizes="(max-width: 256px) 100vw, 256px"/> </a> <div class="story-txt"> <p>The Anvil Theatre is excited to bring back to the stage, Hey Viola!, a musical exploration of Canadian Civil Rights hero, Viola Desmond from March 16 – 27. Set in a cabaret style, this show could not be more relevant in this time of Civil Rights, Black Lives Matter, and Women’s Rights movements. In Hey…</p> </div> </article> <article class="story story-float-img" data-post_id="8659902" aria-label="Bunny (Mar 17 - Mar 27 | 7:30 PM - 8:45 PM)"> <div class="meta-bar"> <div class="meta-bar-cat"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/bc/events/type/theater/"> Theater </a> </div> <button class="meta-share-expand"> <img src="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/_img/plus.png" alt="Hover to see article share options" width="17" height="17"> </button> <div class="socialShare meta-share-list" data-socialshare="facebook,twitter,google" data-socialshare-count="false" data-socialshare-collapsable="false" data-socialshare-url="https://globalnews.ca/event/8659902/bunny/" data-socialshare-title="Bunny"></div> </div> <div class="story-h"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/event/8659902/bunny/">Bunny</a> </div> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/event/8659902/bunny/" class="story-img-link"> <span class="sr-only">Click to open Bunny</span> <span class="icon-media" aria-label="Event duration"> Mar 17 - Mar 27 </span> <img width="256" height="144" src="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/Bunny_0095.jpg?quality=85&strip=all&w=256&h=144&crop=1" class="story-img landscape wp-post-image" alt="" loading="lazy" srcset="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/Bunny_0095.jpg?resize=250,141 250w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/Bunny_0095.jpg?resize=128,72 128w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/Bunny_0095.jpg?resize=150,84 150w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/Bunny_0095.jpg?resize=256,144 256w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/Bunny_0095.jpg?resize=512,288 512w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/Bunny_0095.jpg?resize=1024,576 1024w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/Bunny_0095.jpg?resize=1600,900 1600w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/Bunny_0095.jpg?resize=100,56 100w" sizes="(max-width: 256px) 100vw, 256px"/> </a> <div class="story-txt"> <p>From the newly formed company, The Search Party, that brought you the 6 time Jessie Award-winning play The Father, comes Hannah Moscovitch’s Bunny. Moving from object towards agent, Sorrel discovers the power of her own desire. Armed only with Victorian Literature and an unconventional upbringing, she struggles to find her way. With Bunny, Moscovitch dives…</p> </div> </article> <article class="story story-float-img" data-post_id="8641943" aria-label="Drag at The Improv (Mar 17 - May 12 | 9:00 PM - 11:00 PM)"> <div class="meta-bar"> <div class="meta-bar-cat"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/bc/events/type/other/"> Other </a> </div> <button class="meta-share-expand"> <img src="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/_img/plus.png" alt="Hover to see article share options" width="17" height="17"> </button> <div class="socialShare meta-share-list" data-socialshare="facebook,twitter,google" data-socialshare-count="false" data-socialshare-collapsable="false" data-socialshare-url="https://globalnews.ca/event/8641943/drag-at-the-improv/" data-socialshare-title="Drag at The Improv"></div> </div> <div class="story-h"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/event/8641943/drag-at-the-improv/">Drag at The Improv</a> </div> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/event/8641943/drag-at-the-improv/" class="story-img-link"> <span class="sr-only">Click to open Drag at The Improv</span> <span class="icon-media" aria-label="Event duration"> Mar 17 - May 12 </span> <img width="256" height="144" src="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/drag-at-the-improv-facebook.jpg?quality=85&strip=all&w=256&h=144&crop=1" class="story-img landscape wp-post-image" alt="" loading="lazy" srcset="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/drag-at-the-improv-facebook.jpg?resize=250,141 250w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/drag-at-the-improv-facebook.jpg?resize=128,72 128w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/drag-at-the-improv-facebook.jpg?resize=150,84 150w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/drag-at-the-improv-facebook.jpg?resize=256,144 256w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/drag-at-the-improv-facebook.jpg?resize=512,288 512w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/drag-at-the-improv-facebook.jpg?resize=1024,576 1024w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/drag-at-the-improv-facebook.jpg?resize=1600,900 1600w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/drag-at-the-improv-facebook.jpg?resize=2048,1152 2048w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/drag-at-the-improv-facebook.jpg?resize=100,56 100w" sizes="(max-width: 256px) 100vw, 256px"/> </a> <div class="story-txt"> <p>Featuring Vancouver’s premier drag talent together in one place, Drag at The Improv will be a night you won’t want to miss! From a dynamic duo that gives you music video realness and matching choreo, to non binary stardom that puts the ‘excel’ in excellence. With a drag TV star shaping the future of modern…</p> </div> </article> <article class="story story-float-img" data-post_id="8674337" aria-label="Global BC supports BC Society of Transition Houses: “More Than” (Mar 18 - Apr 1 | 12:00 AM)"> <div class="meta-bar"> <div class="meta-bar-cat"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/bc/events/type/virtual/"> Virtual </a> </div> <button class="meta-share-expand"> <img src="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/_img/plus.png" alt="Hover to see article share options" width="17" height="17"> </button> <div class="socialShare meta-share-list" data-socialshare="facebook,twitter,google" data-socialshare-count="false" data-socialshare-collapsable="false" data-socialshare-url="https://globalnews.ca/event/8674337/global-bc-supports-bc-society-of-transition-houses-more-than/" data-socialshare-title="Global BC supports BC Society of Transition Houses: “More Than”"></div> </div> <div class="story-h"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/event/8674337/global-bc-supports-bc-society-of-transition-houses-more-than/">Global BC supports BC Society of Transition Houses: “More Than”</a> </div> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/event/8674337/global-bc-supports-bc-society-of-transition-houses-more-than/" class="story-img-link"> <span class="sr-only">Click to open Global BC supports BC Society of Transition Houses: “More Than”</span> <span class="icon-media" aria-label="Event duration"> Mar 18 - Apr 1 </span> <img width="256" height="144" src="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/BCSTHlogo1024x790.jpg?quality=85&strip=all&w=256&h=144&crop=1" class="story-img landscape wp-post-image" alt="" loading="lazy" srcset="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/BCSTHlogo1024x790.jpg?resize=250,141 250w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/BCSTHlogo1024x790.jpg?resize=128,72 128w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/BCSTHlogo1024x790.jpg?resize=150,84 150w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/BCSTHlogo1024x790.jpg?resize=256,144 256w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/BCSTHlogo1024x790.jpg?resize=512,288 512w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/BCSTHlogo1024x790.jpg?resize=1024,576 1024w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/BCSTHlogo1024x790.jpg?resize=100,56 100w" sizes="(max-width: 256px) 100vw, 256px"/> </a> <div class="story-txt"> <p>There are many measures a woman takes to get home safely. But for 2 in 5 women in Canada, even home hasn’t always felt safe. If you or someone you know is experiencing domestic violence, find support through the BC Society of Transition Houses. Global BC supports BC Society of Transition Houses. Visit BCSTH.ca/gethelp or…</p> </div> </article> <article class="story story-float-img" data-post_id="8641820" aria-label="Men Express Their Feelings (Mar 18 - Apr 3 | 7:30 PM - 5:00 PM)"> <div class="meta-bar"> <div class="meta-bar-cat"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/bc/events/type/theater/"> Theater </a> </div> <button class="meta-share-expand"> <img src="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/_img/plus.png" alt="Hover to see article share options" width="17" height="17"> </button> <div class="socialShare meta-share-list" data-socialshare="facebook,twitter,google" data-socialshare-count="false" data-socialshare-collapsable="false" data-socialshare-url="https://globalnews.ca/event/8641820/men-express-their-feelings/" data-socialshare-title="Men Express Their Feelings"></div> </div> <div class="story-h"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/event/8641820/men-express-their-feelings/">Men Express Their Feelings</a> </div> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/event/8641820/men-express-their-feelings/" class="story-img-link"> <span class="sr-only">Click to open Men Express Their Feelings</span> <span class="icon-media" aria-label="Event duration"> Mar 18 - Apr 3 </span> <img width="256" height="144" src="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/ZeeZeeMenFeelings-82-Edit4copy3-nopink-1.jpg?quality=85&strip=all&w=256&h=144&crop=1" class="story-img landscape wp-post-image" alt="" loading="lazy" srcset="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/ZeeZeeMenFeelings-82-Edit4copy3-nopink-1.jpg?resize=250,141 250w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/ZeeZeeMenFeelings-82-Edit4copy3-nopink-1.jpg?resize=128,72 128w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/ZeeZeeMenFeelings-82-Edit4copy3-nopink-1.jpg?resize=150,84 150w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/ZeeZeeMenFeelings-82-Edit4copy3-nopink-1.jpg?resize=256,144 256w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/ZeeZeeMenFeelings-82-Edit4copy3-nopink-1.jpg?resize=512,288 512w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/ZeeZeeMenFeelings-82-Edit4copy3-nopink-1.jpg?resize=1024,576 1024w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/ZeeZeeMenFeelings-82-Edit4copy3-nopink-1.jpg?resize=1600,900 1600w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/ZeeZeeMenFeelings-82-Edit4copy3-nopink-1.jpg?resize=100,56 100w" sizes="(max-width: 256px) 100vw, 256px"/> </a> <div class="story-txt"> <p>Zee Zee Theatre presents the Vancouver premiere of Men Express Their Feelings from March 18 to April 3, 2022 at 7:30pm (Tuesdays to Saturdays) and 3pm (Saturdays & Sundays, except March 19) at Firehall Arts Centre (280 E Cordova St). Set in the locker room of a community hockey rink, two teen hockey players and…</p> </div> </article> <article class="story story-float-img" data-post_id="8631765" aria-label="JULIE after Strindberg, by Polly Stenham (North American Premiere) (Mar 18 - Mar 26 | 8:00 PM - 9:15 PM)"> <div class="meta-bar"> <div class="meta-bar-cat"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/bc/events/type/theater/"> Theater </a> </div> <button class="meta-share-expand"> <img src="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/_img/plus.png" alt="Hover to see article share options" width="17" height="17"> </button> <div class="socialShare meta-share-list" data-socialshare="facebook,twitter,google" data-socialshare-count="false" data-socialshare-collapsable="false" data-socialshare-url="https://globalnews.ca/event/8631765/julie-after-strindberg-by-polly-stenham-north-american-premiere/" data-socialshare-title="JULIE after Strindberg, by Polly Stenham (North American Premiere)"></div> </div> <div class="story-h"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/event/8631765/julie-after-strindberg-by-polly-stenham-north-american-premiere/">JULIE after Strindberg, by Polly Stenham (North American Premiere)</a> </div> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/event/8631765/julie-after-strindberg-by-polly-stenham-north-american-premiere/" class="story-img-link"> <span class="sr-only">Click to open JULIE after Strindberg, by Polly Stenham (North American Premiere)</span> <span class="icon-media" aria-label="Event duration"> Mar 18 - Mar 26 </span> <img width="256" height="144" src="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/Julie-Poster-no-writing.jpg?quality=85&strip=all&w=256&h=144&crop=1" class="story-img landscape wp-post-image" alt="" loading="lazy" srcset="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/Julie-Poster-no-writing.jpg?resize=250,141 250w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/Julie-Poster-no-writing.jpg?resize=128,72 128w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/Julie-Poster-no-writing.jpg?resize=150,84 150w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/Julie-Poster-no-writing.jpg?resize=256,144 256w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/Julie-Poster-no-writing.jpg?resize=512,288 512w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/Julie-Poster-no-writing.jpg?resize=1024,576 1024w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/Julie-Poster-no-writing.jpg?resize=1600,900 1600w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/Julie-Poster-no-writing.jpg?resize=2048,1152 2048w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/Julie-Poster-no-writing.jpg?resize=100,56 100w" sizes="(max-width: 256px) 100vw, 256px"/> </a> <div class="story-txt"> <p>alma matters productions and Untold Wants Theatre bring you the North American premiere of JULIE. Julie is the daughter of a wealthy businessman. She finds herself back in her father’s house after breaking up with her long-term boyfriend. Deciding to throw herself a birthday party, the house staff, Jean and Kristina have to stay late…</p> </div> </article> <article class="story story-float-img" data-post_id="8675383" aria-label="Growing Flowers and Fruits in Your Garden (VanDusen’s online series – March 19 and 26) (Mar 19 - Mar 26 | 1:00 PM - 3:00 PM)"> <div class="meta-bar"> <div class="meta-bar-cat"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/bc/events/type/virtual/"> Virtual </a> </div> <button class="meta-share-expand"> <img src="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/_img/plus.png" alt="Hover to see article share options" width="17" height="17"> </button> <div class="socialShare meta-share-list" data-socialshare="facebook,twitter,google" data-socialshare-count="false" data-socialshare-collapsable="false" data-socialshare-url="https://globalnews.ca/event/8675383/growing-flowers-and-fruits-in-your-garden-vandusens-online-series-march-19-and-26/" data-socialshare-title="Growing Flowers and Fruits in Your Garden (VanDusen’s online series – March 19 and 26)"></div> </div> <div class="story-h"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/event/8675383/growing-flowers-and-fruits-in-your-garden-vandusens-online-series-march-19-and-26/">Growing Flowers and Fruits in Your Garden (VanDusen’s online series – March 19 and 26)</a> </div> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/event/8675383/growing-flowers-and-fruits-in-your-garden-vandusens-online-series-march-19-and-26/" class="story-img-link"> <span class="sr-only">Click to open Growing Flowers and Fruits in Your Garden (VanDusen’s online series – March 19 and 26)</span> <span class="icon-media" aria-label="Event duration"> Mar 19 - Mar 26 </span> <img width="256" height="144" src="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/1020978460.jpg?quality=85&strip=all&w=256&h=144&crop=1" class="story-img landscape wp-post-image" alt="" loading="lazy" srcset="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/1020978460.jpg?resize=250,141 250w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/1020978460.jpg?resize=128,72 128w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/1020978460.jpg?resize=150,84 150w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/1020978460.jpg?resize=256,144 256w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/1020978460.jpg?resize=100,56 100w" sizes="(max-width: 256px) 100vw, 256px"/> </a> <div class="story-txt"> <p>Join Jennifer Lipka, MSc Student at the Faculty of Land and Food Systems of UBC, who has years of practical experience and will present this series suitable for beginner gardeners focused on specific and general information on perennial flowers and fruit plants. Part 1 (March 19, 1 pm – 3 pm) – Focus on flowers:…</p> </div> </article> <article class="story story-float-img" data-post_id="8653071" aria-label="U18 Tier 1 Provincials Championship (Mar 20 - Mar 23 | 10:00 AM - 10:00 PM)"> <div class="meta-bar"> <div class="meta-bar-cat"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/bc/events/type/sports/"> Sports </a> </div> <button class="meta-share-expand"> <img src="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/_img/plus.png" alt="Hover to see article share options" width="17" height="17"> </button> <div class="socialShare meta-share-list" data-socialshare="facebook,twitter,google" data-socialshare-count="false" data-socialshare-collapsable="false" data-socialshare-url="https://globalnews.ca/event/8653071/u18-tier-1-provincials-championship/" data-socialshare-title="U18 Tier 1 Provincials Championship"></div> </div> <div class="story-h"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/event/8653071/u18-tier-1-provincials-championship/">U18 Tier 1 Provincials Championship</a> </div> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/event/8653071/u18-tier-1-provincials-championship/" class="story-img-link"> <span class="sr-only">Click to open U18 Tier 1 Provincials Championship</span> <span class="icon-media" aria-label="Event duration"> Mar 20 - Mar 23 </span> <img width="256" height="144" src="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/u18-Tier-1-900x600-1.jpg?quality=85&strip=all&w=256&h=144&crop=1" class="story-img landscape wp-post-image" alt="" loading="lazy" srcset="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/u18-Tier-1-900x600-1.jpg?resize=250,141 250w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/u18-Tier-1-900x600-1.jpg?resize=128,72 128w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/u18-Tier-1-900x600-1.jpg?resize=150,84 150w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/u18-Tier-1-900x600-1.jpg?resize=256,144 256w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/u18-Tier-1-900x600-1.jpg?resize=512,288 512w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/u18-Tier-1-900x600-1.jpg?resize=100,56 100w" sizes="(max-width: 256px) 100vw, 256px"/> </a> <div class="story-txt"> <p>Cloverdale Minor Hockey Association will be hosting the BC Hockey U18 Tier 1 Provincial Championship Tournament March 20-23 at the Surrey Sport & Leisure Complex in Surrey. It will involve 8 teams of approximately 200 players, aged 15 to 18 years old. This will be a high-profile event, as the highest-level BC Hockey Championships within…</p> </div> </article> <article class="story story-float-img" data-post_id="8640469" aria-label="Canada’s Environmental Superhero: the Beaver! – Wildlife Weeks with the Ecology Centre (Mar 22 | 10:30 AM - 11:30 AM)"> <div class="meta-bar"> <div class="meta-bar-cat"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/bc/events/type/virtual/"> Virtual </a> </div> <button class="meta-share-expand"> <img src="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/_img/plus.png" alt="Hover to see article share options" width="17" height="17"> </button> <div class="socialShare meta-share-list" data-socialshare="facebook,twitter,google" data-socialshare-count="false" data-socialshare-collapsable="false" data-socialshare-url="https://globalnews.ca/event/8640469/canadas-environmental-superhero-the-beaver-wildlife-weeks-with-the-ecology-centre/" data-socialshare-title="Canada’s Environmental Superhero: the Beaver! – Wildlife Weeks with the Ecology Centre"></div> </div> <div class="story-h"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/event/8640469/canadas-environmental-superhero-the-beaver-wildlife-weeks-with-the-ecology-centre/">Canada’s Environmental Superhero: the Beaver! – Wildlife Weeks with the Ecology Centre</a> </div> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/event/8640469/canadas-environmental-superhero-the-beaver-wildlife-weeks-with-the-ecology-centre/" class="story-img-link"> <span class="sr-only">Click to open Canada’s Environmental Superhero: the Beaver! – Wildlife Weeks with the Ecology Centre</span> <span class="icon-media" aria-label="Event duration"> Mar 22 </span> <img width="256" height="144" src="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/Beaver2-WW-2022-IG.jpg?quality=85&strip=all&w=256&h=144&crop=1" class="story-img landscape wp-post-image" alt="" loading="lazy" srcset="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/Beaver2-WW-2022-IG.jpg?resize=250,141 250w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/Beaver2-WW-2022-IG.jpg?resize=128,72 128w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/Beaver2-WW-2022-IG.jpg?resize=150,84 150w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/Beaver2-WW-2022-IG.jpg?resize=256,144 256w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/Beaver2-WW-2022-IG.jpg?resize=512,288 512w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/Beaver2-WW-2022-IG.jpg?resize=1024,576 1024w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/Beaver2-WW-2022-IG.jpg?resize=100,56 100w" sizes="(max-width: 256px) 100vw, 256px"/> </a> <div class="story-txt"> <p>Much more than a furry face, beavers can increase biodiversity, improve water quality, minimize flood risk, AND fight forest fires! Join The Fur-Bearers to learn how humans can help recognize the beaver’s superhero status. Wildlife Weeks – Spring Break 2022: Join the Ecology Centre and our guest presenters to learn more about the wild world…</p> </div> </article> <article class="story story-float-img" data-post_id="8685164" aria-label="Koerner Piano Trio – Wednesday March 21, 2022 at 1:00PPM (Mar 23 | 1:00 PM - 2:00 PM)"> <div class="meta-bar"> <div class="meta-bar-cat"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/bc/events/type/music/"> Music </a> </div> <button class="meta-share-expand"> <img src="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/_img/plus.png" alt="Hover to see article share options" width="17" height="17"> </button> <div class="socialShare meta-share-list" data-socialshare="facebook,twitter,google" data-socialshare-count="false" data-socialshare-collapsable="false" data-socialshare-url="https://globalnews.ca/event/8685164/koerner-piano-trio-wednesday-march-21-2022-at-100ppm/" data-socialshare-title="Koerner Piano Trio – Wednesday March 21, 2022 at 1:00PPM"></div> </div> <div class="story-h"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/event/8685164/koerner-piano-trio-wednesday-march-21-2022-at-100ppm/">Koerner Piano Trio – Wednesday March 21, 2022 at 1:00PPM</a> </div> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/event/8685164/koerner-piano-trio-wednesday-march-21-2022-at-100ppm/" class="story-img-link"> <span class="sr-only">Click to open Koerner Piano Trio – Wednesday March 21, 2022 at 1:00PPM</span> <span class="icon-media" aria-label="Event duration"> Mar 23 </span> <img width="256" height="144" src="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/Koerner-Piano-Trio-Poster.jpg?quality=85&strip=all&w=256&h=144&crop=1" class="story-img landscape wp-post-image" alt="" loading="lazy" srcset="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/Koerner-Piano-Trio-Poster.jpg?resize=250,141 250w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/Koerner-Piano-Trio-Poster.jpg?resize=128,72 128w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/Koerner-Piano-Trio-Poster.jpg?resize=150,84 150w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/Koerner-Piano-Trio-Poster.jpg?resize=256,144 256w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/Koerner-Piano-Trio-Poster.jpg?resize=512,288 512w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/Koerner-Piano-Trio-Poster.jpg?resize=1024,576 1024w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/Koerner-Piano-Trio-Poster.jpg?resize=100,56 100w" sizes="(max-width: 256px) 100vw, 256px"/> </a> <div class="story-txt"> <p>The Vancouver Chamber Music Society brings the well received Koerner Piano Trio to North Vancouver residents on Wednesday afternoon, March 23, 2022. The Vancouver Academy of Music’s ensemble in residence makes returns after being the only live performance that took the VCMS stage in the 2020-21 season in New Westminster. The concert will open with…</p> </div> </article> <article class="story story-float-img" data-post_id="8690478" aria-label="Researching the History of the Building Online (Mar 23 | 7:00 PM - 8:00 PM)"> <div class="meta-bar"> <div class="meta-bar-cat"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/bc/events/type/virtual/"> Virtual </a> </div> <button class="meta-share-expand"> <img src="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/_img/plus.png" alt="Hover to see article share options" width="17" height="17"> </button> <div class="socialShare meta-share-list" data-socialshare="facebook,twitter,google" data-socialshare-count="false" data-socialshare-collapsable="false" data-socialshare-url="https://globalnews.ca/event/8690478/researching-the-history-of-the-building-online/" data-socialshare-title="Researching the History of the Building Online"></div> </div> <div class="story-h"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/event/8690478/researching-the-history-of-the-building-online/">Researching the History of the Building Online</a> </div> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/event/8690478/researching-the-history-of-the-building-online/" class="story-img-link"> <span class="sr-only">Click to open Researching the History of the Building Online</span> <span class="icon-media" aria-label="Event duration"> Mar 23 </span> <img width="256" height="144" src="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/Heritage-Hall-Front-July-25th-smaller.jpg?quality=85&strip=all&w=256&h=144&crop=1" class="story-img landscape wp-post-image" alt="" loading="lazy" srcset="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/Heritage-Hall-Front-July-25th-smaller.jpg?resize=250,141 250w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/Heritage-Hall-Front-July-25th-smaller.jpg?resize=128,72 128w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/Heritage-Hall-Front-July-25th-smaller.jpg?resize=150,84 150w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/Heritage-Hall-Front-July-25th-smaller.jpg?resize=256,144 256w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/Heritage-Hall-Front-July-25th-smaller.jpg?resize=512,288 512w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/Heritage-Hall-Front-July-25th-smaller.jpg?resize=100,56 100w" sizes="(max-width: 256px) 100vw, 256px"/> </a> <div class="story-txt"> <p>Whether you are researching the history of a house, have noticed an interesting building in the city or you want to learn more about the history of a neighbourhood, it can be tricky to know where to start. Join us for this one-hour learning session where we will use a case study to illustrate important…</p> </div> </article> <article class="story story-float-img" data-post_id="8688710" aria-label="BOW’T TRAIL Retrospek (Mar 23 - Mar 26 | 7:30 PM - 8:45 PM)"> <div class="meta-bar"> <div class="meta-bar-cat"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/bc/events/type/other/"> Other </a> </div> <button class="meta-share-expand"> <img src="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/_img/plus.png" alt="Hover to see article share options" width="17" height="17"> </button> <div class="socialShare meta-share-list" data-socialshare="facebook,twitter,google" data-socialshare-count="false" data-socialshare-collapsable="false" data-socialshare-url="https://globalnews.ca/event/8688710/bowt-trail-retrospek/" data-socialshare-title="BOW’T TRAIL Retrospek"></div> </div> <div class="story-h"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/event/8688710/bowt-trail-retrospek/">BOW’T TRAIL Retrospek</a> </div> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/event/8688710/bowt-trail-retrospek/" class="story-img-link"> <span class="sr-only">Click to open BOW’T TRAIL Retrospek</span> <span class="icon-media" aria-label="Event duration"> Mar 23 - Mar 26 </span> <img width="256" height="144" src="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/web1.jpg?quality=85&strip=all&w=256&h=144&crop=1" class="story-img landscape wp-post-image" alt="" loading="lazy" srcset="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/web1.jpg?resize=250,141 250w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/web1.jpg?resize=128,72 128w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/web1.jpg?resize=150,84 150w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/web1.jpg?resize=256,144 256w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/web1.jpg?resize=512,288 512w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/web1.jpg?resize=1024,576 1024w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/web1.jpg?resize=1600,900 1600w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/web1.jpg?resize=100,56 100w" sizes="(max-width: 256px) 100vw, 256px"/> </a> <div class="story-txt"> <p>BOW’T TRAIL Retrospek is a conversation between the present and the past, voiced through the channelling body of Rhodnie Désir, where more than 130 testimonies collected on 7 lands of the Americas still reside. The choreographer, driven by a desire and a need to transcend her origins, has immersed herself in the African cultures and…</p> </div> </article> <article class="story story-float-img" data-post_id="8640483" aria-label="Rattlesnakes in BC – Wildlife Weeks with the Ecology Centre (Mar 24 | 10:30 AM - 11:30 AM)"> <div class="meta-bar"> <div class="meta-bar-cat"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/bc/events/type/virtual/"> Virtual </a> </div> <button class="meta-share-expand"> <img src="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/_img/plus.png" alt="Hover to see article share options" width="17" height="17"> </button> <div class="socialShare meta-share-list" data-socialshare="facebook,twitter,google" data-socialshare-count="false" data-socialshare-collapsable="false" data-socialshare-url="https://globalnews.ca/event/8640483/rattlesnakes-in-bc-wildlife-weeks-with-the-ecology-centre/" data-socialshare-title="Rattlesnakes in BC – Wildlife Weeks with the Ecology Centre"></div> </div> <div class="story-h"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/event/8640483/rattlesnakes-in-bc-wildlife-weeks-with-the-ecology-centre/">Rattlesnakes in BC – Wildlife Weeks with the Ecology Centre</a> </div> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/event/8640483/rattlesnakes-in-bc-wildlife-weeks-with-the-ecology-centre/" class="story-img-link"> <span class="sr-only">Click to open Rattlesnakes in BC – Wildlife Weeks with the Ecology Centre</span> <span class="icon-media" aria-label="Event duration"> Mar 24 </span> <img width="256" height="144" src="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/Snakes-WW-2022-IG.jpg?quality=85&strip=all&w=256&h=144&crop=1" class="story-img landscape wp-post-image" alt="" loading="lazy" srcset="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/Snakes-WW-2022-IG.jpg?resize=250,141 250w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/Snakes-WW-2022-IG.jpg?resize=128,72 128w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/Snakes-WW-2022-IG.jpg?resize=150,84 150w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/Snakes-WW-2022-IG.jpg?resize=256,144 256w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/Snakes-WW-2022-IG.jpg?resize=512,288 512w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/Snakes-WW-2022-IG.jpg?resize=1024,576 1024w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/Snakes-WW-2022-IG.jpg?resize=100,56 100w" sizes="(max-width: 256px) 100vw, 256px"/> </a> <div class="story-txt"> <p>Join biologist Dana Eye to learn about the threats that Western Rattlesnakes face in British Columbia and what she is doing to protect them. Discover what a day in the field looks like for a snake biologist and learn what you can do to help! Wildlife Weeks – Spring Break 2022: Join the Ecology Centre…</p> </div> </article> <article class="story story-float-img" data-post_id="8619667" aria-label="Discover Dance! All Bodies Dance Project (Mar 24 | 12:00 PM - 1:00 PM)"> <div class="meta-bar"> <div class="meta-bar-cat"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/bc/events/type/other/"> Other </a> </div> <button class="meta-share-expand"> <img src="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/_img/plus.png" alt="Hover to see article share options" width="17" height="17"> </button> <div class="socialShare meta-share-list" data-socialshare="facebook,twitter,google" data-socialshare-count="false" data-socialshare-collapsable="false" data-socialshare-url="https://globalnews.ca/event/8619667/discover-dance-all-bodies-dance-project/" data-socialshare-title="Discover Dance! All Bodies Dance Project"></div> </div> <div class="story-h"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/event/8619667/discover-dance-all-bodies-dance-project/">Discover Dance! All Bodies Dance Project</a> </div> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/event/8619667/discover-dance-all-bodies-dance-project/" class="story-img-link"> <span class="sr-only">Click to open Discover Dance! All Bodies Dance Project</span> <span class="icon-media" aria-label="Event duration"> Mar 24 </span> <img width="256" height="144" src="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/DD-202122-All-Bodies-Dance-photo-by-Erik-Zennstrom.jpg?quality=85&strip=all&w=256&h=144&crop=1" class="story-img landscape wp-post-image" alt="" loading="lazy" srcset="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/DD-202122-All-Bodies-Dance-photo-by-Erik-Zennstrom.jpg?resize=250,141 250w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/DD-202122-All-Bodies-Dance-photo-by-Erik-Zennstrom.jpg?resize=128,72 128w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/DD-202122-All-Bodies-Dance-photo-by-Erik-Zennstrom.jpg?resize=150,84 150w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/DD-202122-All-Bodies-Dance-photo-by-Erik-Zennstrom.jpg?resize=256,144 256w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/DD-202122-All-Bodies-Dance-photo-by-Erik-Zennstrom.jpg?resize=512,288 512w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/DD-202122-All-Bodies-Dance-photo-by-Erik-Zennstrom.jpg?resize=100,56 100w" sizes="(max-width: 256px) 100vw, 256px"/> </a> <div class="story-txt"> <p>All Bodies Dance Project brings together artists with and without disabilities to explore the endless creative potential of difference, in a program of beautiful, moving and surprising contemporary dance. Presented as part of The Dance Centre’s Discover Dance! series.</p> </div> </article> <article class="story story-float-img" data-post_id="8630145" aria-label="Hans Verhoeven presents a night of jazz (Mar 24 | 7:00 PM - 9:00 PM)"> <div class="meta-bar"> <div class="meta-bar-cat"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/bc/events/type/music/"> Music </a> </div> <button class="meta-share-expand"> <img src="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/_img/plus.png" alt="Hover to see article share options" width="17" height="17"> </button> <div class="socialShare meta-share-list" data-socialshare="facebook,twitter,google" data-socialshare-count="false" data-socialshare-collapsable="false" data-socialshare-url="https://globalnews.ca/event/8630145/hans-verhoeven-presents-a-night-of-jazz/" data-socialshare-title="Hans Verhoeven presents a night of jazz"></div> </div> <div class="story-h"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/event/8630145/hans-verhoeven-presents-a-night-of-jazz/">Hans Verhoeven presents a night of jazz</a> </div> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/event/8630145/hans-verhoeven-presents-a-night-of-jazz/" class="story-img-link"> <span class="sr-only">Click to open Hans Verhoeven presents a night of jazz</span> <span class="icon-media" aria-label="Event duration"> Mar 24 </span> <img width="256" height="144" src="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/Picture-1.jpg?quality=85&strip=all&w=256&h=144&crop=1" class="story-img landscape wp-post-image" alt="" loading="lazy" srcset="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/Picture-1.jpg?resize=250,141 250w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/Picture-1.jpg?resize=128,72 128w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/Picture-1.jpg?resize=150,84 150w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/Picture-1.jpg?resize=256,144 256w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/Picture-1.jpg?resize=100,56 100w" sizes="(max-width: 256px) 100vw, 256px"/> </a> <div class="story-txt"> <p>This show is perfect for a date night or a classy night out on the town. Drummer Hans Verhoeven is excited to lead a wonderful group of artists in a night of world-class jazz. Recognized for his authenticity and joy of play, Hans has accompanied Oscar Stagnaro, Brandi Disterheft, Dave Turner and Hugh Fraser amongst…</p> </div> </article> <article class="story story-float-img" data-post_id="8603208" aria-label="Jazz with Hans Verhoeven: Livestream or In Person (Mar 24 | 7:00 PM - 9:00 PM)"> <div class="meta-bar"> <div class="meta-bar-cat"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/bc/events/type/music/"> Music </a> </div> <button class="meta-share-expand"> <img src="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/_img/plus.png" alt="Hover to see article share options" width="17" height="17"> </button> <div class="socialShare meta-share-list" data-socialshare="facebook,twitter,google" data-socialshare-count="false" data-socialshare-collapsable="false" data-socialshare-url="https://globalnews.ca/event/8603208/jazz-with-hans-verhoeven-livestream-or-in-person/" data-socialshare-title="Jazz with Hans Verhoeven: Livestream or In Person"></div> </div> <div class="story-h"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/event/8603208/jazz-with-hans-verhoeven-livestream-or-in-person/">Jazz with Hans Verhoeven: Livestream or In Person</a> </div> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/event/8603208/jazz-with-hans-verhoeven-livestream-or-in-person/" class="story-img-link"> <span class="sr-only">Click to open Jazz with Hans Verhoeven: Livestream or In Person</span> <span class="icon-media" aria-label="Event duration"> Mar 24 </span> <img width="256" height="144" src="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/hans_verhoeven.jpg?quality=85&strip=all&w=256&h=144&crop=1" class="story-img landscape wp-post-image" alt="" loading="lazy" srcset="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/hans_verhoeven.jpg 1920w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/hans_verhoeven.jpg?resize=150,84 150w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/hans_verhoeven.jpg?resize=300,169 300w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/hans_verhoeven.jpg?resize=768,432 768w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/hans_verhoeven.jpg?resize=1024,576 1024w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/hans_verhoeven.jpg?resize=1536,864 1536w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/hans_verhoeven.jpg?resize=250,141 250w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/hans_verhoeven.jpg?resize=276,155 276w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/hans_verhoeven.jpg?resize=336,189 336w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/hans_verhoeven.jpg?resize=672,378 672w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/hans_verhoeven.jpg?resize=1200,675 1200w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/hans_verhoeven.jpg?resize=1600,900 1600w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/hans_verhoeven.jpg?resize=720,405 720w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/hans_verhoeven.jpg?resize=560,315 560w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/hans_verhoeven.jpg?resize=450,253 450w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/hans_verhoeven.jpg?resize=282,159 282w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/hans_verhoeven.jpg?resize=128,72 128w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/hans_verhoeven.jpg?resize=256,144 256w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/hans_verhoeven.jpg?resize=352,198 352w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/hans_verhoeven.jpg?resize=512,288 512w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/hans_verhoeven.jpg?resize=135,76 135w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/hans_verhoeven.jpg?resize=98,55 98w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/hans_verhoeven.jpg?resize=400,225 400w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/hans_verhoeven.jpg?resize=800,450 800w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/hans_verhoeven.jpg?resize=1120,630 1120w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/hans_verhoeven.jpg?resize=1040,585 1040w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/hans_verhoeven.jpg?resize=480,270 480w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/hans_verhoeven.jpg?resize=320,180 320w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/hans_verhoeven.jpg?resize=100,56 100w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/hans_verhoeven.jpg?resize=57,32 57w" sizes="(max-width: 256px) 100vw, 256px"/> </a> <div class="story-txt"> <p>Drummer Hans Verhoeven is excited to lead this wonderful group of jazz artists performing a repertoire of swinging and soulful jazz music! Recognized for his authenticity and joy of play, Hans has accompanied Oscar Stagnaro, Brandi Disterheft, Dave Turner and Hugh Fraser amongst others. Category: Live Music | Jazz</p> </div> </article> <article class="story story-float-img" data-post_id="8640487" aria-label="Into the Woods – Family Nature Walk (Mar 25 | 1:00 PM - 2:30 PM)"> <div class="meta-bar"> <div class="meta-bar-cat"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/bc/events/type/other/"> Other </a> </div> <button class="meta-share-expand"> <img src="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/_img/plus.png" alt="Hover to see article share options" width="17" height="17"> </button> <div class="socialShare meta-share-list" data-socialshare="facebook,twitter,google" data-socialshare-count="false" data-socialshare-collapsable="false" data-socialshare-url="https://globalnews.ca/event/8640487/into-the-woods-family-nature-walk/" data-socialshare-title="Into the Woods – Family Nature Walk"></div> </div> <div class="story-h"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/event/8640487/into-the-woods-family-nature-walk/">Into the Woods – Family Nature Walk</a> </div> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/event/8640487/into-the-woods-family-nature-walk/" class="story-img-link"> <span class="sr-only">Click to open Into the Woods – Family Nature Walk</span> <span class="icon-media" aria-label="Event duration"> Mar 25 </span> <img width="256" height="144" src="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/Into-the-Woods-WW-2022.jpg?quality=85&strip=all&w=256&h=144&crop=1" class="story-img landscape wp-post-image" alt="" loading="lazy" srcset="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/Into-the-Woods-WW-2022.jpg?resize=250,141 250w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/Into-the-Woods-WW-2022.jpg?resize=128,72 128w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/Into-the-Woods-WW-2022.jpg?resize=150,84 150w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/Into-the-Woods-WW-2022.jpg?resize=256,144 256w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/Into-the-Woods-WW-2022.jpg?resize=512,288 512w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/Into-the-Woods-WW-2022.jpg?resize=1024,576 1024w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/Into-the-Woods-WW-2022.jpg?resize=1600,900 1600w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/Into-the-Woods-WW-2022.jpg?resize=100,56 100w" sizes="(max-width: 256px) 100vw, 256px"/> </a> <div class="story-txt"> <p>Enjoy a guided nature walk over the suspension bridge and around the 30ft pool loop. This program will take place outdoors and in person in Lynn Canyon Park. Masks are recommended. Please stay home if you are sick. Wildlife Weeks – Spring Break 2022: Join the Ecology Centre and our guest presenters to learn more…</p> </div> </article> <article class="story story-float-img" data-post_id="8435326" aria-label="Global BC supports ALEGRIA (Mar 25 - May 1 | 6:00 PM - 11:00 PM)"> <div class="meta-bar"> <div class="meta-bar-cat"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/bc/events/type/theater/"> Theater </a> </div> <button class="meta-share-expand"> <img src="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/_img/plus.png" alt="Hover to see article share options" width="17" height="17"> </button> <div class="socialShare meta-share-list" data-socialshare="facebook,twitter,google" data-socialshare-count="false" data-socialshare-collapsable="false" data-socialshare-url="https://globalnews.ca/event/8435326/global-bc-supports-alegria/" data-socialshare-title="Global BC supports ALEGRIA"></div> </div> <div class="story-h"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/event/8435326/global-bc-supports-alegria/">Global BC supports ALEGRIA</a> </div> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/event/8435326/global-bc-supports-alegria/" class="story-img-link"> <span class="sr-only">Click to open Global BC supports ALEGRIA</span> <span class="icon-media" aria-label="Event duration"> Mar 25 - May 1 </span> <img width="256" height="144" src="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2021/12/Alegria-Logo-1.jpg?quality=85&strip=all&w=256&h=144&crop=1" class="story-img landscape wp-post-image" alt="" loading="lazy" srcset="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2021/12/Alegria-Logo-1.jpg 568w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2021/12/Alegria-Logo-1.jpg?resize=150,84 150w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2021/12/Alegria-Logo-1.jpg?resize=300,168 300w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2021/12/Alegria-Logo-1.jpg?resize=250,140 250w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2021/12/Alegria-Logo-1.jpg?resize=276,155 276w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2021/12/Alegria-Logo-1.jpg?resize=336,188 336w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2021/12/Alegria-Logo-1.jpg?resize=560,314 560w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2021/12/Alegria-Logo-1.jpg?resize=450,252 450w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2021/12/Alegria-Logo-1.jpg?resize=282,158 282w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2021/12/Alegria-Logo-1.jpg?resize=128,72 128w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2021/12/Alegria-Logo-1.jpg?resize=256,143 256w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2021/12/Alegria-Logo-1.jpg?resize=352,198 352w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2021/12/Alegria-Logo-1.jpg?resize=512,287 512w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2021/12/Alegria-Logo-1.jpg?resize=136,76 136w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2021/12/Alegria-Logo-1.jpg?resize=98,55 98w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2021/12/Alegria-Logo-1.jpg?resize=400,224 400w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2021/12/Alegria-Logo-1.jpg?resize=480,269 480w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2021/12/Alegria-Logo-1.jpg?resize=320,179 320w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2021/12/Alegria-Logo-1.jpg?resize=100,56 100w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2021/12/Alegria-Logo-1.jpg?resize=57,32 57w" sizes="(max-width: 256px) 100vw, 256px"/> </a> <div class="story-txt"> <p>March 25 to May 1, 2022 I Concord Pacific Place</p> </div> </article> <article class="story story-float-img" data-post_id="8653653" aria-label="The Comic Strippers (Mar 25 | 8:00 PM - 10:00 PM)"> <div class="meta-bar"> <div class="meta-bar-cat"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/bc/events/type/comedy/"> Comedy </a> </div> <button class="meta-share-expand"> <img src="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/_img/plus.png" alt="Hover to see article share options" width="17" height="17"> </button> <div class="socialShare meta-share-list" data-socialshare="facebook,twitter,google" data-socialshare-count="false" data-socialshare-collapsable="false" data-socialshare-url="https://globalnews.ca/event/8653653/the-comic-strippers-3/" data-socialshare-title="The Comic Strippers"></div> </div> <div class="story-h"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/event/8653653/the-comic-strippers-3/">The Comic Strippers</a> </div> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/event/8653653/the-comic-strippers-3/" class="story-img-link"> <span class="sr-only">Click to open The Comic Strippers</span> <span class="icon-media" aria-label="Event duration"> Mar 25 </span> <img width="256" height="144" src="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/Comic.jpeg?quality=85&strip=all&w=256&h=144&crop=1" class="story-img landscape wp-post-image" alt="" loading="lazy" srcset="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/Comic.jpeg?resize=250,141 250w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/Comic.jpeg?resize=128,72 128w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/Comic.jpeg?resize=150,84 150w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/Comic.jpeg?resize=256,144 256w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/Comic.jpeg?resize=512,288 512w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/Comic.jpeg?resize=100,56 100w" sizes="(max-width: 256px) 100vw, 256px"/> </a> <div class="story-txt"> <p>A fictitious male stripper troupe (played by a cast of some of Canada’s best improvisational comedians) performs a sexylarious improv comedy show. They try to be sexy… it just comes out funny. Constantly grooving and gyrating in between scenes they banter with the crowd and perform their hilarious twist on improv sketches. They sing, they…</p> </div> </article> <article class="story story-float-img" data-post_id="8540135" aria-label="Building Your Garden Soil – Virtual Garden Workshop (Mar 26 | 10:00 AM - 10:45 AM)"> <div class="meta-bar"> <div class="meta-bar-cat"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/bc/events/type/virtual/"> Virtual </a> </div> <button class="meta-share-expand"> <img src="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/_img/plus.png" alt="Hover to see article share options" width="17" height="17"> </button> <div class="socialShare meta-share-list" data-socialshare="facebook,twitter,google" data-socialshare-count="false" data-socialshare-collapsable="false" data-socialshare-url="https://globalnews.ca/event/8540135/building-your-garden-soil-virtual-garden-workshop/" data-socialshare-title="Building Your Garden Soil – Virtual Garden Workshop"></div> </div> <div class="story-h"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/event/8540135/building-your-garden-soil-virtual-garden-workshop/">Building Your Garden Soil – Virtual Garden Workshop</a> </div> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/event/8540135/building-your-garden-soil-virtual-garden-workshop/" class="story-img-link"> <span class="sr-only">Click to open Building Your Garden Soil – Virtual Garden Workshop</span> <span class="icon-media" aria-label="Event duration"> Mar 26 </span> <img width="256" height="144" src="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/01/image-gardening-workshop-2.jpg?quality=85&strip=all&w=256&h=144&crop=1" class="story-img landscape wp-post-image" alt="" loading="lazy" srcset="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/01/image-gardening-workshop-2.jpg?resize=250,141 250w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/01/image-gardening-workshop-2.jpg?resize=128,72 128w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/01/image-gardening-workshop-2.jpg?resize=150,84 150w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/01/image-gardening-workshop-2.jpg?resize=256,144 256w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/01/image-gardening-workshop-2.jpg?resize=100,56 100w" sizes="(max-width: 256px) 100vw, 256px"/> </a> <div class="story-txt"> <p>Building Your Garden Soil – Virtual Garden Workshop Saturday, March 26 from 10:00 to 10:45 am Register Here: <a href="https://web.archive.org/web/20220322044914/https://www.eventbrite.ca/e/252399964087" rel="nofollow">https://www.eventbrite.ca/e/252399964087</a> Learn how you can build your garden soil this spring and throughout the rest of the year. Work on your garden soil, and you’ll have the ideal foundation for healthy fruits and vegetables. The gardeners from…</p> </div> </article> <article class="story story-float-img" data-post_id="8622520" aria-label="Global BC sponsors ESEBC Purple Day Walk for Epilepsy Awareness (Mar 26 | 11:00 AM - 2:00 PM)"> <div class="meta-bar"> <div class="meta-bar-cat"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/bc/events/type/other/"> Other </a> </div> <button class="meta-share-expand"> <img src="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/_img/plus.png" alt="Hover to see article share options" width="17" height="17"> </button> <div class="socialShare meta-share-list" data-socialshare="facebook,twitter,google" data-socialshare-count="false" data-socialshare-collapsable="false" data-socialshare-url="https://globalnews.ca/event/8622520/global-bc-sponsors-esebc-purple-day-walk-for-epilepsy-awareness/" data-socialshare-title="Global BC sponsors ESEBC Purple Day Walk for Epilepsy Awareness"></div> </div> <div class="story-h"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/event/8622520/global-bc-sponsors-esebc-purple-day-walk-for-epilepsy-awareness/">Global BC sponsors ESEBC Purple Day Walk for Epilepsy Awareness</a> </div> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/event/8622520/global-bc-sponsors-esebc-purple-day-walk-for-epilepsy-awareness/" class="story-img-link"> <span class="sr-only">Click to open Global BC sponsors ESEBC Purple Day Walk for Epilepsy Awareness</span> <span class="icon-media" aria-label="Event duration"> Mar 26 </span> <img width="256" height="144" src="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/Purple-Day-2022-Poster-Final.png?w=256&h=144&crop=1" class="story-img landscape wp-post-image" alt="" loading="lazy" srcset="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/Purple-Day-2022-Poster-Final.png?resize=250,141 250w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/Purple-Day-2022-Poster-Final.png?resize=128,72 128w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/Purple-Day-2022-Poster-Final.png?resize=150,84 150w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/Purple-Day-2022-Poster-Final.png?resize=256,144 256w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/Purple-Day-2022-Poster-Final.png?resize=512,288 512w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/Purple-Day-2022-Poster-Final.png?resize=1024,576 1024w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/Purple-Day-2022-Poster-Final.png?resize=1600,900 1600w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/Purple-Day-2022-Poster-Final.png?resize=100,56 100w" sizes="(max-width: 256px) 100vw, 256px"/> </a> <div class="story-txt"> <p>Saturday, March 26 | 11am | Mill Lake, Abbotsford</p> </div> </article> <article class="story story-float-img" data-post_id="8680830" aria-label="Eric Elbers (Mar 26 | 3:00 PM - 7:00 PM)"> <div class="meta-bar"> <div class="meta-bar-cat"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/bc/events/type/other/"> Other </a> </div> <button class="meta-share-expand"> <img src="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/_img/plus.png" alt="Hover to see article share options" width="17" height="17"> </button> <div class="socialShare meta-share-list" data-socialshare="facebook,twitter,google" data-socialshare-count="false" data-socialshare-collapsable="false" data-socialshare-url="https://globalnews.ca/event/8680830/eric-elbers/" data-socialshare-title="Eric Elbers"></div> </div> <div class="story-h"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/event/8680830/eric-elbers/">Eric Elbers</a> </div> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/event/8680830/eric-elbers/" class="story-img-link"> <span class="sr-only">Click to open Eric Elbers</span> <span class="icon-media" aria-label="Event duration"> Mar 26 </span> <img width="256" height="144" src="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/1061651460.jpg?quality=85&strip=all&w=256&h=144&crop=1" class="story-img landscape wp-post-image" alt="" loading="lazy" srcset="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/1061651460.jpg?resize=250,141 250w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/1061651460.jpg?resize=128,72 128w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/1061651460.jpg?resize=150,84 150w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/1061651460.jpg?resize=256,144 256w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/1061651460.jpg?resize=100,56 100w" sizes="(max-width: 256px) 100vw, 256px"/> </a> <div class="story-txt"> <p>Mohanji, a humanitarian and a spiritual inspiration to many, is visiting Victoria for the first time. He will hold a Satsang on ‘Living in Divine Presence’ at the Victoria Hindu Parishad and Cultural Center. Admission is free. Donations are welcome. Category: Community | Religion and Spirituality | Spirituality</p> </div> </article> <article class="story story-float-img" data-post_id="8585182" aria-label="Grease (Mar 26 | 7:00 PM - 9:00 PM)"> <div class="meta-bar"> <div class="meta-bar-cat"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/bc/events/type/theater/"> Theater </a> </div> <button class="meta-share-expand"> <img src="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/_img/plus.png" alt="Hover to see article share options" width="17" height="17"> </button> <div class="socialShare meta-share-list" data-socialshare="facebook,twitter,google" data-socialshare-count="false" data-socialshare-collapsable="false" data-socialshare-url="https://globalnews.ca/event/8585182/grease/" data-socialshare-title="Grease"></div> </div> <div class="story-h"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/event/8585182/grease/">Grease</a> </div> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/event/8585182/grease/" class="story-img-link"> <span class="sr-only">Click to open Grease</span> <span class="icon-media" aria-label="Event duration"> Mar 26 </span> <img width="256" height="144" src="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/1008484.jpg?quality=85&strip=all&w=256&h=144&crop=1" class="story-img landscape wp-post-image" alt="" loading="lazy" srcset="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/1008484.jpg?resize=250,141 250w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/1008484.jpg?resize=128,72 128w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/1008484.jpg?resize=150,84 150w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/1008484.jpg?resize=256,144 256w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/1008484.jpg?resize=512,288 512w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/1008484.jpg?resize=100,56 100w" sizes="(max-width: 256px) 100vw, 256px"/> </a> <div class="story-txt"> <p>Karen Flamenco’s Pink Ladies together with Troy McLaughlin’s tap dancing T-birds will set the Vancouver Playhouse into a 1950’s high school adventure of friendships, romances and gangs. Karen Flamenco dancers will be performing traditional flamenco dances with live flamenco guitar and song to represent the moods and emotion’s of teenage heartbreak and joy. All the…</p> </div> </article> <article class="story story-float-img" data-post_id="8658615" aria-label="The Kelby MacNayr NEW Quintet presents Brand New Sounds! (Mar 26 | 7:00 PM - 9:00 PM)"> <div class="meta-bar"> <div class="meta-bar-cat"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/bc/events/type/music/"> Music </a> </div> <button class="meta-share-expand"> <img src="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/_img/plus.png" alt="Hover to see article share options" width="17" height="17"> </button> <div class="socialShare meta-share-list" data-socialshare="facebook,twitter,google" data-socialshare-count="false" data-socialshare-collapsable="false" data-socialshare-url="https://globalnews.ca/event/8658615/the-kelby-macnayr-new-quintet-presents-brand-new-sounds/" data-socialshare-title="The Kelby MacNayr NEW Quintet presents Brand New Sounds!"></div> </div> <div class="story-h"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/event/8658615/the-kelby-macnayr-new-quintet-presents-brand-new-sounds/">The Kelby MacNayr NEW Quintet presents Brand New Sounds!</a> </div> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/event/8658615/the-kelby-macnayr-new-quintet-presents-brand-new-sounds/" class="story-img-link"> <span class="sr-only">Click to open The Kelby MacNayr NEW Quintet presents Brand New Sounds!</span> <span class="icon-media" aria-label="Event duration"> Mar 26 </span> <img width="256" height="144" src="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/brandnewsounds.jpg?quality=85&strip=all&w=256&h=144&crop=1" class="story-img landscape wp-post-image" alt="" loading="lazy" srcset="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/brandnewsounds.jpg?resize=250,141 250w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/brandnewsounds.jpg?resize=128,72 128w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/brandnewsounds.jpg?resize=150,84 150w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/brandnewsounds.jpg?resize=256,144 256w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/brandnewsounds.jpg?resize=512,288 512w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/brandnewsounds.jpg?resize=100,56 100w" sizes="(max-width: 256px) 100vw, 256px"/> </a> <div class="story-txt"> <p>$20 general/ $18 VJS, Ujam $12 student, low-income Drummer, bandleader Kelby MacNayr composes music that is alive, stunning and pulsating with rhythms and melodies from the jazz world and beyond. Live jazz, without a net! MacNayr will be joined with four of the West Coast’s finest improvisers to create music that is at once brand…</p> </div> </article> <article class="story story-float-img" data-post_id="8466590" aria-label="Harry Manx with the Yaletown String Quartet (Mar 26 | 8:00 PM - 9:30 PM)"> <div class="meta-bar"> <div class="meta-bar-cat"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/bc/events/type/music/"> Music </a> </div> <button class="meta-share-expand"> <img src="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/_img/plus.png" alt="Hover to see article share options" width="17" height="17"> </button> <div class="socialShare meta-share-list" data-socialshare="facebook,twitter,google" data-socialshare-count="false" data-socialshare-collapsable="false" data-socialshare-url="https://globalnews.ca/event/8466590/harry-manx-with-the-yaletown-string-quartet/" data-socialshare-title="Harry Manx with the Yaletown String Quartet"></div> </div> <div class="story-h"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/event/8466590/harry-manx-with-the-yaletown-string-quartet/">Harry Manx with the Yaletown String Quartet</a> </div> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/event/8466590/harry-manx-with-the-yaletown-string-quartet/" class="story-img-link"> <span class="sr-only">Click to open Harry Manx with the Yaletown String Quartet</span> <span class="icon-media" aria-label="Event duration"> Mar 26 </span> <img width="256" height="144" src="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2021/12/Manx.jpg?quality=85&strip=all&w=256&h=144&crop=1" class="story-img landscape wp-post-image" alt="" loading="lazy" srcset="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2021/12/Manx.jpg?resize=250,141 250w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2021/12/Manx.jpg?resize=128,72 128w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2021/12/Manx.jpg?resize=150,84 150w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2021/12/Manx.jpg?resize=256,144 256w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2021/12/Manx.jpg?resize=512,288 512w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2021/12/Manx.jpg?resize=100,56 100w" sizes="(max-width: 256px) 100vw, 256px"/> </a> <div class="story-txt"> <p>Known as the “Mysticssippi Bluesman”, six-time Juno Award nominee Harry Manx marries east and west, classical and blues, and Hindustani and North American sounds in projects built on his signature Indo-blues sound, blending Indian folk melodies with slide guitar blues, gospel and some compelling grooves for music that is hard to resist, easy to digest…</p> </div> </article> <article class="story story-float-img" data-post_id="8630122" aria-label="The Soul Shakers (Mar 26 | 9:00 PM - 11:00 PM)"> <div class="meta-bar"> <div class="meta-bar-cat"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/bc/events/type/music/"> Music </a> </div> <button class="meta-share-expand"> <img src="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/_img/plus.png" alt="Hover to see article share options" width="17" height="17"> </button> <div class="socialShare meta-share-list" data-socialshare="facebook,twitter,google" data-socialshare-count="false" data-socialshare-collapsable="false" data-socialshare-url="https://globalnews.ca/event/8630122/the-soul-shakers/" data-socialshare-title="The Soul Shakers"></div> </div> <div class="story-h"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/event/8630122/the-soul-shakers/">The Soul Shakers</a> </div> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/event/8630122/the-soul-shakers/" class="story-img-link"> <span class="sr-only">Click to open The Soul Shakers</span> <span class="icon-media" aria-label="Event duration"> Mar 26 </span> <img width="256" height="144" src="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/Picture.jpg?quality=85&strip=all&w=256&h=144&crop=1" class="story-img landscape wp-post-image" alt="" loading="lazy" srcset="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/Picture.jpg?resize=250,141 250w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/Picture.jpg?resize=128,72 128w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/Picture.jpg?resize=150,84 150w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/Picture.jpg?resize=256,144 256w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/Picture.jpg?resize=100,56 100w" sizes="(max-width: 256px) 100vw, 256px"/> </a> <div class="story-txt"> <p>The Soul Shakers have entertained Victoria area audiences for more than a decade with their own brand of funky R&B dance music. They combine superb musicianship with five strong vocalists led by lead vocalist Joyce “the voice” Allensen. There is no doubt they are one of the best dance bands on Vancouver Island! Their show…</p> </div> </article> <article class="story story-float-img" data-post_id="8630080" aria-label="Blackstick: Live Jazz (Mar 27 | 1:00 PM - 3:00 PM)"> <div class="meta-bar"> <div class="meta-bar-cat"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/bc/events/type/music/"> Music </a> </div> <button class="meta-share-expand"> <img src="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/_img/plus.png" alt="Hover to see article share options" width="17" height="17"> </button> <div class="socialShare meta-share-list" data-socialshare="facebook,twitter,google" data-socialshare-count="false" data-socialshare-collapsable="false" data-socialshare-url="https://globalnews.ca/event/8630080/blackstick-live-jazz/" data-socialshare-title="Blackstick: Live Jazz"></div> </div> <div class="story-h"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/event/8630080/blackstick-live-jazz/">Blackstick: Live Jazz</a> </div> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/event/8630080/blackstick-live-jazz/" class="story-img-link"> <span class="sr-only">Click to open Blackstick: Live Jazz</span> <span class="icon-media" aria-label="Event duration"> Mar 27 </span> <img width="256" height="144" src="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/1031337460.jpg?quality=85&strip=all&w=256&h=144&crop=1" class="story-img landscape wp-post-image" alt="" loading="lazy" srcset="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/1031337460.jpg?resize=250,141 250w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/1031337460.jpg?resize=128,72 128w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/1031337460.jpg?resize=150,84 150w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/1031337460.jpg?resize=256,144 256w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/02/1031337460.jpg?resize=100,56 100w" sizes="(max-width: 256px) 100vw, 256px"/> </a> <div class="story-txt"> <p>Hermann’s Jazz Club’s BLACKSTICK, presents the Classics from the Golden Age of Jazz – including music from greats such as Louis Armstrong and Sidney Bechet. Featuring Victoria music legends Lloyd Arntzen and Al Pease on Clarinets, with Don Cox on bass, Avarm McCagherty on banjo/vocals, Tom Vickery on piano. Some of these guys have been…</p> </div> </article> <article class="story story-float-img" data-post_id="8685154" aria-label="New Orford String Quartet Virtual Concert – Premieres Sunday March 27, 2022 at 3:00PM (Mar 27 - Apr 3 | 3:00 PM - 11:45 PM)"> <div class="meta-bar"> <div class="meta-bar-cat"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/bc/events/type/virtual/"> Virtual </a> </div> <button class="meta-share-expand"> <img src="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/_img/plus.png" alt="Hover to see article share options" width="17" height="17"> </button> <div class="socialShare meta-share-list" data-socialshare="facebook,twitter,google" data-socialshare-count="false" data-socialshare-collapsable="false" data-socialshare-url="https://globalnews.ca/event/8685154/new-orford-string-quartet-virtual-concert-premieres-sunday-march-27-2022-at-300pm/" data-socialshare-title="New Orford String Quartet Virtual Concert – Premieres Sunday March 27, 2022 at 3:00PM"></div> </div> <div class="story-h"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/event/8685154/new-orford-string-quartet-virtual-concert-premieres-sunday-march-27-2022-at-300pm/">New Orford String Quartet Virtual Concert – Premieres Sunday March 27, 2022 at 3:00PM</a> </div> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/event/8685154/new-orford-string-quartet-virtual-concert-premieres-sunday-march-27-2022-at-300pm/" class="story-img-link"> <span class="sr-only">Click to open New Orford String Quartet Virtual Concert – Premieres Sunday March 27, 2022 at 3:00PM</span> <span class="icon-media" aria-label="Event duration"> Mar 27 - Apr 3 </span> <img width="256" height="144" src="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/New-Orford-String-Quartet-Virtual-Concert-Poster-jpg.jpg?quality=85&strip=all&w=256&h=144&crop=1" class="story-img landscape wp-post-image" alt="" loading="lazy" srcset="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/New-Orford-String-Quartet-Virtual-Concert-Poster-jpg.jpg?resize=250,141 250w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/New-Orford-String-Quartet-Virtual-Concert-Poster-jpg.jpg?resize=128,72 128w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/New-Orford-String-Quartet-Virtual-Concert-Poster-jpg.jpg?resize=150,84 150w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/New-Orford-String-Quartet-Virtual-Concert-Poster-jpg.jpg?resize=256,144 256w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/New-Orford-String-Quartet-Virtual-Concert-Poster-jpg.jpg?resize=512,288 512w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/New-Orford-String-Quartet-Virtual-Concert-Poster-jpg.jpg?resize=1024,576 1024w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/New-Orford-String-Quartet-Virtual-Concert-Poster-jpg.jpg?resize=100,56 100w" sizes="(max-width: 256px) 100vw, 256px"/> </a> <div class="story-txt"> <p>“These four string virtuosos animate every note with uncommon power and passion as well as elegance. Listen and weep.” – Toronto Star The Juno Award-Winning New Orford String Quartet is comprised of four musicians with equally stellar pedigrees formed the New Orford String Quartet over a decade ago in 2009. Their concept bring four elite…</p> </div> </article> <article class="story story-float-img" data-post_id="8654709" aria-label="Bottom Line 2022: Rebuilding Together (Mar 29 - Mar 30 | 8:30 AM - 12:30 PM)"> <div class="meta-bar"> <div class="meta-bar-cat"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/bc/events/type/virtual/"> Virtual </a> </div> <button class="meta-share-expand"> <img src="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/_img/plus.png" alt="Hover to see article share options" width="17" height="17"> </button> <div class="socialShare meta-share-list" data-socialshare="facebook,twitter,google" data-socialshare-count="false" data-socialshare-collapsable="false" data-socialshare-url="https://globalnews.ca/event/8654709/bottom-line-2022-rebuilding-together/" data-socialshare-title="Bottom Line 2022: Rebuilding Together"></div> </div> <div class="story-h"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/event/8654709/bottom-line-2022-rebuilding-together/">Bottom Line 2022: Rebuilding Together</a> </div> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/event/8654709/bottom-line-2022-rebuilding-together/" class="story-img-link"> <span class="sr-only">Click to open Bottom Line 2022: Rebuilding Together</span> <span class="icon-media" aria-label="Event duration"> Mar 29 - Mar 30 </span> <img width="256" height="144" src="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/BLC22-Whova-Header-Mobile_750x300px_02-11-22.jpg?quality=85&strip=all&w=256&h=144&crop=1" class="story-img landscape wp-post-image" alt="" loading="lazy" srcset="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/BLC22-Whova-Header-Mobile_750x300px_02-11-22.jpg?resize=250,141 250w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/BLC22-Whova-Header-Mobile_750x300px_02-11-22.jpg?resize=128,72 128w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/BLC22-Whova-Header-Mobile_750x300px_02-11-22.jpg?resize=150,84 150w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/BLC22-Whova-Header-Mobile_750x300px_02-11-22.jpg?resize=256,144 256w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/BLC22-Whova-Header-Mobile_750x300px_02-11-22.jpg?resize=512,288 512w, https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/uploads/2022/03/BLC22-Whova-Header-Mobile_750x300px_02-11-22.jpg?resize=100,56 100w" sizes="(max-width: 256px) 100vw, 256px"/> </a> <div class="story-txt"> <p>How are resilient organizations supporting their people through these times? Bottom Line 2022 will look at the ongoing impact of the pandemic on both front line and remote workers, and dig into solutions, strategies and tools. We aim to deliver our special mix of personal stories, inspiring keynotes, research-based information and practical tools and strategies….</p> </div> </article> </div> <a id="lm_id_gnca_events_loadmore" class="load-more-btn gnca-load-more-button" href="javascript:void(0);">Load More</a> <script language="javascript" type="text/javascript"> jQuery("#lm_id_gnca_events_loadmore").on('click', function( ev ) { ev.currentTarget.blur(); // prevent default link from firign ev.preventDefault(); // add loading class jQuery(this).addClass('load-more-btn-loading'); // do your thing var last_id = jQuery(".events-list .story"); if( last_id.length > 1 ) { last_id = last_id.last(); } var settings = {"event":"all","region":"bc","time_limit":1647907200,"event_tag":false}; if( last_id.length == 1 && last_id.attr('data-post_id') ) { last_id = last_id.attr('data-post_id'); settings["last_id"] = last_id; } settings["post_ids"] = new Array(); jQuery( ".events-list .story" ).each( function() { var item_id = jQuery( this ).attr( 'data-post_id' ); settings["post_ids"].push( item_id ); }); gnca_ajax( 'load-more' , settings , function( data ) { var lm_btn = jQuery("#lm_id_gnca_events_loadmore"); var container = jQuery(".events-list-inner"); if( container.length == 0) { return; } else if( container.length > 1 ) { container = container.last(); } container.append( data ); lm_btn.removeClass('load-more-btn-loading'); if( MorePosts ) { MorePosts.afterCachedLoadMore(); } if( jQuery("input.gnca_load_more_stop").length > 0 ) { lm_btn.css( "display", "none" ); } if( !lm_btn.attr('data-lm_pageno') ){ lm_btn.attr('data-lm_pageno', '1' ); } else { var page_no = parseInt( lm_btn.attr('data-lm_page') ) + 1; lm_btn.attr('data-lm_pageno', page_no ); } } ); return false; }); </script> </section> </div> </div> <!-- /.stream --> <aside id="sidebar" class="wells l-sidebar" aria-label="Sidebar"> <div id="sidebar-weatherTraffic" class="l-sidebar__widget u-show-tablet-landscape"> <div class="c-weather "> <div class="c-weather__inner"> <div class="c-loader c-loader--small c-weather__loader"></div> <div class="c-weather__top"> <div class="c-weather__header"> <button class="c-weather__region toggle-switch" data-toggle-outside-click="true" data-track-region="sidebar-weatherTraffic" data-title="CHANGE REGION"> <span class="sr-only">Change region</span> <svg class="c-icon c-icon--white c-weather__icon" focusable="false"> <use xlink:href="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/icons/out/symbol/svg/sprite.symbol.svg?v=msjiw4cvn#local"></use> </svg> <span class="c-weather__location" data-map="region_name"></span> <span class="c-weather__province" data-map="region_state_abbr"></span> <select class="c-weather__select toggle-on" aria-label="Select province"></select> </button> </div> <a class="c-weather__link c-weather__link--left" data-map="weather_url" title="Weather" data-track-region="sidebar-weatherTraffic"> <div class="c-weather__imageContainer u-hide-tablet-landscape"> <img class="c-weather__image" data-map="icon_mobile" src="/web/20220322044914im_/https://globalnews.ca/bc/events/" alt=""/> </div> <div class="c-weather__info"> <div class="c-weather__degree c-weather__degree--current" data-map="current"></div> <div class="c-weather__prediction"> <span class="c-weather__degree" data-map="high"></span> <span class="c-weather__degree" data-map="low"></span> </div> </div> </a> <a class="c-weather__link c-weather__link--right u-show-tablet-landscape" data-map="weather_url" title="Weather" data-track-region="sidebar-weatherTraffic"> <div class="c-weather__imageContainer"> <div> <img class="c-weather__image" data-map="icon_desktop" src="/web/20220322044914im_/https://globalnews.ca/bc/events/" alt=""/> <div class="c-weather__text c-weather__conditions" data-map="conditions"></div> </div> </div> </a> </div> <a class="c-weather__link c-weather__link--bottom" data-map="traffic_url" href="" data-track-region="sidebar-weatherTraffic"> <span class="c-weather__label">Traffic</span> <span class="c-weather__text">Travel times & incidents</span> <div class="c-weather__traffic"> <div class="c-weather__trafficTitle"> <svg class="c-icon c-icon--red c-weather__alert" focusable="false"> <use xlink:href="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/icons/out/symbol/svg/sprite.symbol.svg?v=msjiw4cvn#alert-circle"></use> </svg> <span data-map="top_traffic_title"></span> </div> <span class="c-weather__trafficDesc" data-map="top_traffic_desc"></span> </div> </a> </div> </div> </div> <div class="l-sidebar__widget"> <div class="c-ad c-ad--depreciatedHouseAd l-sidebar__ad c-ad--left"> <div id="gpt-ad-300100-1" class="c-ad__unit" data-ad-pos="1"> </div> <script> if ( typeof( gn_monetize ) !== 'undefined' && typeof( gn_monetize.Ads ) !== 'undefined' && gn_monetize.Ads.initialRequestMade() ) { // Ads script has been loaded, create the ad. gn_monetize.Ads.create( {"sizes":"[300,100]","biddable":false,"id":"gpt-ad-300100-1","lazy":false,"targeting":{"pos":1,"slotid":"gpt-ad-300100-1"},"companion":false} ); } else { // if Ads script not yet loaded, queue up ad data for initialization. var gnAdSettings = gnAdSettings || {}; gnAdSettings.ads = gnAdSettings.ads || []; gnAdSettings.ads.push( {"sizes":"[300,100]","biddable":false,"id":"gpt-ad-300100-1","lazy":false,"targeting":{"pos":1,"slotid":"gpt-ad-300100-1"},"companion":false} ); } </script> </div> </div> <div class="l-sidebar__widget"> <div class="c-ad c-ad--bigboxCombo l-sidebar__ad c-ad--left"> <div class="c-ad__label">Advertisement</div> <div id="gpt-ad-300250300600-1" class="c-ad__unit" data-ad-pos="1"> </div> <script> if ( typeof( gn_monetize ) !== 'undefined' && typeof( gn_monetize.Ads ) !== 'undefined' && gn_monetize.Ads.initialRequestMade() ) { // Ads script has been loaded, create the ad. gn_monetize.Ads.create( {"sizes":"[[300,250],[300,600]]","biddable":true,"id":"gpt-ad-300250300600-1","lazy":false,"targeting":{"pos":1,"slotid":"gpt-ad-300250300600-1"},"companion":false} ); } else { // if Ads script not yet loaded, queue up ad data for initialization. var gnAdSettings = gnAdSettings || {}; gnAdSettings.ads = gnAdSettings.ads || []; gnAdSettings.ads.push( {"sizes":"[[300,250],[300,600]]","biddable":true,"id":"gpt-ad-300250300600-1","lazy":false,"targeting":{"pos":1,"slotid":"gpt-ad-300250300600-1"},"companion":false} ); } </script> </div> </div> <div id="sidebar-promoBanners" class="l-sidebar__widget"> <div class="c-ad c-ad--house l-sidebar__ad"> <div id="gpt-ad-30050-2" class="c-ad__unit" data-ad-pos="2"> </div> <script> if ( typeof( gn_monetize ) !== 'undefined' && typeof( gn_monetize.Ads ) !== 'undefined' && gn_monetize.Ads.initialRequestMade() ) { // Ads script has been loaded, create the ad. gn_monetize.Ads.create( {"sizes":"[300,50]","biddable":false,"id":"gpt-ad-30050-2","lazy":false,"targeting":{"pos":2,"slotid":"gpt-ad-30050-2"},"companion":false} ); } else { // if Ads script not yet loaded, queue up ad data for initialization. var gnAdSettings = gnAdSettings || {}; gnAdSettings.ads = gnAdSettings.ads || []; gnAdSettings.ads.push( {"sizes":"[300,50]","biddable":false,"id":"gpt-ad-30050-2","lazy":false,"targeting":{"pos":2,"slotid":"gpt-ad-30050-2"},"companion":false} ); } </script> </div> </div> <div id="sidebar-listenLive" class="l-sidebar__widget"> </div> <section class="ev-add-new" aria-label="Add your own event to our site"> <form class="calc-form dark" action="https://web.archive.org/web/20220322044914/https://globalnews.ca/bc/events/add/" style="padding-bottom: 25px;"> <div class="section-h-light calc-fieldcontain clearfix" style="padding: 10px 22px; background-color: rgba( 0,0,0,.3 ); font-size: 1em;">Global News Events</div> <div class="calc-fieldcontain clearfix" style="padding: 10px 22px;"> <label>Promote your own event on our site for free</label> </div> <input type="submit" class="calc-button c-button" style="width: 92%; max-width: 257px;" value="Add My Event"/> </form> </section> <div id="sidebar-trendingPosts" class="l-sidebar__widget"> <h2 class="l-sidebar__widgetHeading c-heading c-heading--strikethrough c-posts__heading"> Trending </h2> <ul class="c-posts c-posts--tile c-posts--grid c-posts--articleTrending" data-ad="gpt-ad-300150-1" data-component="c-posts"> <li class="c-posts__item"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/news/8697367/china-eastern-flight-132-onboard-south/" class="c-posts__inner"> <div class="c-posts__rank"> <svg class="c-icon c-icon--red c-posts__rankIcon" focusable="false"> <use xlink:href="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/icons/out/symbol/svg/sprite.symbol.svg?v=msjiw4cvn#1"></use> </svg> </div> <div class="c-posts__media "> <img class="c-posts__thumbnail" data-src="https://web.archive.org/web/20220322044914/https://globalnews.ca/wp-content/uploads/2022/03/CP12341121.jpg?quality=85&strip=all&w=276" loading="lazy" width="276" height="155" alt=""/> </div> <div class="c-posts__details"> <div class="c-posts__headline "> <span class="c-posts__headlineText" data-title>China Eastern plane crash: No survivors found as search continues for 132 onboard</span> </div> <div class="c-posts__about"> <span class="c-posts__info c-posts__info--highlight">663</span> <span class="c-posts__info">Read</span> </div> </div> </a> </li> <li class="c-posts__item"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/news/8692381/mask-mandates-dropped-workers-hostility-health-risks/" class="c-posts__inner"> <div class="c-posts__rank"> <svg class="c-icon c-icon--red c-posts__rankIcon" focusable="false"> <use xlink:href="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/icons/out/symbol/svg/sprite.symbol.svg?v=msjiw4cvn#2"></use> </svg> </div> <div class="c-posts__media "> <img class="c-posts__thumbnail" data-src="https://web.archive.org/web/20220322044914/https://globalnews.ca/wp-content/uploads/2022/03/man-wearing-mask.jpeg?quality=85&strip=all&w=276" loading="lazy" width="276" height="184" alt=""/> </div> <div class="c-posts__details"> <div class="c-posts__headline "> <span class="c-posts__headlineText" data-title>Dropped mask mandates: Public-facing workers face hostility, health risks</span> </div> <div class="c-posts__about"> <span class="c-posts__info c-posts__info--highlight">432</span> <span class="c-posts__info">Read</span> </div> </div> </a> </li> <li class="c-posts__item"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/news/8699491/victoria-bc-royal-jubilee-hospital-patient-care/" class="c-posts__inner"> <div class="c-posts__rank"> <svg class="c-icon c-icon--red c-posts__rankIcon" focusable="false"> <use xlink:href="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/icons/out/symbol/svg/sprite.symbol.svg?v=msjiw4cvn#3"></use> </svg> </div> <div class="c-posts__media c-imageContainer"> <img class="c-posts__thumbnail" data-src="https://web.archive.org/web/20220322044914/https://globalnews.ca/wp-content/uploads/2022/03/Royal-Julibee-Sunroom-Care-6.jpg?quality=85&strip=all&w=276" data-width="276" data-height="367" data-ratio="0.67" loading="lazy" width="276" height="367" alt=""/> </div> <div class="c-posts__details"> <div class="c-posts__headline "> <span class="c-posts__headlineText" data-title>Victoria, B.C. family frustrated after hospital puts patient in room with no washroom, call button</span> </div> <div class="c-posts__about"> <span class="c-posts__info c-posts__info--highlight">367</span> <span class="c-posts__info">Read</span> </div> </div> </a> </li> <li class="c-posts__item"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/news/8696985/china-militarized-islands-south-china-sea-u-s/" class="c-posts__inner"> <div class="c-posts__rank"> <svg class="c-icon c-icon--red c-posts__rankIcon" focusable="false"> <use xlink:href="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/icons/out/symbol/svg/sprite.symbol.svg?v=msjiw4cvn#4"></use> </svg> </div> <div class="c-posts__media "> <img class="c-posts__thumbnail" data-src="https://web.archive.org/web/20220322044914/https://globalnews.ca/wp-content/uploads/2022/03/chin.jpeg?quality=85&strip=all&w=276" loading="lazy" width="276" height="184" alt=""/> </div> <div class="c-posts__details"> <div class="c-posts__headline "> <span class="c-posts__headlineText" data-title>China has fully militarized at least 3 islands in South China Sea: U.S. admiral</span> </div> <div class="c-posts__about"> <span class="c-posts__info c-posts__info--highlight">348</span> <span class="c-posts__info">Read</span> </div> </div> </a> </li> <li class="c-posts__item"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/news/8698508/jamie-bezanson-sentence-assault-vancouver/" class="c-posts__inner"> <div class="c-posts__rank"> <svg class="c-icon c-icon--red c-posts__rankIcon" focusable="false"> <use xlink:href="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/icons/out/symbol/svg/sprite.symbol.svg?v=msjiw4cvn#5"></use> </svg> </div> <div class="c-posts__media c-imageContainer"> <img class="c-posts__thumbnail" data-src="https://web.archive.org/web/20220322044914/https://globalnews.ca/wp-content/uploads/2020/04/vpd-suspect.jpg?quality=85&strip=all&w=276" data-width="276" data-height="238" data-ratio="0.67" loading="lazy" width="276" height="238" alt=""/> </div> <div class="c-posts__details"> <div class="c-posts__headline "> <span class="c-posts__headlineText" data-title>Man gets conditional discharge for assault of 92-year-old Asian man in Vancouver</span> </div> <div class="c-posts__about"> <span class="c-posts__info c-posts__info--highlight">235</span> <span class="c-posts__info">Read</span> </div> </div> </a> </li> <li class="c-posts__item"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/news/8697617/kherson-protest-russia-ukraine-war-march-21/" class="c-posts__inner"> <div class="c-posts__rank"> <svg class="c-icon c-icon--red c-posts__rankIcon" focusable="false"> <use xlink:href="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/icons/out/symbol/svg/sprite.symbol.svg?v=msjiw4cvn#6"></use> </svg> </div> <div class="c-posts__media "> <img class="c-posts__thumbnail" data-src="https://web.archive.org/web/20220322044914/https://globalnews.ca/wp-content/uploads/2022/03/KhersonCCTVscreenGrab.jpg?quality=85&strip=all&w=276" loading="lazy" width="276" height="180" alt=""/> </div> <div class="c-posts__details"> <div class="c-posts__headline "> <span class="c-posts__headlineText" data-title>Russian soldiers opened fire at rally in Kherson to disperse crowd, Ukraine says</span> </div> <div class="c-posts__about"> <span class="c-posts__info c-posts__info--highlight">229</span> <span class="c-posts__info">Read</span> </div> </div> </a> </li> <li class="c-ad c-ad--mostPopular c-posts__item c-posts__ad"> <div id="gpt-ad-300150-1" class="c-ad__unit" data-ad-pos="1"> </div> <script> if ( typeof( gn_monetize ) !== 'undefined' && typeof( gn_monetize.Ads ) !== 'undefined' && gn_monetize.Ads.initialRequestMade() ) { // Ads script has been loaded, create the ad. gn_monetize.Ads.create( {"sizes":"[300,150]","biddable":false,"id":"gpt-ad-300150-1","lazy":false,"targeting":{"pos":1,"slotid":"gpt-ad-300150-1","strnativekey":"w3JqtE5R2zBzdkCVjBgA3YD9"},"companion":false} ); } else { // if Ads script not yet loaded, queue up ad data for initialization. var gnAdSettings = gnAdSettings || {}; gnAdSettings.ads = gnAdSettings.ads || []; gnAdSettings.ads.push( {"sizes":"[300,150]","biddable":false,"id":"gpt-ad-300150-1","lazy":false,"targeting":{"pos":1,"slotid":"gpt-ad-300150-1","strnativekey":"w3JqtE5R2zBzdkCVjBgA3YD9"},"companion":false} ); } </script> </li> </ul> </div> <div id="sidebar-trendingVideos" class="l-sidebar__widget"> <h2 class="l-sidebar__widgetHeading c-heading c-heading--strikethrough c-posts__heading"> Top Videos </h2> <ul class="c-posts c-posts--tile c-posts--grid c-posts--articleTrending" data-ad="gpt-ad-300150-2" data-component="c-posts"> <li class="c-posts__item"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/video/8699746/calgary-police-identify-woman-killed-in-random-downtown-stabbing/" class="c-posts__inner"> <div class="c-posts__rank"> <svg class="c-icon c-icon--red c-posts__rankIcon" focusable="false"> <use xlink:href="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/icons/out/symbol/svg/sprite.symbol.svg?v=msjiw4cvn#1"></use> </svg> </div> <div class="c-posts__media "> <img class="c-posts__thumbnail" data-src="https://web.archive.org/web/20220322044914/https://i0.wp.com/media.globalnews.ca/videostatic/news/bm6hlnorql-04wamrpih0/web_RANDOM_ATTACK_DEATH_VO.jpg?h=360&w=540&crop=1&quality=70&strip=all" loading="lazy" width="540" height="360" alt=""/> <div class="c-posts__icon c-videoPlay__icon c-posts__icon--video"> <svg class="c-icon c-icon--white c-posts__play c-videoPlay__off" focusable="false"> <use xlink:href="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/icons/out/symbol/svg/sprite.symbol.svg?v=msjiw4cvn#play"></use> </svg> </div> </div> <div class="c-posts__details"> <div class="c-posts__headline "> <span class="c-posts__headlineText" data-title>Calgary police identify woman killed in ‘random’ downtown stabbing</span> </div> <div class="c-posts__about"> <span class="c-posts__info c-posts__info--highlight">378</span> <span class="c-posts__info">Viewed</span> </div> </div> </a> </li> <li class="c-posts__item"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/video/8697421/firefighters-seen-rushing-to-scene-of-boeing-737-crash-in-south-china/" class="c-posts__inner"> <div class="c-posts__rank"> <svg class="c-icon c-icon--red c-posts__rankIcon" focusable="false"> <use xlink:href="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/icons/out/symbol/svg/sprite.symbol.svg?v=msjiw4cvn#2"></use> </svg> </div> <div class="c-posts__media "> <img class="c-posts__thumbnail" data-src="https://web.archive.org/web/20220322044914/https://i1.wp.com/media.globalnews.ca/videostatic/news/bpzicgwrqp-rnr7o2udf/China_firefighters.jpg?h=360&w=540&crop=1&quality=70&strip=all" loading="lazy" width="540" height="360" alt=""/> <div class="c-posts__icon c-videoPlay__icon c-posts__icon--video"> <svg class="c-icon c-icon--white c-posts__play c-videoPlay__off" focusable="false"> <use xlink:href="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/icons/out/symbol/svg/sprite.symbol.svg?v=msjiw4cvn#play"></use> </svg> </div> </div> <div class="c-posts__details"> <div class="c-posts__headline "> <span class="c-posts__headlineText" data-title>Firefighters rush to scene of Boeing 737 crash in south China</span> </div> <div class="c-posts__about"> <span class="c-posts__info c-posts__info--highlight">181</span> <span class="c-posts__info">Viewed</span> </div> </div> </a> </li> <li class="c-posts__item"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/video/8699869/trash-into-cash-u-k-royal-mint-recycles-electronic-waste-into-gold/" class="c-posts__inner"> <div class="c-posts__rank"> <svg class="c-icon c-icon--red c-posts__rankIcon" focusable="false"> <use xlink:href="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/icons/out/symbol/svg/sprite.symbol.svg?v=msjiw4cvn#3"></use> </svg> </div> <div class="c-posts__media "> <img class="c-posts__thumbnail" data-src="https://web.archive.org/web/20220322044914/https://i0.wp.com/media.globalnews.ca/videostatic/news/xz9yhvcobb-cmlq140f0y/0321_ross.jpg?h=360&w=540&crop=1&quality=70&strip=all" loading="lazy" width="540" height="360" alt=""/> <div class="c-posts__icon c-videoPlay__icon c-posts__icon--video"> <svg class="c-icon c-icon--white c-posts__play c-videoPlay__off" focusable="false"> <use xlink:href="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/icons/out/symbol/svg/sprite.symbol.svg?v=msjiw4cvn#play"></use> </svg> </div> </div> <div class="c-posts__details"> <div class="c-posts__headline "> <span class="c-posts__headlineText" data-title>Trash into cash: U.K. Royal Mint recycles electronic waste into gold</span> </div> <div class="c-posts__about"> <span class="c-posts__info c-posts__info--highlight">117</span> <span class="c-posts__info">Viewed</span> </div> </div> </a> </li> <li class="c-posts__item"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/video/8699845/victoria-family-speaks-out-after-man-put-in-royal-jubilee-hospital-sunroom/" class="c-posts__inner"> <div class="c-posts__rank"> <svg class="c-icon c-icon--red c-posts__rankIcon" focusable="false"> <use xlink:href="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/icons/out/symbol/svg/sprite.symbol.svg?v=msjiw4cvn#4"></use> </svg> </div> <div class="c-posts__media "> <img class="c-posts__thumbnail" data-src="https://web.archive.org/web/20220322044914/https://i2.wp.com/media.globalnews.ca/videostatic/news/rykg4s84dw-j3uyplu2v8/6P_VICTORIA_HEALTH_CARE_OM001WUT.jpg?h=360&w=540&crop=1&quality=70&strip=all" loading="lazy" width="540" height="360" alt=""/> <div class="c-posts__icon c-videoPlay__icon c-posts__icon--video"> <svg class="c-icon c-icon--white c-posts__play c-videoPlay__off" focusable="false"> <use xlink:href="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/icons/out/symbol/svg/sprite.symbol.svg?v=msjiw4cvn#play"></use> </svg> </div> </div> <div class="c-posts__details"> <div class="c-posts__headline "> <span class="c-posts__headlineText" data-title>Victoria family speaks out after man put in Royal Jubilee Hospital sunroom</span> </div> <div class="c-posts__about"> <span class="c-posts__info c-posts__info--highlight">116</span> <span class="c-posts__info">Viewed</span> </div> </div> </a> </li> <li class="c-posts__item"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/video/8697130/covid-19-ontario-nova-scotia-to-drop-mask-mandates-as-some-experts-fear-its-premature/" class="c-posts__inner"> <div class="c-posts__rank"> <svg class="c-icon c-icon--red c-posts__rankIcon" focusable="false"> <use xlink:href="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/icons/out/symbol/svg/sprite.symbol.svg?v=msjiw4cvn#5"></use> </svg> </div> <div class="c-posts__media "> <img class="c-posts__thumbnail" data-src="https://web.archive.org/web/20220322044914/https://i0.wp.com/media.globalnews.ca/videostatic/news/9ztfo5n1nl-afs0gnjbqo/LORD.jpg?h=360&w=540&crop=1&quality=70&strip=all" loading="lazy" width="540" height="360" alt=""/> <div class="c-posts__icon c-videoPlay__icon c-posts__icon--video"> <svg class="c-icon c-icon--white c-posts__play c-videoPlay__off" focusable="false"> <use xlink:href="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/icons/out/symbol/svg/sprite.symbol.svg?v=msjiw4cvn#play"></use> </svg> </div> </div> <div class="c-posts__details"> <div class="c-posts__headline "> <span class="c-posts__headlineText" data-title>COVID-19: Ontario, Nova Scotia to drop mask mandates as some experts fear it’s premature</span> </div> <div class="c-posts__about"> <span class="c-posts__info c-posts__info--highlight">83</span> <span class="c-posts__info">Viewed</span> </div> </div> </a> </li> <li class="c-posts__item"> <a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/video/8698007/russia-ukraine-conflict-footage-appears-to-show-russian-troops-opening-fire-on-protest-in-kherson/" class="c-posts__inner"> <div class="c-posts__rank"> <svg class="c-icon c-icon--red c-posts__rankIcon" focusable="false"> <use xlink:href="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/icons/out/symbol/svg/sprite.symbol.svg?v=msjiw4cvn#6"></use> </svg> </div> <div class="c-posts__media "> <img class="c-posts__thumbnail" data-src="https://web.archive.org/web/20220322044914/https://i1.wp.com/media.globalnews.ca/videostatic/news/6s0dkiat9g-fbol0ubgli/Sequence_01.00_00_20_21.Still001.jpg?h=360&w=540&crop=1&quality=70&strip=all" loading="lazy" width="540" height="360" alt=""/> <div class="c-posts__icon c-videoPlay__icon c-posts__icon--video"> <svg class="c-icon c-icon--white c-posts__play c-videoPlay__off" focusable="false"> <use xlink:href="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/icons/out/symbol/svg/sprite.symbol.svg?v=msjiw4cvn#play"></use> </svg> </div> </div> <div class="c-posts__details"> <div class="c-posts__headline "> <span class="c-posts__headlineText" data-title>Russia-Ukraine conflict: Footage appears to show Russian troops opening fire on protest in Kherson</span> </div> <div class="c-posts__about"> <span class="c-posts__info c-posts__info--highlight">83</span> <span class="c-posts__info">Viewed</span> </div> </div> </a> </li> <li class="c-ad c-ad--mostPopular c-posts__item c-posts__ad"> <div id="gpt-ad-300150-2" class="c-ad__unit" data-ad-pos="2"> </div> <script> if ( typeof( gn_monetize ) !== 'undefined' && typeof( gn_monetize.Ads ) !== 'undefined' && gn_monetize.Ads.initialRequestMade() ) { // Ads script has been loaded, create the ad. gn_monetize.Ads.create( {"sizes":"[300,150]","biddable":false,"id":"gpt-ad-300150-2","lazy":false,"targeting":{"pos":2,"slotid":"gpt-ad-300150-2","strnativekey":"w3JqtE5R2zBzdkCVjBgA3YD9"},"companion":false} ); } else { // if Ads script not yet loaded, queue up ad data for initialization. var gnAdSettings = gnAdSettings || {}; gnAdSettings.ads = gnAdSettings.ads || []; gnAdSettings.ads.push( {"sizes":"[300,150]","biddable":false,"id":"gpt-ad-300150-2","lazy":false,"targeting":{"pos":2,"slotid":"gpt-ad-300150-2","strnativekey":"w3JqtE5R2zBzdkCVjBgA3YD9"},"companion":false} ); } </script> </li> </ul> <div class="l-sidebar__widgetFooter"> <a class="c-link " href="https://web.archive.org/web/20220322044914/https://globalnews.ca/national/videos/"> <div class="c-link__inner"> <span class="c-link__label">More Videos</span> <span class="c-link__icon"></span> </div> </a> </div> </div> <div class="dynamic-widgets"> <section id="gnca_twitter_widget-5" class="widget widget_gnca_twitter_widget"> <section aria-label="Latest tweets from GlobalBC"> <h2 class="l-sidebar__widgetHeading c-heading c-heading--strikethrough c-heading--legacyWidget">Twitter</h2> <div class="mod-twitter"> <div class="tweet "> <div class="meta-bar"> <div class="tweet-date"> <a href="https://web.archive.org/web/20220322044914/https://twitter.com/GlobalBC/status/1506118471071019008" target="_blank" rel="noreferrer"> <span class="sr-only">first tweet published </span> 46 minutes ago </a> </div> <div class="twitter-buttons"> <a href="https://web.archive.org/web/20220322044914/https://twitter.com/intent/favorite?tweet_id=http://1506118471071019008" data-twitter-touch="true" target="_blank" rel="noreferrer"> <span class="sr-only">Favorite first tweet</span> <span class="icon icon-twtr-favorite"></span> </a> <a href="https://web.archive.org/web/20220322044914/https://twitter.com/intent/retweet?tweet_id=http://1506118471071019008" data-twitter-touch="true" target="_blank" rel="noreferrer"> <span class="sr-only">Retweet first tweet</span> <span class="icon icon-twtr-retweet"></span> </a> <a href="https://web.archive.org/web/20220322044914/https://twitter.com/intent/tweet?in_reply_to=http://1506118471071019008" data-twitter-touch="true" target="_blank" rel="noreferrer"> <span class="sr-only">Reply to first tweet</span> <span class="icon icon-twtr-reply"></span> </a> </div> </div> <div class="tweet-author"> <a href="https://web.archive.org/web/20220322044914/https://twitter.com/GlobalBC" target="_blank" rel="noreferrer"> <span class="tweet-avatar" target="_blank" rel="noreferrer"> <img src="https://web.archive.org/web/20220322044914im_/https://pbs.twimg.com/profile_images/1283160527900798976/pARYwm7c_normal.jpg" alt="" width="48" height="48"/> </span> <div class="tweet-textContainer"> <span class="tweet-name">Global BC</span> <span class="tweet-username">@GlobalBC</span> </div> </a> </div> <p>Those hoping to get a camping reservation in B.C. for May long weekend had a chance to test a new booking portal th… <a href="https://web.archive.org/web/20220322044914/https://twitter.com/i/web/status/1506118471071019008">twitter.com/i/web/status/1…</a></p> </div> <div class="tweet "> <div class="meta-bar"> <div class="tweet-date"> <a href="https://web.archive.org/web/20220322044914/https://twitter.com/GlobalBC/status/1506105576257896451" target="_blank" rel="noreferrer"> <span class="sr-only">second tweet published </span> 2 hours ago </a> </div> <div class="twitter-buttons"> <a href="https://web.archive.org/web/20220322044914/https://twitter.com/intent/favorite?tweet_id=http://1506105576257896451" data-twitter-touch="true" target="_blank" rel="noreferrer"> <span class="sr-only">Favorite second tweet</span> <span class="icon icon-twtr-favorite"></span> </a> <a href="https://web.archive.org/web/20220322044914/https://twitter.com/intent/retweet?tweet_id=http://1506105576257896451" data-twitter-touch="true" target="_blank" rel="noreferrer"> <span class="sr-only">Retweet second tweet</span> <span class="icon icon-twtr-retweet"></span> </a> <a href="https://web.archive.org/web/20220322044914/https://twitter.com/intent/tweet?in_reply_to=http://1506105576257896451" data-twitter-touch="true" target="_blank" rel="noreferrer"> <span class="sr-only">Reply to second tweet</span> <span class="icon icon-twtr-reply"></span> </a> </div> </div> <div class="tweet-author"> <a href="https://web.archive.org/web/20220322044914/https://twitter.com/GlobalBC" target="_blank" rel="noreferrer"> <span class="tweet-avatar" target="_blank" rel="noreferrer"> <img src="https://web.archive.org/web/20220322044914im_/https://pbs.twimg.com/profile_images/1283160527900798976/pARYwm7c_normal.jpg" alt="" width="48" height="48"/> </span> <div class="tweet-textContainer"> <span class="tweet-name">Global BC</span> <span class="tweet-username">@GlobalBC</span> </div> </a> </div> <p>It is ‘a take what you need and give what you can’ system and anyone can access the space 24-hours a day, seven day… <a href="https://web.archive.org/web/20220322044914/https://twitter.com/i/web/status/1506105576257896451">twitter.com/i/web/status/1…</a></p> </div> <div class="tweet "> <div class="meta-bar"> <div class="tweet-date"> <a href="https://web.archive.org/web/20220322044914/https://twitter.com/GlobalBC/status/1506099326124179462" target="_blank" rel="noreferrer"> <span class="sr-only">third tweet published </span> 2 hours ago </a> </div> <div class="twitter-buttons"> <a href="https://web.archive.org/web/20220322044914/https://twitter.com/intent/favorite?tweet_id=http://1506099326124179462" data-twitter-touch="true" target="_blank" rel="noreferrer"> <span class="sr-only">Favorite third tweet</span> <span class="icon icon-twtr-favorite"></span> </a> <a href="https://web.archive.org/web/20220322044914/https://twitter.com/intent/retweet?tweet_id=http://1506099326124179462" data-twitter-touch="true" target="_blank" rel="noreferrer"> <span class="sr-only">Retweet third tweet</span> <span class="icon icon-twtr-retweet"></span> </a> <a href="https://web.archive.org/web/20220322044914/https://twitter.com/intent/tweet?in_reply_to=http://1506099326124179462" data-twitter-touch="true" target="_blank" rel="noreferrer"> <span class="sr-only">Reply to third tweet</span> <span class="icon icon-twtr-reply"></span> </a> </div> </div> <div class="tweet-author"> <a href="https://web.archive.org/web/20220322044914/https://twitter.com/GlobalBC" target="_blank" rel="noreferrer"> <span class="tweet-avatar" target="_blank" rel="noreferrer"> <img src="https://web.archive.org/web/20220322044914im_/https://pbs.twimg.com/profile_images/1283160527900798976/pARYwm7c_normal.jpg" alt="" width="48" height="48"/> </span> <div class="tweet-textContainer"> <span class="tweet-name">Global BC</span> <span class="tweet-username">@GlobalBC</span> </div> </a> </div> <p>WATCH: The Victoria Police Department will continue to restrict vehicle access to James Bay and the B.C. legislatur… <a href="https://web.archive.org/web/20220322044914/https://twitter.com/i/web/status/1506099326124179462">twitter.com/i/web/status/1…</a></p> </div> </div> </section> </section> </div> </aside> </main><!-- /.layout-contain --> <!-- Evidon start --> <script> (function (id) { function append(scriptid, url, async) { var d = document, sn = 'script', f = d.getElementsByTagName(sn)[0]; if (!f) f = d.head; var s = d.createElement(sn); s.async = true; s.id = scriptid; s.src = url; f.parentNode.insertBefore(s, f); } window.evidon = {}; window.evidon.id = id; var cdn = '//web.archive.org/web/20220322044914/https://c.evidon.com/', rootDomain = document.domain.replace( '.ca', '' ).replace( '.com' , '' ), noticecdn = cdn + 'sitenotice/'; append('evidon-notice', noticecdn + 'evidon-sitenotice-tag.js', false); append('evidon-location', cdn + 'geo/country.js', true); append('evidon-themes', noticecdn + id + '/snthemes.js', true); if (rootDomain) append('evidon-settings', noticecdn + id + '/' + rootDomain + '/settings.js', true); })(6153); </script> <!-- Evidon end --> </div> <!--/.l-main--> </div> <!--/.l-content__inner --> </div> <!--/.l-content contain (for wallpaper)--> <footer> <section id="footer" class="l-footer l-footer--main" aria-label="GlobalNews footer links"> <div class="o-container"> <div class="l-footer__row l-footer__row--top"> <a class="c-logo c-logo--black" href="https://web.archive.org/web/20220322044914/https://globalnews.ca/"> <img class="c-logo__image" data-src="https://web.archive.org/web/20220322044914/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/images/logo-black.svg" loading="lazy" alt="Global News Home" width="118" height="65"/> </a> <!-- Social nav --> <nav id="footer-social" class="c-social c-social--footer" aria-label="Social links menu in footer"> <a class="c-social__link" href="/web/20220322044914/https://globalnews.ca/pages/facebook/"> <span class="sr-only">Global News Facebook Pages</span> <svg class="c-icon c-icon--black c-social__icon c-social__icon--facebook" focusable="false"> <use xlink:href="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/icons/out/symbol/svg/sprite.symbol.svg?v=msjiw4cvn#facebook_f"></use> </svg> </a> <a class="c-social__link" href="/web/20220322044914/https://globalnews.ca/pages/twitter/"> <span class="sr-only">Global News Twitter Accounts</span> <svg class="c-icon c-icon--black c-social__icon c-social__icon--twitter" focusable="false"> <use xlink:href="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/icons/out/symbol/svg/sprite.symbol.svg?v=msjiw4cvn#twitter"></use> </svg> </a> <a class="c-social__link" href="https://web.archive.org/web/20220322044914/https://www.youtube.com/globalnews" target="_blank" rel="noreferrer"> <span class="sr-only">Global News Youtube Channel</span> <svg class="c-icon c-icon--black c-social__icon c-social__icon--youtube" focusable="false"> <use xlink:href="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/icons/out/symbol/svg/sprite.symbol.svg?v=msjiw4cvn#youtube"></use> </svg> </a> <a class="c-social__link" href="https://web.archive.org/web/20220322044914/https://instagram.com/globalnews" target="_blank" rel="noreferrer"> <span class="sr-only">Global News on Instagram</span> <svg class="c-icon c-icon--black c-social__icon c-social__icon--instagram" focusable="false"> <use xlink:href="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/icons/out/symbol/svg/sprite.symbol.svg?v=msjiw4cvn#instagram"></use> </svg> </a> <a class="c-social__link" href="https://web.archive.org/web/20220322044914/https://www.linkedin.com/company/global-television?trk=biz-companies-cym" target="_blank" rel="noreferrer"> <span class="sr-only">Global News on Linked-In</span> <svg class="c-icon c-icon--black c-social__icon c-social__icon--linkedin" focusable="false"> <use xlink:href="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/icons/out/symbol/svg/sprite.symbol.svg?v=msjiw4cvn#linkedin"></use> </svg> </a> <a class="c-social__link" href="https://web.archive.org/web/20220322044914/https://www.pinterest.com/globaltvnews/" target="_blank" rel="noreferrer"> <span class="sr-only">Global News on Pinterest</span> <svg class="c-icon c-icon--black c-social__icon c-social__icon--pinterest" focusable="false"> <use xlink:href="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/icons/out/symbol/svg/sprite.symbol.svg?v=msjiw4cvn#pinterest"></use> </svg> </a> <a class="c-social__link" href="/web/20220322044914/https://globalnews.ca/pages/feeds/"> <span class="sr-only">Global News RSS Feeds</span> <svg class="c-icon c-icon--black c-social__icon c-social__icon--rss" focusable="false"> <use xlink:href="https://web.archive.org/web/20220322044914im_/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/icons/out/symbol/svg/sprite.symbol.svg?v=msjiw4cvn#rss"></use> </svg> </a> </nav> </div> <div class="l-footer__row"> <!-- Main footer nav --> <nav class="l-footer__nav" role="group" aria-label="Site Links"> <ul id="footer-menu" class="c-nav c-nav--main c-nav--footer"><li class="c-nav__item"><a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/pages/about/" class="c-nav__link">About</a></li><li class="c-nav__item"><a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/pages/principles-practices/" class="c-nav__link">Principles & Practices</a></li><li class="c-nav__item"><a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/branded-content/" class="c-nav__link">Branded Content</a></li><li class="c-nav__item"><a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/pages/contact-us/" class="c-nav__link">Contact us</a></li><li class="c-nav__item"><a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/pages/feeds/" class="c-nav__link">RSS</a></li><li class="c-nav__item"><a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/pages/email-alerts/" class="c-nav__link">Newsletters</a></li><li class="c-nav__item"><a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/pages/notifications/" class="c-nav__link">Notifications</a></li><li class="c-nav__item"><a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/pages/alexa/" class="c-nav__link">Smart home</a></li><li class="c-nav__item"><a href="https://web.archive.org/web/20220322044914/https://globalnews.ca/pages/advertisers-election-registry/" class="c-nav__link">Advertisers Election Registry</a></li></ul> </nav> </div> <div class="l-footer__row"> <!-- Copyright --> <small class="l-footer__copyright">©2022 Global News, a division of Corus Entertainment Inc. Corus News. All rights reserved. Powered by <a class="l-footer__copyrightLink" href="https://web.archive.org/web/20220322044914/https://wpvip.com/?utm_source=vip_powered_wpcom&utm_medium=web&utm_campaign=VIP%20Footer%20Credit&utm_term=globalnews.ca">WordPress VIP</a></small> </div> </div> </section> <section id="footerCorporate" class="l-footer l-footer--corus" aria-label="Corus corporate links"> <div class="o-container"> <div class="l-footer__row"> <a class="c-logoCorus" href="https://web.archive.org/web/20220322044914/https://www.corusent.com/"> <img class="c-logoCorus__image" data-src="https://web.archive.org/web/20220322044914/https://globalnews.ca/wp-content/themes/shaw-globalnews/assets/dist/images/logo-corus.svg" loading="lazy" alt="Corus Entertainment Home" width="61" height="14"/> </a> <!-- Corus footer nav --> <nav class="l-footer__nav" role="group" aria-label="Corus Policies"> <ul id="footerCorporate-menu" class="c-nav c-nav--corus"><li class="c-nav__item"><a target="_blank" rel="noreferrer" href="https://web.archive.org/web/20220322044914/https://www.corusent.com/privacy-policy/" class="c-nav__link">Privacy Policy</a></li><li class="c-nav__item"><a target="_blank" rel="noreferrer" href="https://web.archive.org/web/20220322044914/https://www.corusent.com/" class="c-nav__link">Copyright</a></li><li class="c-nav__item"><a target="_blank" rel="noreferrer" href="https://web.archive.org/web/20220322044914/https://www.corusent.com/terms-of-use/" class="c-nav__link">Terms of Use</a></li><li class="c-nav__item"><a target="_blank" rel="noreferrer" href="https://web.archive.org/web/20220322044914/https://www.corusent.com/advertising/" class="c-nav__link">Advertise</a></li><li class="c-nav__item"><a target="_blank" rel="noreferrer" href="https://web.archive.org/web/20220322044914/https://www.corusent.com/terms-and-conditions/" class="c-nav__link">Advertising Standards Terms</a></li><li class="c-nav__item"><a target="_blank" rel="noreferrer" href="https://web.archive.org/web/20220322044914/https://www.corusent.com/media-centre/brands/" class="c-nav__link">Corus Entertainment</a></li></ul> </nav> </div> </div> </section> <div class="c-ad c-ad--wallpaper "> <div class="c-ad__label">Advertisement</div> <div id="gpt-ad-11-1" class="c-ad__unit" data-ad-pos="1"> </div> <script> if ( typeof( gn_monetize ) !== 'undefined' && typeof( gn_monetize.Ads ) !== 'undefined' && gn_monetize.Ads.initialRequestMade() ) { // Ads script has been loaded, create the ad. gn_monetize.Ads.create( {"sizes":"[1,1]","biddable":false,"id":"gpt-ad-11-1","lazy":false,"targeting":{"pos":1,"slotid":"gpt-ad-11-1"},"companion":false,"mapping":{"[1480,0]":"[1,1]","[0,0]":"[]"},"outOfPage":true} ); } else { // if Ads script not yet loaded, queue up ad data for initialization. var gnAdSettings = gnAdSettings || {}; gnAdSettings.ads = gnAdSettings.ads || []; gnAdSettings.ads.push( {"sizes":"[1,1]","biddable":false,"id":"gpt-ad-11-1","lazy":false,"targeting":{"pos":1,"slotid":"gpt-ad-11-1"},"companion":false,"mapping":{"[1480,0]":"[1,1]","[0,0]":"[]"},"outOfPage":true} ); } </script> </div> </footer> <script type="text/javascript"> _sf_async_config.authors = null; _sf_async_config.sections = null; (function(){ function loadChartbeat() { window._sf_endpt=(new Date()).getTime(); var e = document.createElement('script'); e.setAttribute('language', 'javascript'); e.setAttribute('type', 'text/javascript'); e.setAttribute('src', "\/\/web.archive.org\/web\/20220322044914\/https:\/\/static.chartbeat.com\/js\/chartbeat.js" ); document.body.appendChild(e); } var oldonload = window.onload; window.onload = (typeof window.onload != 'function') ? loadChartbeat : function() { try { oldonload(); } catch (e) { loadChartbeat(); throw e} loadChartbeat(); }; })(); </script> <!-- Adobe Analytics code version: JS-2.6.0. --> <script type="text/javascript"> var gnPageData = {"context_data":{"hourofday":"0","dayofweek":"Tuesday","weekdayweekend":"Weekday","userregion":"national","region":"bc"},"sections":["bc","event"],"props":[]}; </script> <!-- End Adobe Analytics code --> <script> var _comscore = _comscore || []; _comscore.push({ c1: "2", c2: "3005670", c3: "", options: { url_append: "comscorekw=national" } }); (function() { var s = document.createElement("script"), el = document.getElementsByTagName("script")[0]; s.async = true; s.src = (document.location.protocol == "https:" ? "https://web.archive.org/web/20220322044914/https://sb" : "http://b") + ".scorecardresearch.com/beacon.js"; el.parentNode.insertBefore(s, el); })(); </script> <noscript> <img src="https://web.archive.org/web/20220322044914im_/https://sb.scorecardresearch.com/p?c1=2&c2=3005670&c3=&c4=&c5=&c6=&c15=&cv=2.0&cj=1" alt=""/> </noscript> <!-- chartbeat sections for non-single posts --> <script> var _sf_async_config = _sf_async_config || {}; _sf_async_config.sections = ""; </script> <script type="text/javascript" src="https://web.archive.org/web/20220322044914js_/https://globalnews.ca/_static/??-eJyNy8EOgjAQBNAfsmxMjHAxfkuhKyxsd7HbSvh7G+NV4mUyybyBbXWDSkbJkCeMaGCT39zI2nsW3AxmA6YeIgkY07A0tTWznaBeSQYuAT9ofhZMOxSCiFJ+qUCW4YUSNEHCEQWTz5pcKpIp4j+3Oq3K+4OYD3nQ6BL6sB+qSXWxr7jH2/l6abu2qzm/AR45aEY="></script><script src="https://web.archive.org/web/20220322044914js_/https://globalnews.ca/wp-includes/js/dist/i18n.min.js?ver=30fcecb428a0e8383d3776bcdd3a7834" id="wp-i18n-js"></script> <script id="wp-i18n-js-after"> wp.i18n.setLocaleData( { 'text direction\u0004ltr': [ 'ltr' ] } ); </script> <script id="wp-a11y-js-translations"> ( function( domain, translations ) { var localeData = translations.locale_data[ domain ] || translations.locale_data.messages; localeData[""].domain = domain; wp.i18n.setLocaleData( localeData, domain ); } )( "default", { "locale_data": { "messages": { "": {} } } } ); </script> <script src="https://web.archive.org/web/20220322044914js_/https://globalnews.ca/wp-includes/js/dist/a11y.min.js?ver=68e470cf840f69530e9db3be229ad4b6" id="wp-a11y-js"></script> <script id="jquery-ui-autocomplete-js-extra"> var uiAutocompleteL10n = {"noResults":"No results found.","oneResult":"1 result found. Use up and down arrow keys to navigate.","manyResults":"%d results found. Use up and down arrow keys to navigate.","itemSelected":"Item selected."}; </script> <script type="text/javascript" src="https://web.archive.org/web/20220322044914js_/https://globalnews.ca/wp-includes/js/jquery/ui/autocomplete.min.js?m=1647615427g"></script><script src="//web.archive.org/web/20220322044914js_/https://platform.twitter.com/widgets.js?ver=5.9.2" id="gnca-twitter-widget-js"></script> <script src="https://web.archive.org/web/20220322044914js_/https://stats.wp.com/e-202212.js" defer></script> <script> _stq = window._stq || []; _stq.push([ 'view', {v:'ext',j:'1:10.7',blog:'176892389',post:'0',tz:'-4',srv:'globalnews.ca'} ]); _stq.push([ 'clickTrackerInit', '176892389', '0' ]); </script> <div class="l-dynamicElement"></div> </body> </html> <!-- FILE ARCHIVED ON 04:49:14 Mar 22, 2022 AND RETRIEVED FROM THE INTERNET ARCHIVE ON 08:13:46 Dec 04, 2024. JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE. ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C. SECTION 108(a)(3)). --> <!-- playback timings (ms): captures_list: 0.682 exclusion.robots: 0.03 exclusion.robots.policy: 0.018 esindex: 0.012 cdx.remote: 5.881 LoadShardBlock: 186.447 (3) PetaboxLoader3.datanode: 135.947 (4) PetaboxLoader3.resolve: 111.935 (2) load_resource: 112.584 -->