{"id":6722,"date":"2025-05-07T03:26:10","date_gmt":"2025-05-07T07:26:10","guid":{"rendered":"https:\/\/neuro.bluehat.hosting\/services\/electromyography-emg\/"},"modified":"2025-12-15T16:51:03","modified_gmt":"2025-12-15T21:51:03","slug":"electromyographie-emg","status":"publish","type":"page","link":"https:\/\/www.neuro-outaouais.com\/fr\/services\/electromyographie-emg\/","title":{"rendered":"\u00c9lectromyographie (EMG)"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"6722\" class=\"elementor elementor-6722 elementor-120\" data-elementor-post-type=\"page\">\n\t\t\t\t<div class=\"elementor-element elementor-element-ceda2f8 e-con-full animated-slow e-flex e-con e-parent\" data-id=\"ceda2f8\" data-element_type=\"container\" id=\"blur-image\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;animation&quot;:&quot;none&quot;,&quot;animation_delay&quot;:0}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-8cf277c elementor-widget__width-initial elementor-widget elementor-widget-heading\" data-id=\"8cf277c\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h1 class=\"elementor-heading-title elementor-size-default\">\u00c9lectromyographie (EMG)\n<\/h1>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-62e3c24 elementor-widget__width-initial elementor-widget elementor-widget-heading\" data-id=\"62e3c24\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">La Clinique Neuro-Outaouais offre une gamme de tests neurophysiologiques, notamment : \u00e9tudes de conduction nerveuse (ECN), tests du syst\u00e8me nerveux autonome, \u00e9lectromyographie (EMG), \u00e9lectromyographie de fibre unique (EMG-FU) et potentiels \u00e9voqu\u00e9s (PE). Les potentiels \u00e9voqu\u00e9s incluent des modalit\u00e9s visuelles et motrices.\n<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-aaf2a61 e-con-full e-flex e-con e-parent\" data-id=\"aaf2a61\" data-element_type=\"container\" id=\"horizontal-scroll\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-7f94a4d e-con-full e-flex e-con e-child\" data-id=\"7f94a4d\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-2da211f elementor-widget elementor-widget-heading\" data-id=\"2da211f\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">\u00c0 la CNO \n<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-b5a735c elementor-widget elementor-widget-text-editor\" data-id=\"b5a735c\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\tNous r\u00e9alisons les m\u00eames examens sur place : ECN, tests autonomiques, EMG, EMG-FU et PE (visuels et moteurs).\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-d7599a9 e-con-full e-flex e-con e-child\" data-id=\"d7599a9\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-1e04b0f elementor-widget elementor-widget-html\" data-id=\"1e04b0f\" data-element_type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<script>\n\/\/ Scroll to top on page load\nwindow.onload = function() {\n    window.scrollTo(0, 0);\n};\n\n\/\/ Alternative that works with turbolinks (if you're using that)\ndocument.addEventListener('DOMContentLoaded', function() {\n    window.scrollTo(0, 0);\n});\n<\/script>\n<script>\ndocument.addEventListener('DOMContentLoaded', function () {\n    const scrollContainer = document.querySelector('#horizontal-scroll');\n\n    \/\/ Add a check to ensure the element exists before trying to manipulate it\n    if (!scrollContainer) {\n        console.warn('Element #horizontal-scroll not found. Script will not run.');\n        return;\n    }\n\n    let lastScrollTop = 0;\n    let isScrollingDown = false;\n\n    \/\/ Define key scroll points\n    const activationScrollPoint = 300; \/\/ When the container starts to appear\n    const fullRevealScrollPoint = 800; \/\/ When the container is fully visible (right: 0%)\n    const stickToTopScrollPoint = 900; \/\/ When the container transitions from fixed to sticky\/absolute at the top\n\n    \/\/ Initial state setup\n    scrollContainer.style.opacity = '0';\n    scrollContainer.style.right = '-100%'; \/\/ Start fully off-screen to the right\n    scrollContainer.style.position = 'fixed';\n    scrollContainer.style.top = '0px'; \/\/ Important: Keep top at 0px for the fixed state for smooth transition later\n\n    \/\/ Cache the initial transform if any, or set it up for horizontal movement\n    \/\/ Since we want horizontal reveal, we'll control 'right' directly.\n    \/\/ If you had vertical centering, 'transform: translateY(-50%)' would go here, but we're sticking to top.\n\n    window.addEventListener('scroll', function () {\n        const scrollTop = window.pageYOffset || document.documentElement.scrollTop;\n        isScrollingDown = scrollTop > lastScrollTop;\n        lastScrollTop = scrollTop <= 0 ? 0 : scrollTop;\n\n        \/\/ --- Phase 1: Reveal and Hide (fixed position) ---\n        if (scrollTop >= activationScrollPoint && scrollTop < fullRevealScrollPoint) {\n            \/\/ Calculate progress for revealing\n            const progress = (scrollTop - activationScrollPoint) \/ (fullRevealScrollPoint - activationScrollPoint);\n            \/\/ Ensure progress is between 0 and 1\n            const clampedProgress = Math.min(1, Math.max(0, progress));\n\n            \/\/ Smoothly slide in from right (-100% to 0%) and fade in (0 to 1)\n            scrollContainer.style.opacity = clampedProgress.toString();\n            \/\/ Calculate right position: from -100% to 0% as progress goes from 0 to 1\n            \/\/ A more direct way: when progress is 0, right is -100%. When progress is 1, right is 0%.\n            \/\/ (1 - clampedProgress) means it goes from 1 to 0. So multiply by -100% to get 0 to -100%\n            scrollContainer.style.right = `${(1 - clampedProgress) * -100}%`;\n            scrollContainer.style.position = 'fixed';\n            scrollContainer.style.top = '0px'; \/\/ Maintain top position during fixed reveal\n\n        }\n        \/\/ --- Phase 2: Fully Visible and Sticky\/Absolute ---\n        else if (scrollTop >= fullRevealScrollPoint) {\n            scrollContainer.style.opacity = '1';\n            scrollContainer.style.right = '0px'; \/\/ Ensure it's fully visible\n\n            \/\/ Check if we should stick to the top or scroll with content\n            if (scrollTop >= stickToTopScrollPoint) {\n                \/\/ Once beyond stickToTopScrollPoint, change to absolute\n                \/\/ and set its top to the current scroll position so it moves with the page\n                scrollContainer.style.position = 'absolute';\n                scrollContainer.style.top = `${stickToTopScrollPoint}px`; \/\/ Stick to this specific scroll position\n            } else {\n                \/\/ Between fullRevealScrollPoint and stickToTopScrollPoint, it's fixed at the top\n                scrollContainer.style.position = 'fixed';\n                scrollContainer.style.top = '0px';\n            }\n        }\n        \/\/ --- Phase 3: Hidden (above activation point) ---\n        else {\n            scrollContainer.style.opacity = '0';\n            scrollContainer.style.right = '-100%'; \/\/ Fully hidden\n            scrollContainer.style.position = 'fixed';\n            scrollContainer.style.top = '0px'; \/\/ Reset for next reveal\n        }\n    });\n});\n<\/script>\n\n<style>\n#horizontal-scroll {\n    position: fixed; \/* Initial state, JS will change it *\/\n    right: -100%;    \/* Initial state, JS will change it *\/\n    top: 0;          \/* Consistent top position *\/\n    width: 100%;     \/* Example: or a specific pixel width *\/\n    box-sizing: border-box;\n    z-index: 9999;\n    opacity: 0;\n    \/* IMPORTANT: Remove CSS transitions for properties controlled by JS *\/\n    transition: none; \/* Disables all transitions for #horizontal-scroll *\/\n}\n<\/style>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-5a15b72 elementor-widget elementor-widget-spacer\" data-id=\"5a15b72\" data-element_type=\"widget\" data-widget_type=\"spacer.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-spacer\">\n\t\t\t<div class=\"elementor-spacer-inner\"><\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-36936e2 e-flex e-con-boxed e-con e-parent\" data-id=\"36936e2\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-8c014dd e-con-full e-flex e-con e-parent\" data-id=\"8c014dd\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-9088eb9 e-con-full e-flex e-con e-child\" data-id=\"9088eb9\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-beb37b9 elementor-widget elementor-widget-image\" data-id=\"beb37b9\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img fetchpriority=\"high\" decoding=\"async\" width=\"1920\" height=\"1280\" src=\"https:\/\/www.neuro-outaouais.com\/wp-content\/uploads\/2025\/08\/Electromyography-1.jpg\" class=\"attachment-full size-full wp-image-6486\" alt=\"\" srcset=\"https:\/\/www.neuro-outaouais.com\/wp-content\/uploads\/2025\/08\/Electromyography-1.jpg 1920w, https:\/\/www.neuro-outaouais.com\/wp-content\/uploads\/2025\/08\/Electromyography-1-300x200.jpg 300w, https:\/\/www.neuro-outaouais.com\/wp-content\/uploads\/2025\/08\/Electromyography-1-1024x683.jpg 1024w, https:\/\/www.neuro-outaouais.com\/wp-content\/uploads\/2025\/08\/Electromyography-1-768x512.jpg 768w, https:\/\/www.neuro-outaouais.com\/wp-content\/uploads\/2025\/08\/Electromyography-1-1536x1024.jpg 1536w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-cf34abc elementor-hidden-desktop elementor-hidden-tablet elementor-hidden-mobile elementor-widget elementor-widget-heading\" data-id=\"cf34abc\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h4 class=\"elementor-heading-title elementor-size-default\">\u201c...we are uniquely positioned to maximize the gains of our patients\u2019 rehabilitation efforts.\u201d<\/h4>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3fcebc9 elementor-hidden-desktop elementor-hidden-tablet elementor-hidden-mobile elementor-widget-divider--view-line elementor-widget elementor-widget-divider\" data-id=\"3fcebc9\" data-element_type=\"widget\" data-widget_type=\"divider.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-divider\">\n\t\t\t<span class=\"elementor-divider-separator\">\n\t\t\t\t\t\t<\/span>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-41298b6 elementor-hidden-desktop elementor-hidden-tablet elementor-hidden-mobile elementor-widget elementor-widget-heading\" data-id=\"41298b6\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<span class=\"elementor-heading-title elementor-size-default\">Phone<\/span>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-21ff6eb elementor-hidden-desktop elementor-hidden-tablet elementor-hidden-mobile elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list\" data-id=\"21ff6eb\" data-element_type=\"widget\" data-widget_type=\"icon-list.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<ul class=\"elementor-icon-list-items\">\n\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"tel:819%20777%202500\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-phone-square-alt\" viewBox=\"0 0 448 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M400 32H48A48 48 0 0 0 0 80v352a48 48 0 0 0 48 48h352a48 48 0 0 0 48-48V80a48 48 0 0 0-48-48zm-16.39 307.37l-15 65A15 15 0 0 1 354 416C194 416 64 286.29 64 126a15.7 15.7 0 0 1 11.63-14.61l65-15A18.23 18.23 0 0 1 144 96a16.27 16.27 0 0 1 13.79 9.09l30 70A17.9 17.9 0 0 1 189 181a17 17 0 0 1-5.5 11.61l-37.89 31a231.91 231.91 0 0 0 110.78 110.78l31-37.89A17 17 0 0 1 299 291a17.85 17.85 0 0 1 5.91 1.21l70 30A16.25 16.25 0 0 1 384 336a17.41 17.41 0 0 1-.39 3.37z\"><\/path><\/svg>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">819 777 2500<\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"tel:819%20777%202502\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-phone-square-alt\" viewBox=\"0 0 448 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M400 32H48A48 48 0 0 0 0 80v352a48 48 0 0 0 48 48h352a48 48 0 0 0 48-48V80a48 48 0 0 0-48-48zm-16.39 307.37l-15 65A15 15 0 0 1 354 416C194 416 64 286.29 64 126a15.7 15.7 0 0 1 11.63-14.61l65-15A18.23 18.23 0 0 1 144 96a16.27 16.27 0 0 1 13.79 9.09l30 70A17.9 17.9 0 0 1 189 181a17 17 0 0 1-5.5 11.61l-37.89 31a231.91 231.91 0 0 0 110.78 110.78l31-37.89A17 17 0 0 1 299 291a17.85 17.85 0 0 1 5.91 1.21l70 30A16.25 16.25 0 0 1 384 336a17.41 17.41 0 0 1-.39 3.37z\"><\/path><\/svg>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">819 777 2502<\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t<\/ul>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-b2a695a elementor-hidden-desktop elementor-hidden-tablet elementor-hidden-mobile elementor-widget elementor-widget-heading\" data-id=\"b2a695a\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<span class=\"elementor-heading-title elementor-size-default\">Email Us<\/span>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-cc07e0b elementor-hidden-desktop elementor-hidden-tablet elementor-hidden-mobile elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list\" data-id=\"cc07e0b\" data-element_type=\"widget\" data-widget_type=\"icon-list.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<ul class=\"elementor-icon-list-items\">\n\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"mailto:contact@neuro-outaouais.com\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-far-envelope\" viewBox=\"0 0 512 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"><\/path><\/svg>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">contact@neuro-outaouais.com<\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t<\/ul>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-6995ba2 elementor-hidden-desktop elementor-hidden-tablet elementor-hidden-mobile elementor-widget-divider--view-line elementor-widget elementor-widget-divider\" data-id=\"6995ba2\" data-element_type=\"widget\" data-widget_type=\"divider.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-divider\">\n\t\t\t<span class=\"elementor-divider-separator\">\n\t\t\t\t\t\t<\/span>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-69e94d9 e-grid-align-left elementor-hidden-desktop elementor-hidden-tablet elementor-hidden-mobile elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons\" data-id=\"69e94d9\" data-element_type=\"widget\" data-widget_type=\"social-icons.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-social-icons-wrapper elementor-grid\" role=\"list\">\n\t\t\t\t\t\t\t<span class=\"elementor-grid-item\" role=\"listitem\">\n\t\t\t\t\t<a class=\"elementor-icon elementor-social-icon elementor-social-icon-twitter elementor-repeater-item-27df7a5\" href=\"https:\/\/twitter.com\/Cliniqueneuro\" target=\"_blank\">\n\t\t\t\t\t\t<span class=\"elementor-screen-only\">Twitter<\/span>\n\t\t\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fab-twitter\" viewBox=\"0 0 512 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z\"><\/path><\/svg>\t\t\t\t\t<\/a>\n\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<span class=\"elementor-grid-item\" role=\"listitem\">\n\t\t\t\t\t<a class=\"elementor-icon elementor-social-icon elementor-social-icon-facebook elementor-repeater-item-c3fc704\" href=\"https:\/\/www.facebook.com\/Clinique-Neuro-Outaouais-122492125084114\/\" target=\"_blank\">\n\t\t\t\t\t\t<span class=\"elementor-screen-only\">Facebook<\/span>\n\t\t\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fab-facebook\" viewBox=\"0 0 512 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M504 256C504 119 393 8 256 8S8 119 8 256c0 123.78 90.69 226.38 209.25 245V327.69h-63V256h63v-54.64c0-62.15 37-96.48 93.67-96.48 27.14 0 55.52 4.84 55.52 4.84v61h-31.28c-30.8 0-40.41 19.12-40.41 38.73V256h68.78l-11 71.69h-57.78V501C413.31 482.38 504 379.78 504 256z\"><\/path><\/svg>\t\t\t\t\t<\/a>\n\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<span class=\"elementor-grid-item\" role=\"listitem\">\n\t\t\t\t\t<a class=\"elementor-icon elementor-social-icon elementor-social-icon-linkedin elementor-repeater-item-ee4e821\" href=\"https:\/\/www.linkedin.com\/company\/clinique-neuro-outaouais\" target=\"_blank\">\n\t\t\t\t\t\t<span class=\"elementor-screen-only\">Linkedin<\/span>\n\t\t\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fab-linkedin\" viewBox=\"0 0 448 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M416 32H31.9C14.3 32 0 46.5 0 64.3v383.4C0 465.5 14.3 480 31.9 480H416c17.6 0 32-14.5 32-32.3V64.3c0-17.8-14.4-32.3-32-32.3zM135.4 416H69V202.2h66.5V416zm-33.2-243c-21.3 0-38.5-17.3-38.5-38.5S80.9 96 102.2 96c21.2 0 38.5 17.3 38.5 38.5 0 21.3-17.2 38.5-38.5 38.5zm282.1 243h-66.4V312c0-24.8-.5-56.7-34.5-56.7-34.6 0-39.9 27-39.9 54.9V416h-66.4V202.2h63.7v29.2h.9c8.9-16.8 30.6-34.5 62.9-34.5 67.2 0 79.7 44.3 79.7 101.9V416z\"><\/path><\/svg>\t\t\t\t\t<\/a>\n\t\t\t\t<\/span>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-3c06bfc e-con-full e-flex e-con e-child\" data-id=\"3c06bfc\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-3405b70 elementor-widget elementor-widget-heading\" data-id=\"3405b70\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">D\u00e9roulement<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-03f4021 elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list\" data-id=\"03f4021\" data-element_type=\"widget\" data-widget_type=\"icon-list.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<ul class=\"elementor-icon-list-items\">\n\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-circle\" viewBox=\"0 0 512 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z\"><\/path><\/svg>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">R\u00e9f\u00e9rence m\u00e9dicale requise.<\/span>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-circle\" viewBox=\"0 0 512 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z\"><\/path><\/svg>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Avant les tests, assurez-vous que vos extr\u00e9mit\u00e9s sont propres et exemptes de cr\u00e8me ou de lotion.<\/span>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-circle\" viewBox=\"0 0 512 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z\"><\/path><\/svg>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">L\u2019EMG comprend une consultation avec un neurologue.<\/span>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t<\/ul>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-793e049 elementor-widget elementor-widget-heading\" data-id=\"793e049\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Couverture et acc\u00e8s\n<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-c7b7106 elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list\" data-id=\"c7b7106\" data-element_type=\"widget\" data-widget_type=\"icon-list.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<ul class=\"elementor-icon-list-items\">\n\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-circle\" viewBox=\"0 0 512 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z\"><\/path><\/svg>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">G\u00e9n\u00e9ralement couvert par les assurances.<\/span>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-circle\" viewBox=\"0 0 512 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z\"><\/path><\/svg>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">R\u00e9f\u00e9rence m\u00e9dicale obligatoire.<\/span>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t<\/ul>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-ef0b8c6 elementor-widget elementor-widget-text-editor\" data-id=\"ef0b8c6\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<b>Services couverts par les r\u00e9gimes publics (RAMQ et OHIP).\n<\/b>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-e6a0ee4 elementor-align-left elementor-widget elementor-widget-button\" data-id=\"e6a0ee4\" data-element_type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"#elementor-action%3Aaction%3Dpopup%3Aopen%26settings%3DeyJpZCI6Njg3NywidG9nZ2xlIjpmYWxzZX0%3D\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Formulaire de r\u00e9quisition<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-f9ec95d elementor-hidden-desktop elementor-hidden-tablet elementor-hidden-mobile e-flex e-con-boxed e-con e-parent\" data-id=\"f9ec95d\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-7af5e0f elementor-widget elementor-widget-heading\" data-id=\"7af5e0f\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">SERVICE<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-c0ae308 elementor-widget elementor-widget-heading\" data-id=\"c0ae308\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h1 class=\"elementor-heading-title elementor-size-default\">Electromyography (EMG)<\/h1>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-91f12a5 elementor-widget elementor-widget-heading\" data-id=\"91f12a5\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Neurological testing done quickly and effectively.<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-6beba7b elementor-hidden-desktop elementor-hidden-tablet elementor-hidden-mobile e-flex e-con-boxed e-con e-parent\" data-id=\"6beba7b\" data-element_type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-6873a04 e-grid e-con-full e-con e-child\" data-id=\"6873a04\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-343e0c6 e-con-full e-flex e-con e-child\" data-id=\"343e0c6\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-b751c9d elementor-widget-divider--view-line elementor-widget elementor-widget-divider\" data-id=\"b751c9d\" data-element_type=\"widget\" data-widget_type=\"divider.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-divider\">\n\t\t\t<span class=\"elementor-divider-separator\">\n\t\t\t\t\t\t<\/span>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-a9e6345 elementor-widget elementor-widget-heading\" data-id=\"a9e6345\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h4 class=\"elementor-heading-title elementor-size-default\">\u201c...we are uniquely positioned to maximize the gains of our patients\u2019 rehabilitation efforts.\u201d<\/h4>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-a3c7b37 elementor-widget-divider--view-line elementor-widget elementor-widget-divider\" data-id=\"a3c7b37\" data-element_type=\"widget\" data-widget_type=\"divider.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-divider\">\n\t\t\t<span class=\"elementor-divider-separator\">\n\t\t\t\t\t\t<\/span>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3113807 elementor-widget elementor-widget-heading\" data-id=\"3113807\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<span class=\"elementor-heading-title elementor-size-default\">Phone<\/span>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0b90933 elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list\" data-id=\"0b90933\" data-element_type=\"widget\" data-widget_type=\"icon-list.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<ul class=\"elementor-icon-list-items\">\n\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"tel:819%20777%202500\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-phone-square-alt\" viewBox=\"0 0 448 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M400 32H48A48 48 0 0 0 0 80v352a48 48 0 0 0 48 48h352a48 48 0 0 0 48-48V80a48 48 0 0 0-48-48zm-16.39 307.37l-15 65A15 15 0 0 1 354 416C194 416 64 286.29 64 126a15.7 15.7 0 0 1 11.63-14.61l65-15A18.23 18.23 0 0 1 144 96a16.27 16.27 0 0 1 13.79 9.09l30 70A17.9 17.9 0 0 1 189 181a17 17 0 0 1-5.5 11.61l-37.89 31a231.91 231.91 0 0 0 110.78 110.78l31-37.89A17 17 0 0 1 299 291a17.85 17.85 0 0 1 5.91 1.21l70 30A16.25 16.25 0 0 1 384 336a17.41 17.41 0 0 1-.39 3.37z\"><\/path><\/svg>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">819 777 2500<\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"tel:819%20777%202502\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-phone-square-alt\" viewBox=\"0 0 448 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M400 32H48A48 48 0 0 0 0 80v352a48 48 0 0 0 48 48h352a48 48 0 0 0 48-48V80a48 48 0 0 0-48-48zm-16.39 307.37l-15 65A15 15 0 0 1 354 416C194 416 64 286.29 64 126a15.7 15.7 0 0 1 11.63-14.61l65-15A18.23 18.23 0 0 1 144 96a16.27 16.27 0 0 1 13.79 9.09l30 70A17.9 17.9 0 0 1 189 181a17 17 0 0 1-5.5 11.61l-37.89 31a231.91 231.91 0 0 0 110.78 110.78l31-37.89A17 17 0 0 1 299 291a17.85 17.85 0 0 1 5.91 1.21l70 30A16.25 16.25 0 0 1 384 336a17.41 17.41 0 0 1-.39 3.37z\"><\/path><\/svg>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">819 777 2502<\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t<\/ul>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-675b36b elementor-widget elementor-widget-heading\" data-id=\"675b36b\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<span class=\"elementor-heading-title elementor-size-default\">Email Us<\/span>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-ab14598 elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list\" data-id=\"ab14598\" data-element_type=\"widget\" data-widget_type=\"icon-list.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<ul class=\"elementor-icon-list-items\">\n\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"mailto:contact@neuro-outaouais.com\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-far-envelope\" viewBox=\"0 0 512 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"><\/path><\/svg>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">contact@neuro-outaouais.com<\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t<\/ul>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-828dfe9 elementor-widget-divider--view-line elementor-widget elementor-widget-divider\" data-id=\"828dfe9\" data-element_type=\"widget\" data-widget_type=\"divider.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-divider\">\n\t\t\t<span class=\"elementor-divider-separator\">\n\t\t\t\t\t\t<\/span>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-18578e6 e-grid-align-left elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons\" data-id=\"18578e6\" data-element_type=\"widget\" data-widget_type=\"social-icons.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-social-icons-wrapper elementor-grid\" role=\"list\">\n\t\t\t\t\t\t\t<span class=\"elementor-grid-item\" role=\"listitem\">\n\t\t\t\t\t<a class=\"elementor-icon elementor-social-icon elementor-social-icon-twitter elementor-repeater-item-27df7a5\" href=\"https:\/\/twitter.com\/Cliniqueneuro\" target=\"_blank\">\n\t\t\t\t\t\t<span class=\"elementor-screen-only\">Twitter<\/span>\n\t\t\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fab-twitter\" viewBox=\"0 0 512 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z\"><\/path><\/svg>\t\t\t\t\t<\/a>\n\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<span class=\"elementor-grid-item\" role=\"listitem\">\n\t\t\t\t\t<a class=\"elementor-icon elementor-social-icon elementor-social-icon-facebook elementor-repeater-item-c3fc704\" href=\"https:\/\/www.facebook.com\/Clinique-Neuro-Outaouais-122492125084114\/\" target=\"_blank\">\n\t\t\t\t\t\t<span class=\"elementor-screen-only\">Facebook<\/span>\n\t\t\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fab-facebook\" viewBox=\"0 0 512 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M504 256C504 119 393 8 256 8S8 119 8 256c0 123.78 90.69 226.38 209.25 245V327.69h-63V256h63v-54.64c0-62.15 37-96.48 93.67-96.48 27.14 0 55.52 4.84 55.52 4.84v61h-31.28c-30.8 0-40.41 19.12-40.41 38.73V256h68.78l-11 71.69h-57.78V501C413.31 482.38 504 379.78 504 256z\"><\/path><\/svg>\t\t\t\t\t<\/a>\n\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<span class=\"elementor-grid-item\" role=\"listitem\">\n\t\t\t\t\t<a class=\"elementor-icon elementor-social-icon elementor-social-icon-linkedin elementor-repeater-item-ee4e821\" href=\"https:\/\/www.linkedin.com\/company\/clinique-neuro-outaouais\" target=\"_blank\">\n\t\t\t\t\t\t<span class=\"elementor-screen-only\">Linkedin<\/span>\n\t\t\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fab-linkedin\" viewBox=\"0 0 448 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M416 32H31.9C14.3 32 0 46.5 0 64.3v383.4C0 465.5 14.3 480 31.9 480H416c17.6 0 32-14.5 32-32.3V64.3c0-17.8-14.4-32.3-32-32.3zM135.4 416H69V202.2h66.5V416zm-33.2-243c-21.3 0-38.5-17.3-38.5-38.5S80.9 96 102.2 96c21.2 0 38.5 17.3 38.5 38.5 0 21.3-17.2 38.5-38.5 38.5zm282.1 243h-66.4V312c0-24.8-.5-56.7-34.5-56.7-34.6 0-39.9 27-39.9 54.9V416h-66.4V202.2h63.7v29.2h.9c8.9-16.8 30.6-34.5 62.9-34.5 67.2 0 79.7 44.3 79.7 101.9V416z\"><\/path><\/svg>\t\t\t\t\t<\/a>\n\t\t\t\t<\/span>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-08b6a32 e-con-full e-flex e-con e-child\" data-id=\"08b6a32\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-91149f0 elementor-widget elementor-widget-image\" data-id=\"91149f0\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"1000\" height=\"667\" src=\"https:\/\/www.neuro-outaouais.com\/wp-content\/uploads\/2025\/05\/Electromyography-EMG.jpg\" class=\"attachment-large size-large wp-image-764\" alt=\"Electromyography EMG test for nerve and muscle evaluation\" srcset=\"https:\/\/www.neuro-outaouais.com\/wp-content\/uploads\/2025\/05\/Electromyography-EMG.jpg 1000w, https:\/\/www.neuro-outaouais.com\/wp-content\/uploads\/2025\/05\/Electromyography-EMG-300x200.jpg 300w, https:\/\/www.neuro-outaouais.com\/wp-content\/uploads\/2025\/05\/Electromyography-EMG-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0ab6f32 elementor-widget elementor-widget-heading\" data-id=\"0ab6f32\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Why CNO?<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-7c223bc elementor-widget elementor-widget-text-editor\" data-id=\"7c223bc\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>CNO offers a variety of neurophysiological tests including: nerve conduction studies, autonomic testing, electromyography, single fibre electromyography and evoked potentials. Evoked potentials include visual and motor modalities.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-13fbd48 e-con-full e-flex e-con e-child\" data-id=\"13fbd48\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-5b09ecc elementor-widget elementor-widget-heading\" data-id=\"5b09ecc\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Coverage and Access<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3a7570e elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list\" data-id=\"3a7570e\" data-element_type=\"widget\" data-widget_type=\"icon-list.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<ul class=\"elementor-icon-list-items\">\n\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-check\" viewBox=\"0 0 512 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"><\/path><\/svg>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Generally covered by insurance.<\/span>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-check\" viewBox=\"0 0 512 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"><\/path><\/svg>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Requires physician referral.<\/span>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t<\/ul>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-350ab0a elementor-align-left elementor-widget elementor-widget-button\" data-id=\"350ab0a\" data-element_type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/www.neuro-outaouais.com\/fr\/contact\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Contact Us<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>\u00c9lectromyographie (EMG) La Clinique Neuro-Outaouais offre une gamme de tests neurophysiologiques, notamment : \u00e9tudes de conduction nerveuse (ECN), tests du syst\u00e8me nerveux autonome, \u00e9lectromyographie (EMG), \u00e9lectromyographie de fibre unique (EMG-FU) et potentiels \u00e9voqu\u00e9s (PE). Les potentiels \u00e9voqu\u00e9s incluent des modalit\u00e9s visuelles et motrices. \u00c0 la CNO Nous r\u00e9alisons les m\u00eames examens sur place : ECN, [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":6702,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"elementor_header_footer","meta":{"footnotes":""},"wf_page_folders":[12],"class_list":["post-6722","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>\u00c9lectromyographie (EMG) - Neuro-Outaouais<\/title>\n<meta name=\"description\" content=\"L\u2019\u00e9valuation d\u2019une maladie neuromusculaire d\u00e9bute avec un test d\u2019\u00e9lectromyographie (EMG) tel qu\u2019offert \u00e0 la Clinique Neuro-Outaouais\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.neuro-outaouais.com\/fr\/services\/electromyographie-emg\/\" \/>\n<meta property=\"og:locale\" content=\"fr_CA\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\u00c9lectromyographie (EMG) - Neuro-Outaouais\" \/>\n<meta property=\"og:description\" content=\"L\u2019\u00e9valuation d\u2019une maladie neuromusculaire d\u00e9bute avec un test d\u2019\u00e9lectromyographie (EMG) tel qu\u2019offert \u00e0 la Clinique Neuro-Outaouais\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.neuro-outaouais.com\/fr\/services\/electromyographie-emg\/\" \/>\n<meta property=\"og:site_name\" content=\"Neuro-Outaouais\" \/>\n<meta property=\"article:modified_time\" content=\"2025-12-15T21:51:03+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.neuro-outaouais.com\/wp-content\/uploads\/2025\/08\/Electromyography-1.jpg\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Estimation du temps de lecture\" \/>\n\t<meta name=\"twitter:data1\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.neuro-outaouais.com\/fr\/services\/electromyographie-emg\/\",\"url\":\"https:\/\/www.neuro-outaouais.com\/fr\/services\/electromyographie-emg\/\",\"name\":\"\u00c9lectromyographie (EMG) - Neuro-Outaouais\",\"isPartOf\":{\"@id\":\"https:\/\/www.neuro-outaouais.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.neuro-outaouais.com\/fr\/services\/electromyographie-emg\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.neuro-outaouais.com\/fr\/services\/electromyographie-emg\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.neuro-outaouais.com\/wp-content\/uploads\/2025\/08\/Electromyography-1.jpg\",\"datePublished\":\"2025-05-07T07:26:10+00:00\",\"dateModified\":\"2025-12-15T21:51:03+00:00\",\"description\":\"L\u2019\u00e9valuation d\u2019une maladie neuromusculaire d\u00e9bute avec un test d\u2019\u00e9lectromyographie (EMG) tel qu\u2019offert \u00e0 la Clinique Neuro-Outaouais\",\"breadcrumb\":{\"@id\":\"https:\/\/www.neuro-outaouais.com\/fr\/services\/electromyographie-emg\/#breadcrumb\"},\"inLanguage\":\"fr-CA\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.neuro-outaouais.com\/fr\/services\/electromyographie-emg\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"fr-CA\",\"@id\":\"https:\/\/www.neuro-outaouais.com\/fr\/services\/electromyographie-emg\/#primaryimage\",\"url\":\"https:\/\/www.neuro-outaouais.com\/wp-content\/uploads\/2025\/08\/Electromyography-1.jpg\",\"contentUrl\":\"https:\/\/www.neuro-outaouais.com\/wp-content\/uploads\/2025\/08\/Electromyography-1.jpg\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.neuro-outaouais.com\/fr\/services\/electromyographie-emg\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.neuro-outaouais.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Services\",\"item\":\"https:\/\/www.neuro-outaouais.com\/fr\/services\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"\u00c9lectromyographie (EMG)\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.neuro-outaouais.com\/#website\",\"url\":\"https:\/\/www.neuro-outaouais.com\/\",\"name\":\"My blog\",\"description\":\"We are a non-profit dedicated to expanding the breadth of medical care for people with neurological diseases.\",\"publisher\":{\"@id\":\"https:\/\/www.neuro-outaouais.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.neuro-outaouais.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"fr-CA\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.neuro-outaouais.com\/#organization\",\"name\":\"My blog\",\"url\":\"https:\/\/www.neuro-outaouais.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"fr-CA\",\"@id\":\"https:\/\/www.neuro-outaouais.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.neuro-outaouais.com\/wp-content\/uploads\/2025\/04\/21f72584-071b-4bae-ab40-e19dc1dfa7ff.png\",\"contentUrl\":\"https:\/\/www.neuro-outaouais.com\/wp-content\/uploads\/2025\/04\/21f72584-071b-4bae-ab40-e19dc1dfa7ff.png\",\"width\":180,\"height\":89,\"caption\":\"My blog\"},\"image\":{\"@id\":\"https:\/\/www.neuro-outaouais.com\/#\/schema\/logo\/image\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"\u00c9lectromyographie (EMG) - Neuro-Outaouais","description":"L\u2019\u00e9valuation d\u2019une maladie neuromusculaire d\u00e9bute avec un test d\u2019\u00e9lectromyographie (EMG) tel qu\u2019offert \u00e0 la Clinique Neuro-Outaouais","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.neuro-outaouais.com\/fr\/services\/electromyographie-emg\/","og_locale":"fr_CA","og_type":"article","og_title":"\u00c9lectromyographie (EMG) - Neuro-Outaouais","og_description":"L\u2019\u00e9valuation d\u2019une maladie neuromusculaire d\u00e9bute avec un test d\u2019\u00e9lectromyographie (EMG) tel qu\u2019offert \u00e0 la Clinique Neuro-Outaouais","og_url":"https:\/\/www.neuro-outaouais.com\/fr\/services\/electromyographie-emg\/","og_site_name":"Neuro-Outaouais","article_modified_time":"2025-12-15T21:51:03+00:00","og_image":[{"url":"https:\/\/www.neuro-outaouais.com\/wp-content\/uploads\/2025\/08\/Electromyography-1.jpg","type":"","width":"","height":""}],"twitter_card":"summary_large_image","twitter_misc":{"Estimation du temps de lecture":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.neuro-outaouais.com\/fr\/services\/electromyographie-emg\/","url":"https:\/\/www.neuro-outaouais.com\/fr\/services\/electromyographie-emg\/","name":"\u00c9lectromyographie (EMG) - Neuro-Outaouais","isPartOf":{"@id":"https:\/\/www.neuro-outaouais.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.neuro-outaouais.com\/fr\/services\/electromyographie-emg\/#primaryimage"},"image":{"@id":"https:\/\/www.neuro-outaouais.com\/fr\/services\/electromyographie-emg\/#primaryimage"},"thumbnailUrl":"https:\/\/www.neuro-outaouais.com\/wp-content\/uploads\/2025\/08\/Electromyography-1.jpg","datePublished":"2025-05-07T07:26:10+00:00","dateModified":"2025-12-15T21:51:03+00:00","description":"L\u2019\u00e9valuation d\u2019une maladie neuromusculaire d\u00e9bute avec un test d\u2019\u00e9lectromyographie (EMG) tel qu\u2019offert \u00e0 la Clinique Neuro-Outaouais","breadcrumb":{"@id":"https:\/\/www.neuro-outaouais.com\/fr\/services\/electromyographie-emg\/#breadcrumb"},"inLanguage":"fr-CA","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.neuro-outaouais.com\/fr\/services\/electromyographie-emg\/"]}]},{"@type":"ImageObject","inLanguage":"fr-CA","@id":"https:\/\/www.neuro-outaouais.com\/fr\/services\/electromyographie-emg\/#primaryimage","url":"https:\/\/www.neuro-outaouais.com\/wp-content\/uploads\/2025\/08\/Electromyography-1.jpg","contentUrl":"https:\/\/www.neuro-outaouais.com\/wp-content\/uploads\/2025\/08\/Electromyography-1.jpg"},{"@type":"BreadcrumbList","@id":"https:\/\/www.neuro-outaouais.com\/fr\/services\/electromyographie-emg\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.neuro-outaouais.com\/"},{"@type":"ListItem","position":2,"name":"Services","item":"https:\/\/www.neuro-outaouais.com\/fr\/services\/"},{"@type":"ListItem","position":3,"name":"\u00c9lectromyographie (EMG)"}]},{"@type":"WebSite","@id":"https:\/\/www.neuro-outaouais.com\/#website","url":"https:\/\/www.neuro-outaouais.com\/","name":"My blog","description":"We are a non-profit dedicated to expanding the breadth of medical care for people with neurological diseases.","publisher":{"@id":"https:\/\/www.neuro-outaouais.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.neuro-outaouais.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"fr-CA"},{"@type":"Organization","@id":"https:\/\/www.neuro-outaouais.com\/#organization","name":"My blog","url":"https:\/\/www.neuro-outaouais.com\/","logo":{"@type":"ImageObject","inLanguage":"fr-CA","@id":"https:\/\/www.neuro-outaouais.com\/#\/schema\/logo\/image\/","url":"https:\/\/www.neuro-outaouais.com\/wp-content\/uploads\/2025\/04\/21f72584-071b-4bae-ab40-e19dc1dfa7ff.png","contentUrl":"https:\/\/www.neuro-outaouais.com\/wp-content\/uploads\/2025\/04\/21f72584-071b-4bae-ab40-e19dc1dfa7ff.png","width":180,"height":89,"caption":"My blog"},"image":{"@id":"https:\/\/www.neuro-outaouais.com\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/www.neuro-outaouais.com\/fr\/wp-json\/wp\/v2\/pages\/6722","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.neuro-outaouais.com\/fr\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.neuro-outaouais.com\/fr\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.neuro-outaouais.com\/fr\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.neuro-outaouais.com\/fr\/wp-json\/wp\/v2\/comments?post=6722"}],"version-history":[{"count":1,"href":"https:\/\/www.neuro-outaouais.com\/fr\/wp-json\/wp\/v2\/pages\/6722\/revisions"}],"predecessor-version":[{"id":8745,"href":"https:\/\/www.neuro-outaouais.com\/fr\/wp-json\/wp\/v2\/pages\/6722\/revisions\/8745"}],"up":[{"embeddable":true,"href":"https:\/\/www.neuro-outaouais.com\/fr\/wp-json\/wp\/v2\/pages\/6702"}],"wp:attachment":[{"href":"https:\/\/www.neuro-outaouais.com\/fr\/wp-json\/wp\/v2\/media?parent=6722"}],"wp:term":[{"taxonomy":"wf_page_folders","embeddable":true,"href":"https:\/\/www.neuro-outaouais.com\/fr\/wp-json\/wp\/v2\/wf_page_folders?post=6722"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}