{"id":615,"date":"2021-11-03T18:23:03","date_gmt":"2021-11-03T22:23:03","guid":{"rendered":"https:\/\/www.torontopmrconference.com\/2021\/?page_id=615"},"modified":"2021-11-03T18:24:59","modified_gmt":"2021-11-03T22:24:59","slug":"program-cache","status":"publish","type":"page","link":"https:\/\/www.torontopmrconference.com\/2021\/program\/program-cache\/","title":{"rendered":""},"content":{"rendered":"\n<script src=\"https:\/\/ajax.googleapis.com\/ajax\/libs\/jquery\/3.6.0\/jquery.js\"><\/script>\n<link rel=\"stylesheet\" href=\"\/\/use.fontawesome.com\/releases\/v5.0.7\/css\/all.css\">\n\n\n\n<script>\n\/*\n * Define global variables\n *\/\nconst max_row_height = 50,                             \/\/ Maximum height of elemenent before it is labeled as \"expandable\"\n      min_window_width = 783;                           \/\/ Minimum width for expand button to be visible\nvar expanded;                                           \/\/ The currently expanded element\n\/*\n * Convert any rows above the specified height into dropdowns\n *\/\nfunction setup_dropdowns() {\n    $(\".schedule td\")\n        .each(\n            (_, elem) => {\n                const ROW = elem.querySelector(\"div, p, .concurrent\");\n                if (ROW != null && ROW.scrollHeight > max_row_height) {     \/\/ Create a dropdown for any rows above the given height\n                    \/\/ Tag this as a dropdown element \n                    ROW.classList.add(\"expandable\");\n                    \/\/ Create dropdown button\n                    const ICON = elem.querySelector(\"i\");\n                    ICON.classList.add(\"fas\", \"fa-chevron-circle-down\");\n                    ROW.prepend(ICON);\n                    \/\/ Enable Dropdown effect\n                    elem.setAttribute(\"style\", \"cursor: pointer\");          \/\/ Change cursor to pointer\n                    elem.addEventListener(\"click\", dropdown);\n                    ICON.addEventListener(\"click\", dropdown);\n                }\n            });\n}\n\/*\n * Perform dropdown function on click\n *\/\nfunction dropdown() {\n    window.event.stopPropagation();                                         \/\/ Prevents function from accidently running recursively\n    const IS_I = this.nodeName == \"I\";                                      \/\/ True if the button was clicked\n    const ELEM = IS_I ? this.parentElement.parentElement : this;            \/\/ Get the dropdown container\n    \/\/ If an element is already expanded, deactivate it\n    if (expanded != null) {                                                 \/\/ If a dropdown is open\n        expanded.setAttribute(\"style\", \"cursor: pointer\");                  \/\/ Set pointer style\n        if (window.innerWidth > min_window_width || expanded != ELEM)       \/\/ If active element is not this one\n            expanded.classList.remove(\"active\");                            \/\/ Close dropdown\n    }\n    if (IS_I && expanded == ELEM) expanded = null;                          \/\/ If current element is the button, and it was just minimized, exit\n    else {                                                                  \/\/ Otherwise, toggle this element's dropdown\n        const CONTENT = ELEM.nextElementSibling;\n        ELEM.classList.toggle(\"active\");\n        if (CONTENT != null && CONTENT.style != null)                                                   \/\/ If element's dropdown exists\n            CONTENT.style.maxHeight = CONTENT.style.maxHeight !== null ? null : CONTENT.scrollHeight + \"px\";     \/\/ Determine if dropdown is expanded or retracted\n        if (ELEM.classList.contains(\"active\")) ELEM.setAttribute(\"style\", null);                        \/\/ Remove pointer style\n        expanded = ELEM;\n    }\n}\n\/*\n * Load data from JSON files, then generate the HTML from that data.\n *\/\nwindow.addEventListener(\"DOMContentLoaded\", (_) => setup_dropdowns());\n\n$(\"#primary.content-area\").css(\"width\", \"100%\");\n<\/script>\n\n\n\n<style>\n:root {\n    --col-button: rgb(80, 81, 83);\n    --col-active: rgba(168, 14, 14, 0.04);\n    --col-divider: rgb(211, 211, 211);\n    --col-header-bg: rgb(219, 82, 89);\n    --col-header-fg: rgb(255, 255, 255);\n    --col-title: rgb(147, 35, 40);\n    --col-time: rgba(167, 46, 52, .1);\n    --col-small: rgb(111, 111, 111);\n    --expandable-height: 1.4em;\n    --row-padding: 8px;\n}\n\n.presenters sup,\n.associations li::before {\n    color: var(--col-header-bg);\n    font-size: x-small;\n    font-weight: bold;\n}\n\n.schedule,\n.schedule p,\n.schedule div,\n.schedule :is(ol, ul) { line-height: normal; }\n\n.associations {\n    counter-reset: item;\n    font-size: .9em;\n    list-style: none;\n    padding-left: 1em;\n}\n\n.schedule li {\n    padding: 0 0 .25em .5em;\n    position: relative;\n}\n\n.associations li::before {\n    content: counter(item);\n    counter-increment: item;\n    left: -1.75em;\n    position: absolute;\n    text-align: right;\n    width: 2em;\n}\n\n.concurrent {\n    display: flex;\n    flex-flow: column;\n    margin: calc(-1 * var(--row-padding) + 2px);\n}\n\n.concurrent > div {\n    min-height: calc(var(--expandable-height) + var(--row-padding) + 2px);\n    overflow: hidden;\n    padding: var(--row-padding);\n    width: 100%;\n}\n\n.concurrent > div:first-of-type {\n    border: solid var(--col-divider);\n    border-width: 0 0 1px;\n    padding-bottom: calc(var(--row-padding) + 2px);\n}\n\n.concurrent.expandable { min-height: calc(2 * var(--expandable-height) + 2 * var(--row-padding) + 4px); }\n\n.schedule.content {\n    text-align: center;\n    width: 100%;\n    table-layout: fixed;\n}\n.schedule thead th {\n    text-align: center;\n}\n\n:is(.content, .schedule) > tbody > tr:hover > td:hover { background-color: var(--col-active); }\n\n:is(.content, .schedule) > tbody > tr:hover > td:not(:hover) { background-color: unset; }\n\n.schedule.content td {\n    color: var(--col-header-bg);\n    cursor: pointer;\n    text-align: center;\n}\n\n.description {\n    margin-left: 1em;\n    text-align: justify;\n}\n\n.description > p {\n    margin: 0.2em 0 0 -.7em;\n    text-align: justify;\n}\n\n.description:last-child {\n    padding-bottom: .5em;\n}\n\n.details {\n    padding-left: .75em;\n}\n.details .description {\n    padding-right: .75em;\n}\n.details h6 + .description {\n    margin-top: 0;\n}\n\n.expandable {\n    max-height: var(--expandable-height);\n    overflow: hidden;\n    transition: all .2s ease-out;\n}\n\n.expandable::first-line { padding-right: 2em; }\n\n.fas {\n    color: var(--col-button);\n    display: none;\n    margin-top: .2em;\n}\n\n.schedule :is(ol, ul):last-child { margin-bottom: 0; }\n\n.schedule tr :is(td, th) {\n    border-style: solid;\n    border-width: 1px 0 0 1px;\n    vertical-align: top;\n}\n\n.schedule :is(thead, tbody th > span) {\n    position: sticky;\n    position: -webkit-sticky;\n    top: -1px;\n    z-index: 1;\n}\n\n.schedule {\n    border-collapse: separate;\n    border-spacing: 0;\n    margin-bottom: 2em;\n}\n\n.schedule :is(h2, h3, h4, h5, h6) {\n    all: unset;\n    font-size: 1em;\n    font-weight: 700;\n}\n\n.schedule :is(h3, h4) { font-style: italic; }\n\n.schedule :is(h2) {\n    color: var(--col-title);\n    display: inline-block;\n    font-size: 1.2em;\n    margin: 0;\n    padding: 0;\n    margin-left: -.5em;\n}\n\n.schedule h5 {\n    display: block;\n    margin-bottom: .5em;\n    padding-top: .15em;\n}\n.schedule h6 {\n    display: block;\n    margin-top: .5em;\n}\n\n.schedule p {\n    font-size: medium;\n}\n.schedule p + p {\n    margin-top: .5em;\n}\n\n.schedule small {\n    display: inline-flex;\n    margin-right: .35em;\n    max-width: 5em;\n    vertical-align: super;\n    color: var(--col-small);\n}\n\n.schedule tbody > tr:last-child > :first-child { border-bottom-left-radius: 10px;\/* border-left: solid 1px var(--col-divider); **\/}\n\n.schedule tbody > tr:last-child > :last-child { border-bottom-right-radius: 10px; }\n\n.schedule tbody th {\n    background-color: var(--col-time);\n    text-align: left;\n}\n\n.schedule td {\n    cursor: text;\n    transition: all .2s ease-out;\n}\n\n.schedule td small { transition: all .2s ease-out; }\n\n.schedule td :not(:only-child) span:last-of-type {\n    float: right;\n    text-align: right;\n    color: var(--col-title);\n    padding-right: .5em;\n}\n\n.schedule td .expandable > h2 + div { \n    float: right; \n    padding-bottom: .25em;\n}\n\n.schedule td span:last-of-type:has(em) {\n    max-width: 20em;\n}\n    \n.schedule td span:last-of-type > em {\n    color: var(--col-small);\n    font-size: 90%;\n    display: block;\n}\n\n.schedule td.active :not(h2) {\n    max-height: 1000em;\n    transition: all .2s ease-in;\n    transition: max-height .2s ease-in;\n}\n\n.schedule :is(.details, td.active, td.active small) { transition: all .2s ease-in; }\n\n.schedule td.active {\n    background-color: var(--col-active);\n    box-shadow: 1px 2px 4px var(--col-button) inset;\n}\n\n.schedule td.active small {\n    margin-right: 0;\n    max-width: 0;\n    opacity: 0;\n}\n\n.schedule td:not(.active) > :is(.abstract, .concurrent) h5 { padding-right: .5em; }\n\n.schedule thead {\n    background-color: var(--col-header-bg);\n    font-size: larger;\n}\n.schedule .details ul {\n    margin-bottom: 0;\n}\n\n.schedule thead > tr > th { \n    border-radius: 10px 10px 0 0;\n    color: var(--col-header-fg);\n    letter-spacing: .5px;\n}\n\n.schedule tr > :last-child { border-right-width: 1px; border-right-style: solid; }\n\n.schedule tr:last-child > :is(th, td) { border-bottom-width: 1px; border-bottom-style: solid; }\n\n@media screen and (max-width: 475px) {\n    #main > article {\n        margin: 0;\n        padding: 0;\n    }\n\n    .schedule :is(td:only-child, .concurrent) > div { padding-left: 0; }\n\n    .schedule tbody .active h5 { word-break: break-word; }\n\n    .schedule tbody { font-size: 10pt; }\n\n    .schedule tbody h5 {\n        font-size: 1.1em;\n        word-break: break-all;\n    }\n\n    .schedule tbody td { padding: 4px; }\n\n    .schedule tbody th {\n        font-size: small;\n        padding: 4px;\n    }\n\n    .schedule tbody th > :first-child { padding-top: 4px; }\n\n    .schedule thead { font-size: 1em; }\n\n    .expandable.concurrent > div:not(:first-of-type) { padding-top: var(--row-padding); }\n}\n\n@media screen and (min-width: 601px) {\n    .schedule tbody th > :first-child {\n        padding-top: 10px;\n        white-space: nowrap;\n    }\n    .schedule td span:last-of-type > em {\n        display: inline;\n    }\n}\n\n@media screen and (min-width: 783px) {\n    .expandable.concurrent {\n        max-height: calc(var(--expandable-height) + var(--row-padding) + 2px);\n        min-height: var(--expandable-height);\n    }\n\n    .expandable.concurrent > div { min-height: var(--expandable-height); }\n\n    .concurrent {\n        flex-flow: row nowrap;\n        padding-right: var(--row-padding);\n    }\n\n    .concurrent .fas {\n        margin-left: -1em;\n        margin-top: var(--row-padding);\n    }\n\n    .concurrent > div:first-of-type {\n        border: var(--col-divider) solid;\n        border-width: 0 1px 0 0;\n        padding-bottom: 0;\n    }\n\n    .concurrent > div:not(:first-of-type) { margin-left: 0; }\n\n    .fas {\n        cursor: pointer;\n        display: block;\n        float: right;\n        height: 1em;\n        order: 999;\n        transition: transform .4s ease-in;\n        width: 1em;\n    }\n\n    .schedule td.active i.fas {\n        transform: rotate(180deg);\n        transition: transform .4s ease-out;\n    }\n}\n<\/style>\n\n\n\n<table class=\"content schedule\">\n    <thead>\n        <tr>\n            <th colspan=\"3\">Jump to a specific Day<\/th>\n        <\/tr>\n    <\/thead>\n    <tbody>\n        <tr>\n            <td>Fri., Nov. 5 (Brain Injury)<\/td>\n            <td>Fri., Nov. 12 (SCI)<\/td>\n            <td>Sat., Nov. 13 (ALS\/MS &amp; Cancer)<\/td>\n        <\/tr>\n    <\/tbody>\n<\/table>\n<table class=\"schedule\" id=\"day1\">\n    <thead>\n        <tr>\n            <th colspan=\"2\">Friday, November 5 (Brain Injury)<\/th>\n        <\/tr>\n    <\/thead>\n    <tbody>\n        <tr>\n            <th><span>1200-1205<\/span><\/th>\n            <td>\n                <div class=\"details\"><i class=\"fas\"><\/i>\n                    <h2>Introduction<\/h2><span>\n                        <span>Chantal Vaidyanath<\/span><\/span>\n                <\/div>\n            <\/td>\n        <\/tr>\n        <tr>\n            <th><span>1205-1225<\/span><\/th>\n            <td style=\"cursor: pointer\">\n                <div class=\"details expandable\" ><i class=\"fas fa-chevron-circle-down\"><\/i>\n                    <h2>Neuroradiolgy &amp; TBI Controversies<\/h2><span>\n                        <span>Gordon Cheung<\/span><\/span>\n                    <div class=\"description\">\n                        <p>Brain SPECT is not a new imaging technique, nor is it considered an <q>advanced neurodiagnostic<\/q> tool, as some suggest. Brain SPECT originated in the\n                            70&#8217;s for evaluation of strokes, seizures and brain tumours and was established in the early 80&#8217;s for studying dementia, head trauma, and\n                            neuropsychiatric diseases. It is an old imaging technique that never lived up to its hype. <q>Despite all this promise and interest, brain SPECT never\n                                quite advanced to the levels that were anticipated, and it soon started to fizzle out. In the early 2000s, the market moved on, and interest shifted\n                                to new modalities, like PET and fMRI. Today, the overall brain SPECT procedure volume accounts for less than 1% of all nuclear medicine studies (US\n                                market).<\/q> Although some may believe in a SPECT revival for TBI due to quantitative analysis, the issues of non-specificity, lack of a gold\n                            standard, unknown false positivity rate (likely high) etc., are still present.<\/p>\n                    <\/div>\n                    <h6>At the end of this session, participants will be able to: <\/h6>\n                    <ul class=\"goals\">\n                        <li>Identify objective imaging studies for TBI<\/li>\n                        <li>Assess if SPECT is a Medically Recognized Brain Diagnostic Technology<\/li>\n                        <li>Select the indications for brain SPECT<\/li>\n                        <li>Describe the limitations of brain SPECT<\/li>\n                        <li>Assess if SPECT is appropriate for the evaluation of TBI<\/li>\n                    <\/ul>\n                    <h6>Target Audience:<\/h6>\n                    <div class=\"description\"> Faculty, Residents <\/div>\n                    <h6>CanMEDS Roles:<\/h6>\n                    <div class=\"description\"> Medical Expert, Leader, Professional <\/div>\n                    <h6>Declaration of COI:<\/h6>\n                    <div class=\"description\"> No conflicts to declare. <\/div>\n                <\/div>\n            <\/td>\n        <\/tr>\n        <tr>\n            <th><span>1225-1240<\/span><\/th>\n            <td>\n                <div class=\"details\"><i class=\"fas\"><\/i>\n                    <span>\n                        <h4>Questions &amp; Discussion<\/h4>\n                    <\/span>\n                <\/div>\n            <\/td>\n        <\/tr>\n        <tr>\n            <th><span>1240-1305<\/span><\/th>\n            <td style=\"cursor: pointer\">\n                <div class=\"details expandable\" ><i class=\"fas fa-chevron-circle-down\"><\/i>\n                    <h2>Functional Neurologic Disorders<\/h2><span>\n                        <span>Anthony Feinstein<\/span><\/span>\n                    <div class=\"description\">\n                        <p>My talk with start with a brief historical overview of FND (hysteria), followed by a case report, a summary of brain changes liked to FND and close with\n                            some thoughts on optimal treatment.<\/p>\n                    <\/div>\n                    <h6>At the end of this session, participants will be able to: <\/h6>\n                    <ul class=\"goals\">\n                        <li>Describe the clinical characteristics of FND<\/li>\n                        <li>Identify the functional brain changes associated with FND<\/li>\n                        <li>Define how best to manage FND.<\/li>\n                    <\/ul>\n                    <h6>Target Audience:<\/h6>\n                    <div class=\"description\"> Faculty, Residents <\/div>\n                    <h6>CanMEDS Roles:<\/h6>\n                    <div class=\"description\"> Communicator, Scholar, Professional <\/div>\n                    <h6>Declaration of COI:<\/h6>\n                    <div class=\"description\"> Speaker&#8217;s honorarium from Biogen, Novartis, Sanofi-Genzyme, Roche. Grant support from MS Society of Canada, Bristol Myers Squibb.\n                    <\/div>\n                <\/div>\n            <\/td>\n        <\/tr>\n        <tr>\n            <th><span>1305-1320<\/span><\/th>\n            <td>\n                <div class=\"details\"><i class=\"fas\"><\/i>\n                    <span>\n                        <h4>Questions &amp; Discussion<\/h4>\n                    <\/span>\n                <\/div>\n            <\/td>\n        <\/tr>\n        <tr>\n            <th><span>1320-1345<\/span><\/th>\n            <td style=\"cursor: pointer\">\n                <div class=\"details expandable\" ><i class=\"fas fa-chevron-circle-down\"><\/i>\n                    <h2>Is TBI a Chronic Disease?<\/h2><span>\n                        <span>Ross Zafonte<\/span><\/span>\n                    <div class=\"description\">\n                        <p>Traumatic brain injury has been associated with neurodegenerative disease. This lecture, will help define the existing literature in the domain of\n                            pathology and the association with multiple phenotypes. The discussion will also describe the putative linkage between brain injury and multiple medical\n                            comorbid conditions..<\/p>\n                    <\/div>\n                    <h6>At the end of this session, participants will be able to: <\/h6>\n                    <ul class=\"goals\">\n                        <li>Cite the biologic and epidemiologic data linking brain injury to chronic disease<\/li>\n                        <li>Assess the strengths and limitations in the linkage between brain injury and chronic disease<\/li>\n                        <li>Critique the existing literature on chronic brain injury and brain health<\/li>\n                        <li>Describe the critical pathological and phenotypic factors associated with declines in chronic brain health<\/li>\n                        <li>Reflect on a plan to distinguish medical comorbids and there contribution to brain health<\/li>\n                    <\/ul>\n                    <h6>Target Audience:<\/h6>\n                    <div class=\"description\"> Faculty, Residents <\/div>\n                    <h6>CanMEDS Roles:<\/h6>\n                    <div class=\"description\"> Medical Expert (the integrating role) <\/div>\n                    <h6>Declaration of COI:<\/h6>\n                    <div class=\"description\"> Receipt of honoraria on Scientific Advisory Board from myomo. On Biodirection Scientific Advisory Board. Research for NIH, NIDILRR,\n                        DOD. <\/div>\n                <\/div>\n            <\/td>\n        <\/tr>\n        <tr>\n            <th><span>1345-1355<\/span><\/th>\n            <td>\n                <div class=\"details\"><i class=\"fas\"><\/i>\n                    <span>\n                        <h4>Questions &amp; Discussion<\/h4>\n                    <\/span>\n                <\/div>\n            <\/td>\n        <\/tr>\n        <tr>\n            <th><span>1355-1400<\/span><\/th>\n            <td>\n                <div class=\"details\"><i class=\"fas\"><\/i>\n                    <h2>Wrap up &amp; Applause<\/h2><span>\n                    <\/span>\n                <\/div>\n            <\/td>\n        <\/tr>\n    <\/tbody>\n<\/table>\n<table class=\"schedule\" id=\"day2\">\n    <thead>\n        <tr>\n            <th colspan=\"2\">Friday, November 12 (SCI)<\/th>\n        <\/tr>\n    <\/thead>\n    <tbody>\n        <tr>\n            <th><span>1200-1205<\/span><\/th>\n            <td>\n                <div class=\"details\"><i class=\"fas\"><\/i>\n                    <h2>Introduction<\/h2><span>\n                        <span>Hossein Amani<\/span><\/span>\n                <\/div>\n            <\/td>\n        <\/tr>\n        <tr>\n            <th><span>1205-1230<\/span><\/th>\n            <td>\n                <div class=\"details\"><i class=\"fas\"><\/i>\n                    <h2>SCI &amp; Bone Health<\/h2><span>\n                        <span>Cathy Craven<\/span><\/span>\n                <\/div>\n            <\/td>\n        <\/tr>\n        <tr>\n            <th><span>1230-1245<\/span><\/th>\n            <td>\n                <div class=\"details\"><i class=\"fas\"><\/i>\n                    <span>\n                        <h4>Questions &amp; Discussion<\/h4>\n                    <\/span>\n                <\/div>\n            <\/td>\n        <\/tr>\n        <tr>\n            <th><span>1245-1310<\/span><\/th>\n            <td style=\"cursor: pointer\">\n                <div class=\"details expandable\" ><i class=\"fas fa-chevron-circle-down\"><\/i>\n                    <h2>Intrathecal Baclofen For Generalized Spasticity: An Overview And Update For 2021<\/h2><span>\n                        <span>Anthony Burns<\/span><\/span>\n                    <h6>Target Audience:<\/h6>\n                    <div class=\"description\"> Faculty, Residents, Medical Students <\/div>\n                    <h6>CanMEDS Roles:<\/h6>\n                    <div class=\"description\"> Medical Expert (the integrating role), Scholar, Professional <\/div>\n                <\/div>\n            <\/td>\n        <\/tr>\n        <tr>\n            <th><span>1310-1325<\/span><\/th>\n            <td>\n                <div class=\"details\"><i class=\"fas\"><\/i>\n                    <span>\n                        <h4>Questions &amp; Discussion<\/h4>\n                    <\/span>\n                <\/div>\n            <\/td>\n        <\/tr>\n        <tr>\n            <th><span>1325-1345<\/span><\/th>\n            <td>\n                <div class=\"details\"><i class=\"fas\"><\/i>\n                    <h2>Botulin Toxin (Bowel &amp; Bladder)<\/h2><span>\n                        <span>Sender Herschorn<\/span><\/span>\n                <\/div>\n            <\/td>\n        <\/tr>\n        <tr>\n            <th><span>1345-1355<\/span><\/th>\n            <td>\n                <div class=\"details\"><i class=\"fas\"><\/i>\n                    <span>\n                        <h4>Questions &amp; Discussion<\/h4>\n                    <\/span>\n                <\/div>\n            <\/td>\n        <\/tr>\n        <tr>\n            <th><span>1355-1400<\/span><\/th>\n            <td>\n                <div class=\"details\"><i class=\"fas\"><\/i>\n                    <h2>Wrap up &amp; Applause<\/h2><span>\n                    <\/span>\n                <\/div>\n            <\/td>\n        <\/tr>\n    <\/tbody>\n<\/table>\n<table class=\"schedule\" id=\"day3\">\n    <thead>\n        <tr>\n            <th colspan=\"2\">Saturday, November 13 (ALS\/MS &amp; Cancer)<\/th>\n        <\/tr>\n    <\/thead>\n    <tbody>\n        <tr>\n            <th><span>1200-1205<\/span><\/th>\n            <td>\n                <div class=\"details\"><i class=\"fas\"><\/i>\n                    <h2>Introduction<\/h2><span>\n                        <span>Larry Robinson<\/span><\/span>\n                <\/div>\n            <\/td>\n        <\/tr>\n        <tr>\n            <th><span>1205-1230<\/span><\/th>\n            <td style=\"cursor: pointer\">\n                <div class=\"details expandable\" ><i class=\"fas fa-chevron-circle-down\"><\/i>\n                    <h2>ALS Update<\/h2><span>\n                        <span>Lorne Zinman<\/span><\/span>\n                    <div class=\"description\">\n                        <p>The session will provide an update on the latest ALS diagnostic criteria, management and research developments.<\/p>\n                    <\/div>\n                    <h6>At the end of this session, participants will be able to: <\/h6>\n                    <ul class=\"goals\">\n                        <li>Describe the latest ALS diagnostic criteria and management<\/li>\n                    <\/ul>\n                    <h6>Target Audience:<\/h6>\n                    <div class=\"description\"> Faculty, Residents, <\/div>\n                    <h6>CanMEDS Roles:<\/h6>\n                    <div class=\"description\"> Medical Expert (the integrating role), Communicator, Collaborator, Leader, Scholar <\/div>\n                <\/div>\n            <\/td>\n        <\/tr>\n        <tr>\n            <th><span>1230-1245<\/span><\/th>\n            <td>\n                <div class=\"details\"><i class=\"fas\"><\/i>\n                    <span>\n                        <h4>Questions &amp; Discussion<\/h4>\n                    <\/span>\n                <\/div>\n            <\/td>\n        <\/tr>\n        <tr>\n            <th><span>1245-1310<\/span><\/th>\n            <td style=\"cursor: pointer\">\n                <div class=\"details expandable\" ><i class=\"fas fa-chevron-circle-down\"><\/i>\n                    <h2>Advanced Wound Care 101<\/h2><span>\n                        <span>Morty Eisenberg<\/span><\/span>\n                    <div class=\"description\">\n                        <p>A review of fundamental principles used to manage wounds appropriately, based on best practice recommendations.<\/p>\n                    <\/div>\n                    <h6>At the end of this session, participants will be able to: <\/h6>\n                    <ul class=\"goals\">\n                        <li>Describe the <q>wound healing paradigm<\/q>, as a strategy for managing wounds<\/li>\n                        <li>List the components of local wound care<\/li>\n                        <li>Discuss the principles of moist wound healing in choosing appropriate dressings<\/li>\n                    <\/ul>\n                    <h6>Target Audience:<\/h6>\n                    <div class=\"description\"> Faculty, Residents, Medical Students, nurses <\/div>\n                    <h6>CanMEDS Roles:<\/h6>\n                    <div class=\"description\"> Medical Expert (the integrating role), Communicator, Collaborator <\/div>\n                <\/div>\n            <\/td>\n        <\/tr>\n        <tr>\n            <th><span>1310-1325<\/span><\/th>\n            <td>\n                <div class=\"details\"><i class=\"fas\"><\/i>\n                    <span>\n                        <h4>Questions &amp; Discussion<\/h4>\n                    <\/span>\n                <\/div>\n            <\/td>\n        <\/tr>\n        <tr>\n            <th><span>1325-1345<\/span><\/th>\n            <td style=\"cursor: pointer\">\n                <div class=\"details expandable\" ><i class=\"fas fa-chevron-circle-down\"><\/i>\n                    <h2>Targeted Muscle Reinnervation Surgery<\/h2><span>\n                        <span>Amanda Mayo<\/span><\/span>\n                    <div class=\"description\">\n                        <p>Targeted Muscle Reinnervation surgery for upper and lower extremity amputations. A review of the procedure, initially established for enhanced\n                            myoelectric control and more recently for neuroma and phantom limb prevention and management.<\/p>\n                    <\/div>\n                    <h6>At the end of this session, participants will be able to: <\/h6>\n                    <ul class=\"goals\">\n                        <li>Identify potential limb loss patients that may benefit from TMR<\/li>\n                        <li>Describe benefits of TMR for function and pain management post limb loss<\/li>\n                    <\/ul>\n                    <h6>Target Audience:<\/h6>\n                    <div class=\"description\"> Faculty, Residents, Medical Students <\/div>\n                    <h6>CanMEDS Roles:<\/h6>\n                    <div class=\"description\"> Medical Expert (the integrating role), Collaborator <\/div>\n                <\/div>\n            <\/td>\n        <\/tr>\n        <tr>\n            <th><span>1345-1355<\/span><\/th>\n            <td>\n                <div class=\"details\"><i class=\"fas\"><\/i>\n                    <span>\n                        <h4>Questions &amp; Discussion<\/h4>\n                    <\/span>\n                <\/div>\n            <\/td>\n        <\/tr>\n        <tr>\n            <th><span>1355-1400<\/span><\/th>\n            <td>\n                <div class=\"details\"><i class=\"fas\"><\/i>\n                    <h2>Wrap up &amp; Applause<\/h2><span>\n                    <\/span>\n                <\/div>\n            <\/td>\n        <\/tr>\n    <\/tbody>\n<\/table>\n ","protected":false},"excerpt":{"rendered":"<p>Jump to a specific Day Fri., Nov. 5 (Brain Injury) Fri., Nov. 12 (SCI) Sat., Nov. 13 (ALS\/MS &amp; Cancer)&hellip;<\/p>\n","protected":false},"author":2,"featured_media":0,"parent":158,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-615","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/www.torontopmrconference.com\/2021\/wp-json\/wp\/v2\/pages\/615","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.torontopmrconference.com\/2021\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.torontopmrconference.com\/2021\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.torontopmrconference.com\/2021\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.torontopmrconference.com\/2021\/wp-json\/wp\/v2\/comments?post=615"}],"version-history":[{"count":8,"href":"https:\/\/www.torontopmrconference.com\/2021\/wp-json\/wp\/v2\/pages\/615\/revisions"}],"predecessor-version":[{"id":623,"href":"https:\/\/www.torontopmrconference.com\/2021\/wp-json\/wp\/v2\/pages\/615\/revisions\/623"}],"up":[{"embeddable":true,"href":"https:\/\/www.torontopmrconference.com\/2021\/wp-json\/wp\/v2\/pages\/158"}],"wp:attachment":[{"href":"https:\/\/www.torontopmrconference.com\/2021\/wp-json\/wp\/v2\/media?parent=615"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}