CINXE.COM

Aviation Safety Experts - Flight Safety Foundation

<!doctype html> <html lang="en-US" class="no-js"> <head> <meta charset="UTF-8"> <meta http-equiv="x-ua-compatible" content="ie=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name='robots' content='index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1' /> <style>img:is([sizes="auto" i], [sizes^="auto," i]) { contain-intrinsic-size: 3000px 1500px }</style> <meta name="dlm-version" content="5.0.14"> <!-- This site is optimized with the Yoast SEO plugin v23.9 - https://yoast.com/wordpress/plugins/seo/ --> <title>Aviation Safety Experts - Flight Safety Foundation</title> <link rel="canonical" href="https://flightsafety.org/" /> <meta property="og:locale" content="en_US" /> <meta property="og:type" content="website" /> <meta property="og:title" content="Aviation Safety Experts - Flight Safety Foundation" /> <meta property="og:url" content="https://flightsafety.org/" /> <meta property="og:site_name" content="Flight Safety Foundation" /> <meta property="article:publisher" content="http://www.facebook.com/FlightSafetyFoundation" /> <meta property="article:modified_time" content="2024-09-26T14:32:33+00:00" /> <meta name="twitter:card" content="summary_large_image" /> <meta name="twitter:site" content="@flightsafety" /> <script type="application/ld+json" class="yoast-schema-graph">{"@context":"https://schema.org","@graph":[{"@type":"WebPage","@id":"https://flightsafety.org/","url":"https://flightsafety.org/","name":"Aviation Safety Experts - Flight Safety Foundation","isPartOf":{"@id":"https://flightsafety.org/#website"},"datePublished":"2013-03-15T17:56:11+00:00","dateModified":"2024-09-26T14:32:33+00:00","breadcrumb":{"@id":"https://flightsafety.org/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https://flightsafety.org/"]}]},{"@type":"BreadcrumbList","@id":"https://flightsafety.org/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home"}]},{"@type":"WebSite","@id":"https://flightsafety.org/#website","url":"https://flightsafety.org/","name":"Flight Safety Foundation","description":"An independent, nonprofit, international organization engaged in research, auditing, education, advocacy and publishing to improve aviation safety","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https://flightsafety.org/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"}]}</script> <!-- / Yoast SEO plugin. --> <!-- Swiftype Tags --> <meta name="swiftype-engine-key" content="WQ2wb_xw5vBLyfXL3zXp"> <meta class="swiftype" name="pid" data-type="enum" content="1064"> <meta class="swiftype" name="object_type" data-type="enum" content="page"> <meta class="swiftype" name="source_url" data-type="enum" content="fsf_home"> <meta class="swiftype" name="url" data-type="enum" content="https://flightsafety.org/"> <meta class="swiftype" name="timestamp" data-type="date" content="2013-03-15 17:56:11"> <meta class="swiftype" name="title" data-type="string" content="Aviation Safety Experts"> <meta class="swiftype" name="excerpt" data-type="text" content=""> <meta class="swiftype" name="_fsf_author" data-type="enum" content="Frank Jackman"> <meta name="st:robots" content="index"> <!-- / Swiftype Tags --> <script type="text/javascript"> /* <![CDATA[ */ 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:\/\/flightsafety.org\/wp-includes\/js\/wp-emoji.js?ver=6.7.1","twemoji":"https:\/\/flightsafety.org\/wp-includes\/js\/twemoji.js?ver=6.7.1"}}; /** * @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> <style id='wp-emoji-styles-inline-css' type='text/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> <style id='co-authors-plus-coauthors-style-inline-css' type='text/css'> .wp-block-co-authors-plus-coauthors.is-layout-flow [class*=wp-block-co-authors-plus]{display:inline} </style> <style id='co-authors-plus-avatar-style-inline-css' type='text/css'> .wp-block-co-authors-plus-avatar :where(img){height:auto;max-width:100%;vertical-align:bottom}.wp-block-co-authors-plus-coauthors.is-layout-flow .wp-block-co-authors-plus-avatar :where(img){vertical-align:middle}.wp-block-co-authors-plus-avatar:is(.alignleft,.alignright){display:table}.wp-block-co-authors-plus-avatar.aligncenter{display:table;margin-inline:auto} </style> <style id='co-authors-plus-image-style-inline-css' type='text/css'> .wp-block-co-authors-plus-image{margin-bottom:0}.wp-block-co-authors-plus-image :where(img){height:auto;max-width:100%;vertical-align:bottom}.wp-block-co-authors-plus-coauthors.is-layout-flow .wp-block-co-authors-plus-image :where(img){vertical-align:middle}.wp-block-co-authors-plus-image:is(.alignfull,.alignwide) :where(img){width:100%}.wp-block-co-authors-plus-image:is(.alignleft,.alignright){display:table}.wp-block-co-authors-plus-image.aligncenter{display:table;margin-inline:auto} </style> <style id='classic-theme-styles-inline-css' type='text/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' type='text/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--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: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--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='contact-form-7-css' href='https://flightsafety.org/wp-content/plugins/contact-form-7/includes/css/styles.css?ver=6.0' type='text/css' media='all' /> <link rel='stylesheet' id='fonts-css' href='//fonts.googleapis.com/css?family=Roboto+Slab:400,700|Roboto:100,400,500,700,400italic' type='text/css' media='all' /> <link rel='stylesheet' id='flickity-css' href='https://flightsafety.org/wp-content/themes/fsf/assets/vendor/flickity/dist/flickity.min.css?ver=1698545980' type='text/css' media='all' /> <link rel='stylesheet' id='photoswipe-css' href='https://flightsafety.org/wp-content/themes/fsf/assets/vendor/photoswipe/dist/photoswipe.css?ver=1698545987' type='text/css' media='all' /> <link rel='stylesheet' id='photoswipe-skin-css' href='https://flightsafety.org/wp-content/themes/fsf/assets/vendor/photoswipe/dist/default-skin/default-skin.css?ver=1698545986' type='text/css' media='all' /> <link rel='stylesheet' id='select2-css' href='https://flightsafety.org/wp-content/themes/fsf/assets/vendor/select2/dist/css/select2.min.css?ver=1698545990' type='text/css' media='all' /> <link rel='stylesheet' id='site-css' href='https://flightsafety.org/wp-content/themes/fsf/assets/dist/site.css?ver=1698545965' type='text/css' media='all' /> <link rel='stylesheet' id='print-css' href='https://flightsafety.org/wp-content/themes/fsf/assets/dist/print.css?ver=1698545965' type='text/css' media='print' /> <link rel='stylesheet' id='elementor-icons-css' href='https://flightsafety.org/wp-content/plugins/elementor/assets/lib/eicons/css/elementor-icons.css?ver=5.32.0' type='text/css' media='all' /> <link rel='stylesheet' id='elementor-frontend-css' href='https://flightsafety.org/wp-content/plugins/elementor/assets/css/frontend.css?ver=3.25.9' type='text/css' media='all' /> <link rel='stylesheet' id='swiper-css' href='https://flightsafety.org/wp-content/plugins/elementor/assets/lib/swiper/v8/css/swiper.css?ver=8.4.5' type='text/css' media='all' /> <link rel='stylesheet' id='e-swiper-css' href='https://flightsafety.org/wp-content/plugins/elementor/assets/css/conditionals/e-swiper.css?ver=3.25.9' type='text/css' media='all' /> <link rel='stylesheet' id='elementor-post-43435-css' href='https://flightsafety.org/wp-content/uploads/elementor/css/post-43435.css?ver=1732194846' type='text/css' media='all' /> <link rel='stylesheet' id='e-popup-style-css' href='https://flightsafety.org/wp-content/plugins/elementor-pro/assets/css/conditionals/popup.css?ver=3.25.3' type='text/css' media='all' /> <link rel='stylesheet' id='uael-frontend-css' href='https://flightsafety.org/wp-content/plugins/ultimate-elementor/assets/min-css/uael-frontend.min.css?ver=1.36.41' type='text/css' media='all' /> <link rel='stylesheet' id='uael-teammember-social-icons-css' href='https://flightsafety.org/wp-content/plugins/elementor/assets/css/widget-social-icons.min.css?ver=3.24.0' type='text/css' media='all' /> <link rel='stylesheet' id='uael-social-share-icons-brands-css' href='https://flightsafety.org/wp-content/plugins/elementor/assets/lib/font-awesome/css/brands.css?ver=5.15.3' type='text/css' media='all' /> <link rel='stylesheet' id='uael-social-share-icons-fontawesome-css' href='https://flightsafety.org/wp-content/plugins/elementor/assets/lib/font-awesome/css/fontawesome.css?ver=5.15.3' type='text/css' media='all' /> <link rel='stylesheet' id='uael-nav-menu-icons-css' href='https://flightsafety.org/wp-content/plugins/elementor/assets/lib/font-awesome/css/solid.css?ver=5.15.3' type='text/css' media='all' /> <link rel='stylesheet' id='font-awesome-5-all-css' href='https://flightsafety.org/wp-content/plugins/elementor/assets/lib/font-awesome/css/all.css?ver=3.25.9' type='text/css' media='all' /> <link rel='stylesheet' id='font-awesome-4-shim-css' href='https://flightsafety.org/wp-content/plugins/elementor/assets/lib/font-awesome/css/v4-shims.css?ver=3.25.9' type='text/css' media='all' /> <link rel='stylesheet' id='eael-general-css' href='https://flightsafety.org/wp-content/plugins/essential-addons-for-elementor-lite/assets/front-end/css/view/general.min.css?ver=6.0.10' type='text/css' 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.1' type='text/css' media='all' /> <link rel="preconnect" href="https://fonts.gstatic.com/" crossorigin> <!-- DFP --> <script> var googletag = googletag || {}; googletag.cmd = googletag.cmd || []; (function() { var gads = document.createElement("script"); gads.async = true; gads.type = "text/javascript"; var useSSL = "https:" == document.location.protocol; gads.src = (useSSL ? "https:" : "http:") + "//www.googletagservices.com/tag/js/gpt.js"; var node =document.getElementsByTagName("script")[0]; node.parentNode.insertBefore(gads, node); })(); </script> <!-- /DFP --> <script type="text/javascript" src="https://flightsafety.org/wp-content/themes/fsf/assets/vendor/jquery/dist/jquery.min.js?ver=1698545982" id="jquery-js"></script> <script type="text/javascript" src="https://flightsafety.org/wp-content/plugins/easy-twitter-feeds/assets/js/widget.js?ver=1.2.6" id="widget-js-js"></script> <script type="text/javascript" src="https://flightsafety.org/wp-content/themes/fsf/assets/vendor/modernizr/modernizr.min.js?ver=1698545968" id="modernizr-js"></script> <script type="text/javascript" src="https://flightsafety.org/wp-content/plugins/elementor/assets/lib/font-awesome/js/v4-shims.js?ver=3.25.9" id="font-awesome-4-shim-js"></script> <script type="text/javascript" id="DFP-js-extra"> /* <![CDATA[ */ var DFP_config = {"account":"41951841","template":"<div id=\"%id%\">\t<script type=\"text\/javascript\">\t\tgoogletag.cmd.push(function() {\t\t\tgoogletag.display(\"%id%\");\t\t\tDFP.inserted_slots[\"%id%\"] = document.getElementById(\"%id%\");\t\t});\t<\/script><\/div>","options":{"companionAds":{"refreshUnfilledSlots":true},"pubads":{"collapseEmptyDivs":true,"centering":true,"disableInitialLoad":false,"enableSingleRequest":true,"enableVideoAds":false,"rendering":null}}}; var DFP_ad_slots = []; var DFP_custom_targeting = {"fsf_is_asw_article":"no","fsf_is_bars":"no","fsf_is_event":"no","fsf_is_post":"no","fsf_is_summit":"no","fsf_asw_month":"","fsf_asw_year":"","fsf_keywords":"","fsf_special_article":"","fsf_category":[],"fsf_safety_issue":[],"fsf_tags":[]}; /* ]]> */ </script> <script type="text/javascript" src="https://flightsafety.org/wp-content/plugins/dfp-custom/assets/js/dfp.js?ver=1.2" id="DFP-js"></script> <link rel="https://api.w.org/" href="https://flightsafety.org/wp-json/" /><link rel="alternate" title="JSON" type="application/json" href="https://flightsafety.org/wp-json/wp/v2/pages/1064" /><link rel='shortlink' href='https://flightsafety.org/' /> <link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://flightsafety.org/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fflightsafety.org%2F" /> <link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://flightsafety.org/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fflightsafety.org%2F&#038;format=xml" /> <!-- Google tag (gtag.js) --> <script async src="https://www.googletagmanager.com/gtag/js?id=G-R25C05ZKWX"></script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'G-R25C05ZKWX'); </script><meta name="generator" content="Elementor 3.25.9; features: additional_custom_breakpoints, e_optimized_control_loading; settings: css_print_method-external, google_font-enabled, font_display-auto"> <style type="text/css"> body:not(.visual-grid-active)::before { display:none; } #wp-admin-bar-visual-grid svg { display:inline-block; vertical-align:middle; height:16px; width:16px; margin-left:3px; margin-top:-3px; } #wp-admin-bar-visual-grid .icon-grid-on { display:none; } body.visual-grid-active #wp-admin-bar-visual-grid .icon-grid-off { display:none; } body.visual-grid-active #wp-admin-bar-visual-grid .icon-grid-on { display:inline; } </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> <script>document.addEventListener('DOMContentLoaded', function() { // Get the elements const mobileIcon = document.querySelector('.header__mobile-icon'); const navMobile = document.querySelector('.nav-mobile'); // Check if both elements exist to prevent errors if (mobileIcon && navMobile) { // Add a click event listener to the mobile icon mobileIcon.addEventListener('click', function() { // Toggle display style if (navMobile.style.display === 'none' || navMobile.style.display === '') { navMobile.style.display = 'unset'; } else { navMobile.style.display = 'none'; } }); } }); </script><link rel="icon" href="https://flightsafety.org/wp-content/uploads/2022/07/cropped-Website-favicon-512x512-1-32x32.png" sizes="32x32" /> <link rel="icon" href="https://flightsafety.org/wp-content/uploads/2022/07/cropped-Website-favicon-512x512-1-192x192.png" sizes="192x192" /> <link rel="apple-touch-icon" href="https://flightsafety.org/wp-content/uploads/2022/07/cropped-Website-favicon-512x512-1-180x180.png" /> <meta name="msapplication-TileImage" content="https://flightsafety.org/wp-content/uploads/2022/07/cropped-Website-favicon-512x512-1-270x270.png" /> <style type="text/css" id="wp-custom-css"> .logged-in .header { top: 82px; } .footer__info p { margin: 5px 0!important; } .page-id-37562 .main-container { top: 90px; } .elementor-post__thumbnail { padding-bottom: 0; } .first-head { margin-top: 0 !important; } .third-head, .fourth-head { top: 0 !important; } .footer__twitter-date, .first-head > h4, .first-head > hr, .second-head > h4, .second-head > hr, .third-head > h4, .third-head > hr, .fourth-head > h4, .fourth-head > hr { display: none; } .gform_legacy_markup_wrapper div.ginput_complex.ginput_container.gf_name_has_2 span { width: 47% !important; margin-right: 5px; margin-top: 16px !important; } @media (max-width: 799px) { nav nav--175 nav--primary nav-mobile__primary nav ol, nav ul, .nav ol, .nav ul { font-size: inherit; font-style: inherit; list-style: none; margin: 0; padding: 0; padding-top: 10px; } } .flex-embed__ratio--16by9 { padding-bottom: 0 !important; } .header { padding: 5px 0 !important; position: relative; z-index: 999; } body:not(.home) .header__wrap { padding-bottom: 0px !important; border-bottom: 0px solid #d0d0d0; } .page-id-28260 .fluid-width-video-wrapper { padding-top: 0 !important; } /*****************/ .news-div-content-height { min-height:420px; max-height:420px; overflow:hidden; } @media (max-width: 800px) { .header { margin-top: -50px; position: 300px; } .main-container { top: 80px !important; } } @media (max-width: 700px) { .main-title-chart { max-height: 200px; width: 80%; } .main-title-chart h4 { font: 14px/18px "Roboto Slab", "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; display:flex !important; } .main-title-chart hr { display: none; } } @media (min-width: 1000px){ .b-circle-box .featured-post-columns__item { width: 31.33% !important; } } .b-circle-box a{ text-align: center; } .b-circle-box a img{ border-radius: 50%; min-width: 250px; width: 250px; min-height: 250px; height: 250px; } .b-circle-box .featured-post-columns__item{ background-color:transparent !important; border: none !important; } /*****************/ .simple-header__logo img { display: block; height: 45px; padding-bottom: 6px; padding-top: 3px; } .featured-post-columns__item-content { padding: 2.51064% 2.25532%; min-height: 155px; } .simple-header .top-bar, .simple-header__wrap, .simple-header__left, .simple-header .top-bar .nav--utility>.nav__menu>.nav__menu-item, .simple-header .top-bar .nav--utility>.nav__menu>.nav__menu-item>.nav-link { height: 50px; line-height: 50px; } .top-bar { position: fixed; width: 100%; height:50px; } .header { position: fixed; width: 100%; height: 80px; top: 50px; background-color: white; } .main-container { top: 130px; padding-bottom: 40px; } .footer { margin-top: 85px;} @media screen and (min-device-width: 390px) and (max-device-width: 600px){ td, th { width: 100% !important; } .sgpb-popup-dialog-main-div { padding-top:50px !important; padding-bottom:50px !important; } .sg-popup-content {width:380px !important; padding-top:50px !important; top:30px !important; /*height:auto !important;*/} .sgpb-popup-close-button-6{ position:fixed !important; right:15px !important; top:15px !important; } .gform_footer{padding-bottom:20px !important;} } @media screen and (max-width: 390px){ .sgpb-popup-dialog-main-div { padding-top:50px !important; padding-bottom:50px !important; } .sg-popup-content {width:300px !important; padding-top:100px !important; top:20px !important; /*height:auto !important;*/} .sgpb-popup-close-button-6{ position:fixed !important; right:15px !important; top:15px !important;} .gform_footer{padding-bottom:40px !important;} } /* BARS Customizations */ .header--custom .header__wrap { -ms-flex-pack: justify; justify-content: normal; } .post-type-archive-bars .cover-story__entry-video-link { display: none; } .csscolumns .post-type-archive-bars .header .nav--primary .nav__menu--depth1 { column-count: auto; } .csscolumns .post-type-archive-bars .header .nav--primary .nav__menu--depth1 * { column-count: auto; } .post-type-archive-bars .header .nav--primary .nav__menu-item--depth1.nav__menu-item--break { border-top : 1px solid #e1e1e1; } /* additional css for mobile hamburger */ .nav-mobile__search { margin-top: 90px; } .nav-mobile{ position: absolute; z-index: 10; } .search-submit{ /* display:unset !important; */ position:absolute; right:10px; top: 25%; } </style> </head> <body class="home page-template-default page page-id-1064 elementor-default elementor-kit-43435 elementor-page elementor-page-1064"> <div class="body-overflow"> <section class="top-bar"> <div class="wrap"> <div class="top-bar-partners"> <span class="top-bar-partners__label">Partners and Programs:</span> <nav class="nav nav--partners"><ul class="nav__menu nav__menu--depth0 menu nav__menu nav__menu--depth0 menu "><li class="nav__menu-item nav__menu-item--depth0 menu-item menu-item-type-post_type_archive menu-item-object-bars menu-item-44765"><a href="https://flightsafety.org/bars/" class="nav-link">BARS</a></li> <li class="nav__menu-item nav__menu-item--depth0 menu-item menu-item-type-post_type menu-item-object-resource menu-item-6729"><a href="https://flightsafety.org/resource/skybrary/" class="nav-link">SKYbrary</a></li> <li class="nav__menu-item nav__menu-item--depth0 menu-item menu-item-type-post_type menu-item-object-resource menu-item-6728"><a href="https://flightsafety.org/resource/aviation-safety-network/" class="nav-link">ASN</a></li> </ul></nav> </div> <nav class="nav nav--utility"> <ul class="nav__menu nav__menu--depth0"> <li class="nav__menu-item nav__menu-item--depth0 nav__menu-item--contact"> <a href="https://flightsafety.org/contact/" class="nav-link">Contact Us</a> </li> <li class="nav__menu-item nav__menu-item--depth0 nav__menu-item--members"> <a href="https://flightsafety.org/members-center/" class="nav-link">Members' Center</a> </li> <li class="nav__menu-item nav__menu-item--depth0 nav__menu-item--login"> <a href="https://flightsafety.org/sso/login/?returnURL=https%3A%2F%2Fflightsafety.org%2F" class="nav-link"> Login<b class="svg svg--login-lock" data-svg-url="https://flightsafety.org/wp-content/themes/fsf/assets/img/icons/login-lock.svg" data-icon="login-lock"><svg role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 71 100"><path d="M65.5 45V30c0-16.5-13.5-30-30-30s-30 13.5-30 30v15H0v55h71V45h-5.5zm-52-15c0-12.1 9.9-22 22-22s22 9.9 22 22v15h-44V30z"/></svg></b> </a> </li> <li class="nav__menu-item nav__menu-item--depth0 nav__menu-item--support"> <a href="https://flightsafety.org/foundation/support/" class="nav-link">Support <span>Aviation Safety</span></a> </li> </ul> </nav> </div> </section> <header class="header"> <div class="header__wrap wrap"> <a class="header__mobile-icon"> <b class="svg svg--list-menu" data-svg-url="https://flightsafety.org/wp-content/themes/fsf/assets/img/icons/list-menu.svg" data-icon="list-menu"><svg role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20.4 11.3"><path d="M0 0h20.4v1.4H0zm3.8 9.9h12.7v1.4H3.8zM0 9.9h1.4v1.4H0zM3.8 5h12.7v1.4H3.8zM0 5h1.4v1.4H0z"/></svg></b> <b class="svg svg--close-icon" data-svg-url="https://flightsafety.org/wp-content/themes/fsf/assets/img/icons/close-icon.svg" data-icon="close-icon"><svg role="img" id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20.1 20.1"><style>.st0{fill:#23b3ed}</style><path class="st0" d="M19.9 19.9c-.3.3-.8.3-1.1 0L.2 1.3C-.1 1-.1.5.2.2c.3-.3.8-.3 1.1 0l18.6 18.6c.2.3.2.8 0 1.1z"/><path class="st0" d="M.2 19.9c-.3-.3-.3-.8 0-1.1L18.8.2c.3-.3.8-.3 1.1 0 .3.3.3.8 0 1.1L1.3 19.9c-.3.2-.8.2-1.1 0z"/></svg></b> </a> <p class="header__logo logo"> <a href="https://flightsafety.org"> <img src="https://flightsafety.org/wp-content/themes/fsf/assets/img/logos/FSF_logo.svg" alt="" width="160" height="64" class="header__logo-fsf"> </a> </p> <nav class="nav nav--primary"><ul class="nav__menu nav__menu--depth0 menu nav__menu nav__menu--depth0 menu "><li class="nav__menu-item nav__menu-item--depth0 menu-item menu-item-type-post_type menu-item-object-page menu-item-1401"><a href="https://flightsafety.org/?page_id=1066" class="nav-link"><span class="nav-link__span">Industry Updates</span></a></li> <li class="nav__menu-item nav__menu-item--depth0 nav__menu-item--has-submenu menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-6407"><a href="https://flightsafety.org/foundation/" class="nav-link"><span class="nav-link__span">The Foundation</span></a> <ul class="nav__menu nav__menu--depth1 sub-menu"> <li class="nav__menu-item nav__menu-item--depth1 menu-item menu-item-type-post_type menu-item-object-page menu-item-9610"><a href="https://flightsafety.org/foundation/" class="nav-link"><span class="nav-link__span">About the Foundation</span></a></li> <li class="nav__menu-item nav__menu-item--depth1 menu-item menu-item-type-post_type menu-item-object-page menu-item-55822"><a href="https://flightsafety.org/foundation/ap-cas/" class="nav-link"><span class="nav-link__span">Asia Pacific Centre for Aviation Safety</span></a></li> <li class="nav__menu-item nav__menu-item--depth1 menu-item menu-item-type-post_type menu-item-object-page menu-item-47748"><a href="https://flightsafety.org/foundation/founders/" class="nav-link"><span class="nav-link__span">Founders</span></a></li> <li class="nav__menu-item nav__menu-item--depth1 menu-item menu-item-type-post_type menu-item-object-page menu-item-18148"><a href="https://flightsafety.org/foundation/revised-mission-statement/" class="nav-link"><span class="nav-link__span">Mission</span></a></li> <li class="nav__menu-item nav__menu-item--depth1 menu-item menu-item-type-post_type menu-item-object-page menu-item-6410"><a href="https://flightsafety.org/foundation/history/" class="nav-link"><span class="nav-link__span">History</span></a></li> <li class="nav__menu-item nav__menu-item--depth1 menu-item menu-item-type-post_type menu-item-object-page menu-item-6411"><a href="https://flightsafety.org/foundation/leadership/" class="nav-link"><span class="nav-link__span">Leadership</span></a></li> <li class="nav__menu-item nav__menu-item--depth1 nav__menu-item--break menu-item menu-item-type-post_type menu-item-object-page menu-item-6413"><a href="https://flightsafety.org/foundation/leadership/officers-and-staff/" class="nav-link"><span class="nav-link__span">Officers and Staff</span></a></li> <li class="nav__menu-item nav__menu-item--depth1 menu-item menu-item-type-post_type menu-item-object-page menu-item-10561"><a href="https://flightsafety.org/foundation/media-communications/" class="nav-link"><span class="nav-link__span">Media/Communications</span></a></li> <li class="nav__menu-item nav__menu-item--depth1 menu-item menu-item-type-post_type menu-item-object-page menu-item-11214"><a href="https://flightsafety.org/foundation/aviation-awards/" class="nav-link"><span class="nav-link__span">Aviation Award &#038; Scholarship Programs</span></a></li> <li class="nav__menu-item nav__menu-item--depth1 menu-item menu-item-type-post_type menu-item-object-page menu-item-34490"><a href="https://flightsafety.org/foundation/work-with-us/" class="nav-link"><span class="nav-link__span">Work with Us</span></a></li> <li class="nav__menu-item nav__menu-item--depth1 menu-item menu-item-type-post_type menu-item-object-page menu-item-21419"><a href="https://flightsafety.org/foundation/support/" class="nav-link"><span class="nav-link__span">Join Us</span></a></li> </ul> </li> <li class="nav__menu-item nav__menu-item--depth0 menu-item menu-item-type-post_type menu-item-object-page menu-item-37664"><a href="https://flightsafety.org/asw-landing-page-2/" class="nav-link"><span class="nav-link__span">AeroSafety World</span></a></li> <li class="nav__menu-item nav__menu-item--depth0 menu-item menu-item-type-post_type menu-item-object-page menu-item-67223"><a href="https://flightsafety.org/events-at-flight-safety-foundation/" class="nav-link"><span class="nav-link__span">Events</span></a></li> <li class="nav__menu-item nav__menu-item--depth0 nav__menu-item--has-submenu menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-3864"><a href="https://flightsafety.org/toolkits-resources/" class="nav-link"><span class="nav-link__span">Toolkits &#038; Resources</span></a> <ul class="nav__menu nav__menu--depth1 sub-menu"> <li class="nav__menu-item nav__menu-item--depth1 menu-item menu-item-type-post_type menu-item-object-page menu-item-75330"><a href="https://flightsafety.org/toolkits-resources/mental-health-and-wellness/" class="nav-link"><span class="nav-link__span">Mental Health and Wellness</span></a></li> <li class="nav__menu-item nav__menu-item--depth1 menu-item menu-item-type-post_type menu-item-object-page menu-item-61420"><a href="https://flightsafety.org/toolkits-resources/gappri/" class="nav-link"><span class="nav-link__span">Global Action Plan for the Prevention of Runway Incursions (GAPPRI)</span></a></li> <li class="nav__menu-item nav__menu-item--depth1 menu-item menu-item-type-post_type menu-item-object-page menu-item-36395"><a href="https://flightsafety.org/toolkits-resources/covid-19-safety-roadmap-and-punch-lists/" class="nav-link"><span class="nav-link__span">COVID-19 Crisis Resources</span></a></li> <li class="nav__menu-item nav__menu-item--depth1 menu-item menu-item-type-post_type menu-item-object-page menu-item-9533"><a href="https://flightsafety.org/toolkits-resources/fatigue-management/" class="nav-link"><span class="nav-link__span">Fatigue Management</span></a></li> <li class="nav__menu-item nav__menu-item--depth1 menu-item menu-item-type-post_type menu-item-object-page menu-item-8179"><a href="https://flightsafety.org/toolkits-resources/flight-path-monitoring/" class="nav-link"><span class="nav-link__span">Flight Path Monitoring</span></a></li> <li class="nav__menu-item nav__menu-item--depth1 menu-item menu-item-type-post_type menu-item-object-page menu-item-40975"><a href="https://flightsafety.org/toolkits-resources/gappre/" class="nav-link"><span class="nav-link__span">Global Action Plan for the Prevention of Runway Excursions (GAPPRE)</span></a></li> <li class="nav__menu-item nav__menu-item--depth1 menu-item menu-item-type-post_type menu-item-object-page menu-item-17307"><a href="https://flightsafety.org/toolkits-resources/go-around-project-final-report/" class="nav-link"><span class="nav-link__span">Go-Around Project</span></a></li> <li class="nav__menu-item nav__menu-item--depth1 menu-item menu-item-type-post_type menu-item-object-page menu-item-50972"><a href="https://flightsafety.org/toolkits-resources/global-safety-assessment-project/" class="nav-link"><span class="nav-link__span">Global Safety Assessment Project</span></a></li> <li class="nav__menu-item nav__menu-item--depth1 menu-item menu-item-type-post_type menu-item-object-page menu-item-46761"><a href="https://flightsafety.org/toolkits-resources/learning-from-all-operations/" class="nav-link"><span class="nav-link__span">Learning From All Operations</span></a></li> <li class="nav__menu-item nav__menu-item--depth1 menu-item menu-item-type-post_type menu-item-object-page menu-item-50968"><a href="https://flightsafety.org/toolkits-resources/past-safety-initiatives/" class="nav-link"><span class="nav-link__span">Past Safety Initiatives</span></a></li> <li class="nav__menu-item nav__menu-item--depth1 menu-item menu-item-type-post_type menu-item-object-page menu-item-25486"><a href="https://flightsafety.org/toolkits-resources/pilot-training-and-competency/" class="nav-link"><span class="nav-link__span">Pilot Training and Competency</span></a></li> <li class="nav__menu-item nav__menu-item--depth1 menu-item menu-item-type-post_type menu-item-object-page menu-item-11240"><a href="https://flightsafety.org/toolkits-resources/special-reports/" class="nav-link"><span class="nav-link__span">Special Reports</span></a></li> <li class="nav__menu-item nav__menu-item--depth1 menu-item menu-item-type-post_type menu-item-object-page menu-item-63275"><a href="https://flightsafety.org/toolkits-resources/aviation-safety-network/" class="nav-link"><span class="nav-link__span">ASN Accident Dashboards</span></a></li> <li class="nav__menu-item nav__menu-item--depth1 menu-item menu-item-type-post_type menu-item-object-page menu-item-70555"><a href="https://flightsafety.org/toolkits-resources/asn-accident-data-2/" class="nav-link"><span class="nav-link__span">ASN Accident Data</span></a></li> </ul> </li> </ul></nav> <div class="header__search"> <div class="header__search-buttons"> <a class="header__search-label js-search-toggle" href="#"> <b class="svg svg--search-icon" data-svg-url="https://flightsafety.org/wp-content/themes/fsf/assets/img/icons/search-icon.svg" data-icon="search-icon"><svg aria-label="Open Search" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600.3 599.1"><path d="M349.1 407.4c-57 36.8-117.3 47.8-181.8 31.6-53.1-13.3-95.4-43.4-127-88C-23 261.3-10.6 138.2 69.2 61.8 148-13.6 271.1-20.3 357.9 45.7c91.9 69.9 117 201.3 49.9 302.7 1.4.8-3.3-5.3-2-3.9 60.3 60.2 127.3 127.2 187.5 187.4 8.5 8.5 9.5 18.1 1.3 26.9-11.2 12.1-22.9 23.8-35 35-8.8 8.2-18.3 7.2-26.9-1.3L345.6 405.4c-1.3-1.4 4.6 3.5 3.5 2zM60.4 223.1c-.2 89.4 72.8 162.4 162.5 162.5 89.6.1 162.4-72.6 162.5-162.4.1-89.6-72.7-162.5-162.3-162.6-89.4-.1-162.5 73-162.7 162.5z"/></svg></b> <b class="svg svg--close-icon" data-svg-url="https://flightsafety.org/wp-content/themes/fsf/assets/img/icons/close-icon.svg" data-icon="close-icon"><svg aria-label="Close" role="img" id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20.1 20.1"><style>.st0{fill:#23b3ed}</style><path class="st0" d="M19.9 19.9c-.3.3-.8.3-1.1 0L.2 1.3C-.1 1-.1.5.2.2c.3-.3.8-.3 1.1 0l18.6 18.6c.2.3.2.8 0 1.1z"/><path class="st0" d="M.2 19.9c-.3-.3-.3-.8 0-1.1L18.8.2c.3-.3.8-.3 1.1 0 .3.3.3.8 0 1.1L1.3 19.9c-.3.2-.8.2-1.1 0z"/></svg></b> </a> <a class="header__search-submit js-search-submit" href="#"> <b class="svg svg--search-icon" data-svg-url="https://flightsafety.org/wp-content/themes/fsf/assets/img/icons/search-icon.svg" data-icon="search-icon"><svg aria-label="Search" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600.3 599.1"><path d="M349.1 407.4c-57 36.8-117.3 47.8-181.8 31.6-53.1-13.3-95.4-43.4-127-88C-23 261.3-10.6 138.2 69.2 61.8 148-13.6 271.1-20.3 357.9 45.7c91.9 69.9 117 201.3 49.9 302.7 1.4.8-3.3-5.3-2-3.9 60.3 60.2 127.3 127.2 187.5 187.4 8.5 8.5 9.5 18.1 1.3 26.9-11.2 12.1-22.9 23.8-35 35-8.8 8.2-18.3 7.2-26.9-1.3L345.6 405.4c-1.3-1.4 4.6 3.5 3.5 2zM60.4 223.1c-.2 89.4 72.8 162.4 162.5 162.5 89.6.1 162.4-72.6 162.5-162.4.1-89.6-72.7-162.5-162.3-162.6-89.4-.1-162.5 73-162.7 162.5z"/></svg></b> </a> </div> <form role="search" method="get" class="search-form" action="https://flightsafety.org/"> <label> <span class="screen-reader-text">Search for:</span> <input type="search" class="search-field st-default-search-input" placeholder="Search &hellip;" value="" name="s" /> </label> <button type="submit" class="search-submit">Search</button> </form> </div> </div> </header><!-- end .header --> <div class="nav-mobile"> <div class="wrap"> <div class="nav-mobile__search"> <a class="nav-mobile__search-label" href="#"> <b class="svg svg--search-icon" data-svg-url="https://flightsafety.org/wp-content/themes/fsf/assets/img/icons/search-icon.svg" data-icon="search-icon"><svg aria-label="Search" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600.3 599.1"><path d="M349.1 407.4c-57 36.8-117.3 47.8-181.8 31.6-53.1-13.3-95.4-43.4-127-88C-23 261.3-10.6 138.2 69.2 61.8 148-13.6 271.1-20.3 357.9 45.7c91.9 69.9 117 201.3 49.9 302.7 1.4.8-3.3-5.3-2-3.9 60.3 60.2 127.3 127.2 187.5 187.4 8.5 8.5 9.5 18.1 1.3 26.9-11.2 12.1-22.9 23.8-35 35-8.8 8.2-18.3 7.2-26.9-1.3L345.6 405.4c-1.3-1.4 4.6 3.5 3.5 2zM60.4 223.1c-.2 89.4 72.8 162.4 162.5 162.5 89.6.1 162.4-72.6 162.5-162.4.1-89.6-72.7-162.5-162.3-162.6-89.4-.1-162.5 73-162.7 162.5z"/></svg></b> </a> <form role="search" method="get" class="search-form" action="https://flightsafety.org/"> <label> <span class="screen-reader-text">Search for:</span> <input type="search" class="search-field st-default-search-input" placeholder="Search &hellip;" value="" name="s" /> </label> <button type="submit" class="search-submit">Search</button> </form> </div> <nav class="nav nav--primary nav-mobile__primary"><ul class="nav__menu nav__menu--depth0 menu nav__menu nav__menu--depth0 menu "><li class="nav__menu-item nav__menu-item--depth0 menu-item menu-item-type-post_type menu-item-object-page menu-item-1401"><a href="https://flightsafety.org/?page_id=1066" class="nav-link"><span class="nav-link__span">Industry Updates</span></a></li> <li class="nav__menu-item nav__menu-item--depth0 nav__menu-item--has-submenu menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-6407"><a href="https://flightsafety.org/foundation/" class="nav-link"><span class="nav-link__span">The Foundation</span></a> <ul class="nav__menu nav__menu--depth1 sub-menu"> <li class="nav__menu-item nav__menu-item--depth1 menu-item menu-item-type-post_type menu-item-object-page menu-item-9610"><a href="https://flightsafety.org/foundation/" class="nav-link"><span class="nav-link__span">About the Foundation</span></a></li> <li class="nav__menu-item nav__menu-item--depth1 menu-item menu-item-type-post_type menu-item-object-page menu-item-55822"><a href="https://flightsafety.org/foundation/ap-cas/" class="nav-link"><span class="nav-link__span">Asia Pacific Centre for Aviation Safety</span></a></li> <li class="nav__menu-item nav__menu-item--depth1 menu-item menu-item-type-post_type menu-item-object-page menu-item-47748"><a href="https://flightsafety.org/foundation/founders/" class="nav-link"><span class="nav-link__span">Founders</span></a></li> <li class="nav__menu-item nav__menu-item--depth1 menu-item menu-item-type-post_type menu-item-object-page menu-item-18148"><a href="https://flightsafety.org/foundation/revised-mission-statement/" class="nav-link"><span class="nav-link__span">Mission</span></a></li> <li class="nav__menu-item nav__menu-item--depth1 menu-item menu-item-type-post_type menu-item-object-page menu-item-6410"><a href="https://flightsafety.org/foundation/history/" class="nav-link"><span class="nav-link__span">History</span></a></li> <li class="nav__menu-item nav__menu-item--depth1 menu-item menu-item-type-post_type menu-item-object-page menu-item-6411"><a href="https://flightsafety.org/foundation/leadership/" class="nav-link"><span class="nav-link__span">Leadership</span></a></li> <li class="nav__menu-item nav__menu-item--depth1 nav__menu-item--break menu-item menu-item-type-post_type menu-item-object-page menu-item-6413"><a href="https://flightsafety.org/foundation/leadership/officers-and-staff/" class="nav-link"><span class="nav-link__span">Officers and Staff</span></a></li> <li class="nav__menu-item nav__menu-item--depth1 menu-item menu-item-type-post_type menu-item-object-page menu-item-10561"><a href="https://flightsafety.org/foundation/media-communications/" class="nav-link"><span class="nav-link__span">Media/Communications</span></a></li> <li class="nav__menu-item nav__menu-item--depth1 menu-item menu-item-type-post_type menu-item-object-page menu-item-11214"><a href="https://flightsafety.org/foundation/aviation-awards/" class="nav-link"><span class="nav-link__span">Aviation Award &#038; Scholarship Programs</span></a></li> <li class="nav__menu-item nav__menu-item--depth1 menu-item menu-item-type-post_type menu-item-object-page menu-item-34490"><a href="https://flightsafety.org/foundation/work-with-us/" class="nav-link"><span class="nav-link__span">Work with Us</span></a></li> <li class="nav__menu-item nav__menu-item--depth1 menu-item menu-item-type-post_type menu-item-object-page menu-item-21419"><a href="https://flightsafety.org/foundation/support/" class="nav-link"><span class="nav-link__span">Join Us</span></a></li> </ul> </li> <li class="nav__menu-item nav__menu-item--depth0 menu-item menu-item-type-post_type menu-item-object-page menu-item-37664"><a href="https://flightsafety.org/asw-landing-page-2/" class="nav-link"><span class="nav-link__span">AeroSafety World</span></a></li> <li class="nav__menu-item nav__menu-item--depth0 menu-item menu-item-type-post_type menu-item-object-page menu-item-67223"><a href="https://flightsafety.org/events-at-flight-safety-foundation/" class="nav-link"><span class="nav-link__span">Events</span></a></li> <li class="nav__menu-item nav__menu-item--depth0 nav__menu-item--has-submenu menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-3864"><a href="https://flightsafety.org/toolkits-resources/" class="nav-link"><span class="nav-link__span">Toolkits &#038; Resources</span></a> <ul class="nav__menu nav__menu--depth1 sub-menu"> <li class="nav__menu-item nav__menu-item--depth1 menu-item menu-item-type-post_type menu-item-object-page menu-item-75330"><a href="https://flightsafety.org/toolkits-resources/mental-health-and-wellness/" class="nav-link"><span class="nav-link__span">Mental Health and Wellness</span></a></li> <li class="nav__menu-item nav__menu-item--depth1 menu-item menu-item-type-post_type menu-item-object-page menu-item-61420"><a href="https://flightsafety.org/toolkits-resources/gappri/" class="nav-link"><span class="nav-link__span">Global Action Plan for the Prevention of Runway Incursions (GAPPRI)</span></a></li> <li class="nav__menu-item nav__menu-item--depth1 menu-item menu-item-type-post_type menu-item-object-page menu-item-36395"><a href="https://flightsafety.org/toolkits-resources/covid-19-safety-roadmap-and-punch-lists/" class="nav-link"><span class="nav-link__span">COVID-19 Crisis Resources</span></a></li> <li class="nav__menu-item nav__menu-item--depth1 menu-item menu-item-type-post_type menu-item-object-page menu-item-9533"><a href="https://flightsafety.org/toolkits-resources/fatigue-management/" class="nav-link"><span class="nav-link__span">Fatigue Management</span></a></li> <li class="nav__menu-item nav__menu-item--depth1 menu-item menu-item-type-post_type menu-item-object-page menu-item-8179"><a href="https://flightsafety.org/toolkits-resources/flight-path-monitoring/" class="nav-link"><span class="nav-link__span">Flight Path Monitoring</span></a></li> <li class="nav__menu-item nav__menu-item--depth1 menu-item menu-item-type-post_type menu-item-object-page menu-item-40975"><a href="https://flightsafety.org/toolkits-resources/gappre/" class="nav-link"><span class="nav-link__span">Global Action Plan for the Prevention of Runway Excursions (GAPPRE)</span></a></li> <li class="nav__menu-item nav__menu-item--depth1 menu-item menu-item-type-post_type menu-item-object-page menu-item-17307"><a href="https://flightsafety.org/toolkits-resources/go-around-project-final-report/" class="nav-link"><span class="nav-link__span">Go-Around Project</span></a></li> <li class="nav__menu-item nav__menu-item--depth1 menu-item menu-item-type-post_type menu-item-object-page menu-item-50972"><a href="https://flightsafety.org/toolkits-resources/global-safety-assessment-project/" class="nav-link"><span class="nav-link__span">Global Safety Assessment Project</span></a></li> <li class="nav__menu-item nav__menu-item--depth1 menu-item menu-item-type-post_type menu-item-object-page menu-item-46761"><a href="https://flightsafety.org/toolkits-resources/learning-from-all-operations/" class="nav-link"><span class="nav-link__span">Learning From All Operations</span></a></li> <li class="nav__menu-item nav__menu-item--depth1 menu-item menu-item-type-post_type menu-item-object-page menu-item-50968"><a href="https://flightsafety.org/toolkits-resources/past-safety-initiatives/" class="nav-link"><span class="nav-link__span">Past Safety Initiatives</span></a></li> <li class="nav__menu-item nav__menu-item--depth1 menu-item menu-item-type-post_type menu-item-object-page menu-item-25486"><a href="https://flightsafety.org/toolkits-resources/pilot-training-and-competency/" class="nav-link"><span class="nav-link__span">Pilot Training and Competency</span></a></li> <li class="nav__menu-item nav__menu-item--depth1 menu-item menu-item-type-post_type menu-item-object-page menu-item-11240"><a href="https://flightsafety.org/toolkits-resources/special-reports/" class="nav-link"><span class="nav-link__span">Special Reports</span></a></li> <li class="nav__menu-item nav__menu-item--depth1 menu-item menu-item-type-post_type menu-item-object-page menu-item-63275"><a href="https://flightsafety.org/toolkits-resources/aviation-safety-network/" class="nav-link"><span class="nav-link__span">ASN Accident Dashboards</span></a></li> <li class="nav__menu-item nav__menu-item--depth1 menu-item menu-item-type-post_type menu-item-object-page menu-item-70555"><a href="https://flightsafety.org/toolkits-resources/asn-accident-data-2/" class="nav-link"><span class="nav-link__span">ASN Accident Data</span></a></li> </ul> </li> </ul></nav> <nav class="nav nav--utility"> <ul class="nav__menu nav__menu--depth0"> <li class="nav__menu-item nav__menu-item--depth0 nav__menu-item--contact"> <a href="https://flightsafety.org/contact/" class="nav-link">Contact Us</a> </li> <li class="nav__menu-item nav__menu-item--depth0 nav__menu-item--members"> <a href="https://flightsafety.org/members-center/" class="nav-link">Members' Center</a> </li> <li class="nav__menu-item nav__menu-item--depth0 nav__menu-item--login"> <a href="https://flightsafety.org/sso/login/?returnURL=https%3A%2F%2Fflightsafety.org%2F" class="nav-link"> Login<b class="svg svg--login-lock" data-svg-url="https://flightsafety.org/wp-content/themes/fsf/assets/img/icons/login-lock.svg" data-icon="login-lock"><svg role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 71 100"><path d="M65.5 45V30c0-16.5-13.5-30-30-30s-30 13.5-30 30v15H0v55h71V45h-5.5zm-52-15c0-12.1 9.9-22 22-22s22 9.9 22 22v15h-44V30z"/></svg></b> </a> </li> <li class="nav__menu-item nav__menu-item--depth0 nav__menu-item--support"> <a href="https://flightsafety.org/foundation/support/" class="nav-link">Support <span>Aviation Safety</span></a> </li> </ul> </nav> <div class="nav-mobile__partners"> <span class="nav-mobile__partners-label">Partners and Programs:</span> <nav class="nav nav--partners"><ul class="nav__menu nav__menu--depth0 menu nav__menu nav__menu--depth0 menu "><li class="nav__menu-item nav__menu-item--depth0 menu-item menu-item-type-post_type_archive menu-item-object-bars menu-item-44765"><a href="https://flightsafety.org/bars/" class="nav-link">BARS</a></li> <li class="nav__menu-item nav__menu-item--depth0 menu-item menu-item-type-post_type menu-item-object-resource menu-item-6729"><a href="https://flightsafety.org/resource/skybrary/" class="nav-link">SKYbrary</a></li> <li class="nav__menu-item nav__menu-item--depth0 menu-item menu-item-type-post_type menu-item-object-resource menu-item-6728"><a href="https://flightsafety.org/resource/aviation-safety-network/" class="nav-link">ASN</a></li> </ul></nav> </div> <div class="nav-mobile__footer"> <p>FLIGHT SAFETY FOUNDATION HEADQUARTERS</p> <p class="nav-mobile__footer-address">701 N. Fairfax Street, Suite 250, <br> Alexandria, Virginia 22314</p> <p class="nav-mobile__footer-phone"><span>Phone: +1 703 739 6700</span> <span>Fax: +1 703 739 6708</span></p> <p class="nav-mobile__footer-social"> <a href="http://www.linkedin.com/groups?gid=1804478" target="_blank"><b class="svg svg--linkedin-icon" data-svg-url="https://flightsafety.org/wp-content/themes/fsf/assets/img/icons/linkedin-icon.svg" data-icon="linkedin-icon"><svg role="img" id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22 22"><style>.st0{fill:#1b95e0}</style><path class="st0" d="M4.2.8c.7 0 1.3.2 1.8.7s.7 1.1.7 1.8-.2 1.3-.7 1.8-1.1.7-1.8.7c-.6 0-1.2-.2-1.7-.7S1.8 4 1.8 3.3 2 2 2.5 1.5 3.6.8 4.2.8zm-2 20.4V7.3h4v13.9h-4zm10-13.9v.6c.8-.4 1.6-.6 2.6-.5 1 0 1.8.3 2.6.6.8.5 1.5 1.1 2 2s.7 1.8.7 2.7v8.5h-4v-8.5c0-.2-.1-.4-.2-.7-.1-.3-.3-.4-.5-.5-.4-.2-.8-.3-1.2-.3s-.7.1-1 .3c-.4.2-.7.4-1 .7v8.9h-4V7.3h4z"/></svg></b></a> <a href="http://twitter.com/flightsafety" target="_blank"><b class="svg svg--twitter-icon" data-svg-url="https://flightsafety.org/wp-content/themes/fsf/assets/img/icons/twitter-icon.svg" data-icon="twitter-icon"><svg role="img" id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22 22"><style>.st0{fill:#1b95e0}</style><path class="st0" d="M21.5 4.4c-.5.8-1.3 1.6-2 2.3v.5c0 1.4-.3 2.9-.8 4.4s-1.3 2.8-2.4 4c-1.1 1.2-2.3 2.2-3.9 2.9-1.5.7-3.3 1.1-5.3 1.1-1.2 0-2.4-.2-3.5-.5-1.1-.4-2.1-.9-3.1-1.5h1c2.1 0 3.9-.6 5.4-1.8-1 0-1.8-.3-2.5-.9s-1.2-1.3-1.5-2.1c.3.1.6.1.8.1h.6c.2 0 .4-.1.6-.1-1-.2-1.8-.7-2.5-1.5s-1-1.7-1-2.8c.3.1.6.3.9.4.2.1.6.1 1 .1-.7-.5-1.2-1-1.5-1.6s-.5-1.3-.5-2.1.2-1.5.6-2.2C3 4.4 4.3 5.5 5.8 6.3s3.2 1.2 5 1.3c-.1-.3-.1-.6-.1-.9 0-.6.1-1.2.3-1.7s.5-1 .9-1.4.9-.7 1.4-.9c.5-.2 1.1-.3 1.7-.3.6 0 1.2.1 1.8.4.6.3 1 .6 1.4 1 .5-.1 1-.2 1.4-.4.5-.2.9-.4 1.3-.6-.4 1-1 1.8-1.9 2.4.5 0 .9-.1 1.3-.3.4-.2.9-.3 1.2-.5z"/></svg></b></a> <a href="https://www.youtube.com/channel/UCYS5ObEBNuW9s3j7SMzxvLQ" target="_blank"><b class="svg svg--youtube-icon" data-svg-url="https://flightsafety.org/wp-content/themes/fsf/assets/img/icons/youtube-icon.svg" data-icon="youtube-icon"><svg role="img" id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22 22"><style>.st0{fill:#1b95e0}</style><path class="st0" d="M6.2 12.4v1.3H4.7v7.9H3.2v-7.9H1.6v-1.3h4.6zm-.3-8L7.1.3h1.7l-2 5.9v4.2H5.1v-4L3.1.2h1.7l1.1 4.2zm3.5 17.2v-.8c-.3.3-.4.4-.7.6-.3.2-.6.3-.8.3-.3 0-.6-.1-.7-.3-.2-.3-.3-.6-.3-.9v-5.7h1.4v5.6s.2.1.3.1c0 0 .2 0 .4-.1.1-.1.3-.2.4-.3V15h1.4v6.8H9.4v-.2zM9 4.7c0-.5.2-1 .6-1.4.2-.2.5-.3.8-.4.2-.1.5-.1.8-.1.6 0 1.2.2 1.5.6.2.2.3.4.4.6.1.2.1.5.1.8v3.9c0 .7-.2 1.2-.6 1.5-.4.4-.9.6-1.6.6-.7 0-1.3-.1-1.6-.6-.3-.4-.4-.9-.4-1.6V4.7zm2.2 4.7c.2 0 .3-.1.5-.2.1-.1.2-.3.2-.4V4.7c0-.2-.1-.3-.2-.4-.2-.1-.4-.2-.5-.2-.2 0-.3.1-.5.2s-.2.2-.2.4v4.1c0 .1 0 .4.1.4.2.2.3.2.6.2zm3.3 5.3c.4.1.6.2.9.5.3.3.3 1 .3 1.3v3.7c0 .3 0 .5-.1.7-.1.2-.1.3-.2.4-.2.3-.5.4-.9.4-.2 0-.5 0-.7-.1-.1 0-.2-.1-.3-.2l-.3-.3v.5h-1.4v-9.2h1.4v2.9l.3-.3c.1-.1.4-.3.6-.3.1 0 .3-.1.4 0zm-1 5.9h.3c.1 0 .2-.1.3-.1.1-.1.1-.3.1-.6v-3.5c0-.3 0-.4-.1-.5-.1-.1-.2-.2-.3-.2h-.4s-.2.1-.2.2v4.4c-.1 0 0 .3.3.3zM16.2 3v6.2c.1.1.2.1.3.1s.3-.1.5-.2.3-.2.5-.4V3H19v7.5h-1.5v-.8c-.1.2-.3.3-.4.4-.2.1-.3.2-.7.4-.2.1-.5.2-.6.2-.4 0-.6-.1-.8-.4-.1-.1-.1-.2-.2-.4s-.1-.5-.1-.7V3h1.5zm4.1 15.3h-2.6v1.3c0 .4 0 .6.1.7.1.1.2.2.5.2h.3s.1 0 .2-.1c0-.1.1-.2.1-.3v-.8h1.4v.3c0 .7-.2 1.2-.5 1.6-.3.3-.9.5-1.5.5s-1.1-.2-1.4-.6c-.3-.4-.5-.9-.5-1.5v-3.1c0-.6.2-1 .6-1.4.4-.4.9-.6 1.5-.6s1.1.2 1.4.5c.2.2.3.4.4.6.1.2.1.5.1.8v1.9h-.1zM18 15.9c-.1.1-.1.2-.1.3v1H19v-.6c0-.2 0-.4-.1-.6 0-.1 0-.1-.2-.1H18z"/></svg></b></a> <a href="http://www.facebook.com/FlightSafetyFoundation" target="_blank"><b class="svg svg--facebook-icon" data-svg-url="https://flightsafety.org/wp-content/themes/fsf/assets/img/icons/facebook-icon.svg" data-icon="facebook-icon"><svg role="img" id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22 22"><style>.st0{fill:#1b95e0}</style><path class="st0" d="M8.5 7.6V5.5c0-.8.1-1.5.4-2.2.2-.6.6-1.2 1.1-1.7.5-.5 1-.9 1.6-1.2.6-.3 1.3-.4 2-.4H17v4.1h-3.4c-.2 0-.4.1-.6.4-.2.3-.3.6-.3.9v2.2h4.2v4.2h-4.2V22H8.5V11.8H5.1V7.6h3.4z"/></svg></b></a> </p> </div> <!-- <ul class="nav__menu nav__menu--depth0"> <li class="nav__menu-item nav__menu-item--depth0 nav__menu-item--contact"> <a href="https://flightsafety.org/contact/" class="nav-link">Contact Us</a> </li> <li class="nav__menu-item nav__menu-item--depth0 nav__menu-item--login"> <a href="https://flightsafety.org/login/" class="nav-link"> Members Login <b class="svg svg--login-lock" data-svg-url="https://flightsafety.org/wp-content/themes/fsf/assets/img/icons/login-lock.svg" data-icon="login-lock"><svg role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 71 100"><path d="M65.5 45V30c0-16.5-13.5-30-30-30s-30 13.5-30 30v15H0v55h71V45h-5.5zm-52-15c0-12.1 9.9-22 22-22s22 9.9 22 22v15h-44V30z"/></svg></b> </a> </li> <li class="nav__menu-item nav__menu-item--depth0 nav__menu-item--support"> <a href="https://flightsafety.org/support/" class="nav-link">Support Aviation Safety</a> </li> </ul> --> </div> </div> <div class="main-container"> <div class="home-hero home-hero--updates home-hero--panorama" style="background-image: url(https://flightsafety.org/wp-content/uploads/2018/12/dreamstime_xxl_18963474_640.jpg);"> <div class="home-hero__bg"></div> <div class="home-hero__wrap wrap"> <div class="home-hero__highlight u-content"> <h2>Flight Safety Foundation</h2> <p><a href="https://flightsafety.org/foundation/support/"><span style="font-size: 20px;">Join our mission</span>.</a></p> </div> <div class="home-hero__content home-hero__content--updates slideshow"> <div class="home-hero__title-container"> <h3 class="home-hero__title">Industry Updates</h3> <a class="home-hero__title-link" href="https://flightsafety.org/?page_id=1066">View more »</a> </div> <div class="home-hero__content-body slideshow__slides"> <ul class="home-hero__content-list slideshow__slide u-content"> <li><a href="https://flightsafety.org/fsf-recognizes-easa-faa-for-advancing-safety-through-leadership-innovation-and-collaboration/">FSF Recognizes EASA, FAA for Advancing Safety Through Leadership, Innovation, and Collaboration</a></li> <li><a href="https://flightsafety.org/aviation-leaders-from-latin-america-highlight-iass-2024-agenda/">Aviation Leaders from Latin America Highlight IASS 2024 Agenda</a></li> <li><a href="https://flightsafety.org/a-human-focused-approach-to-aviation-safety/">A Human-Focused Approach to Aviation Safety</a></li> </ul> <ul class="home-hero__content-list slideshow__slide u-content"> <li><a href="https://flightsafety.org/foundation-to-recognize-jetblue-ceo-and-japan-airlines-with-awards/">Foundation to Recognize JetBlue CEO and Japan Airlines With Awards</a></li> <li><a href="https://flightsafety.org/fsf-caas-partner-with-caac-to-hold-ap-cas-2024-in-beijing/">FSF, CAAS Partner With CAAC to Hold AP-SAS 2024 in Beijing</a></li> <li><a href="https://flightsafety.org/foundations-annual-report-highlights-threat-to-aviation-safety-from-eroding-safety-culture/">Foundation&#8217;s Annual Report Highlights Threat to Aviation Safety from Eroding Safety Culture</a></li> </ul> <ul class="home-hero__content-list slideshow__slide u-content"> <li><a href="https://flightsafety.org/foundation-calls-for-global-coordinated-action-on-runway-incursions/">Foundation Calls for Global, Coordinated Action on Runway Incursions</a></li> <li><a href="https://flightsafety.org/flight-safety-foundation-seeks-aviation-auditors-in-africa-americas-to-grow-the-bars-program/">Flight Safety Foundation Seeks Aviation Auditors in Africa, Americas to Grow the BARS Program</a></li> <li><a href="https://flightsafety.org/fsf-recognizes-international-teams-for-advancing-safety-through-leadership-innovation-and-collaboration/">FSF Recognizes International Teams for Advancing Safety Through Leadership, Innovation and Collaboration</a></li> </ul> <ul class="home-hero__content-list slideshow__slide u-content"> <li><a href="https://flightsafety.org/foundation-to-recognize-rtca-eurocae-and-international-aviation-law-leader-from-singapore-with-awards/">Foundation to Recognize RTCA/EUROCAE and International Aviation Law Leader from Singapore with Awards</a></li> <li><a href="https://flightsafety.org/fsf-outlines-regulator-compliance-safety-obligations-relating-to-sanctions/">FSF Outlines Regulator Compliance, Safety Obligations Relating to Sanctions</a></li> <li><a href="https://flightsafety.org/flight-safety-foundation-establishes-asia-pacific-centre-for-aviation-safety-in-singapore/">Flight Safety Foundation Establishes Asia Pacific Centre for Aviation Safety In Singapore</a></li> </ul> </div> <div class="home-hero__content-footer"> <a class="slideshow__button slideshow__prev js-prev"><b class="svg svg--up-arrow" data-svg-url="https://flightsafety.org/wp-content/themes/fsf/assets/img/icons/up-arrow.svg" data-icon="up-arrow"><svg role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 71.9 33.7"><path d="M70.7 28.1L38 .7c-.6-.5-1.4-.7-2.1-.7s-1.5.2-2.1.7L1.1 28.1c-1.4 1.1-1.5 3.2-.4 4.5 1.1 1.4 3.2 1.5 4.5.4L35.9 7.4 66.6 33c1.4 1.1 3.4.9 4.5-.4 1.2-1.4 1-3.4-.4-4.5z"/></svg></b></a> <a class="slideshow__button slideshow__next js-next"><b class="svg svg--down-arrow" data-svg-url="https://flightsafety.org/wp-content/themes/fsf/assets/img/icons/down-arrow.svg" data-icon="down-arrow"><svg role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 71.9 33.7"><path d="M1.2 5.6L33.9 33c.6.5 1.4.7 2.1.7s1.5-.2 2.1-.7L70.8 5.6c1.4-1.1 1.5-3.2.4-4.5C70.1-.3 68-.4 66.7.7L36 26.3 5.3.7C3.9-.4 1.9-.2.8 1.1c-1.2 1.4-1 3.4.4 4.5z"/></svg></b></a> </div> </div> </div> </div> <div class="intro wrap "> <div class="intro__inner u-content"> <h2 class="intro__title">The Flight Safety Foundation</h2> <div class="intro__content"> <p>We are an independent, international, and impartial non-profit that exists to champion the cause of aviation safety.</p> </div> <p class="intro__links"> <a href="https://flightsafety.org/foundation/mission-statement/">Mission Statement »</a> <a href="https://flightsafety.org/foundation/history/">Our History »</a> <a href="https://flightsafety.org/foundation/leadership/">Leadership »</a> </p> <p><a href="https://flightsafety.org/foundation/" class="button">More about FSF</a></p> </div> </div> <div class="featured-post-columns featured-post-columns--home-resources"> <div class="wrap"> <h2 class="featured-post-columns__title">Search our multi-site collection of aviation safety resources</h2> <div class="featured-post-columns__items"> <div class="featured-post-columns__item"> <a class="featured-post-columns__item-link" href="https://flightsafety.org/resource/asia-pacific-centre-for-aviation-safety/"> <img src="https://flightsafety.org/wp-content/uploads/2023/04/Asian-Female-Pilot-2-588x441.jpg" alt=""> <div class="featured-post-columns__item-content u-content"> <h3>Asia Pacific Centre for Aviation Safety</h3> <p>The Asia Pacific Centre for Aviation Safety is a Flight Safety Foundation initiative to advance&hellip;</p> </div> </a> </div> <div class="featured-post-columns__item"> <a class="featured-post-columns__item-link" href="https://flightsafety.org/resource/basic-aviation-risk-standard/"> <img src="https://flightsafety.org/wp-content/uploads/2016/09/bars-cover-rescource-588x441.jpg" alt=""> <div class="featured-post-columns__item-content u-content"> <h3>Basic Aviation Risk Standard (BARS)</h3> <p>The Foundation&#8217;s BARS program provides organizations that engage contracted aircraft operators with a standard to&hellip;</p> </div> </a> </div> <div class="featured-post-columns__item"> <a class="featured-post-columns__item-link" href="https://flightsafety.org/resource/aviation-safety-network/"> <img src="https://flightsafety.org/wp-content/uploads/2016/07/ASN_iStock_000016952876XLarge_Flat-588x441.jpg" alt=""> <div class="featured-post-columns__item-content u-content"> <h3>Aviation Safety Network</h3> <p>Aviation Safety Network (ASN) is the Foundation database of accurate and authoritative information on airline accidents&hellip;</p> </div> </a> </div> <div class="featured-post-columns__item"> <a class="featured-post-columns__item-link" href="https://flightsafety.org/resource/covid-19-crisis-resources/"> <img src="https://flightsafety.org/wp-content/uploads/2021/12/Covid-19-Resources-400px.png" alt=""> <div class="featured-post-columns__item-content u-content"> <h3>COVID-19 Crisis Resources</h3> <p>As the world struggles with the tragic and unprecedented COVID-19 pandemic, we in aviation are&hellip;</p> </div> </a> </div> </div> </div> </div> <div class="featured-events wrap slideshow"> <div class="featured-events__title-container"> <div> <h2 class="featured-events__title">Featured Events</h2> <a href="https://flightsafety.org/event/">View More Events »</a> </div> <div class="featured-events__title-container"> <a href="https://flightsafety.org/foundation/support/sponsor-and-exhibitor-opportunities/">Sponsor & Exhibit »</a> </div> </div> <a class="slideshow__button slideshow__button--prev js-prev"><b class="svg svg--left-arrow" data-svg-url="https://flightsafety.org/wp-content/themes/fsf/assets/img/icons/left-arrow.svg" data-icon="left-arrow"><svg role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10.3 36.6"><path d="M.3 17.9l.2-.1c.3-.1.6 0 .7.2l9 17.8c.1.3 0 .6-.2.7l-.2.1c-.3.1-.6 0-.7-.2l-9-17.8c-.2-.3-.1-.6.2-.7z"/><path d="M9.8.1l.2.1c.3.1.4.5.2.7l-9 17.7c-.1.3-.5.4-.7.2l-.2-.1c-.3-.1-.4-.5-.2-.7L9.1.3c.1-.3.4-.4.7-.2z"/></svg></b></a> <div class="slideshow__slides"> </div> <a class="slideshow__button slideshow__button--next js-next"><b class="svg svg--right-arrow" data-svg-url="https://flightsafety.org/wp-content/themes/fsf/assets/img/icons/right-arrow.svg" data-icon="right-arrow"><svg role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10.3 36.6"><path d="M10 18.8l-.2.1c-.3.1-.6 0-.7-.2L.1.9C0 .6.1.3.3.2L.5.1c.3-.1.6 0 .7.2l9 17.8c.2.2.1.5-.2.7z"/><path d="M.5 36.6l-.2-.1c-.3-.2-.4-.5-.2-.8l9-17.7c.1-.3.5-.4.7-.2l.2.1c.3.1.4.5.2.7l-9 17.7c-.1.3-.4.4-.7.3z"/></svg></b></a> </div> <div class="home-magazine"> <div class="wrap"> <div class="home-magazine__content u-content"> <h2 class="home-magazine__title"> AeroSafety World <small>The Journal of Flight Safety Foundation</small> </h2> <p><em>AeroSafety World</em> continues Flight Safety Foundation’s tradition of excellence in aviation safety journalism that stretches back more than 50 years. The regularly updated articles offer in-depth analysis of important safety issues facing the industry and a greater emphasis on timely news coverage.</p> <p>Our archives of this publication and previous versions released by the association, provide a wealth of timeless insight for aviation safety professionals.</p> <p><a class="button" href="https://flightsafety.org/asw-landing-page-2/">VIEW CURRENT Articles</a></p> </div> <div class="home-magazine__image"> <a href="https://flightsafety.org/aerosafety-world/"><img src="https://flightsafety.org/wp-content/uploads/2020/04/ASW_apr20_cover2.jpg" alt=""></a> </div> </div> </div> <div class="layout layout-benefactors benefactors" style=""> <div class="benefactors__wrap wrap"> <div class="benefactors__content u-content"> <h2 class="benefactors__title">Flight Safety Foundation Benefactors</h2> <p>We are an independent, international, and impartial non-profit that exists to champion the cause of aviation safety.</p> <p><a href="https://flightsafety.org/foundation/support/">Learn More »</a></p> </div> </div> <div class="benefactors__logos"> <div class="benefactors__logos-row"> <li class="benefactors__logo"> <a href="https://www.aerlingus.com/" title="Aer Lingus" target="_blank"><img src="https://flightsafety.org/wp-content/uploads/2019/04/Aer-Lingus-logo-2019.svg" alt="Aer Lingus"></a> </li> <li class="benefactors__logo"> <a href="https://www.airindia.com/" title="Air India" target="_blank"><img src="https://flightsafety.org/wp-content/uploads/2023/08/AirIndia-logo_400px-225x80.jpg" alt="Air India"></a> </li> <li class="benefactors__logo"> <a href="http://www.airbus.com/" title="Airbus &#8211; 2017" target="_blank"><img src="https://flightsafety.org/wp-content/uploads/2019/04/Airbus-logo-2018.svg" alt="Airbus &#8211; 2017"></a> </li> <li class="benefactors__logo"> <a href="http://airlines.org" title="Airlines for America" target="_blank"><img src="https://flightsafety.org/wp-content/uploads/2019/05/Airlines-for-America-horizontal-logo-225.svg" alt="Airlines for America"></a> </li> <li class="benefactors__logo"> <a href="https://alamosgold.com/ " title="Alamos Gold" target="_blank"><img src="https://flightsafety.org/wp-content/uploads/2024/09/Alamos-Gold-logo-1-225x80.png" alt="Alamos Gold"></a> </li> <li class="benefactors__logo"> <a href="https://www.amazon.com/" title="Amazon" target="_blank"><img src="https://flightsafety.org/wp-content/uploads/2017/07/amazon_225_Logos.png" alt="Amazon"></a> </li> </div> <div class="benefactors__logos-row"> <li class="benefactors__logo"> <a href="https://www.aa.com/" title="American Airlines" target="_blank"><img src="https://flightsafety.org/wp-content/uploads/2019/04/American-Airlines-2017-logo-225.svg" alt="American Airlines"></a> </li> <li class="benefactors__logo"> <a href="http://www.angloamerican.com/" title="Anglo American" target="_blank"><img src="https://flightsafety.org/wp-content/uploads/2019/04/AngloAmerican-logo-225.svg" alt="Anglo American"></a> </li> <li class="benefactors__logo"> <a href="http://www.anglogoldashanti.com/" title="Anglo Gold" target="_blank"><img src="https://flightsafety.org/wp-content/uploads/2019/04/AngloGold-Ashanti-225-s.svg" alt="Anglo Gold"></a> </li> <li class="benefactors__logo"> <a href="#" title="Australian Defence Force" target="_blank"><img src="https://flightsafety.org/wp-content/uploads/2016/09/aus-defense-force-225x80.jpeg" alt="Australian Defence Force"></a> </li> <li class="benefactors__logo"> <a href="http://www.bhpbilliton.com" title="BHPbilliton" target="_blank"><img src="https://flightsafety.org/wp-content/uploads/2019/04/BHP_2019_225.svg" alt="BHPbilliton"></a> </li> <li class="benefactors__logo"> <a href="http://www.boeing.com/" title="Boeing" target="_blank"><img src="https://flightsafety.org/wp-content/uploads/2019/04/Boeing-bluegrey.svg" alt="Boeing"></a> </li> </div> <div class="benefactors__logos-row"> <li class="benefactors__logo"> <a href="http://www.cae.com/" title="CAE" target="_blank"><img src="https://flightsafety.org/wp-content/uploads/2019/04/CAE-logo-225.svg" alt="CAE"></a> </li> <li class="benefactors__logo"> <a href="http://www.copaair.com/" title="Copa" target="_blank"><img src="https://flightsafety.org/wp-content/uploads/2019/04/Copa-Airlines-2L-225.svg" alt="Copa"></a> </li> <li class="benefactors__logo"> <a href="http://www.delta.com/" title="Delta &#8211; 2017" target="_blank"><img src="https://flightsafety.org/wp-content/uploads/2016/07/Delta-logo.svg" alt="Delta &#8211; 2017"></a> </li> <li class="benefactors__logo"> <a href="http://www.emirates.com/us/english/" title="Emirates" target="_blank"><img src="https://flightsafety.org/wp-content/uploads/2019/04/Emirates-logo-225.svg" alt="Emirates"></a> </li> <li class="benefactors__logo"> <a href="http://www.eurocontrol.int" title="Eurocontrol" target="_blank"><img src="https://flightsafety.org/wp-content/uploads/2016/10/Eurocontrol-logo-225.svg" alt="Eurocontrol"></a> </li> <li class="benefactors__logo"> <a href="https://www.evaair.com/en-us/index.html%EF%BB%BF" title="SASS 2019 &#8211; Program &#8211; EVA Air" target="_blank"><img src="https://flightsafety.org/wp-content/uploads/2019/02/EVA-Air-updated.jpg" alt="SASS 2019 &#8211; Program &#8211; EVA Air"></a> </li> </div> <div class="benefactors__logos-row"> <li class="benefactors__logo"> <a href="https://flightsafety.org/wp-content/uploads/2021/10/Flight-Safety-Intl_logo_RGB_10-09-2021_225px.png" title="Flight Safety International" target="_blank"><img src="https://flightsafety.org/wp-content/uploads/2021/10/Flight-Safety-Intl_logo_RGB_10-09-2021_225px.png" alt="Flight Safety International"></a> </li> <li class="benefactors__logo"> <a href="http://www.fcx.com/" title="Freeport" target="_blank"><img src="https://flightsafety.org/wp-content/uploads/2019/04/Freeport-McMoRan-logo-225.svg" alt="Freeport"></a> </li> <li class="benefactors__logo"> <a href="https://fortescue.com/" title="Fortescue" target="_blank"><img src="https://flightsafety.org/wp-content/uploads/2024/08/Fortescue-Logo-dark-font-225x80.png" alt="Fortescue"></a> </li> <li class="benefactors__logo"> <a href="http://www.ge.com/" title="General Electric" target="_blank"><img src="https://flightsafety.org/wp-content/uploads/2016/07/GE-imagination-logo-225.svg" alt="General Electric"></a> </li> <li class="benefactors__logo"> <a href="http://www.glencore.com/" title="Glen Core" target="_blank"><img src="https://flightsafety.org/wp-content/uploads/2016/09/Glencore-logo-225.svg" alt="Glen Core"></a> </li> <li class="benefactors__logo"> <a href="http://www.jetblue.com/" title="JetBlue &#8211; 2017" target="_blank"><img src="https://flightsafety.org/wp-content/uploads/2019/04/Jetblue-logo-225b.svg" alt="JetBlue &#8211; 2017"></a> </li> </div> <div class="benefactors__logos-row"> <li class="benefactors__logo"> <a href="https://www.koreanair.com/us/en" title="Korean Air" target="_blank"><img src="https://flightsafety.org/wp-content/uploads/2022/01/Koreanair_225PX.png" alt="Korean Air"></a> </li> <li class="benefactors__logo"> <a href="https://www.lufthansa.com/us/en/homepage" title="Lufthansa German Airlines" target="_blank"><img src="https://flightsafety.org/wp-content/uploads/2024/03/Lufthansa-German-01-225x80.png" alt="Lufthansa German Airlines"></a> </li> <li class="benefactors__logo"> <a href="http://www.mmg.com/" title="MMG Limited" target="_blank"><img src="https://flightsafety.org/wp-content/uploads/2019/04/MMG-logo-225.svg" alt="MMG Limited"></a> </li> <li class="benefactors__logo"> <a href="https://www.natca.org/" title="NATCA" target="_blank"><img src="https://flightsafety.org/wp-content/uploads/2019/07/NATCA__logo_89px-89x80.png" alt="NATCA"></a> </li> <li class="benefactors__logo"> <a href="http://www.newmont.com/" title="NEWMONT" target="_blank"><img src="https://flightsafety.org/wp-content/uploads/2016/09/Newmont-Color-RGB-copy1.jpg" alt="NEWMONT"></a> </li> <li class="benefactors__logo"> <a href="https://www.oktedi.com" title="OK Tedi Mining logo" target="_blank"><img src="https://flightsafety.org/wp-content/uploads/2019/02/OK-Tedi-Mining_225.svg" alt="OK Tedi Mining logo"></a> </li> </div> <div class="benefactors__logos-row"> <li class="benefactors__logo"> <a href="https://flightsafety.org/wp-content/uploads/2021/09/Pratt-and-Whitney_Horizontal-225px.png" title="Pratt and Whitney &#8211; Benefactors &#038; Patrons" target="_blank"><img src="https://flightsafety.org/wp-content/uploads/2021/09/Pratt-and-Whitney_Horizontal-225px.png" alt="Pratt and Whitney &#8211; Benefactors &#038; Patrons"></a> </li> <li class="benefactors__logo"> <a href="https://www.raa.org/" title="Regional Airline Association" target="_blank"><img src="https://flightsafety.org/wp-content/uploads/2019/06/RAALogo-197x80.jpg" alt="Regional Airline Association"></a> </li> <li class="benefactors__logo"> <a href="http://www.riotinto.com" title="RioTinto" target="_blank"><img src="https://flightsafety.org/wp-content/uploads/2016/09/RioTinto_2017_Red_Large_RGB-225x80.jpg" alt="RioTinto"></a> </li> <li class="benefactors__logo"> <a href="https://www.southwest.com" title="Southwest Airlines" target="_blank"><img src="https://flightsafety.org/wp-content/uploads/2019/04/Southwest-Airlines-logo-225.svg" alt="Southwest Airlines"></a> </li> <li class="benefactors__logo"> <a href="http://www.safran-aircraft-engines.com/?lang=en" title="Safran Aircraft/Snecma/Sagem" target="_blank"><img src="https://flightsafety.org/wp-content/uploads/2019/04/safran-sagem-logo-225.svg" alt="Safran Aircraft/Snecma/Sagem"></a> </li> <li class="benefactors__logo"> <a href="https://www.south32.net/" title="South 32" target="_blank"><img src="https://flightsafety.org/wp-content/uploads/2019/04/South32-logo-225.svg" alt="South 32"></a> </li> </div> <div class="benefactors__logos-row"> <li class="benefactors__logo"> <a href="https://www.united.com/" title="United Airlines &#8211; 2017" target="_blank"><img src="https://flightsafety.org/wp-content/uploads/2019/04/united-logo-225.svg" alt="United Airlines &#8211; 2017"></a> </li> <li class="benefactors__logo"> <a href="http://delwp.vic.gov.au/" title="Victoria State" target="_blank"><img src="https://flightsafety.org/wp-content/uploads/2019/04/Victoria-State-ELWP.svg" alt="Victoria State"></a> </li> <li class="benefactors__logo"> <a href="https://www.woodplc.com/" title="Wood Group" target="_blank"><img src="https://flightsafety.org/wp-content/uploads/2021/06/Wood-logo-and-guidanceWood_logo_grey-1-225x80.jpg" alt="Wood Group"></a> </li> <li class="benefactors__logo"> <a href="https://www.worley.com/" title="Worley" target="_blank"><img src="https://flightsafety.org/wp-content/uploads/2024/01/Worley.png" alt="Worley"></a> </li> </div> </div> </div> </div><!-- end .main-container --> <footer class="footer"> <div class="footer__wrap wrap"> <div class="footer__column u-content"> <p class="footer__logo"><a href="#"><img src="https://flightsafety.org/wp-content/themes/fsf/assets/img/logos/FSF_logo_white.svg" alt=""></a></p> <div class="footer__info"> <p class="footer__address">1920 Ballenger Ave., 4th Floor, Alexandria, VA 22314</p> <p class="footer__phone"><span>Phone: +1 703 739 6700</span> <span>Fax: +1 703 739 6708</span></p> <p class="footer__social"> <a href="http://www.linkedin.com/groups?gid=1804478" target="_blank"><b class="svg svg--linkedin-icon" data-svg-url="https://flightsafety.org/wp-content/themes/fsf/assets/img/icons/linkedin-icon.svg" data-icon="linkedin-icon"><svg role="img" id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22 22"><style>.st0{fill:#1b95e0}</style><path class="st0" d="M4.2.8c.7 0 1.3.2 1.8.7s.7 1.1.7 1.8-.2 1.3-.7 1.8-1.1.7-1.8.7c-.6 0-1.2-.2-1.7-.7S1.8 4 1.8 3.3 2 2 2.5 1.5 3.6.8 4.2.8zm-2 20.4V7.3h4v13.9h-4zm10-13.9v.6c.8-.4 1.6-.6 2.6-.5 1 0 1.8.3 2.6.6.8.5 1.5 1.1 2 2s.7 1.8.7 2.7v8.5h-4v-8.5c0-.2-.1-.4-.2-.7-.1-.3-.3-.4-.5-.5-.4-.2-.8-.3-1.2-.3s-.7.1-1 .3c-.4.2-.7.4-1 .7v8.9h-4V7.3h4z"/></svg></b></a> <a href="http://twitter.com/flightsafety" target="_blank"><b class="svg svg--twitter-icon" data-svg-url="https://flightsafety.org/wp-content/themes/fsf/assets/img/icons/twitter-icon.svg" data-icon="twitter-icon"><svg role="img" id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22 22"><style>.st0{fill:#1b95e0}</style><path class="st0" d="M21.5 4.4c-.5.8-1.3 1.6-2 2.3v.5c0 1.4-.3 2.9-.8 4.4s-1.3 2.8-2.4 4c-1.1 1.2-2.3 2.2-3.9 2.9-1.5.7-3.3 1.1-5.3 1.1-1.2 0-2.4-.2-3.5-.5-1.1-.4-2.1-.9-3.1-1.5h1c2.1 0 3.9-.6 5.4-1.8-1 0-1.8-.3-2.5-.9s-1.2-1.3-1.5-2.1c.3.1.6.1.8.1h.6c.2 0 .4-.1.6-.1-1-.2-1.8-.7-2.5-1.5s-1-1.7-1-2.8c.3.1.6.3.9.4.2.1.6.1 1 .1-.7-.5-1.2-1-1.5-1.6s-.5-1.3-.5-2.1.2-1.5.6-2.2C3 4.4 4.3 5.5 5.8 6.3s3.2 1.2 5 1.3c-.1-.3-.1-.6-.1-.9 0-.6.1-1.2.3-1.7s.5-1 .9-1.4.9-.7 1.4-.9c.5-.2 1.1-.3 1.7-.3.6 0 1.2.1 1.8.4.6.3 1 .6 1.4 1 .5-.1 1-.2 1.4-.4.5-.2.9-.4 1.3-.6-.4 1-1 1.8-1.9 2.4.5 0 .9-.1 1.3-.3.4-.2.9-.3 1.2-.5z"/></svg></b></a> <a href="https://www.youtube.com/channel/UCYS5ObEBNuW9s3j7SMzxvLQ" target="_blank"><b class="svg svg--youtube-icon" data-svg-url="https://flightsafety.org/wp-content/themes/fsf/assets/img/icons/youtube-icon.svg" data-icon="youtube-icon"><svg role="img" id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22 22"><style>.st0{fill:#1b95e0}</style><path class="st0" d="M6.2 12.4v1.3H4.7v7.9H3.2v-7.9H1.6v-1.3h4.6zm-.3-8L7.1.3h1.7l-2 5.9v4.2H5.1v-4L3.1.2h1.7l1.1 4.2zm3.5 17.2v-.8c-.3.3-.4.4-.7.6-.3.2-.6.3-.8.3-.3 0-.6-.1-.7-.3-.2-.3-.3-.6-.3-.9v-5.7h1.4v5.6s.2.1.3.1c0 0 .2 0 .4-.1.1-.1.3-.2.4-.3V15h1.4v6.8H9.4v-.2zM9 4.7c0-.5.2-1 .6-1.4.2-.2.5-.3.8-.4.2-.1.5-.1.8-.1.6 0 1.2.2 1.5.6.2.2.3.4.4.6.1.2.1.5.1.8v3.9c0 .7-.2 1.2-.6 1.5-.4.4-.9.6-1.6.6-.7 0-1.3-.1-1.6-.6-.3-.4-.4-.9-.4-1.6V4.7zm2.2 4.7c.2 0 .3-.1.5-.2.1-.1.2-.3.2-.4V4.7c0-.2-.1-.3-.2-.4-.2-.1-.4-.2-.5-.2-.2 0-.3.1-.5.2s-.2.2-.2.4v4.1c0 .1 0 .4.1.4.2.2.3.2.6.2zm3.3 5.3c.4.1.6.2.9.5.3.3.3 1 .3 1.3v3.7c0 .3 0 .5-.1.7-.1.2-.1.3-.2.4-.2.3-.5.4-.9.4-.2 0-.5 0-.7-.1-.1 0-.2-.1-.3-.2l-.3-.3v.5h-1.4v-9.2h1.4v2.9l.3-.3c.1-.1.4-.3.6-.3.1 0 .3-.1.4 0zm-1 5.9h.3c.1 0 .2-.1.3-.1.1-.1.1-.3.1-.6v-3.5c0-.3 0-.4-.1-.5-.1-.1-.2-.2-.3-.2h-.4s-.2.1-.2.2v4.4c-.1 0 0 .3.3.3zM16.2 3v6.2c.1.1.2.1.3.1s.3-.1.5-.2.3-.2.5-.4V3H19v7.5h-1.5v-.8c-.1.2-.3.3-.4.4-.2.1-.3.2-.7.4-.2.1-.5.2-.6.2-.4 0-.6-.1-.8-.4-.1-.1-.1-.2-.2-.4s-.1-.5-.1-.7V3h1.5zm4.1 15.3h-2.6v1.3c0 .4 0 .6.1.7.1.1.2.2.5.2h.3s.1 0 .2-.1c0-.1.1-.2.1-.3v-.8h1.4v.3c0 .7-.2 1.2-.5 1.6-.3.3-.9.5-1.5.5s-1.1-.2-1.4-.6c-.3-.4-.5-.9-.5-1.5v-3.1c0-.6.2-1 .6-1.4.4-.4.9-.6 1.5-.6s1.1.2 1.4.5c.2.2.3.4.4.6.1.2.1.5.1.8v1.9h-.1zM18 15.9c-.1.1-.1.2-.1.3v1H19v-.6c0-.2 0-.4-.1-.6 0-.1 0-.1-.2-.1H18z"/></svg></b></a> <a href="http://www.facebook.com/FlightSafetyFoundation" target="_blank"><b class="svg svg--facebook-icon" data-svg-url="https://flightsafety.org/wp-content/themes/fsf/assets/img/icons/facebook-icon.svg" data-icon="facebook-icon"><svg role="img" id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22 22"><style>.st0{fill:#1b95e0}</style><path class="st0" d="M8.5 7.6V5.5c0-.8.1-1.5.4-2.2.2-.6.6-1.2 1.1-1.7.5-.5 1-.9 1.6-1.2.6-.3 1.3-.4 2-.4H17v4.1h-3.4c-.2 0-.4.1-.6.4-.2.3-.3.6-.3.9v2.2h4.2v4.2h-4.2V22H8.5V11.8H5.1V7.6h3.4z"/></svg></b></a> </p> </div> </div> <div class="footer__column"> <div class="footer__projects"> <h2 class="footer__title">Projects &amp; Partners</h2> <div class="footer__projects-nav"> <nav class="nav nav--footer-1"><ul class="nav__menu nav__menu--depth0 menu nav__menu nav__menu--depth0 menu "><li class="nav__menu-item nav__menu-item--depth0 menu-item menu-item-type-custom menu-item-object-custom menu-item-37829"><a href="https://flightsafety.org/bars/landing-page-2/" class="nav-link">Basic Aviation Risk Standard</a></li> <li class="nav__menu-item nav__menu-item--depth0 menu-item menu-item-type-post_type menu-item-object-resource menu-item-6730"><a href="https://flightsafety.org/resource/skybrary/" class="nav-link">SKYbrary</a></li> <li class="nav__menu-item nav__menu-item--depth0 menu-item menu-item-type-post_type menu-item-object-resource menu-item-6731"><a href="https://flightsafety.org/resource/aviation-safety-network/" class="nav-link">Aviation Safety Network</a></li> <li class="nav__menu-item nav__menu-item--depth0 menu-item menu-item-type-post_type menu-item-object-page menu-item-58080"><a href="https://flightsafety.org/foundation/ap-cas/" class="nav-link">Asia Pacific Centre for Aviation Safety</a></li> </ul></nav> <nav class="nav nav--footer-2"><ul class="nav__menu nav__menu--depth0 menu nav__menu nav__menu--depth0 menu "><li class="nav__menu-item nav__menu-item--depth0 menu-item menu-item-type-custom menu-item-object-custom menu-item-28"><a href="https://flightsafety.org/donate/" class="nav-link">Donate</a></li> <li class="nav__menu-item nav__menu-item--depth0 menu-item menu-item-type-custom menu-item-object-custom menu-item-29"><a href="https://flightsafety.org/foundation/support/sponsor-and-exhibitor-opportunities/" class="nav-link">Advertise on our website</a></li> <li class="nav__menu-item nav__menu-item--depth0 menu-item menu-item-type-custom menu-item-object-custom menu-item-30"><a href="https://flightsafety.org/foundation/support/sponsor-and-exhibitor-opportunities/" class="nav-link">Sponsor &#038; Exhibit at our Events</a></li> </ul></nav> </div> </div> <nav class="nav nav--footer-utility"><ul class="nav__menu nav__menu--depth0 menu nav__menu nav__menu--depth0 menu "><li class="nav__menu-item nav__menu-item--depth0 menu-item menu-item-type-post_type menu-item-object-page menu-item-34491"><a href="https://flightsafety.org/foundation/work-with-us/" class="nav-link">Work with Us</a></li> <li class="nav__menu-item nav__menu-item--depth0 menu-item menu-item-type-post_type menu-item-object-page menu-item-8202"><a href="https://flightsafety.org/contact-us/" class="nav-link">Contact Us</a></li> <li class="nav__menu-item nav__menu-item--depth0 menu-item menu-item-type-post_type menu-item-object-page menu-item-8201"><a href="https://flightsafety.org/site-map/" class="nav-link">Site Map</a></li> <li class="nav__menu-item nav__menu-item--depth0 menu-item menu-item-type-post_type menu-item-object-page menu-item-privacy-policy menu-item-8203"><a rel="privacy-policy" href="https://flightsafety.org/privacy-policy/" class="nav-link">Privacy</a></li> </ul></nav> <p class="footer__copyright">&copy; 2024 Flight Safety Foundation</p> </div> </div> <div class="footer__linkedin wrap"> <div class="footer__linkedin-content"> <a href="https://www.linkedin.com/groups/1804478/profile" target="_blank">Join our group on LinkedIn</a> </div> </div> </footer> <!-- Root element of PhotoSwipe. Must have class pswp. --> <div class="pswp" tabindex="-1" role="dialog" aria-hidden="true"> <!-- Background of PhotoSwipe. It's a separate element as animating opacity is faster than rgba(). --> <div class="pswp__bg"></div> <!-- Slides wrapper with overflow:hidden. --> <div class="pswp__scroll-wrap"> <!-- Container that holds slides. PhotoSwipe keeps only 3 of them in the DOM to save memory. Don't modify these 3 pswp__item elements, data is added later on. --> <div class="pswp__container"> <div class="pswp__item"></div> <div class="pswp__item"></div> <div class="pswp__item"></div> </div> <!-- Default (PhotoSwipeUI_Default) interface on top of sliding area. Can be changed. --> <div class="pswp__ui pswp__ui--hidden"> <div class="pswp__top-bar"> <!-- Controls are self-explanatory. Order can be changed. --> <div class="pswp__counter"></div> <button class="pswp__button pswp__button--close" title="Close (Esc)"></button> <button class="pswp__button pswp__button--share" title="Share"></button> <button class="pswp__button pswp__button--fs" title="Toggle fullscreen"></button> <button class="pswp__button pswp__button--zoom" title="Zoom in/out"></button> <!-- Preloader demo http://codepen.io/dimsemenov/pen/yyBWoR --> <!-- element will get class pswp__preloader--active when preloader is running --> <div class="pswp__preloader"> <div class="pswp__preloader__icn"> <div class="pswp__preloader__cut"> <div class="pswp__preloader__donut"></div> </div> </div> </div> </div> <div class="pswp__share-modal pswp__share-modal--hidden pswp__single-tap"> <div class="pswp__share-tooltip"></div> </div> <button class="pswp__button pswp__button--arrow--left" title="Previous (arrow left)"></button> <button class="pswp__button pswp__button--arrow--right" title="Next (arrow right)"></button> <div class="pswp__caption"> <div class="pswp__caption__center"></div> </div> </div> </div> </div> </div><!-- end .body-overflow --> <section id="wp-footer"> <script type='text/javascript'> 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> <style id='core-block-supports-inline-css' type='text/css'> /** * Core styles: block-supports */ </style> <script type="text/javascript" src="https://flightsafety.org/wp-includes/js/dist/hooks.js?ver=5b4ec27a7b82f601224a" id="wp-hooks-js"></script> <script type="text/javascript" src="https://flightsafety.org/wp-includes/js/dist/i18n.js?ver=2aff907006e2aa00e26e" id="wp-i18n-js"></script> <script type="text/javascript" id="wp-i18n-js-after"> /* <![CDATA[ */ wp.i18n.setLocaleData( { 'text direction\u0004ltr': [ 'ltr' ] } ); /* ]]> */ </script> <script type="text/javascript" src="https://flightsafety.org/wp-content/plugins/contact-form-7/includes/swv/js/index.js?ver=6.0" id="swv-js"></script> <script type="text/javascript" id="contact-form-7-js-before"> /* <![CDATA[ */ var wpcf7 = { "api": { "root": "https:\/\/flightsafety.org\/wp-json\/", "namespace": "contact-form-7\/v1" }, "cached": 1 }; /* ]]> */ </script> <script type="text/javascript" src="https://flightsafety.org/wp-content/plugins/contact-form-7/includes/js/index.js?ver=6.0" id="contact-form-7-js"></script> <script type="text/javascript" src="https://flightsafety.org/wp-content/plugins/fitvids-for-wordpress/jquery.fitvids.js?ver=1.1" id="fitvids-js"></script> <script type="text/javascript" id="dlm-xhr-js-extra"> /* <![CDATA[ */ var dlmXHRtranslations = {"error":"An error occurred while trying to download the file. Please try again.","not_found":"Download does not exist.","no_file_path":"No file path defined.","no_file_paths":"No file paths defined.","filetype":"Download is not allowed for this file type.","file_access_denied":"Access denied to this file.","access_denied":"Access denied. You do not have permission to download this file.","security_error":"Something is wrong with the file path.","file_not_found":"File not found."}; /* ]]> */ </script> <script type="text/javascript" id="dlm-xhr-js-before"> /* <![CDATA[ */ const dlmXHR = {"xhr_links":{"class":["download-link","download-button"]},"prevent_duplicates":true,"ajaxUrl":"https:\/\/flightsafety.org\/wp-admin\/admin-ajax.php"}; dlmXHRinstance = {}; const dlmXHRGlobalLinks = "https://flightsafety.org/download/"; const dlmNonXHRGlobalLinks = []; dlmXHRgif = "https://flightsafety.org/wp-includes/images/spinner.gif"; const dlmXHRProgress = "1" /* ]]> */ </script> <script type="text/javascript" src="https://flightsafety.org/wp-content/plugins/download-monitor/assets/js/dlm-xhr.js?ver=5.0.14" id="dlm-xhr-js"></script> <script type="text/javascript" src="https://flightsafety.org/wp-content/themes/fsf/assets/vendor/bows/dist/bows.min.js?ver=1698545967" id="bows-js"></script> <script type="text/javascript" src="https://flightsafety.org/wp-content/themes/fsf/assets/vendor/flickity/dist/flickity.pkgd.min.js?ver=1698545980" id="flickity-js"></script> <script type="text/javascript" src="https://flightsafety.org/wp-content/themes/fsf/assets/vendor/gsap/src/minified/TweenMax.min.js?ver=1698545988" id="gsap-js"></script> <script type="text/javascript" src="https://flightsafety.org/wp-content/themes/fsf/assets/vendor/photoswipe/dist/photoswipe-ui-default.min.js?ver=1698545986" id="photoswipe-ui-js"></script> <script type="text/javascript" src="https://flightsafety.org/wp-content/themes/fsf/assets/vendor/photoswipe/dist/photoswipe.min.js?ver=1698545987" id="photoswipe-js"></script> <script type="text/javascript" src="https://flightsafety.org/wp-content/themes/fsf/assets/vendor/packery/dist/packery.pkgd.min.js?ver=1698545978" id="packery-js"></script> <script type="text/javascript" src="https://flightsafety.org/wp-content/themes/fsf/assets/vendor/select2/dist/js/select2.min.js?ver=1698545990" id="select2-js"></script> <script type="text/javascript" src="https://flightsafety.org/wp-content/themes/fsf/assets/dist/site.js?ver=1698545965" id="site-js"></script> <script type="text/javascript" id="site-js-after"> /* <![CDATA[ */ var ajaxurl = "https://flightsafety.org/wp-admin/admin-ajax.php"; window.site = new Site(); // (function(w,d,t,u,n,s,e){w['SwiftypeObject']=n;w[n]=w[n]||function(){ // (w[n].q=w[n].q||[]).push(arguments);};s=d.createElement(t); // e=d.getElementsByTagName(t)[0];s.async=1;s.src=u;e.parentNode.insertBefore(s,e); // })(window,document,'script','//s.swiftypecdn.com/install/v2/st.js','_st'); // _st('install','WKZRag9Qznvax5xndee_','2.0.0'); /* ]]> */ </script> <script type="text/javascript" id="eael-general-js-extra"> /* <![CDATA[ */ var localize = {"ajaxurl":"https:\/\/flightsafety.org\/wp-admin\/admin-ajax.php","nonce":"8bdea670b6","i18n":{"added":"Added ","compare":"Compare","loading":"Loading..."},"eael_translate_text":{"required_text":"is a required field","invalid_text":"Invalid","billing_text":"Billing","shipping_text":"Shipping","fg_mfp_counter_text":"of"},"page_permalink":"https:\/\/flightsafety.org\/","cart_redirectition":"","cart_page_url":"","el_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}}}; /* ]]> */ </script> <script type="text/javascript" src="https://flightsafety.org/wp-content/plugins/essential-addons-for-elementor-lite/assets/front-end/js/view/general.min.js?ver=6.0.10" id="eael-general-js"></script> <script type="text/javascript"> jQuery(document).ready(function () { jQuery('body').fitVids(); }); </script> <!-- Global site tag (gtag.js) - Google Analytics --> <script async src="https://www.googletagmanager.com/gtag/js?id=UA-84670609-1"></script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'UA-84670609-1'); </script> </section> </body> </div> </html> <!-- Performance optimized by W3 Total Cache. Learn more: https://www.boldgrid.com/w3-total-cache/ Page Caching using Disk: Enhanced Served from: flightsafety.org @ 2024-11-22 14:21:14 by W3 Total Cache -->

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