CINXE.COM
BARS- Frequently Asked Questions - 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>BARS- Frequently Asked Questions - Flight Safety Foundation</title> <link rel="canonical" href="https://flightsafety.org/bars/bars-frequently-asked-questions/" /> <meta property="og:locale" content="en_US" /> <meta property="og:type" content="article" /> <meta property="og:title" content="BARS- Frequently Asked Questions - Flight Safety Foundation" /> <meta property="og:url" content="https://flightsafety.org/bars/bars-frequently-asked-questions/" /> <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="2021-05-03T04:33:57+00:00" /> <meta name="twitter:card" content="summary_large_image" /> <meta name="twitter:site" content="@flightsafety" /> <meta name="twitter:label1" content="Written by" /> <meta name="twitter:data1" content="Amy Beveridge" /> <script type="application/ld+json" class="yoast-schema-graph">{"@context":"https://schema.org","@graph":[{"@type":"WebPage","@id":"https://flightsafety.org/bars/bars-frequently-asked-questions/","url":"https://flightsafety.org/bars/bars-frequently-asked-questions/","name":"BARS- Frequently Asked Questions - Flight Safety Foundation","isPartOf":{"@id":"https://flightsafety.org/#website"},"datePublished":"2017-09-04T01:48:32+00:00","dateModified":"2021-05-03T04:33:57+00:00","breadcrumb":{"@id":"https://flightsafety.org/bars/bars-frequently-asked-questions/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https://flightsafety.org/bars/bars-frequently-asked-questions/"]}]},{"@type":"BreadcrumbList","@id":"https://flightsafety.org/bars/bars-frequently-asked-questions/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://flightsafety.org/"},{"@type":"ListItem","position":2,"name":"BARS Pages","item":"https://flightsafety.org/bars/"},{"@type":"ListItem","position":3,"name":"BARS- Frequently Asked Questions"}]},{"@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="21055"> <meta class="swiftype" name="object_type" data-type="enum" content="bars"> <meta class="swiftype" name="source_url" data-type="enum" content="fsf_home"> <meta class="swiftype" name="url" data-type="enum" content="https://flightsafety.org/bars/bars-frequently-asked-questions/"> <meta class="swiftype" name="timestamp" data-type="date" content="2017-09-04 01:48:32"> <meta class="swiftype" name="title" data-type="string" content="BARS- Frequently Asked Questions"> <meta class="swiftype" name="excerpt" data-type="text" content=""> <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> <link rel='stylesheet' id='wp-block-library-css' href='https://flightsafety.org/wp-includes/css/dist/block-library/style.css?ver=6.7.1' type='text/css' media='all' /> <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-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='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' /> <!-- 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" 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":"yes","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='shortlink' href='https://flightsafety.org/?p=21055' /> <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%2Fbars%2Fbars-frequently-asked-questions%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%2Fbars%2Fbars-frequently-asked-questions%2F&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="bars-template-default single single-bars postid-21055 elementor-default elementor-kit-43435"> <div class="body-overflow"> <div class="simple-header"> <section class="top-bar"> <div class="simple-header__wrap wrap"> <div class="simple-header__left"> <a href="https://flightsafety.org" class="simple-header__logo"><img src="https://flightsafety.org/wp-content/themes/fsf/assets/img/logos/simple-header.png" alt=""></a> </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--login"> <a href="https://flightsafety.org/sso/login/?returnURL=https%3A%2F%2Fflightsafety.org%2Fbars%2Fbars-frequently-asked-questions%2F" 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--menu"> <a href="javascript:void(0);" class="nav-link"> Menu <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> </a> <nav class="nav nav--simple-header"><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-20452"><a href="/" class="nav-link">Flight Safety Foundation Home</a></li> <li class="nav__menu-item nav__menu-item--depth0 menu-item menu-item-type-post_type menu-item-object-page current_page_parent menu-item-20453"><a href="https://flightsafety.org/?page_id=1066" class="nav-link">Industry Updates</a></li> <li class="nav__menu-item nav__menu-item--depth0 menu-item menu-item-type-post_type menu-item-object-page menu-item-20454"><a href="https://flightsafety.org/foundation/" class="nav-link">The Foundation</a></li> <li class="nav__menu-item nav__menu-item--depth0 menu-item menu-item-type-post_type menu-item-object-page menu-item-20457"><a href="https://flightsafety.org/aerosafety-world/" class="nav-link">AeroSafety World</a></li> <li class="nav__menu-item nav__menu-item--depth0 menu-item menu-item-type-post_type menu-item-object-page menu-item-20458"><a href="https://flightsafety.org/toolkits-resources/" class="nav-link">Toolkits & Resources</a></li> <li class="nav__menu-item nav__menu-item--depth0 menu-item menu-item-type-custom menu-item-object-custom menu-item-20459"><a href="/members-center/" class="nav-link">Members’ Center</a></li> <li class="nav__menu-item nav__menu-item--depth0 menu-item menu-item-type-custom menu-item-object-custom menu-item-20460"><a href="/foundation/support/" class="nav-link">Support Aviation Safety</a></li> </ul></nav> </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/bars/"> <img src="https://flightsafety.org/wp-content/uploads/2017/07/bars-logo-147x64-147x64.png" alt=""> </a> </p> </div> </header><!-- end .header --> <div class="nav-mobile"> <div class="wrap"> <nav class="nav nav--175 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 nav__menu-item--has-submenu nav__menu-item--active-ancestor menu-item menu-item-type-custom menu-item-object-custom current-menu-ancestor current-menu-parent menu-item-has-children menu-item-37165"><a href="https://flightsafety.org/bars/about-bars-program/" class="nav-link"><span class="nav-link__span">About BARS</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-custom menu-item-object-custom menu-item-37173"><a href="https://flightsafety.org/bars/history-2/" class="nav-link"><span class="nav-link__span">History of the BARS Program</span></a></li> <li class="nav__menu-item nav__menu-item--depth1 menu-item menu-item-type-custom menu-item-object-custom menu-item-37159"><a href="https://flightsafety.org/bars/the-bar-standards-and-manuals/" class="nav-link"><span class="nav-link__span">The BAR Standards and Manuals</span></a></li> <li class="nav__menu-item nav__menu-item--depth1 menu-item menu-item-type-post_type menu-item-object-bars menu-item-36699"><a href="https://flightsafety.org/bars/bars-audit-program/" class="nav-link"><span class="nav-link__span">BARS Audit Program</span></a></li> <li class="nav__menu-item nav__menu-item--depth1 menu-item menu-item-type-post_type menu-item-object-bars menu-item-48842"><a href="https://flightsafety.org/bars/bars-for-rpas-audit-program/" class="nav-link"><span class="nav-link__span">BARS for RPAS Audit Program</span></a></li> <li class="nav__menu-item nav__menu-item--depth1 menu-item menu-item-type-post_type menu-item-object-bars menu-item-28758"><a href="https://flightsafety.org/bars/fsf-bars-critical-control-video/" class="nav-link"><span class="nav-link__span">VIDEO – FSF- BARS Critical Control Management</span></a></li> <li class="nav__menu-item nav__menu-item--depth1 menu-item menu-item-type-post_type menu-item-object-bars menu-item-20444"><a href="https://flightsafety.org/bars/program-management/" class="nav-link"><span class="nav-link__span">Program Management</span></a></li> <li class="nav__menu-item nav__menu-item--depth1 nav__menu-item--active menu-item menu-item-type-post_type menu-item-object-bars current-menu-item menu-item-21357"><a href="https://flightsafety.org/bars/bars-frequently-asked-questions/" aria-current="page" class="nav-link"><span class="nav-link__span">BARS- Frequently Asked Questions</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-bars menu-item-20445"><a href="https://flightsafety.org/bars/governance/" class="nav-link"><span class="nav-link__span">Governance</span></a></li> <li class="nav__menu-item nav__menu-item--depth1 menu-item menu-item-type-post_type menu-item-object-bars menu-item-20446"><a href="https://flightsafety.org/bars/barscontact/" class="nav-link"><span class="nav-link__span">Contact Us</span></a></li> </ul> </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-bars menu-item-has-children menu-item-3658"><a href="https://flightsafety.org/bars/bmos/" class="nav-link"><span class="nav-link__span">Participating Companies</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-bars menu-item-36847"><a href="https://flightsafety.org/bars/bmos/" class="nav-link"><span class="nav-link__span">BARS Member Organizations</span></a></li> <li class="nav__menu-item nav__menu-item--depth1 menu-item menu-item-type-post_type menu-item-object-bars menu-item-20447"><a href="https://flightsafety.org/bars/bars-audit-companies/" class="nav-link"><span class="nav-link__span">Audit Companies</span></a></li> </ul> </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-bars menu-item-has-children menu-item-8122"><a href="https://flightsafety.org/bars/join-the-program/" class="nav-link"><span class="nav-link__span">Join The Program</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-custom menu-item-object-custom menu-item-37171"><a href="https://flightsafety.org/bars/become-a-bars-member-organization-3/" class="nav-link"><span class="nav-link__span">Become a BARS Member Organization</span></a></li> <li class="nav__menu-item nav__menu-item--depth1 menu-item menu-item-type-post_type menu-item-object-bars menu-item-20449"><a href="https://flightsafety.org/bars/become-a-bars-audit-company/" class="nav-link"><span class="nav-link__span">Become a BARS Audit Company</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-bars menu-item-20451"><a href="https://flightsafety.org/bars/become-a-bars-accredited-auditor/" class="nav-link"><span class="nav-link__span">Become a BARS Accredited Auditor</span></a></li> <li class="nav__menu-item nav__menu-item--depth1 menu-item menu-item-type-post_type menu-item-object-bars menu-item-20448"><a href="https://flightsafety.org/bars/bars-aircraft-operator/" class="nav-link"><span class="nav-link__span">Become a BARS Aircraft Operator</span></a></li> <li class="nav__menu-item nav__menu-item--depth1 menu-item menu-item-type-post_type menu-item-object-bars menu-item-48843"><a href="https://flightsafety.org/bars/apply-for-an-rpas-audit/" class="nav-link"><span class="nav-link__span">Apply for an RPAS Audit</span></a></li> </ul> </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-bars menu-item-has-children menu-item-7224"><a href="https://flightsafety.org/bars/training-events/" class="nav-link"><span class="nav-link__span">Training & Events</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-bars menu-item-21025"><a href="https://flightsafety.org/bars/bars-auditor-training/" class="nav-link"><span class="nav-link__span">Auditor Accreditation Course</span></a></li> <li class="nav__menu-item nav__menu-item--depth1 menu-item menu-item-type-post_type menu-item-object-bars menu-item-21028"><a href="https://flightsafety.org/bars/managing-contracted-aviation-risk-training-onshore/" class="nav-link"><span class="nav-link__span">Managing Contracted Aviation Risk Training- Onshore and Offshore (MCAR)</span></a></li> <li class="nav__menu-item nav__menu-item--depth1 menu-item menu-item-type-post_type menu-item-object-bars menu-item-21027"><a href="https://flightsafety.org/bars/helicopter-external-load-ops/" class="nav-link"><span class="nav-link__span">Helicopter External Load Operation for Ground Personnel</span></a></li> <li class="nav__menu-item nav__menu-item--depth1 menu-item menu-item-type-post_type menu-item-object-bars menu-item-41516"><a href="https://flightsafety.org/bars/personal-resilience-program/" class="nav-link"><span class="nav-link__span">Building Personal Resilience Program</span></a></li> <li class="nav__menu-item nav__menu-item--depth1 menu-item menu-item-type-post_type menu-item-object-bars menu-item-21089"><a href="https://flightsafety.org/bars/technical-advisory-committee-tac/" class="nav-link"><span class="nav-link__span">Technical Advisory Committee</span></a></li> <li class="nav__menu-item nav__menu-item--depth1 menu-item menu-item-type-post_type menu-item-object-bars menu-item-21090"><a href="https://flightsafety.org/bars/audit-review-meeting-arm/" class="nav-link"><span class="nav-link__span">Audit Review Meeting</span></a></li> </ul> </li> <li class="nav__menu-item nav__menu-item--depth0 nav__menu-item--has-submenu menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-37168"><a href="https://flightsafety.org/bars/news/" class="nav-link"><span class="nav-link__span">BARS News</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-bars menu-item-21843"><a href="https://flightsafety.org/bars/archived-bars-e-newsletters/" class="nav-link"><span class="nav-link__span">Archived BARS E-Newsletters</span></a></li> </ul> </li> <li class="nav__menu-item nav__menu-item--depth0 menu-item menu-item-type-custom menu-item-object-custom menu-item-7856"><a href="https://barsoft.flightsafety.org/" class="nav-link"><span class="nav-link__span">Login to BARSoft</span></a></li> </ul></nav> <div class="nav-mobile__footer"> <p><a href="/" class="button">Flight Safety Foundation Home</a></p> </div> </div> </div> </div> <header class="header header--custom"> <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/bars/"><img src="https://flightsafety.org/wp-content/uploads/2017/07/bars-logo-147x64-147x64.png"></a> </p> <nav class="nav nav--175 nav--primary nav--custom"><ul class="nav__menu nav__menu--depth0 menu nav__menu nav__menu--depth0 menu "><li class="nav__menu-item nav__menu-item--depth0 nav__menu-item--has-submenu nav__menu-item--active-ancestor menu-item menu-item-type-custom menu-item-object-custom current-menu-ancestor current-menu-parent menu-item-has-children menu-item-37165"><a href="https://flightsafety.org/bars/about-bars-program/" class="nav-link"><span class="nav-link__span">About BARS</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-custom menu-item-object-custom menu-item-37173"><a href="https://flightsafety.org/bars/history-2/" class="nav-link"><span class="nav-link__span">History of the BARS Program</span></a></li> <li class="nav__menu-item nav__menu-item--depth1 menu-item menu-item-type-custom menu-item-object-custom menu-item-37159"><a href="https://flightsafety.org/bars/the-bar-standards-and-manuals/" class="nav-link"><span class="nav-link__span">The BAR Standards and Manuals</span></a></li> <li class="nav__menu-item nav__menu-item--depth1 menu-item menu-item-type-post_type menu-item-object-bars menu-item-36699"><a href="https://flightsafety.org/bars/bars-audit-program/" class="nav-link"><span class="nav-link__span">BARS Audit Program</span></a></li> <li class="nav__menu-item nav__menu-item--depth1 menu-item menu-item-type-post_type menu-item-object-bars menu-item-48842"><a href="https://flightsafety.org/bars/bars-for-rpas-audit-program/" class="nav-link"><span class="nav-link__span">BARS for RPAS Audit Program</span></a></li> <li class="nav__menu-item nav__menu-item--depth1 menu-item menu-item-type-post_type menu-item-object-bars menu-item-28758"><a href="https://flightsafety.org/bars/fsf-bars-critical-control-video/" class="nav-link"><span class="nav-link__span">VIDEO – FSF- BARS Critical Control Management</span></a></li> <li class="nav__menu-item nav__menu-item--depth1 menu-item menu-item-type-post_type menu-item-object-bars menu-item-20444"><a href="https://flightsafety.org/bars/program-management/" class="nav-link"><span class="nav-link__span">Program Management</span></a></li> <li class="nav__menu-item nav__menu-item--depth1 nav__menu-item--active menu-item menu-item-type-post_type menu-item-object-bars current-menu-item menu-item-21357"><a href="https://flightsafety.org/bars/bars-frequently-asked-questions/" aria-current="page" class="nav-link"><span class="nav-link__span">BARS- Frequently Asked Questions</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-bars menu-item-20445"><a href="https://flightsafety.org/bars/governance/" class="nav-link"><span class="nav-link__span">Governance</span></a></li> <li class="nav__menu-item nav__menu-item--depth1 menu-item menu-item-type-post_type menu-item-object-bars menu-item-20446"><a href="https://flightsafety.org/bars/barscontact/" class="nav-link"><span class="nav-link__span">Contact Us</span></a></li> </ul> </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-bars menu-item-has-children menu-item-3658"><a href="https://flightsafety.org/bars/bmos/" class="nav-link"><span class="nav-link__span">Participating Companies</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-bars menu-item-36847"><a href="https://flightsafety.org/bars/bmos/" class="nav-link"><span class="nav-link__span">BARS Member Organizations</span></a></li> <li class="nav__menu-item nav__menu-item--depth1 menu-item menu-item-type-post_type menu-item-object-bars menu-item-20447"><a href="https://flightsafety.org/bars/bars-audit-companies/" class="nav-link"><span class="nav-link__span">Audit Companies</span></a></li> </ul> </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-bars menu-item-has-children menu-item-8122"><a href="https://flightsafety.org/bars/join-the-program/" class="nav-link"><span class="nav-link__span">Join The Program</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-custom menu-item-object-custom menu-item-37171"><a href="https://flightsafety.org/bars/become-a-bars-member-organization-3/" class="nav-link"><span class="nav-link__span">Become a BARS Member Organization</span></a></li> <li class="nav__menu-item nav__menu-item--depth1 menu-item menu-item-type-post_type menu-item-object-bars menu-item-20449"><a href="https://flightsafety.org/bars/become-a-bars-audit-company/" class="nav-link"><span class="nav-link__span">Become a BARS Audit Company</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-bars menu-item-20451"><a href="https://flightsafety.org/bars/become-a-bars-accredited-auditor/" class="nav-link"><span class="nav-link__span">Become a BARS Accredited Auditor</span></a></li> <li class="nav__menu-item nav__menu-item--depth1 menu-item menu-item-type-post_type menu-item-object-bars menu-item-20448"><a href="https://flightsafety.org/bars/bars-aircraft-operator/" class="nav-link"><span class="nav-link__span">Become a BARS Aircraft Operator</span></a></li> <li class="nav__menu-item nav__menu-item--depth1 menu-item menu-item-type-post_type menu-item-object-bars menu-item-48843"><a href="https://flightsafety.org/bars/apply-for-an-rpas-audit/" class="nav-link"><span class="nav-link__span">Apply for an RPAS Audit</span></a></li> </ul> </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-bars menu-item-has-children menu-item-7224"><a href="https://flightsafety.org/bars/training-events/" class="nav-link"><span class="nav-link__span">Training & Events</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-bars menu-item-21025"><a href="https://flightsafety.org/bars/bars-auditor-training/" class="nav-link"><span class="nav-link__span">Auditor Accreditation Course</span></a></li> <li class="nav__menu-item nav__menu-item--depth1 menu-item menu-item-type-post_type menu-item-object-bars menu-item-21028"><a href="https://flightsafety.org/bars/managing-contracted-aviation-risk-training-onshore/" class="nav-link"><span class="nav-link__span">Managing Contracted Aviation Risk Training- Onshore and Offshore (MCAR)</span></a></li> <li class="nav__menu-item nav__menu-item--depth1 menu-item menu-item-type-post_type menu-item-object-bars menu-item-21027"><a href="https://flightsafety.org/bars/helicopter-external-load-ops/" class="nav-link"><span class="nav-link__span">Helicopter External Load Operation for Ground Personnel</span></a></li> <li class="nav__menu-item nav__menu-item--depth1 menu-item menu-item-type-post_type menu-item-object-bars menu-item-41516"><a href="https://flightsafety.org/bars/personal-resilience-program/" class="nav-link"><span class="nav-link__span">Building Personal Resilience Program</span></a></li> <li class="nav__menu-item nav__menu-item--depth1 menu-item menu-item-type-post_type menu-item-object-bars menu-item-21089"><a href="https://flightsafety.org/bars/technical-advisory-committee-tac/" class="nav-link"><span class="nav-link__span">Technical Advisory Committee</span></a></li> <li class="nav__menu-item nav__menu-item--depth1 menu-item menu-item-type-post_type menu-item-object-bars menu-item-21090"><a href="https://flightsafety.org/bars/audit-review-meeting-arm/" class="nav-link"><span class="nav-link__span">Audit Review Meeting</span></a></li> </ul> </li> <li class="nav__menu-item nav__menu-item--depth0 nav__menu-item--has-submenu menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-37168"><a href="https://flightsafety.org/bars/news/" class="nav-link"><span class="nav-link__span">BARS News</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-bars menu-item-21843"><a href="https://flightsafety.org/bars/archived-bars-e-newsletters/" class="nav-link"><span class="nav-link__span">Archived BARS E-Newsletters</span></a></li> </ul> </li> <li class="nav__menu-item nav__menu-item--depth0 menu-item menu-item-type-custom menu-item-object-custom menu-item-7856"><a href="https://barsoft.flightsafety.org/" class="nav-link"><span class="nav-link__span">Login to BARSoft</span></a></li> </ul></nav> </div> <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 …" value="" name="s" /> </label> <button type="submit" class="search-submit">Search</button> </form> </div> </header><!-- end .header --> <script>(function($) { $(".header__search").insertAfter('.nav.nav--175.nav--primary.nav--custom'); })( jQuery );</script> <div class="main-container"> <div class="layout layout-hero layout--dark-bg layout-hero--dark-bg layout---bg-image layout-hero--bg-image u-dark-bg" style="background-image:url(https://flightsafety.org/wp-content/uploads/2016/02/coverstory_feb17_featured.png); background-color: #11254e;"> <div class="wrap layout__wrap layout-hero__wrap"> <div class="layout-hero__content layout-hero__content--full u-content"> <h2 class="h1 layout-hero__title">BARS - Frequently Asked Questions</h2> </div> </div> </div> <div class="layout layout-tabs" style=""> <div class="wrap layout__wrap layout-tabs__wrap"> <div class="layout-tabs__nav"> <h2 class="layout-tabs__title h3">General BARS Program FAQ's</h2> <ul class="layout-tabs__nav-items"> <li class="layout-tabs__nav-item"> <a class="layout-tabs__nav-link" data-index="the-background-of-the-bars-program">The background of the BARS Program</a> </li> <li class="layout-tabs__nav-item"> <a class="layout-tabs__nav-link" data-index="membership-of-the-bars-program">Membership of the BARS Program</a> </li> <li class="layout-tabs__nav-item"> <a class="layout-tabs__nav-link" data-index="about-the-basic-aviation-risk-standard">About the Basic Aviation Risk Standard</a> </li> <li class="layout-tabs__nav-item"> <a class="layout-tabs__nav-link" data-index="the-audit-model">The Audit Model</a> </li> <li class="layout-tabs__nav-item"> <a class="layout-tabs__nav-link" data-index="aviation-safety-training-programs">Aviation Safety Training Programs</a> </li> <li class="layout-tabs__nav-item"> <a class="layout-tabs__nav-link" data-index="global-safety-data-analysis-program">Global Safety Data Analysis Program</a> </li> </ul> </div> <div class="layout-tabs__tabs"> <div data-index="the-background-of-the-bars-program" class="layout-tabs__tab u-content"> <p><strong>What are the benefits of the Basic Aviation Risk Standard (BARS) Program compared to the current practice for some resource companies?</strong></p> <ul> <li><strong>One common standard tailored to contract aviation</strong><strong> environment: </strong>The criteria used under the BAR Standard to assess aircraft operators represents best industry practice. It has been developed by the sectors of the industry, drawing on the collective experience of numerous companies, including some of the major global resources companies.</li> <li><strong> A better audit: </strong>The BARS audit process is more robust, non-subjective and utilizes two auditors for two days.</li> <li><strong> The quality of the auditors: </strong>The auditors must undergo a training course and meet stringent accreditation, minimum knowledge and experience criteria.</li> <li><strong>Independent and impartial: </strong>This is the first independent, quality-controlled audit process for the resource sector. Neither resource companies nor aircraft operators can influence the outcome of audits.</li> </ul> <p style="font-size: 15px; font-style: italic;"><strong>What issues does the BARS Program address?</strong></p> <ul> <li>Prior to the BAR Standard, each resource company had its own aviation safety standard. This subjected aircraft operators to a diverse and often ambiguous set of requirements within already diverse global regulatory requirements.</li> <li>The variety of standards and audits meant that aircraft operators underwent multiple annual audits for various resource company clients, diverting their focus and resources away from flight operations and maintenance oversight.</li> <li>The ability of an individual resource company to influence change within an aircraft operator’s practices in response to audit findings was often limited.</li> <li>Industry based safety auditing is unregulated, is not in accordance with a consistent standard and has limited scope for one company to influence consistency and quality control.</li> <li>There was no formal process by which safety audit results, accident data or safety findings could be shared between companies or across the resource industry.</li> </ul> <p><strong>What is the benefit to the resource sector of collaborating with the Foundation?</strong></p> <ul> <li>The Foundation has extensive aviation safety experience and expertise. Its mission, “the continuous improvement of aviation safety and the prevention of accidents” is aligned with that of the resource sector.</li> </ul> <ul> <li>Because the Foundation is independent, impartial and not-for-profit, resource sector companies can draw upon its expertise and gain the benefits of a collaborative approach while maintaining the appropriate commercial distance from each other.</li> </ul> <p><strong>Does the Foundation have the track record to implement this Program?</strong></p> <ul> <li>Yes. A relevant example of a successful industry-wide program is the Foundation’s Approach and Landing Accident Reduction (ALAR) campaign.</li> </ul> <ul> <li>The Foundation established a task force on approach and landing accidents in 1998. Its research showed there were an average of 17 fatal approach and landing accidents annually from 1980 through 1998 in passenger and cargo operations involving aircraft weighing 5,700kg/12,500lb or more.</li> </ul> <ul> <li>The Foundation developed numerous safety products, including distribution of 40,000 copies of the ALAR Tool Kit, and conducted workshops on the subject across the world.</li> </ul> <ul> <li>Many of the ground-breaking tools and practices provided by the ALAR Tool Kit have been adopted by the majority of commercial airlines around the world and are key elements of their flight operations manuals.</li> </ul> <ul> <li>This work has significantly reduced the risk of this type of accident in commercial aviation operations.</li> </ul> <p><strong>Why is aviation safety so important to the resource sector?</strong></p> <ul> <li>Aviation poses one of the single largest potential risks to safety in the sector and one of the few activities that has the potential for double digit-fatalities.</li> </ul> <ul> <li>Indications are that reliance on aviation in the sector is increasing as exploration pushes further afield to more remote areas, and “fly in/fly out” activities becomes more frequent.</li> <li>The increased focus by resource companies on aviation safety over recent years means the opportunity for further improvements at the individual company level are small compared to the unprecedented scope for improvement at an industry level through the sector-wide initiative that the BAR Standard provides.</li> </ul> <p><strong>How was the Program established?</strong></p> <ul> <li>The Program developed from informal discussions between representatives from resource companies and the Foundation. When it was realized that the industry and the Foundation were exploring the same issues, the idea to launch a collaborative effort was formalized and the BARS Program Office was formed to manage the Program.</li> </ul> <ul> <li>The twelve founding BARS Member Organizations worked with FSF over twelve months to develop the Program.</li> </ul> <p><strong>How is the BARS Program funded?</strong></p> <ul> <li>The BARS Program is funded by annual subscription fees paid by participating BARS Member Organizations, by audit company registration fees, by training course fees paid by auditors and resource sector aviation coordinators, and by audit fees paid by aircraft operators.</li> </ul> </div> <div data-index="membership-of-the-bars-program" class="layout-tabs__tab u-content"> <p><strong>Who should become a <a href="https://flightsafety.org/bars/bmos/">BARS Member </a></strong><strong>Organization (BMO)?</strong></p> <ul> <li>Any organization that is an end user of contract aviation services.</li> </ul> <ul> <li>The initial focus of the Program has been for the resource sector, however membership will benefit any operation with employees who frequently fly in contracted aircraft, such as humanitarian or other organizations.</li> </ul> <ul> <li>The more organizations that participate in the Program, the more data and expertise will be available to share amongst all members.</li> </ul> <p><strong>Why should my company become a member?</strong></p> <ul> <li>There are numerous commercial benefits from higher safety standards and reduced accident risk, such as lower insurance premiums and fewer lost working days.</li> </ul> <ul> <li>With the leading resource sector companies already participating, membership is expected to become an industry standard.</li> </ul> <ul> <li>This is a unique opportunity to support a step increase in aviation safety.</li> </ul> <ul> <li>The Program is gaining industry association support. The Minerals Council of Australia endorsed it in December 2009.</li> </ul> <ul> <li>The International Council on Mining & Metals (ICMM) expressed support for the BARS Program in late 2012.</li> </ul> <p><strong>Who are the <a href="https://flightsafety.org/bars/bmos/">current members?</a></strong></p> <ul> <li>A list of some of the current members may be found on the Foundation’s website.</li> </ul> <p><strong>What are the levels of membership?</strong></p> <ul> <li>Benefactor members are those Tier 1 members who elect to provide further funding to support the development of additional safety programs under development by the Foundation.</li> <li>Tier 1 members are those organizations that have mining or other facilities extending across more than one location and typically utilize the services of more than three aircraft operators to provide them with contract aviation support.</li> <li>Tier 2 members are those organizations that have mining or other facilities at one location and typically utilize the services of less than three aircraft operators to provide them with contract aviation support. <ul> <li>For Benefactor members, a subscription/OGP members are those organizations from the Oil, Gas and Petroleum sector that have their own discreet aviation safety systems and standards in place that wish to supplement their risk oversight processes by becoming a part of the BARS Program.</li> </ul> </li> </ul> <p style="font-size: 15px; font-style: italic;"><strong>What does the membership fee buy </strong><strong>my company?</strong></p> <ul> <li>Access to a consistent industry standard to provide an informed means of assessing risk.</li> </ul> <ul> <li>Access to the <a href="https://flightsafety.org/bars/technical-advisory-committee-tac/">Technical Advisory Committee (TAC)</a> for Benefactor and Tier 1 members; a seat at the table that influences the ongoing development of the BAR Standard and the structure of the Program more generally.</li> </ul> <ul> <li>Access to the Technical Advisory Committee (TAC) as an observer for Tier 2 and OGP members.</li> </ul> <ul> <li>Participation in the TAC that provides access to the collective experience and intelligence of the range of companies within the Program. Never before has there been a forum within the resource sector that allows companies to share knowledge and experience on aviation safety.</li> </ul> <ul> <li>Access to the database of all current BARS audits undertaken within the Program.</li> </ul> <ul> <li>Access to the range of training programs developed as part of the overall Program.</li> </ul> <ul> <li>Access to industry safety data and analysis derived from the collective BARS audit process.</li> </ul> <p style="font-size: 15px; font-style: italic;"><strong>What is expected of my company if it becomes </strong><strong>a member?</strong></p> <ul> <li>It is expected that BARS Member Organizations will seek to promote the use of the BAR Standard by their chosen aircraft operators and encourage them to have their operation reviewed through a BARS audit.</li> </ul> <ul> <li>Active participation in the TAC is strongly encouraged but is not obligatory.</li> </ul> </div> <div data-index="about-the-basic-aviation-risk-standard" class="layout-tabs__tab u-content"> <p><strong>How does the BARS Program relate to existing </strong><strong>regulations?</strong></p> <ul> <li>The BAR Standard is intended to supplement the guidance and requirements of national and international regulations pertaining to aviation operations. These must always be followed.</li> </ul> <p><strong>What is the difference between a prescriptive standard and the risk-based format used for the BARS?</strong></p> <ul> <li>The prescriptive standards are categorized under the components that make up an aviation system, such as equipment, personnel, operations, etc.</li> <li>The BARS Program is framed around the actual threats to aviation operations and directly links these to associated controls and recovery/mitigation measures.</li> <li>It provides a ready-made framework for assessing risk.</li> </ul> <p><strong>Will the BARS Program be used in the same way as previous prescriptive standards?</strong></p> <ul> <li>No. Prescriptive standards were often aspirational and presented as an ideal scenario not based on reality.</li> <li>The BAR Standard is intended to provide a basic safety standard to be met 100% of the time, lowering residual risk to minimal levels.</li> </ul> <p><strong>Who controls the BAR Standard?</strong></p> <ul> <li>FSF controls the BAR Standard based on the advice and approval of the TAC.</li> </ul> <p><strong> How can I be confident that if my company signs up to use the BARS Program that the integrity and relevance of the Standard to the resource sector will be maintained?</strong></p> <ul> <li>The TAC, which is comprised of and chaired by BARS Member Organizations, must approve any change to the BAR Standard.</li> </ul> <p><strong>How was the BAR Standard developed?</strong></p> <ul> <li>The BAR Standard was developed by FSF in collaboration with resource industry input from the founding BARS Member Organizations.</li> <li>It was developed drawing on world’s best practice in aviation safety generally and from the resource sector specifically.</li> <li>Every part of the Program can be tied to what has been learned from previous accidents and incidents.</li> </ul> <p><strong>How often will the BAR Standard be updated?</strong></p> <ul> <li>Each year, the TAC will review the preceding 12 months of data to determine if the BAR Standard can be improved.</li> <li>Any changes to the BAR Standard will be incorporated into a revised edition.</li> </ul> </div> <div data-index="the-audit-model" class="layout-tabs__tab u-content"> <p><strong>How was the audit process developed?</strong></p> <ul> <li>By the Flight Safety Foundation, through its BARS Program Office and in consultation with the TAC.</li> </ul> <ul> <li>The BARS Program Office evaluated the leading audit programs around the world, consolidated the best elements of these and tailored them to the Standard.</li> </ul> <p><strong>How does the tripartite audit agreement work?</strong></p> <ul> <li>The aircraft operator selects a registered BARS audit company.</li> </ul> <ul> <li>These two entities enter into a three-way agreement with FSF that outlines the terms and conditions, price and code of conduct for the audit (called the “Audit Agreement”).</li> </ul> <ul> <li>Once the audit fees have been paid to FSF the BARS audit commences and an initial audit report is produced. Any issues identified at this stage are then able to be addressed before the issue of the final audit report.</li> </ul> <ul> <li>The agreement allows the BARS Program Office to release the report on BARSoft for viewing by BARS Member Organizations once the Quality Control (QC) process has been completed.</li> </ul> <p><strong>What are the benefits of the audits being </strong><strong>commissioned via an Audit Agreement?</strong></p> <p>The Audit Agreement between FSF, the audit company and the aircraft operator provides:</p> <ul> <li>A clear framework for the aircraft operator and the audit company to work within.</li> <li>An independent dispute resolution process.</li> <li>A fixed pricing schedule for BARS audits.</li> <li>A truly independent third-party audit for BARS Member Organizations.</li> <li>The ability for FSF to maintain audit quality control.</li> </ul> <p><strong>How are auditors accredited?</strong></p> <ul> <li>By meeting the experience/qualification requirements and completing the BARS auditor accreditation training course, including passing an examination.</li> </ul> <p><strong>What does the BARS Program require of </strong><strong>auditors?</strong></p> <ul> <li>Individual auditors conducting BARS audits must be accredited by the BARS Program Office.</li> </ul> <ul> <li>Individual BARS accredited auditors must conduct BARS audits under the umbrella of an audit company that is formally registered with FSF (a “registered BARS audit company”).</li> </ul> <ul> <li>Complete recurrent training.</li> </ul> <p><strong>How do audit companies register with FSF?</strong></p> <ul> <li>They must contact the BARS Program Office, meet the requirements to become a BARS accredited audit company and pay the registration fee.</li> </ul> <p><strong>What are the requirements for an audit </strong><strong>company to become registered?</strong></p> <ul> <li>Agreeing to conduct the audits according to FSF’s terms and conditions.</li> </ul> <ul> <li>Meeting the prescribed requirements such as presenting proof of professional indemnity insurance held by the company, documentation outlining ownership shareholding and governance provisions, business registration documentation, etc.</li> </ul> <p><strong>How long does each audit take?</strong></p> <ul> <li>A standard audit takes two days.</li> </ul> <p><strong>How will the audit company be selected?</strong></p> <ul> <li>Aircraft operators will choose the BARS accredited audit company. A list of BARS <a href="https://flightsafety.org/bars/audit-companies/">accredited audit companies</a> can be found within the BARS website and the secure online platform, BARSoft.</li> </ul> <p><strong>Who owns the audit report?</strong></p> <ul> <li>The aircraft operator will own the audit report.</li> </ul> <p><strong>How will payment for audits be managed?</strong></p> <ul> <li>Aircraft operators will need to pay FSF upfront before an audit is initiated. Out of this, FSF pays the audit company as the audit is progressed and finalized.</li> </ul> <ul> <li>It is expected that aircraft operators will pass on the audit costs to their BARS Member Organization clients in an appropriate way which may include, for example, increases to standing charges or increases in flying hour rates.</li> </ul> <p><strong>As an aircraft operator, how can I be confident </strong><strong>that I won’t be out of pocket for an audit?</strong></p> <ul> <li>The expectation is that aircraft operators will spread the BARS audit costs amongst their resource company clients who want them to be registered, but some may simply choose to bear the cost themselves in recognition of the commercial benefit of having completed a BARS audit.</li> <li>If an aircraft operator makes a commercial decision to become BARS registered without a direct request from a resource company, that aircraft operator would bear the audit cost.</li> </ul> <p><strong>Why is FSF setting the cost of audits?</strong></p> <ul> <li>The fixed fee that will be paid by the aircraft operator to FSF is to ensure that audit quality is not compromised by auditors reducing the resources devoted to BARS audits. The importance of this point was learned from the International Air Transport Association’s (IATA) experience with its IATA Operational Safety Audit (IOSA) program.</li> </ul> <p><strong>How will the audit reports be made available?</strong></p> <ul> <li>The reports will be made available to BARS Member Organizations via BARSoft following completion of the QC process between the audit company and the BARS Program Office.</li> </ul> <p><strong>How will access to the audit reports be </strong><strong>managed to maintain the appropriate level of </strong><strong>commercial confidence?</strong></p> <ul> <li>The tripartite agreement, signed by the aircraft operator, authorizes the release of the report by the BARS Program Office onto BARSoft at the conclusion of the QC process.</li> </ul> <ul> <li>Only BARS Member Organizations will be able to see audit reports. They are required to treat them in confidence.</li> </ul> <ul> <li>Aircraft operators will not have access to reports other than their own.</li> </ul> <p><strong>As an aircraft operator, if I disagree with the </strong><strong>audit report, what can I do?</strong></p> <ul> <li>Any audit-related disputes can be taken to the BARS Program Office to be dealt under the Audit Agreement dispute resolution process.</li> </ul> <p><strong>What legal agreements are involved with the </strong><strong>BARS Program?</strong></p> <ul> <li>The resources companies are required to sign a “BARS Member Organization Agreement” with FSF.</li> </ul> <ul> <li>The accredited auditors are required to sign an “Auditor Accreditation Agreement” with FSF.</li> </ul> <ul> <li>The registered audit company is required to sign a service agreement with FSF – “Audit Company Registration Agreement”.</li> </ul> <ul> <li>The aircraft operator and registered audit company are required to sign an audit agreement with FSF for each individual BARS audit.</li> </ul> <p><strong>What will an audit report look like?</strong></p> <p><em>There will be three levels of findings:</em></p> <ul> <li><strong>Priority 1: </strong>A significant finding that is a safety issue that needs to be closed within thirty (30) days of the audit closing meeting.</li> <li><strong>Priority 2: </strong>Findings that will need to be closed within 90 days of publication of the audit report. Variations to the closing date may be accommodated where it is not possible to close the finding within the 90- day time frame. This is to be agreed upon with the lead auditor with oversight by the BARS Program Office.</li> <li><strong>Priority 3: </strong>These findings are opportunities for improvement, identified based on best industry practice and/or related to other support available from FSF, such as a targeted program along the lines of the ALAR effort. An aircraft operator is encouraged to take the action but has no obligation to close a Priority 3 finding.</li> </ul> <p><strong>How are significant findings (Priority 1) closed?</strong></p> <ul> <li>As with all audit findings, the aircraft operator will work with the auditor. The majority of the time this should be possible at a distance, however, there may be occasions when a re-audit is required. A Priority 1 finding cannot be closed, and BARS registration given, until the lead auditor has confirmed to FSF that it is resolved.</li> </ul> <p><strong>Can a resource company member use an </strong><strong>aircraft operator that has not undergone </strong><strong>a BARS audit?</strong></p> <ul> <li>Resource company members are free to use any aircraft operator. However if an aircraft operator has undergone a BARS audit, the company will have a clear picture of the safety standards achieved by that operator, which will address a key concern for all companies.</li> <li>The risk-based format of the BARS Program should assist companies in their risk assessment and mitigation activity in such a circumstance.</li> </ul> <p><strong>Is there a self-assessment checklist I can use </strong><strong>before commissioning an audit?</strong></p> <ul> <li>Yes. After registering in BARSoft, and creating an audit, an audit checklist relevant to that aircraft operator is automatically produced.</li> </ul> <p><strong>Do aircraft operators receive ‘accreditation’ or ‘</strong><strong>certification’ under BARS?</strong></p> <ul> <li>The BARS Program does not provide either ‘accreditation’ or ‘certification’ for aircraft operators that have undergone a BARS audit.</li> </ul> <ul> <li>Aircraft operators may achieve a color status associated with their audit report, however this only indicates the status of the closure of any findings.</li> </ul> <ul> <li>Whilst aircraft operators may be recognized as having undergone a BARS audit, this does not infer that any conclusion can be drawn as to the aircraft operators risk profile. This may only be determined in part through a review of the audit report.</li> </ul> <p><strong>Are there any benefits in the BARS Program </strong><strong>for auditors?</strong></p> <ul> <li>Yes, with one audit model, a structure is in place to standardize the process across many audits.</li> </ul> <ul> <li>Accreditation as a BARS Auditor means that you are a part of a select pool of individuals who are able to conduct these audits.</li> </ul> <p><strong>Is there a precedent for a global </strong><strong>audit program?</strong></p> <ul> <li>Yes, in the commercial airline industry.</li> <li>The IATA Operational Safety Audit (IOSA) program is an internationally recognized and accepted evaluation system designed to assess the operational management and control systems of an airline.</li> </ul> </div> <div data-index="aviation-safety-training-programs" class="layout-tabs__tab u-content"> <h4><a href="https://flightsafety.org/bars/managing-contracted-aviation-risk-training-onshore/"><strong>Managing Contract Aviation Risk (MCAR) Training for </strong><strong>Onshore Personnel</strong></a></h4> <ul> <li>This two-day course provides participants with an understanding of the Basic Aviation Risk Standard and how it can be used by resource and other sector personnel to help identify potential aviation safety risks. Participants will be able to use knowledge gained on he course to review their company’s aviation management policies and procedures and formulate appropriate risk management strategies to manage identified day-do-day risks.</li> </ul> <h4><a href="https://flightsafety.org/bars/managing-contracted-aviation-risk-training-offshore/"><strong>Managing Contract Aviation Risk (MCAR) Training for </strong><strong>Offshore Personnel</strong></a></h4> <ul> <li>This two-day course provides participants with an understanding of the Basic Aviation Risk Standard and how it can be used by personnel operating in the oil and gas sectors to help identify potential aviation safety risks. Participants will be able to use knowledge gained on the course to review their company’s aviation management policies and procedures and formulate appropriate risk management strategies to manage identified day-do-day risks.</li> </ul> <h4><a href="https://flightsafety.org/bars/helicopter-external-load-ops/"><strong>Helicopter External Load Operations for </strong><strong>Ground Personnel</strong></a></h4> <ul> <li>External loads carried by helicopters very considerable across different industries. Until now, there has been little standardization of procedures, equipment or training involving this activity.</li> </ul> <ul> <li>This two-day course provides the standardization necessary for this activity and provides participants with basic training in helicopter under-slung load activities.</li> <li>The course can be tailored for all industry sectors that utilize helicopters in similar support roles including fire fighting, humanitarian support and flood and fire relief.</li> </ul> <h4><strong>Aviation Risk for Managers</strong></h4> <ul> <li>This half-day course is designed for executives and senior managers who are unable to attend the two-day AVCO course due to time constraints. The course provides participants with an understanding of the Basic Aviation Risk Standard and how it can be used by resource and other sector personnel to help identify potential aviation safety risks. Participants will be able to use knowledge gained on he course to review their company’s aviation management policies and procedures and formulate appropriate risk management strategies to manage identified day-do-day risks.</li> </ul> <h4><a href="https://flightsafety.org/bars/bars-auditor-training/"><strong>BARS Auditor Accreditation Courses</strong></a></h4> <ul> <li>The two-day course introduces participants to the elements of the BARS Program including: The role of various stakeholders including client, audit companies, aircraft operators and other interested parties; The BAR Standard, BARS Implementation Guidelines and their interaction with the audit checklist; Program documentation; Protocols of various types of BARS audits:<br /> BARS two-day audit, BARS Aerial Work audit, Operational Categories, Audit management including audit planning, follow-up and closure of audit reports; Use of our dedicated database, BARSoft; and Analysis of data derived from the BARS Program.</li> </ul> </div> <div data-index="global-safety-data-analysis-program" class="layout-tabs__tab u-content"> <p><strong>Why is data capture and analysis important?</strong></p> <ul> <li>FSF’s data capture program will give the resource sector greater ability to avoid accidents by enabling better identification of accident pre-indicators and establishing controls to manage them.</li> </ul> <ul> <li>Analysis of accidents in the commercial airline industry – which, along with the oil and gas sector, for many years has had formal data collection processes in place and now has mature data sets – shows that in every accident there were pre-accident indicators that signaled a higher risk of having an accident.</li> </ul> <p><strong>What type of data will be collected?</strong></p> <ul> <li>Flight hours and sectors, passengers carried and accident and serious incident information.</li> </ul> <p><strong>How will the data capture and analysis benefit </strong><strong>the resource industry?</strong></p> <ul> <li>Sharing of lessons learned will increase awareness of risks amongst BARS Member Organizations, and will also be shared amongst aircraft operators during audits.</li> </ul> <ul> <li>It will result in relevant and data-driven decisions to drive development of the BAR Standard, as all of the learning will be fed back into the Program and FSF’s training programs.</li> </ul> </div> </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 & 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 & 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">© 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\/bars\/bars-frequently-asked-questions\/","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:00:03 by W3 Total Cache -->