CINXE.COM

Home - First break

<!DOCTYPE html> <html lang="en-US" prefix="og: https://ogp.me/ns#"> <head> <meta charset="UTF-8"> <style>img:is([sizes="auto" i], [sizes^="auto," i]) { contain-intrinsic-size: 3000px 1500px }</style> <!-- Search Engine Optimization by Rank Math - https://rankmath.com/ --> <title>Home - First break</title> <meta name="description" content="You can now read the full issue of First Break below."/> <meta name="robots" content="index, follow, max-snippet:-1, max-video-preview:-1, max-image-preview:large"/> <link rel="canonical" href="https://www.firstbreak.org/" /> <meta property="og:locale" content="en_US" /> <meta property="og:type" content="website" /> <meta property="og:title" content="Home - First break" /> <meta property="og:description" content="You can now read the full issue of First Break below." /> <meta property="og:url" content="https://www.firstbreak.org/" /> <meta property="og:site_name" content="First break" /> <meta property="og:updated_time" content="2025-02-03T10:20:24+02:00" /> <meta property="article:published_time" content="2020-04-17T08:29:27+02:00" /> <meta property="article:modified_time" content="2025-02-03T10:20:24+02:00" /> <meta name="twitter:card" content="summary_large_image" /> <meta name="twitter:title" content="Home - First break" /> <meta name="twitter:description" content="You can now read the full issue of First Break below." /> <script type="application/ld+json" class="rank-math-schema">{"@context":"https://schema.org","@graph":[{"@type":"Organization","@id":"https://www.firstbreak.org/#organization","name":"First break","url":"https://www.firstbreak.org"},{"@type":"WebSite","@id":"https://www.firstbreak.org/#website","url":"https://www.firstbreak.org","name":"First break","publisher":{"@id":"https://www.firstbreak.org/#organization"},"inLanguage":"en-US","potentialAction":{"@type":"SearchAction","target":"https://www.firstbreak.org/?s={search_term_string}","query-input":"required name=search_term_string"}},{"@type":"WebPage","@id":"https://www.firstbreak.org/#webpage","url":"https://www.firstbreak.org/","name":"Home - First break","datePublished":"2020-04-17T08:29:27+02:00","dateModified":"2025-02-03T10:20:24+02:00","about":{"@id":"https://www.firstbreak.org/#organization"},"isPartOf":{"@id":"https://www.firstbreak.org/#website"},"inLanguage":"en-US"},{"@type":"Person","@id":"https://www.firstbreak.org/author/futeage-org/","name":"fut@eage.org","url":"https://www.firstbreak.org/author/futeage-org/","image":{"@type":"ImageObject","@id":"https://secure.gravatar.com/avatar/53d8c609de21d26d853ebcda4465488b?s=96&amp;d=mm&amp;r=g","url":"https://secure.gravatar.com/avatar/53d8c609de21d26d853ebcda4465488b?s=96&amp;d=mm&amp;r=g","caption":"fut@eage.org","inLanguage":"en-US"},"worksFor":{"@id":"https://www.firstbreak.org/#organization"}},{"@type":"Article","headline":"Home - First break","datePublished":"2020-04-17T08:29:27+02:00","dateModified":"2025-02-03T10:20:24+02:00","author":{"@id":"https://www.firstbreak.org/author/futeage-org/","name":"fut@eage.org"},"publisher":{"@id":"https://www.firstbreak.org/#organization"},"description":"You can now read the full issue of First Break below.","name":"Home - First break","@id":"https://www.firstbreak.org/#richSnippet","isPartOf":{"@id":"https://www.firstbreak.org/#webpage"},"inLanguage":"en-US","mainEntityOfPage":{"@id":"https://www.firstbreak.org/#webpage"}}]}</script> <!-- /Rank Math WordPress SEO plugin --> <link rel='dns-prefetch' href='//stats.wp.com' /> <link rel='dns-prefetch' href='//www.googletagmanager.com' /> <link rel="alternate" type="application/rss+xml" title="First break &raquo; Feed" href="https://www.firstbreak.org/feed/" /> <link rel="alternate" type="application/rss+xml" title="First break &raquo; Comments Feed" href="https://www.firstbreak.org/comments/feed/" /> <script> window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/15.0.3\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/15.0.3\/svg\/","svgExt":".svg","source":{"wpemoji":"https:\/\/www.firstbreak.org\/wp-includes\/js\/wp-emoji.js?ver=6.7.2","twemoji":"https:\/\/www.firstbreak.org\/wp-includes\/js\/twemoji.js?ver=6.7.2"}}; /** * @output wp-includes/js/wp-emoji-loader.js */ /** * Emoji Settings as exported in PHP via _print_emoji_detection_script(). * @typedef WPEmojiSettings * @type {object} * @property {?object} source * @property {?string} source.concatemoji * @property {?string} source.twemoji * @property {?string} source.wpemoji * @property {?boolean} DOMReady * @property {?Function} readyCallback */ /** * Support tests. * @typedef SupportTests * @type {object} * @property {?boolean} flag * @property {?boolean} emoji */ /** * IIFE to detect emoji support and load Twemoji if needed. * * @param {Window} window * @param {Document} document * @param {WPEmojiSettings} settings */ ( function wpEmojiLoader( window, document, settings ) { if ( typeof Promise === 'undefined' ) { return; } var sessionStorageKey = 'wpEmojiSettingsSupports'; var tests = [ 'flag', 'emoji' ]; /** * Checks whether the browser supports offloading to a Worker. * * @since 6.3.0 * * @private * * @returns {boolean} */ function supportsWorkerOffloading() { return ( typeof Worker !== 'undefined' && typeof OffscreenCanvas !== 'undefined' && typeof URL !== 'undefined' && URL.createObjectURL && typeof Blob !== 'undefined' ); } /** * @typedef SessionSupportTests * @type {object} * @property {number} timestamp * @property {SupportTests} supportTests */ /** * Get support tests from session. * * @since 6.3.0 * * @private * * @returns {?SupportTests} Support tests, or null if not set or older than 1 week. */ function getSessionSupportTests() { try { /** @type {SessionSupportTests} */ var item = JSON.parse( sessionStorage.getItem( sessionStorageKey ) ); if ( typeof item === 'object' && typeof item.timestamp === 'number' && new Date().valueOf() < item.timestamp + 604800 && // Note: Number is a week in seconds. typeof item.supportTests === 'object' ) { return item.supportTests; } } catch ( e ) {} return null; } /** * Persist the supports in session storage. * * @since 6.3.0 * * @private * * @param {SupportTests} supportTests Support tests. */ function setSessionSupportTests( supportTests ) { try { /** @type {SessionSupportTests} */ var item = { supportTests: supportTests, timestamp: new Date().valueOf() }; sessionStorage.setItem( sessionStorageKey, JSON.stringify( item ) ); } catch ( e ) {} } /** * Checks if two sets of Emoji characters render the same visually. * * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing * scope. Everything must be passed by parameters. * * @since 4.9.0 * * @private * * @param {CanvasRenderingContext2D} context 2D Context. * @param {string} set1 Set of Emoji to test. * @param {string} set2 Set of Emoji to test. * * @return {boolean} True if the two sets render the same. */ function emojiSetsRenderIdentically( context, set1, set2 ) { // Cleanup from previous test. context.clearRect( 0, 0, context.canvas.width, context.canvas.height ); context.fillText( set1, 0, 0 ); var rendered1 = new Uint32Array( context.getImageData( 0, 0, context.canvas.width, context.canvas.height ).data ); // Cleanup from previous test. context.clearRect( 0, 0, context.canvas.width, context.canvas.height ); context.fillText( set2, 0, 0 ); var rendered2 = new Uint32Array( context.getImageData( 0, 0, context.canvas.width, context.canvas.height ).data ); return rendered1.every( function ( rendered2Data, index ) { return rendered2Data === rendered2[ index ]; } ); } /** * Determines if the browser properly renders Emoji that Twemoji can supplement. * * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing * scope. Everything must be passed by parameters. * * @since 4.2.0 * * @private * * @param {CanvasRenderingContext2D} context 2D Context. * @param {string} type Whether to test for support of "flag" or "emoji". * @param {Function} emojiSetsRenderIdentically Reference to emojiSetsRenderIdentically function, needed due to minification. * * @return {boolean} True if the browser can render emoji, false if it cannot. */ function browserSupportsEmoji( context, type, emojiSetsRenderIdentically ) { var isIdentical; switch ( type ) { case 'flag': /* * Test for Transgender flag compatibility. Added in Unicode 13. * * To test for support, we try to render it, and compare the rendering to how it would look if * the browser doesn't render it correctly (white flag emoji + transgender symbol). */ isIdentical = emojiSetsRenderIdentically( context, '\uD83C\uDFF3\uFE0F\u200D\u26A7\uFE0F', // as a zero-width joiner sequence '\uD83C\uDFF3\uFE0F\u200B\u26A7\uFE0F' // separated by a zero-width space ); if ( isIdentical ) { return false; } /* * Test for UN flag compatibility. This is the least supported of the letter locale flags, * so gives us an easy test for full support. * * To test for support, we try to render it, and compare the rendering to how it would look if * the browser doesn't render it correctly ([U] + [N]). */ isIdentical = emojiSetsRenderIdentically( context, '\uD83C\uDDFA\uD83C\uDDF3', // as the sequence of two code points '\uD83C\uDDFA\u200B\uD83C\uDDF3' // as the two code points separated by a zero-width space ); if ( isIdentical ) { return false; } /* * Test for English flag compatibility. England is a country in the United Kingdom, it * does not have a two letter locale code but rather a five letter sub-division code. * * To test for support, we try to render it, and compare the rendering to how it would look if * the browser doesn't render it correctly (black flag emoji + [G] + [B] + [E] + [N] + [G]). */ isIdentical = emojiSetsRenderIdentically( context, // as the flag sequence '\uD83C\uDFF4\uDB40\uDC67\uDB40\uDC62\uDB40\uDC65\uDB40\uDC6E\uDB40\uDC67\uDB40\uDC7F', // with each code point separated by a zero-width space '\uD83C\uDFF4\u200B\uDB40\uDC67\u200B\uDB40\uDC62\u200B\uDB40\uDC65\u200B\uDB40\uDC6E\u200B\uDB40\uDC67\u200B\uDB40\uDC7F' ); return ! isIdentical; case 'emoji': /* * Four and twenty blackbirds baked in a pie. * * To test for Emoji 15.0 support, try to render a new emoji: Blackbird. * * The Blackbird is a ZWJ sequence combining 🐦 Bird and ⬛ large black square., * * 0x1F426 (\uD83D\uDC26) == Bird * 0x200D == Zero-Width Joiner (ZWJ) that links the code points for the new emoji or * 0x200B == Zero-Width Space (ZWS) that is rendered for clients not supporting the new emoji. * 0x2B1B == Large Black Square * * When updating this test for future Emoji releases, ensure that individual emoji that make up the * sequence come from older emoji standards. */ isIdentical = emojiSetsRenderIdentically( context, '\uD83D\uDC26\u200D\u2B1B', // as the zero-width joiner sequence '\uD83D\uDC26\u200B\u2B1B' // separated by a zero-width space ); return ! isIdentical; } return false; } /** * Checks emoji support tests. * * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing * scope. Everything must be passed by parameters. * * @since 6.3.0 * * @private * * @param {string[]} tests Tests. * @param {Function} browserSupportsEmoji Reference to browserSupportsEmoji function, needed due to minification. * @param {Function} emojiSetsRenderIdentically Reference to emojiSetsRenderIdentically function, needed due to minification. * * @return {SupportTests} Support tests. */ function testEmojiSupports( tests, browserSupportsEmoji, emojiSetsRenderIdentically ) { var canvas; if ( typeof WorkerGlobalScope !== 'undefined' && self instanceof WorkerGlobalScope ) { canvas = new OffscreenCanvas( 300, 150 ); // Dimensions are default for HTMLCanvasElement. } else { canvas = document.createElement( 'canvas' ); } var context = canvas.getContext( '2d', { willReadFrequently: true } ); /* * Chrome on OS X added native emoji rendering in M41. Unfortunately, * it doesn't work when the font is bolder than 500 weight. So, we * check for bold rendering support to avoid invisible emoji in Chrome. */ context.textBaseline = 'top'; context.font = '600 32px Arial'; var supports = {}; tests.forEach( function ( test ) { supports[ test ] = browserSupportsEmoji( context, test, emojiSetsRenderIdentically ); } ); return supports; } /** * Adds a script to the head of the document. * * @ignore * * @since 4.2.0 * * @param {string} src The url where the script is located. * * @return {void} */ function addScript( src ) { var script = document.createElement( 'script' ); script.src = src; script.defer = true; document.head.appendChild( script ); } settings.supports = { everything: true, everythingExceptFlag: true }; // Create a promise for DOMContentLoaded since the worker logic may finish after the event has fired. var domReadyPromise = new Promise( function ( resolve ) { document.addEventListener( 'DOMContentLoaded', resolve, { once: true } ); } ); // Obtain the emoji support from the browser, asynchronously when possible. new Promise( function ( resolve ) { var supportTests = getSessionSupportTests(); if ( supportTests ) { resolve( supportTests ); return; } if ( supportsWorkerOffloading() ) { try { // Note that the functions are being passed as arguments due to minification. var workerScript = 'postMessage(' + testEmojiSupports.toString() + '(' + [ JSON.stringify( tests ), browserSupportsEmoji.toString(), emojiSetsRenderIdentically.toString() ].join( ',' ) + '));'; var blob = new Blob( [ workerScript ], { type: 'text/javascript' } ); var worker = new Worker( URL.createObjectURL( blob ), { name: 'wpTestEmojiSupports' } ); worker.onmessage = function ( event ) { supportTests = event.data; setSessionSupportTests( supportTests ); worker.terminate(); resolve( supportTests ); }; return; } catch ( e ) {} } supportTests = testEmojiSupports( tests, browserSupportsEmoji, emojiSetsRenderIdentically ); setSessionSupportTests( supportTests ); resolve( supportTests ); } ) // Once the browser emoji support has been obtained from the session, finalize the settings. .then( function ( supportTests ) { /* * Tests the browser support for flag emojis and other emojis, and adjusts the * support settings accordingly. */ for ( var test in supportTests ) { settings.supports[ test ] = supportTests[ test ]; settings.supports.everything = settings.supports.everything && settings.supports[ test ]; if ( 'flag' !== test ) { settings.supports.everythingExceptFlag = settings.supports.everythingExceptFlag && settings.supports[ test ]; } } settings.supports.everythingExceptFlag = settings.supports.everythingExceptFlag && ! settings.supports.flag; // Sets DOMReady to false and assigns a ready function to settings. settings.DOMReady = false; settings.readyCallback = function () { settings.DOMReady = true; }; } ) .then( function () { return domReadyPromise; } ) .then( function () { // When the browser can not render everything we need to load a polyfill. if ( ! settings.supports.everything ) { settings.readyCallback(); var src = settings.source || {}; if ( src.concatemoji ) { addScript( src.concatemoji ); } else if ( src.wpemoji && src.twemoji ) { addScript( src.twemoji ); addScript( src.wpemoji ); } } } ); } )( window, document, window._wpemojiSettings ); </script> <!-- firstbreak.org is managing ads with Advanced Ads 1.56.1 --><script id="first-ready"> /** * Wait for the page to be ready before firing JS. * * @param {function} callback - A callable function to be executed. * @param {string} [requestedState=complete] - document.readyState to wait for. Defaults to 'complete', can be 'interactive'. */ window.advanced_ads_ready = function ( callback, requestedState ) { requestedState = requestedState || 'complete'; var checkState = function ( state ) { return requestedState === 'interactive' ? state !== 'loading' : state === 'complete'; }; // If we have reached the correct state, fire the callback. if ( checkState( document.readyState ) ) { callback(); return; } // We are not yet in the correct state, attach an event handler, only fire once if the requested state is 'interactive'. document.addEventListener( 'readystatechange', function ( event ) { if ( checkState( event.target.readyState ) ) { callback(); } }, {once: requestedState === 'interactive'} ); }; window.advanced_ads_ready_queue = window.advanced_ads_ready_queue || []; </script> <style id='wp-emoji-styles-inline-css'> img.wp-smiley, img.emoji { display: inline !important; border: none !important; box-shadow: none !important; height: 1em !important; width: 1em !important; margin: 0 0.07em !important; vertical-align: -0.1em !important; background: none !important; padding: 0 !important; } </style> <link rel='stylesheet' id='all-css-4' href='https://www.firstbreak.org/_static/??-eJzTLy/QzcxLzilNSS3WzyrWz01NyUxMzUnNTc0rQeEU5CRWphbp5qSmJyZX6uVm5uklFxfr6OPTDpRD5oM02OfaGpobWxpZmhgbGwAAhN0tcg==' type='text/css' media='all' /> <style id='jetpack-sharing-buttons-style-inline-css'> .jetpack-sharing-buttons__services-list{display:flex;flex-direction:row;flex-wrap:wrap;gap:0;list-style-type:none;margin:5px;padding:0}.jetpack-sharing-buttons__services-list.has-small-icon-size{font-size:12px}.jetpack-sharing-buttons__services-list.has-normal-icon-size{font-size:16px}.jetpack-sharing-buttons__services-list.has-large-icon-size{font-size:24px}.jetpack-sharing-buttons__services-list.has-huge-icon-size{font-size:36px}@media print{.jetpack-sharing-buttons__services-list{display:none!important}}.editor-styles-wrapper .wp-block-jetpack-sharing-buttons{gap:0;padding-inline-start:0}ul.jetpack-sharing-buttons__services-list.has-background{padding:1.25em 2.375em} </style> <style id='rank-math-toc-block-style-inline-css'> .wp-block-rank-math-toc-block nav ol{counter-reset:item}.wp-block-rank-math-toc-block nav ol li{display:block}.wp-block-rank-math-toc-block nav ol li:before{content:counters(item, ".") ". ";counter-increment:item} </style> <style id='rank-math-rich-snippet-style-inline-css'> /*! * Plugin: Rank Math * URL: https://rankmath.com/wordpress/plugin/seo-suite/ * Name: rank-math-review-snippet.css */@-webkit-keyframes spin{0%{-webkit-transform:rotate(0deg)}100%{-webkit-transform:rotate(-360deg)}}@keyframes spin{0%{-webkit-transform:rotate(0deg)}100%{-webkit-transform:rotate(-360deg)}}@keyframes bounce{from{-webkit-transform:translateY(0px);transform:translateY(0px)}to{-webkit-transform:translateY(-5px);transform:translateY(-5px)}}@-webkit-keyframes bounce{from{-webkit-transform:translateY(0px);transform:translateY(0px)}to{-webkit-transform:translateY(-5px);transform:translateY(-5px)}}@-webkit-keyframes loading{0%{background-size:20% 50% ,20% 50% ,20% 50%}20%{background-size:20% 20% ,20% 50% ,20% 50%}40%{background-size:20% 100%,20% 20% ,20% 50%}60%{background-size:20% 50% ,20% 100%,20% 20%}80%{background-size:20% 50% ,20% 50% ,20% 100%}100%{background-size:20% 50% ,20% 50% ,20% 50%}}@keyframes loading{0%{background-size:20% 50% ,20% 50% ,20% 50%}20%{background-size:20% 20% ,20% 50% ,20% 50%}40%{background-size:20% 100%,20% 20% ,20% 50%}60%{background-size:20% 50% ,20% 100%,20% 20%}80%{background-size:20% 50% ,20% 50% ,20% 100%}100%{background-size:20% 50% ,20% 50% ,20% 50%}}:root{--rankmath-wp-adminbar-height: 0}#rank-math-rich-snippet-wrapper{overflow:hidden}#rank-math-rich-snippet-wrapper h5.rank-math-title{display:block;font-size:18px;line-height:1.4}#rank-math-rich-snippet-wrapper .rank-math-review-image{float:right;max-width:40%;margin-left:15px}#rank-math-rich-snippet-wrapper .rank-math-review-data{margin-bottom:15px}#rank-math-rich-snippet-wrapper .rank-math-total-wrapper{width:100%;padding:0 0 20px 0;float:left;clear:both;position:relative;-webkit-box-sizing:border-box;box-sizing:border-box}#rank-math-rich-snippet-wrapper .rank-math-total-wrapper .rank-math-total{border:0;display:block;margin:0;width:auto;float:left;text-align:left;padding:0;font-size:24px;line-height:1;font-weight:700;-webkit-box-sizing:border-box;box-sizing:border-box;overflow:hidden}#rank-math-rich-snippet-wrapper .rank-math-total-wrapper .rank-math-review-star{float:left;margin-left:15px;margin-top:5px;position:relative;z-index:99;line-height:1}#rank-math-rich-snippet-wrapper .rank-math-total-wrapper .rank-math-review-star .rank-math-review-result-wrapper{display:inline-block;white-space:nowrap;position:relative;color:#e7e7e7}#rank-math-rich-snippet-wrapper .rank-math-total-wrapper .rank-math-review-star .rank-math-review-result-wrapper .rank-math-review-result{position:absolute;top:0;left:0;overflow:hidden;white-space:nowrap;color:#ffbe01}#rank-math-rich-snippet-wrapper .rank-math-total-wrapper .rank-math-review-star .rank-math-review-result-wrapper i{font-size:18px;-webkit-text-stroke-width:1px;font-style:normal;padding:0 2px;line-height:inherit}#rank-math-rich-snippet-wrapper .rank-math-total-wrapper .rank-math-review-star .rank-math-review-result-wrapper i:before{content:"\2605"}body.rtl #rank-math-rich-snippet-wrapper .rank-math-review-image{float:left;margin-left:0;margin-right:15px}body.rtl #rank-math-rich-snippet-wrapper .rank-math-total-wrapper .rank-math-total{float:right}body.rtl #rank-math-rich-snippet-wrapper .rank-math-total-wrapper .rank-math-review-star{float:right;margin-left:0;margin-right:15px}body.rtl #rank-math-rich-snippet-wrapper .rank-math-total-wrapper .rank-math-review-star .rank-math-review-result{left:auto;right:0}@media screen and (max-width: 480px){#rank-math-rich-snippet-wrapper .rank-math-review-image{display:block;max-width:100%;width:100%;text-align:center;margin-right:0}#rank-math-rich-snippet-wrapper .rank-math-review-data{clear:both}}.clear{clear:both} </style> <style id='filebird-block-filebird-gallery-style-inline-css'> ul.filebird-block-filebird-gallery{margin:auto!important;padding:0!important;width:100%}ul.filebird-block-filebird-gallery.layout-grid{display:grid;grid-gap:20px;align-items:stretch;grid-template-columns:repeat(var(--columns),1fr);justify-items:stretch}ul.filebird-block-filebird-gallery.layout-grid li img{border:1px solid #ccc;box-shadow:2px 2px 6px 0 rgba(0,0,0,.3);height:100%;max-width:100%;-o-object-fit:cover;object-fit:cover;width:100%}ul.filebird-block-filebird-gallery.layout-masonry{-moz-column-count:var(--columns);-moz-column-gap:var(--space);column-gap:var(--space);-moz-column-width:var(--min-width);columns:var(--min-width) var(--columns);display:block;overflow:auto}ul.filebird-block-filebird-gallery.layout-masonry li{margin-bottom:var(--space)}ul.filebird-block-filebird-gallery li{list-style:none}ul.filebird-block-filebird-gallery li figure{height:100%;margin:0;padding:0;position:relative;width:100%}ul.filebird-block-filebird-gallery li figure figcaption{background:linear-gradient(0deg,rgba(0,0,0,.7),rgba(0,0,0,.3) 70%,transparent);bottom:0;box-sizing:border-box;color:#fff;font-size:.8em;margin:0;max-height:100%;overflow:auto;padding:3em .77em .7em;position:absolute;text-align:center;width:100%;z-index:2}ul.filebird-block-filebird-gallery li figure figcaption a{color:inherit} </style> <style id='classic-theme-styles-inline-css'> /** * These rules are needed for backwards compatibility. * They should match the button element rules in the base theme.json file. */ .wp-block-button__link { color: #ffffff; background-color: #32373c; border-radius: 9999px; /* 100% causes an oval, but any explicit but really high value retains the pill shape. */ /* This needs a low specificity so it won't override the rules from the button element if defined in theme.json. */ box-shadow: none; text-decoration: none; /* The extra 2px are added to size solids the same as the outline versions.*/ padding: calc(0.667em + 2px) calc(1.333em + 2px); font-size: 1.125em; } .wp-block-file__button { background: #32373c; color: #ffffff; text-decoration: none; } </style> <style id='global-styles-inline-css'> :root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--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--color--accent: #e40f48;--wp--preset--color--primary: #000000;--wp--preset--color--secondary: #6b6b6b;--wp--preset--color--subtle-background: #d8d8d8;--wp--preset--color--background: #fafafa;--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--font-size--small: 18px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 26.25px;--wp--preset--font-size--x-large: 42px;--wp--preset--font-size--normal: 21px;--wp--preset--font-size--larger: 32px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);}:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}.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;} :where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;} :where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;} :root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;} </style> <link rel='stylesheet' id='all-css-16' href='https://www.firstbreak.org/_static/??-eJyVkNtuwyAMhl9oDqoyNe3FtGch4Cas5iBsFPXtB+lSZep6sRuE7f//fFBLAhODYBCVqEwusEI/ok0ZmZVmRmFleJ/tavim/jBK1oFJC64y8IXEkQtT0bQnSU5AuqUnBF6cmBnzE1Rm9FjFSw1u91ex3AiflL7ANsEXStLmCof3rlc+2kIN0UggMVLtH33S8ov6cp3ewoVcGmO8gm0/ICe432TNdt6FB8MFQ8XiT1nz7Cr19cWQ6mhBYt6o5EaFq+d+9K0O/+Q08yWvKttcn/7jMPTn8+k4HIdv56W+MQ==' type='text/css' media='all' /> <style id='twentytwenty-style-inline-css'> .color-accent,.color-accent-hover:hover,.color-accent-hover:focus,:root .has-accent-color,.has-drop-cap:not(:focus):first-letter,.wp-block-button.is-style-outline,a { color: #e40f48; }blockquote,.border-color-accent,.border-color-accent-hover:hover,.border-color-accent-hover:focus { border-color: #e40f48; }button,.button,.faux-button,.wp-block-button__link,.wp-block-file .wp-block-file__button,input[type="button"],input[type="reset"],input[type="submit"],.bg-accent,.bg-accent-hover:hover,.bg-accent-hover:focus,:root .has-accent-background-color,.comment-reply-link { background-color: #e40f48; }.fill-children-accent,.fill-children-accent * { fill: #e40f48; }:root .has-background-color,button,.button,.faux-button,.wp-block-button__link,.wp-block-file__button,input[type="button"],input[type="reset"],input[type="submit"],.wp-block-button,.comment-reply-link,.has-background.has-primary-background-color:not(.has-text-color),.has-background.has-primary-background-color *:not(.has-text-color),.has-background.has-accent-background-color:not(.has-text-color),.has-background.has-accent-background-color *:not(.has-text-color) { color: #fafafa; }:root .has-background-background-color { background-color: #fafafa; }body,.entry-title a,:root .has-primary-color { color: #000000; }:root .has-primary-background-color { background-color: #000000; }cite,figcaption,.wp-caption-text,.post-meta,.entry-content .wp-block-archives li,.entry-content .wp-block-categories li,.entry-content .wp-block-latest-posts li,.wp-block-latest-comments__comment-date,.wp-block-latest-posts__post-date,.wp-block-embed figcaption,.wp-block-image figcaption,.wp-block-pullquote cite,.comment-metadata,.comment-respond .comment-notes,.comment-respond .logged-in-as,.pagination .dots,.entry-content hr:not(.has-background),hr.styled-separator,:root .has-secondary-color { color: #6b6b6b; }:root .has-secondary-background-color { background-color: #6b6b6b; }pre,fieldset,input,textarea,table,table *,hr { border-color: #d8d8d8; }caption,code,code,kbd,samp,.wp-block-table.is-style-stripes tbody tr:nth-child(odd),:root .has-subtle-background-background-color { background-color: #d8d8d8; }.wp-block-table.is-style-stripes { border-bottom-color: #d8d8d8; }.wp-block-latest-posts.is-grid li { border-top-color: #d8d8d8; }:root .has-subtle-background-color { color: #d8d8d8; }body:not(.overlay-header) .primary-menu > li > a,body:not(.overlay-header) .primary-menu > li > .icon,.modal-menu a,.footer-menu a, .footer-widgets a,#site-footer .wp-block-button.is-style-outline,.wp-block-pullquote:before,.singular:not(.overlay-header) .entry-header a,.archive-header a,.header-footer-group .color-accent,.header-footer-group .color-accent-hover:hover { color: #cd2653; }.social-icons a,#site-footer button:not(.toggle),#site-footer .button,#site-footer .faux-button,#site-footer .wp-block-button__link,#site-footer .wp-block-file__button,#site-footer input[type="button"],#site-footer input[type="reset"],#site-footer input[type="submit"] { background-color: #cd2653; }.header-footer-group,body:not(.overlay-header) #site-header .toggle,.menu-modal .toggle { color: #000000; }body:not(.overlay-header) .primary-menu ul { background-color: #000000; }body:not(.overlay-header) .primary-menu > li > ul:after { border-bottom-color: #000000; }body:not(.overlay-header) .primary-menu ul ul:after { border-left-color: #000000; }.site-description,body:not(.overlay-header) .toggle-inner .toggle-text,.widget .post-date,.widget .rss-date,.widget_archive li,.widget_categories li,.widget cite,.widget_pages li,.widget_meta li,.widget_nav_menu li,.powered-by-wordpress,.to-the-top,.singular .entry-header .post-meta,.singular:not(.overlay-header) .entry-header .post-meta a { color: #6d6d6d; }.header-footer-group pre,.header-footer-group fieldset,.header-footer-group input,.header-footer-group textarea,.header-footer-group table,.header-footer-group table *,.footer-nav-widgets-wrapper,#site-footer,.menu-modal nav *,.footer-widgets-outer-wrapper,.footer-top { border-color: #dcd7ca; }.header-footer-group table caption,body:not(.overlay-header) .header-inner .toggle-wrapper::before { background-color: #dcd7ca; } </style> <link rel='stylesheet' id='print-css-16' href='https://www.firstbreak.org/wp-content/themes/twentytwenty/print.css?m=1729506113g' type='text/css' media='print' /> <link rel='stylesheet' id='elementor-post-182-css' href='https://www.firstbreak.org/wp-content/uploads/sites/3/elementor/css/post-182.css?ver=1737121975' media='all' /> <link rel='stylesheet' id='all-css-18' href='https://www.firstbreak.org/_static/??-eJylkksOwjAMRC+ECQXxWyDOElK3tchPcUquj1W6YFEELatokpkn27EqEUzwGX1W0fYteVYxFExRmzugRScvrDQzymGYVZMGe70WsVIT8TEUEsQU3pOF6hYzeP0AMfRrR/47ZALAUhumeXFLN8WFIib1OA2wl5pXgJhqyhS8tuKAJYixhw51Tb5dPAMSM1ji/Bvhw1cw6mQ6aEJy88fZiAl0QQ4OX5shF6P+k8TB0rBgV3epjrvz9nCuNvsnm0UD/Q==' type='text/css' media='all' /> <link rel='stylesheet' id='elementor-post-13-css' href='https://www.firstbreak.org/wp-content/uploads/sites/3/elementor/css/post-13.css?ver=1738570866' media='all' /> <link rel='stylesheet' id='google-fonts-1-css' href='https://fonts.googleapis.com/css?family=Roboto%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic%7CRoboto+Slab%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic&#038;display=auto&#038;ver=6.7.2' media='all' /> <link rel="preconnect" href="https://fonts.gstatic.com/" crossorigin><script id="jquery-core-js-extra"> var pp = {"ajax_url":"https:\/\/www.firstbreak.org\/wp-admin\/admin-ajax.php"}; </script> <script type="text/javascript" src="https://www.firstbreak.org/_static/??-eJx9jcsKwkAMRX/IMeoI0oX4LUMbaoYmHZsMtX9vfHTThRASLpyTC3MJJO1QO1TIPo+K0/I7+6w7+AcEpn5KhivYjmIoBmWoPYkCo1S3QxnV3jInD0yy5e2O7O9t9rB8NyRVtE8lSYdPV258PV5ic2rOMR7yC7ATRNM=" ></script><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://www.firstbreak.org/xmlrpc.php?rsd" /> <meta name="generator" content="WordPress 6.7.2" /> <link rel='shortlink' href='https://www.firstbreak.org/' /> <link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://www.firstbreak.org/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.firstbreak.org%2F" /> <link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://www.firstbreak.org/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.firstbreak.org%2F&#038;format=xml" /> <meta name="generator" content="Site Kit by Google 1.146.0" /><link rel="alternate" hreflang="en-US" href="https://www.firstbreak.org/"/> <link rel="alternate" hreflang="ru-RU" href="https://www.firstbreak.org/ru/"/> <link rel="alternate" hreflang="en" href="https://www.firstbreak.org/"/> <link rel="alternate" hreflang="ru" href="https://www.firstbreak.org/ru/"/> <style>img#wpstats{display:none}</style> <script>document.documentElement.className = document.documentElement.className.replace( 'no-js', 'js' );</script> <meta name="generator" content="Elementor 3.27.3; features: additional_custom_breakpoints; settings: css_print_method-external, google_font-enabled, font_display-auto"> <style>.recentcomments a{display:inline !important;padding:0 !important;margin:0 !important;}</style> <style> .e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload), .e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload) * { background-image: none !important; } @media screen and (max-height: 1024px) { .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload), .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload) * { background-image: none !important; } } @media screen and (max-height: 640px) { .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload), .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload) * { background-image: none !important; } } </style> <style id="custom-background-css"> body.custom-background { background-color: #fafafa; } </style> <meta name="generator" content="Powered by Slider Revolution 6.6.18 - responsive, Mobile-Friendly Slider Plugin for WordPress with comfortable drag and drop interface." /> <script async src="https://securepubads.g.doubleclick.net/tag/js/gpt.js"></script> <script> window.googletag = window.googletag || {cmd: []}; googletag.cmd.push(function() { googletag.defineSlot('/20287594127/FirstBreak_Skyscraper', [120, 360], 'div-gpt-ad-1592560125922-0').addService(googletag.pubads()); googletag.pubads().enableSingleRequest(); googletag.enableServices(); }); </script> <!-- <script async src="https://securepubads.g.doubleclick.net/tag/js/gpt.js"></script> <script> window.googletag = window.googletag || {cmd: []}; googletag.cmd.push(function() { googletag.defineSlot('/20287594127/FirstBreak_Skyscraper', [120, 360], 'div-gpt-ad-1588934446920-0').addService(googletag.pubads()); googletag.pubads().enableSingleRequest(); googletag.enableServices(); }); </script> --><script async src="https://securepubads.g.doubleclick.net/tag/js/gpt.js"></script> <script> window.googletag = window.googletag || {cmd: []}; googletag.cmd.push(function() { googletag.defineSlot('/20287594127/FirstBreak_Leaderboard', [728, 90], 'div-gpt-ad-1592559799149-0').addService(googletag.pubads()); googletag.pubads().enableSingleRequest(); googletag.enableServices(); }); </script><!-- LEADERBOARD HEADER TEST --> <script async='async' src="https://securepubads.g.doubleclick.net/tag/js/gpt.js"></script> <script> window.googletag = window.googletag || {cmd: []}; googletag.cmd.push(function() { var adSlot = googletag.defineSlot('/20287594127/WP_EAGE_leaderboard', [[728, 360], [970, 90], [320, 180], [580, 400], 'fluid'], 'div-gpt-ad-1594293805289-0') .addService(googletag.pubads()); var mapping = googletag.sizeMapping(). addSize([1024, 768], [728, 360], [970, 90]). addSize([640, 480], [580, 400]). addSize([0, 0], [320, 180]). build(); adSlot.defineSizeMapping(mapping); googletag.pubads().enableSingleRequest(); googletag.enableServices(); googletag.display('div-gpt-ad-1594293805289-0'); }); </script><script>function setREVStartSize(e){ //window.requestAnimationFrame(function() { window.RSIW = window.RSIW===undefined ? window.innerWidth : window.RSIW; window.RSIH = window.RSIH===undefined ? window.innerHeight : window.RSIH; try { var pw = document.getElementById(e.c).parentNode.offsetWidth, newh; pw = pw===0 || isNaN(pw) || (e.l=="fullwidth" || e.layout=="fullwidth") ? window.RSIW : pw; e.tabw = e.tabw===undefined ? 0 : parseInt(e.tabw); e.thumbw = e.thumbw===undefined ? 0 : parseInt(e.thumbw); e.tabh = e.tabh===undefined ? 0 : parseInt(e.tabh); e.thumbh = e.thumbh===undefined ? 0 : parseInt(e.thumbh); e.tabhide = e.tabhide===undefined ? 0 : parseInt(e.tabhide); e.thumbhide = e.thumbhide===undefined ? 0 : parseInt(e.thumbhide); e.mh = e.mh===undefined || e.mh=="" || e.mh==="auto" ? 0 : parseInt(e.mh,0); if(e.layout==="fullscreen" || e.l==="fullscreen") newh = Math.max(e.mh,window.RSIH); else{ e.gw = Array.isArray(e.gw) ? e.gw : [e.gw]; for (var i in e.rl) if (e.gw[i]===undefined || e.gw[i]===0) e.gw[i] = e.gw[i-1]; e.gh = e.el===undefined || e.el==="" || (Array.isArray(e.el) && e.el.length==0)? e.gh : e.el; e.gh = Array.isArray(e.gh) ? e.gh : [e.gh]; for (var i in e.rl) if (e.gh[i]===undefined || e.gh[i]===0) e.gh[i] = e.gh[i-1]; var nl = new Array(e.rl.length), ix = 0, sl; e.tabw = e.tabhide>=pw ? 0 : e.tabw; e.thumbw = e.thumbhide>=pw ? 0 : e.thumbw; e.tabh = e.tabhide>=pw ? 0 : e.tabh; e.thumbh = e.thumbhide>=pw ? 0 : e.thumbh; for (var i in e.rl) nl[i] = e.rl[i]<window.RSIW ? 0 : e.rl[i]; sl = nl[0]; for (var i in nl) if (sl>nl[i] && nl[i]>0) { sl = nl[i]; ix=i;} var m = pw>(e.gw[ix]+e.tabw+e.thumbw) ? 1 : (pw-(e.tabw+e.thumbw)) / (e.gw[ix]); newh = (e.gh[ix] * m) + (e.tabh + e.thumbh); } var el = document.getElementById(e.c); if (el!==null && el) el.style.height = newh+"px"; el = document.getElementById(e.c+"_wrapper"); if (el!==null && el) { el.style.height = newh+"px"; el.style.display = "block"; } } catch(e){ console.log("Failure at Presize of Slider:" + e) } //}); };</script> <meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" /></head> <body class="home page-template page-template-elementor_canvas page page-id-13 custom-background wp-embed-responsive translatepress-en_US singular enable-search-modal missing-post-thumbnail has-no-pagination not-showing-comments show-avatars elementor_canvas footer-top-visible elementor-default elementor-template-canvas elementor-kit-182 elementor-page elementor-page-13 aa-prefix-first-"> <a class="skip-link screen-reader-text" href="#site-content">Skip to the content</a> <div data-elementor-type="wp-post" data-elementor-id="13" class="elementor elementor-13" data-elementor-post-type="page"> <section class="elementor-section elementor-top-section elementor-element elementor-element-176a8fab elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="176a8fab" data-element_type="section" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-7e8b06ff" data-id="7e8b06ff" data-element_type="column" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-5a9447f4 elementor-widget elementor-widget-template" data-id="5a9447f4" data-element_type="widget" data-widget_type="template.default"> <div class="elementor-widget-container"> <div class="elementor-template"> <div data-elementor-type="section" data-elementor-id="1832" class="elementor elementor-1832" data-elementor-post-type="elementor_library"> <section class="elementor-section elementor-top-section elementor-element elementor-element-2b550ecf elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="2b550ecf" data-element_type="section" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-41917905" data-id="41917905" data-element_type="column" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-widget-wrap elementor-element-populated"> <section class="elementor-section elementor-inner-section elementor-element elementor-element-3c2879df elementor-section-height-min-height elementor-section-content-top elementor-section-boxed elementor-section-height-default" data-id="3c2879df" data-element_type="section" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-container elementor-column-gap-no"> <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-71b86161" data-id="71b86161" data-element_type="column"> <div class="elementor-widget-wrap"> </div> </div> <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-8e3b81b" data-id="8e3b81b" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-69cbc6b9 elementor-nav-menu__align-end elementor-nav-menu--dropdown-none elementor-widget elementor-widget-nav-menu" data-id="69cbc6b9" data-element_type="widget" data-settings="{&quot;layout&quot;:&quot;horizontal&quot;,&quot;submenu_icon&quot;:{&quot;value&quot;:&quot;&lt;i class=\&quot;fas fa-caret-down\&quot;&gt;&lt;\/i&gt;&quot;,&quot;library&quot;:&quot;fa-solid&quot;}}" data-widget_type="nav-menu.default"> <div class="elementor-widget-container"> <nav aria-label="Menu" class="elementor-nav-menu--main elementor-nav-menu__container elementor-nav-menu--layout-horizontal e--pointer-underline e--animation-fade"> <ul id="menu-1-69cbc6b9" class="elementor-nav-menu"><li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-21"><a href="https://www.eage.org/" class="elementor-item" target="_blank" rel="noopener">EAGE Website</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-183"><a href="https://www.firstbreak.org/about-us/" class="elementor-item">About us</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-179"><a href="https://www.firstbreak.org/contact-us/" class="elementor-item">Contact us</a></li> </ul> </nav> <nav class="elementor-nav-menu--dropdown elementor-nav-menu__container" aria-hidden="true"> <ul id="menu-2-69cbc6b9" class="elementor-nav-menu"><li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-21"><a href="https://www.eage.org/" class="elementor-item" tabindex="-1" target="_blank" rel="noopener">EAGE Website</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-183"><a href="https://www.firstbreak.org/about-us/" class="elementor-item" tabindex="-1">About us</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-179"><a href="https://www.firstbreak.org/contact-us/" class="elementor-item" tabindex="-1">Contact us</a></li> </ul> </nav> </div> </div> </div> </div> </div> </section> </div> </div> </div> </section> </div> </div> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-9f80342 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="9f80342" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-d17ee1a" data-id="d17ee1a" data-element_type="column" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-42f1edc elementor-nav-menu--dropdown-none elementor-widget elementor-widget-nav-menu" data-id="42f1edc" data-element_type="widget" data-settings="{&quot;submenu_icon&quot;:{&quot;value&quot;:&quot;&lt;i class=\&quot;\&quot;&gt;&lt;\/i&gt;&quot;,&quot;library&quot;:&quot;&quot;},&quot;layout&quot;:&quot;horizontal&quot;}" data-widget_type="nav-menu.default"> <div class="elementor-widget-container"> <nav aria-label="Menu" class="elementor-nav-menu--main elementor-nav-menu__container elementor-nav-menu--layout-horizontal e--pointer-background e--animation-fade"> <ul id="menu-1-42f1edc" class="elementor-nav-menu"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home current-menu-item page_item page-item-13 current_page_item menu-item-136"><a href="https://www.firstbreak.org/" aria-current="page" class="elementor-item elementor-item-active">Home</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-27"><a href="#" class="elementor-item elementor-item-anchor">Editorial</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-138"><a href="https://www.firstbreak.org/submit-manuscript/" class="elementor-sub-item">Submit manuscript</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-135"><a href="https://www.firstbreak.org/guidelines-for-authors/" class="elementor-sub-item">Guidelines for authors</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-133"><a href="https://www.firstbreak.org/editorial_board/" class="elementor-sub-item">Editorial board</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-134"><a href="https://www.firstbreak.org/editorial-office/" class="elementor-sub-item">Editorial office</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-139"><a href="https://www.firstbreak.org/open-access-information/" class="elementor-sub-item">Open Access information</a></li> </ul> </li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-611"><a href="#" class="elementor-item elementor-item-anchor">Archive</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-8300"><a href="https://www.firstbreak.org/archive-2025/" class="elementor-sub-item">Archive 2025</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-7035"><a href="https://www.firstbreak.org/archive-2024/" class="elementor-sub-item">Archive 2024</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-5203"><a href="https://www.firstbreak.org/archive-2023/" class="elementor-sub-item">Archive 2023</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1749"><a href="https://www.firstbreak.org/archive-2022/" class="elementor-sub-item">Archive 2022</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-927"><a href="https://www.firstbreak.org/archive-2021/" class="elementor-sub-item">Archive 2021</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-591"><a href="https://www.firstbreak.org/archive-2020/" class="elementor-sub-item">Archive 2020</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-610"><a href="https://www.firstbreak.org/archive-2019/" class="elementor-sub-item">Archive 2019</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-609"><a href="https://www.firstbreak.org/archive-2018/" class="elementor-sub-item">Archive 2018</a></li> </ul> </li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-165"><a href="https://www.firstbreak.org/advertising/" class="elementor-item">Advertising</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-170"><a href="https://www.firstbreak.org/subscriptions/" class="elementor-item">Subscriptions</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-255"><a target="_blank" href="https://www.earthdoc.org/" class="elementor-item" rel="noopener">EarthDoc</a></li> </ul> </nav> <nav class="elementor-nav-menu--dropdown elementor-nav-menu__container" aria-hidden="true"> <ul id="menu-2-42f1edc" class="elementor-nav-menu"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home current-menu-item page_item page-item-13 current_page_item menu-item-136"><a href="https://www.firstbreak.org/" aria-current="page" class="elementor-item elementor-item-active" tabindex="-1">Home</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-27"><a href="#" class="elementor-item elementor-item-anchor" tabindex="-1">Editorial</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-138"><a href="https://www.firstbreak.org/submit-manuscript/" class="elementor-sub-item" tabindex="-1">Submit manuscript</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-135"><a href="https://www.firstbreak.org/guidelines-for-authors/" class="elementor-sub-item" tabindex="-1">Guidelines for authors</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-133"><a href="https://www.firstbreak.org/editorial_board/" class="elementor-sub-item" tabindex="-1">Editorial board</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-134"><a href="https://www.firstbreak.org/editorial-office/" class="elementor-sub-item" tabindex="-1">Editorial office</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-139"><a href="https://www.firstbreak.org/open-access-information/" class="elementor-sub-item" tabindex="-1">Open Access information</a></li> </ul> </li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-611"><a href="#" class="elementor-item elementor-item-anchor" tabindex="-1">Archive</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-8300"><a href="https://www.firstbreak.org/archive-2025/" class="elementor-sub-item" tabindex="-1">Archive 2025</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-7035"><a href="https://www.firstbreak.org/archive-2024/" class="elementor-sub-item" tabindex="-1">Archive 2024</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-5203"><a href="https://www.firstbreak.org/archive-2023/" class="elementor-sub-item" tabindex="-1">Archive 2023</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1749"><a href="https://www.firstbreak.org/archive-2022/" class="elementor-sub-item" tabindex="-1">Archive 2022</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-927"><a href="https://www.firstbreak.org/archive-2021/" class="elementor-sub-item" tabindex="-1">Archive 2021</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-591"><a href="https://www.firstbreak.org/archive-2020/" class="elementor-sub-item" tabindex="-1">Archive 2020</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-610"><a href="https://www.firstbreak.org/archive-2019/" class="elementor-sub-item" tabindex="-1">Archive 2019</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-609"><a href="https://www.firstbreak.org/archive-2018/" class="elementor-sub-item" tabindex="-1">Archive 2018</a></li> </ul> </li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-165"><a href="https://www.firstbreak.org/advertising/" class="elementor-item" tabindex="-1">Advertising</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-170"><a href="https://www.firstbreak.org/subscriptions/" class="elementor-item" tabindex="-1">Subscriptions</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-255"><a target="_blank" href="https://www.earthdoc.org/" class="elementor-item" tabindex="-1" rel="noopener">EarthDoc</a></li> </ul> </nav> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-8baaa81 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="8baaa81" data-element_type="section" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-54abc9e" data-id="54abc9e" data-element_type="column" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-821e34b elementor-widget elementor-widget-spacer" data-id="821e34b" data-element_type="widget" data-widget_type="spacer.default"> <div class="elementor-widget-container"> <div class="elementor-spacer"> <div class="elementor-spacer-inner"></div> </div> </div> </div> <div class="elementor-element elementor-element-638ea33 leader_advert elementor-widget elementor-widget-wp-widget-advads_ad_widget" data-id="638ea33" data-element_type="widget" data-widget_type="wp-widget-advads_ad_widget.default"> <div class="elementor-widget-container"> <!-- /20287594127/FirstBreak_Leaderboard --> <div id='div-gpt-ad-1592559799149-0' style='width: 728px; height: 90px;'> <script> googletag.cmd.push(function() { googletag.display('div-gpt-ad-1592559799149-0'); }); </script> </div> </div> </div> <div class="elementor-element elementor-element-98af981 elementor-widget elementor-widget-spacer" data-id="98af981" data-element_type="widget" data-widget_type="spacer.default"> <div class="elementor-widget-container"> <div class="elementor-spacer"> <div class="elementor-spacer-inner"></div> </div> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-dc21dc7 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="dc21dc7" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-9eb9cb8" data-id="9eb9cb8" data-element_type="column" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-widget-wrap elementor-element-populated"> <section class="elementor-section elementor-inner-section elementor-element elementor-element-813277d elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="813277d" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-edecb99" data-id="edecb99" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-5e9e916 elementor-widget elementor-widget-heading" data-id="5e9e916" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h1 class="elementor-heading-title elementor-size-default">Quick Links</h1> </div> </div> <div class="elementor-element elementor-element-5e0f981 elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list" data-id="5e0f981" data-element_type="widget" data-widget_type="icon-list.default"> <div class="elementor-widget-container"> <ul class="elementor-icon-list-items"> <li class="elementor-icon-list-item"> <a href="https://www.firstbreak.org/submit-manuscript/"> <span class="elementor-icon-list-icon"> <i aria-hidden="true" class="fas fa-square-full"></i> </span> <span class="elementor-icon-list-text">Submit manuscript</span> </a> </li> </ul> </div> </div> <div class="elementor-element elementor-element-2f2df27 elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list" data-id="2f2df27" data-element_type="widget" data-widget_type="icon-list.default"> <div class="elementor-widget-container"> <ul class="elementor-icon-list-items"> <li class="elementor-icon-list-item"> <a href="https://www.firstbreak.org/guidelines-for-authors/"> <span class="elementor-icon-list-icon"> <i aria-hidden="true" class="fas fa-square-full"></i> </span> <span class="elementor-icon-list-text">Guidelines for authors</span> </a> </li> </ul> </div> </div> <div class="elementor-element elementor-element-6c7645d elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list" data-id="6c7645d" data-element_type="widget" data-widget_type="icon-list.default"> <div class="elementor-widget-container"> <ul class="elementor-icon-list-items"> <li class="elementor-icon-list-item"> <a href="https://events.eage.org/" target="_blank" rel="noopener"> <span class="elementor-icon-list-icon"> <i aria-hidden="true" class="fas fa-square-full"></i> </span> <span class="elementor-icon-list-text">Calendar of events</span> </a> </li> </ul> </div> </div> <div class="elementor-element elementor-element-7308960 elementor-widget elementor-widget-heading" data-id="7308960" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h1 class="elementor-heading-title elementor-size-default">Search</h1> </div> </div> <div class="elementor-element elementor-element-d1738d3 elementor-search-form--skin-classic elementor-search-form--button-type-icon elementor-search-form--icon-search elementor-widget elementor-widget-search-form" data-id="d1738d3" data-element_type="widget" data-settings="{&quot;skin&quot;:&quot;classic&quot;}" data-widget_type="search-form.default"> <div class="elementor-widget-container"> <search role="search"> <form class="elementor-search-form" action="https://www.firstbreak.org" method="get"> <div class="elementor-search-form__container"> <label class="elementor-screen-only" for="elementor-search-form-d1738d3">Search</label> <input id="elementor-search-form-d1738d3" placeholder="" class="elementor-search-form__input" type="search" name="s" value=""> <button class="elementor-search-form__submit" type="submit" aria-label="Search"> <i aria-hidden="true" class="fas fa-search"></i> </button> </div> </form> </search> </div> </div> </div> </div> <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-a67ef39" data-id="a67ef39" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-458b12c elementor-widget elementor-widget-heading" data-id="458b12c" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h1 class="elementor-heading-title elementor-size-default">Homepage News</h1> </div> </div> <div class="elementor-element elementor-element-fa01b1a elementor-widget elementor-widget-heading" data-id="fa01b1a" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h2 class="elementor-heading-title elementor-size-default">Read the latest First Break issue below</h2> </div> </div> <div class="elementor-element elementor-element-ed90457 elementor-widget elementor-widget-heading" data-id="ed90457" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <p class="elementor-heading-title elementor-size-default">You can now read the full issue of First Break below.</p> </div> </div> <div class="elementor-element elementor-element-526ab2f elementor-widget elementor-widget-html" data-id="526ab2f" data-element_type="widget" data-widget_type="html.default"> <div class="elementor-widget-container"> <div style="position:relative;padding-top:max(60%,326px);height:0;width:100%"><iframe allow="clipboard-write" sandbox="allow-top-navigation allow-top-navigation-by-user-activation allow-downloads allow-scripts allow-same-origin allow-popups allow-modals allow-popups-to-escape-sandbox allow-forms" allowfullscreen="true" style="position:absolute;border:none;width:100%;height:100%;left:0;right:0;top:0;bottom:0;" src="https://e.issuu.com/embed.html?d=_linked_mr_24006-fb25_february&u=eage"></iframe></div> </div> </div> <div class="elementor-element elementor-element-8ef8d10 elementor-widget elementor-widget-spacer" data-id="8ef8d10" data-element_type="widget" data-widget_type="spacer.default"> <div class="elementor-widget-container"> <div class="elementor-spacer"> <div class="elementor-spacer-inner"></div> </div> </div> </div> </div> </div> <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-837f1c7" data-id="837f1c7" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-2f2213b skyscraper_advert elementor-widget elementor-widget-wp-widget-advads_ad_widget" data-id="2f2213b" data-element_type="widget" data-widget_type="wp-widget-advads_ad_widget.default"> <div class="elementor-widget-container"> <h5> </h5><!-- /20287594127/FirstBreak_Skyscraper --> <div id='div-gpt-ad-1592560125922-0' style='width: 120px; height: 360px;'> <script> googletag.cmd.push(function() { googletag.display('div-gpt-ad-1592560125922-0'); }); </script> </div> <!-- /20287594127/FirstBreak_Skyscraper --> <!--<div id='div-gpt-ad-1588934446920-0' style='width: 120px; height: 360px;'> <script> googletag.cmd.push(function() { googletag.display('div-gpt-ad-1588934446920-0'); }); </script> </div>--> </div> </div> <div class="elementor-element elementor-element-f7f99fa elementor-widget elementor-widget-spacer" data-id="f7f99fa" data-element_type="widget" data-widget_type="spacer.default"> <div class="elementor-widget-container"> <div class="elementor-spacer"> <div class="elementor-spacer-inner"></div> </div> </div> </div> </div> </div> </div> </section> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-256e35e elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="256e35e" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-ba8d54f" data-id="ba8d54f" data-element_type="column" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-f8afea8 elementor-widget elementor-widget-heading" data-id="f8afea8" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <p class="elementor-heading-title elementor-size-default"><a href="https://www.firstbreak.org/disclaimer/">© EAGE Publications bv 2020 | Disclaimer</a></p> </div> </div> </div> </div> </div> </section> </div> <template id="tp-language" data-tp-language="en_US"></template> <script> window.RS_MODULES = window.RS_MODULES || {}; window.RS_MODULES.modules = window.RS_MODULES.modules || {}; window.RS_MODULES.waiting = window.RS_MODULES.waiting || []; window.RS_MODULES.defered = true; window.RS_MODULES.moduleWaiting = window.RS_MODULES.moduleWaiting || {}; window.RS_MODULES.type = 'compiled'; </script> <script> const lazyloadRunObserver = () => { const lazyloadBackgrounds = document.querySelectorAll( `.e-con.e-parent:not(.e-lazyloaded)` ); const lazyloadBackgroundObserver = new IntersectionObserver( ( entries ) => { entries.forEach( ( entry ) => { if ( entry.isIntersecting ) { let lazyloadBackground = entry.target; if( lazyloadBackground ) { lazyloadBackground.classList.add( 'e-lazyloaded' ); } lazyloadBackgroundObserver.unobserve( entry.target ); } }); }, { rootMargin: '200px 0px 200px 0px' } ); lazyloadBackgrounds.forEach( ( lazyloadBackground ) => { lazyloadBackgroundObserver.observe( lazyloadBackground ); } ); }; const events = [ 'DOMContentLoaded', 'elementor/lazyload/observe', ]; events.forEach( ( event ) => { document.addEventListener( event, lazyloadRunObserver ); } ); </script> <link rel='stylesheet' id='elementor-post-1832-css' href='https://www.firstbreak.org/wp-content/uploads/sites/3/elementor/css/post-1832.css?ver=1738570781' media='all' /> <style id='core-block-supports-inline-css'> /** * Core styles: block-supports */ </style> <link rel='stylesheet' id='all-css-6' href='https://www.firstbreak.org/wp-content/plugins/revslider/public/assets/css/rs6.css?m=1729506112g' type='text/css' media='all' /> <style id='rs-plugin-settings-inline-css'> #rs-demo-id {} </style> <script id="embedpress-front-js-extra"> var eplocalize = {"ajaxurl":"https:\/\/www.firstbreak.org\/wp-admin\/admin-ajax.php","is_pro_plugin_active":"","nonce":"306614b1f6"}; </script> <script type="text/javascript" src="https://www.firstbreak.org/_static/??-eJyVjUkOwjAMRS9Eakqloi4QZyGNi1ycATsBcXsCEqIbKrH7g9833JMZY8gYMiQuZwoKgjdlciiQimUa4aSKWWGulc0xsjaeQjPrBv6ktV8j0Vt0SVB1wUxSr34RnTMTU7IxXox7KcOUcUG/w9WfjL76KCZJ/IBMFtSfJNeq1J1rQXk036SOHf2h3XfDrh/abT8/AUb4epE=" ></script><script src="https://stats.wp.com/e-202508.js" id="jetpack-stats-js" data-wp-strategy="defer"></script> <script id="jetpack-stats-js-after"> _stq = window._stq || []; _stq.push([ "view", JSON.parse("{\"v\":\"ext\",\"blog\":\"176574440\",\"post\":\"13\",\"tz\":\"2\",\"srv\":\"www.firstbreak.org\",\"hp\":\"vip\",\"j\":\"1:14.3\"}") ]); _stq.push([ "clickTrackerInit", "176574440", "13" ]); </script> <script type="text/javascript" src="https://www.firstbreak.org/_static/??-eJydjE0OwiAQhS8kHRUT7cJ4lhZGHQoMYUCur23sykQTd+/ve9CSMhwLxgLJ1xtFAfQYXp4zDCJYBDyNII0SZnic3qpzsoFvsEqZ1wMn0HBMg5nmtMs1Fgr48+IT/we95mVkVWBbPcrKUjS+Wlw2lqTAnXma20s474663/cHrbfuCREAbPI=" ></script><script src="https://www.firstbreak.org/wp-includes/js/dist/i18n.js?ver=2aff907006e2aa00e26e" id="wp-i18n-js"></script> <script id="wp-i18n-js-after"> wp.i18n.setLocaleData( { 'text direction\u0004ltr': [ 'ltr' ] } ); </script> <script id="elementor-pro-frontend-js-before"> var ElementorProFrontendConfig = {"ajaxurl":"https:\/\/www.firstbreak.org\/wp-admin\/admin-ajax.php","nonce":"0750fed35c","urls":{"assets":"https:\/\/www.firstbreak.org\/wp-content\/plugins\/elementor-pro\/assets\/","rest":"https:\/\/www.firstbreak.org\/wp-json\/"},"settings":{"lazy_load_background_images":true},"popup":{"hasPopUps":true},"shareButtonsNetworks":{"facebook":{"title":"Facebook","has_counter":true},"twitter":{"title":"Twitter"},"linkedin":{"title":"LinkedIn","has_counter":true},"pinterest":{"title":"Pinterest","has_counter":true},"reddit":{"title":"Reddit","has_counter":true},"vk":{"title":"VK","has_counter":true},"odnoklassniki":{"title":"OK","has_counter":true},"tumblr":{"title":"Tumblr"},"digg":{"title":"Digg"},"skype":{"title":"Skype"},"stumbleupon":{"title":"StumbleUpon","has_counter":true},"mix":{"title":"Mix"},"telegram":{"title":"Telegram"},"pocket":{"title":"Pocket","has_counter":true},"xing":{"title":"XING","has_counter":true},"whatsapp":{"title":"WhatsApp"},"email":{"title":"Email"},"print":{"title":"Print"},"x-twitter":{"title":"X"},"threads":{"title":"Threads"}},"facebook_sdk":{"lang":"en_US","app_id":""},"lottie":{"defaultAnimationUrl":"https:\/\/www.firstbreak.org\/wp-content\/plugins\/elementor-pro\/modules\/lottie\/assets\/animations\/default.json"}}; </script> <script src="https://www.firstbreak.org/wp-content/plugins/elementor-pro/assets/js/frontend.js?ver=3.26.1" id="elementor-pro-frontend-js"></script> <script type="text/javascript" src="https://www.firstbreak.org/wp-includes/js/jquery/ui/core.js?m=1739294330g" ></script><script id="elementor-frontend-js-before"> var elementorFrontendConfig = {"environmentMode":{"edit":false,"wpPreview":false,"isScriptDebug":true},"i18n":{"shareOnFacebook":"Share on Facebook","shareOnTwitter":"Share on Twitter","pinIt":"Pin it","download":"Download","downloadImage":"Download image","fullscreen":"Fullscreen","zoom":"Zoom","share":"Share","playVideo":"Play Video","previous":"Previous","next":"Next","close":"Close","a11yCarouselPrevSlideMessage":"Previous slide","a11yCarouselNextSlideMessage":"Next slide","a11yCarouselFirstSlideMessage":"This is the first slide","a11yCarouselLastSlideMessage":"This is the last slide","a11yCarouselPaginationBulletMessage":"Go to slide"},"is_rtl":false,"breakpoints":{"xs":0,"sm":480,"md":768,"lg":1025,"xl":1440,"xxl":1600},"responsive":{"breakpoints":{"mobile":{"label":"Mobile Portrait","value":767,"default_value":767,"direction":"max","is_enabled":true},"mobile_extra":{"label":"Mobile Landscape","value":880,"default_value":880,"direction":"max","is_enabled":false},"tablet":{"label":"Tablet Portrait","value":1024,"default_value":1024,"direction":"max","is_enabled":true},"tablet_extra":{"label":"Tablet Landscape","value":1200,"default_value":1200,"direction":"max","is_enabled":false},"laptop":{"label":"Laptop","value":1366,"default_value":1366,"direction":"max","is_enabled":false},"widescreen":{"label":"Widescreen","value":2400,"default_value":2400,"direction":"min","is_enabled":false}},"hasCustomBreakpoints":false},"version":"3.27.3","is_static":false,"experimentalFeatures":{"additional_custom_breakpoints":true,"container":true,"e_swiper_latest":true,"e_onboarding":true,"theme_builder_v2":true,"home_screen":true,"landing-pages":true,"nested-elements":true,"editor_v2":true,"link-in-bio":true,"floating-buttons":true},"urls":{"assets":"https:\/\/www.firstbreak.org\/wp-content\/plugins\/elementor\/assets\/","ajaxurl":"https:\/\/www.firstbreak.org\/wp-admin\/admin-ajax.php","uploadUrl":"https:\/\/www.firstbreak.org\/wp-content\/uploads\/sites\/3"},"nonces":{"floatingButtonsClickTracking":"e52ff673c9"},"swiperClass":"swiper","settings":{"page":[],"editorPreferences":[]},"kit":{"body_background_background":"classic","active_breakpoints":["viewport_mobile","viewport_tablet"],"global_image_lightbox":"yes","lightbox_enable_counter":"yes","lightbox_enable_fullscreen":"yes","lightbox_enable_zoom":"yes","lightbox_enable_share":"yes","lightbox_title_src":"title","lightbox_description_src":"description"},"post":{"id":13,"title":"Home%20-%20First%20break","excerpt":"","featuredImage":false}}; </script> <script src="https://www.firstbreak.org/wp-content/plugins/elementor/assets/js/frontend.js?ver=3.27.3" id="elementor-frontend-js"></script> <script id="powerpack-frontend-js-extra"> var ppLogin = {"empty_username":"Enter a username or email address.","empty_password":"Enter password.","empty_password_1":"Enter a password.","empty_password_2":"Re-enter password.","empty_recaptcha":"Please check the captcha to verify you are not a robot.","email_sent":"A password reset email has been sent to the email address for your account, but may take several minutes to show up in your inbox. Please wait at least 10 minutes before attempting another reset.","reset_success":"Your password has been reset successfully.","ajax_url":"https:\/\/www.firstbreak.org\/wp-admin\/admin-ajax.php","show_password":"Show password","hide_password":"Hide password"}; var ppRegistration = {"invalid_username":"This username is invalid because it uses illegal characters. Please enter a valid username.","username_exists":"This username is already registered. Please choose another one.","empty_email":"Please type your email address.","invalid_email":"The email address isn\u2019t correct!","email_exists":"The email is already registered, please choose another one.","password":"Password must not contain the character \"\\\\\"","password_length":"Your password should be at least 8 characters long.","password_mismatch":"Password does not match.","invalid_url":"URL seems to be invalid.","recaptcha_php_ver":"reCAPTCHA API requires PHP version 5.3 or above.","recaptcha_missing_key":"Your reCAPTCHA Site or Secret Key is missing!","show_password":"Show password","hide_password":"Hide password","ajax_url":"https:\/\/www.firstbreak.org\/wp-admin\/admin-ajax.php"}; var ppCoupons = {"copied_text":"Copied"}; </script> <script type="text/javascript" src="https://www.firstbreak.org/_static/??-eJyVjMEOgkAMRH/ItSESxAPxW1aosEvZNm0Nvy8x0XDwwm1mMu/BKqHn4lgchF5jKgZIuGydNYgyRDN0g/zbLUyxDIRq52wn+CMQXlEl9nP4IjvLUz/v4ThM6QHOTJ7EHHWfN9l96arrpW7qW9tU+Q1R71H6" ></script> <script> /(trident|msie)/i.test(navigator.userAgent)&&document.getElementById&&window.addEventListener&&window.addEventListener("hashchange",function(){var t,e=location.hash.substring(1);/^[A-z0-9_-]+$/.test(e)&&(t=document.getElementById(e))&&(/^(?:a|select|input|button|textarea)$/i.test(t.tagName)||(t.tabIndex=-1),t.focus())},!1); </script> <script data-cfasync="false"> var dFlipLocation = "https://www.firstbreak.org/wp-content/plugins/3d-flipbook-dflip-lite/assets/"; var dFlipWPGlobal = {"text":{"toggleSound":"Turn on\/off Sound","toggleThumbnails":"Toggle Thumbnails","toggleOutline":"Toggle Outline\/Bookmark","previousPage":"Previous Page","nextPage":"Next Page","toggleFullscreen":"Toggle Fullscreen","zoomIn":"Zoom In","zoomOut":"Zoom Out","toggleHelp":"Toggle Help","singlePageMode":"Single Page Mode","doublePageMode":"Double Page Mode","downloadPDFFile":"Download PDF File","gotoFirstPage":"Goto First Page","gotoLastPage":"Goto Last Page","share":"Share","mailSubject":"I wanted you to see this FlipBook","mailBody":"Check out this site {{url}}","loading":"DearFlip: Loading "},"viewerType":"flipbook","moreControls":"download,pageMode,startPage,endPage,sound","hideControls":"","scrollWheel":"false","backgroundColor":"#777","backgroundImage":"","height":"auto","paddingLeft":"20","paddingRight":"20","controlsPosition":"bottom","duration":800,"soundEnable":"true","enableDownload":"true","showSearchControl":"false","showPrintControl":"false","enableAnnotation":false,"enableAnalytics":"false","webgl":"true","hard":"none","maxTextureSize":"1600","rangeChunkSize":"524288","zoomRatio":1.5,"stiffness":3,"pageMode":"0","singlePageMode":"0","pageSize":"0","autoPlay":"false","autoPlayDuration":5000,"autoPlayStart":"false","linkTarget":"2","sharePrefix":"flipbook-"};</script><script async src="https://www.instagram.com/embed.js"></script><script>( function () { window.advanced_ads_ready_queue = window.advanced_ads_ready_queue || []; // replace native push method with our advanced_ads_ready function; do this early to prevent race condition between pushing and the loop. advanced_ads_ready_queue.push = window.advanced_ads_ready; // handle all callbacks that have been added to the queue previously. for ( var i = 0, length = advanced_ads_ready_queue.length; i < length; i ++ ) { advanced_ads_ready( advanced_ads_ready_queue[i] ); } } )(); </script> </body> </html>

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