CINXE.COM
Question of the Week
<!doctype html > <html xmlns="http://www.w3.org/1999/xhtml" class=""> <head> <meta charset="utf-8"> <script type="text/javascript"> window._currentDevice = 'desktop'; window.Parameters = window.Parameters || { HomeUrl: 'https://www.invercargillaccountant.co.nz/', AccountUUID: 'e26db94d97f040b1873203eb8e1d1509', SystemID: 'US_DIRECT_PRODUCTION', SiteAlias: '4ef403d7', SiteType: atob('RFVEQU9ORQ=='), PublicationDate: 'Mon Feb 03 22:01:53 UTC 2025', ExternalUid: null, IsSiteMultilingual: false, InitialPostAlias: '', InitialPostPageUuid: '', InitialDynamicItem: '', DynamicPageInfo: { isDynamicPage: false, base64JsonRowData: 'null', }, InitialPageAlias: 'd1-internal-blog-post', InitialPageUuid: '35566a7cd7fe4003a547f74927bc29dd', InitialPageId: '1170178919', InitialEncodedPageAlias: 'ZDEtaW50ZXJuYWwtYmxvZy1wb3N0', InitialHeaderUuid: '05a1da654fbd4c3f8dbb482e3de81d21', CurrentPageUrl: '', IsCurrentHomePage: false, AllowAjax: false, AfterAjaxCommand: null, HomeLinkText: 'Back To Home', UseGalleryModule: false, CurrentThemeName: 'Layout Theme', ThemeVersion: '51580', DefaultPageAlias: '', RemoveDID: true, WidgetStyleID: null, IsHeaderFixed: true, IsHeaderSkinny: true, IsBfs: true, StorePageAlias: 'null', StorePagesUrls: 'e30=', IsNewStore: 'false', StorePath: '', StoreId: 'null', StoreVersion: 0, StoreBaseUrl: '', StoreCleanUrl: true, StoreDisableScrolling: true, IsStoreSuspended: false, HasCustomDomain: true, SimpleSite: false, showCookieNotification: false, cookiesNotificationMarkup: 'null', translatedPageUrl: '', isFastMigrationSite: false, sidebarPosition: 'NA', currentLanguage: 'null', currentLocale: 'null', NavItems: '{}', errors: { general: 'There was an error connecting to the page.<br/> Make sure you are not offline.', password: 'Incorrect name/password combination', tryAgain: 'Try again' }, NavigationAreaParams: { ShowBackToHomeOnInnerPages: true, NavbarSize: 6, NavbarLiveHomePage: 'https://www.invercargillaccountant.co.nz/', BlockContainerSelector: '.dmBody', NavbarSelector: '#dmNav:has(a)', SubNavbarSelector: '#subnav_main' }, hasCustomCode: true, planID: '7', customTemplateId: 'null', siteTemplateId: 'null', productId: 'DM_DIRECT', disableTracking: false, pageType: 'BLOG_POST_TEMPLATE', isRuntimeServer: true, isInEditor: false, hasNativeStore: false, defaultLang: 'null', hamburgerMigration: null, isFlexSite : false }; window.Parameters.LayoutID = {}; window.Parameters.LayoutID[window._currentDevice] = 9; window.Parameters.LayoutVariationID = {}; window.Parameters.LayoutVariationID[window._currentDevice] = 5; </script> <!-- Injecting site-wide to the head --> <!-- End Injecting site-wide to the head --> <!-- Inject secured cdn script --> <!-- ========= Meta Tags ========= --> <script> try { if ( navigator.serviceWorker && navigator.serviceWorker.getRegistrations && location.protocol === 'https:' ) { // remove all service workers navigator.serviceWorker .getRegistrations() .then(function (registrations) { if (registrations && registrations.length) { console.log('unregistering service workers'); registrations.forEach(function (registration) { registration.unregister(); }); } }); // clear caches if (caches) { caches.keys().then(function (keyList) { if (keyList && keyList.length) { console.log('deleting caches'); keyList.forEach(function (key) { if (key && key.indexOf('druntime') === 0) { caches.delete(key); } }); } }); } } } catch (err) { // not a secured location } </script> <link rel="canonical" href="https://www.invercargillaccountant.co.nz/question-of-the-week"> <meta id="view" name="viewport" content="initial-scale=1, minimum-scale=1, maximum-scale=5, viewport-fit=cover"> <meta name="apple-mobile-web-app-capable" content="yes"> <!--Add favorites icons--> <link rel="shortcut icon" type="image/x-icon" href="https://static.cdn-website.com/runtime/editor/product/reseller/images/favicon_one_reseller.ico"/> <!-- End favorite icons --> <link rel="preconnect" href="https://lirp.cdn-website.com/"/> <!-- render the required CSS and JS in the head section --> <script id='d-js-dmapi'> window.SystemID = 'US_DIRECT_PRODUCTION'; if (!window.dmAPI) { window.dmAPI = { registerExternalRuntimeComponent: function () { }, getCurrentDeviceType: function () { return window._currentDevice; }, runOnReady: (ns, fn) => { const safeFn = dmAPI.toSafeFn(fn); ns = ns || 'global_' + Math.random().toString(36).slice(2, 11); const eventName = 'afterAjax.' + ns; if (document.readyState === 'complete') { $.DM.events.off(eventName).on(eventName, safeFn); setTimeout(function () { safeFn({ isAjax: false, }); }, 0); } else { window?.waitForDeferred?.('dmAjax', () => { $.DM.events.off(eventName).on(eventName, safeFn); safeFn({ isAjax: false, }); }); } }, toSafeFn: (fn) => { if (fn?.safe) { return fn; } const safeFn = function (...args) { try { return fn?.apply(null, args); } catch (e) { console.log('function failed ' + e.message); } }; safeFn.safe = true; return safeFn; } }; } if (!window.requestIdleCallback) { window.requestIdleCallback = function (fn) { setTimeout(fn, 0); } } </script> <!-- loadCSS function header.jsp--> <script id="d-js-load-css"> /** * There are a few <link> tags with CSS resource in them that are preloaded in the page * in each of those there is a "onload" handler which invokes the loadCSS callback * defined here. * We are monitoring 3 main CSS files - the runtime, the global and the page. * When each load we check to see if we can append them all in a batch. If threre * is no page css (which may happen on inner pages) then we do not wait for it */ (function () { let cssLinks = {}; function loadCssLink(link) { link.onload = null; link.rel = "stylesheet"; link.type = "text/css"; } function checkCss() { const pageCssLink = document.querySelector("[id*='CssLink']"); const widgetCssLink = document.querySelector("[id*='widgetCSS']"); if (cssLinks && cssLinks.runtime && cssLinks.global && (!pageCssLink || cssLinks.page) && (!widgetCssLink || cssLinks.widget)) { const storedRuntimeCssLink = cssLinks.runtime; const storedPageCssLink = cssLinks.page; const storedGlobalCssLink = cssLinks.global; const storedWidgetCssLink = cssLinks.widget; storedGlobalCssLink.disabled = true; loadCssLink(storedGlobalCssLink); if (storedPageCssLink) { storedPageCssLink.disabled = true; loadCssLink(storedPageCssLink); } if(storedWidgetCssLink) { storedWidgetCssLink.disabled = true; loadCssLink(storedWidgetCssLink); } storedRuntimeCssLink.disabled = true; loadCssLink(storedRuntimeCssLink); requestAnimationFrame(() => { setTimeout(() => { storedRuntimeCssLink.disabled = false; storedGlobalCssLink.disabled = false; if (storedPageCssLink) { storedPageCssLink.disabled = false; } if (storedWidgetCssLink) { storedWidgetCssLink.disabled = false; } // (SUP-4179) Clear the accumulated cssLinks only when we're // sure that the document has finished loading and the document // has been parsed. if(document.readyState === 'interactive') { cssLinks = null; } }, 0); }); } } function loadCSS(link) { try { var urlParams = new URLSearchParams(window.location.search); var noCSS = !!urlParams.get("nocss"); var cssTimeout = urlParams.get("cssTimeout") || 0; if (noCSS) { return; } if (link.href && link.href.includes("d-css-runtime")) { cssLinks.runtime = link; checkCss(); } else if (link.id === "siteGlobalCss") { cssLinks.global = link; checkCss(); } else if (link.id && link.id.includes("CssLink")) { cssLinks.page = link; checkCss(); } else if (link.id && link.id.includes("widgetCSS")) { cssLinks.widget = link; checkCss(); } else { requestIdleCallback(function () { window.setTimeout(function () { loadCssLink(link); }, parseInt(cssTimeout, 10)); }); } } catch (e) { throw e } } window.loadCSS = window.loadCSS || loadCSS; })(); </script> <script data-role="deferred-init" type="text/javascript"> /* usage: window.getDeferred(<deferred name>).resolve() or window.getDeferred(<deferred name>).promise.then(...)*/ function Def() { this.promise = new Promise((function (a, b) { this.resolve = a, this.reject = b }).bind(this)) } const defs = {}; window.getDeferred = function (a) { return null == defs[a] && (defs[a] = new Def), defs[a] } window.waitForDeferred = function (b, a, c) { let d = window?.getDeferred?.(b); d ? d.promise.then(a) : c && ["complete", "interactive"].includes(document.readyState) ? setTimeout(a, 1) : c ? document.addEventListener("DOMContentLoaded", a) : console.error(`Deferred does not exist`); }; </script> <style id="forceCssIncludes"> /* This file is auto-generated from a `scss` file with the same name */ .videobgwrapper{overflow:hidden;position:absolute;z-index:0;width:100%;height:100%;top:0;left:0;pointer-events:none;border-radius:inherit}.videobgframe{position:absolute;width:101%;height:100%;top:50%;left:50%;transform:translateY(-50%) translateX(-50%);object-fit:fill}#dm video.videobgframe{margin:0}@media (max-width:767px){.dmRoot .dmPhotoGallery.newPhotoGallery:not(.photo-gallery-done){min-height:80vh}}@media (min-width:1025px){.dmRoot .dmPhotoGallery.newPhotoGallery:not(.photo-gallery-done){min-height:45vh}}@media (min-width:768px) and (max-width:1024px){.responsiveTablet .dmPhotoGallery.newPhotoGallery:not(.photo-gallery-done){min-height:45vh}}#dm [data-show-on-page-only]{display:none!important}#dmRoot div.stickyHeaderFix div.site_content{margin-top:0!important}#dmRoot div.stickyHeaderFix div.hamburger-header-container{position:relative} </style> <style id="cssVariables" type="text/css"> </style> <!-- Google Fonts Include --> <!-- loadCSS function fonts.jsp--> <link type="text/css" rel="stylesheet" href="https://irp.cdn-website.com/fonts/css2?family=Cabin:ital,wght@0,400..700;1,400..700&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Jura:ital,wght@0,300..700;1,300..700&subset=latin-ext&display=swap" /> <!-- RT CSS Include d-css-runtime-desktop-one-package-structured-global--> <link rel="stylesheet" type="text/css" href="https://static.cdn-website.com/mnlt/production/5243/_dm/s/rt/dist/css/d-css-runtime-desktop-one-package-structured-global.min.css" /> <!-- End of RT CSS Include --> <link type="text/css" rel="stylesheet" href="https://irp.cdn-website.com/WIDGET_CSS/3d70dae2824f3be57214bb7672a07b2b.css" id="widgetCSS" /> <!-- Support `img` size attributes --> <style>img[width][height] { height: auto; }</style> <!-- Support showing sticky element on page only --> <style> body[data-page-alias="d1-internal-blog-post"] #dm [data-show-on-page-only="d1-internal-blog-post"] { display: block !important; } </style> <!-- This is populated in Ajax navigation --> <style id="pageAdditionalWidgetsCss" type="text/css"> </style> <!-- Site CSS --> <link type="text/css" rel="stylesheet" href="https://irp.cdn-website.com/4ef403d7/files/4ef403d7_1.min.css?v=259" id="siteGlobalCss" /> <style id="customWidgetStyle" type="text/css"> </style> <style id="innerPagesStyle" type="text/css"> </style> <style id="additionalGlobalCss" type="text/css" > </style> <style id="pagestyle" type="text/css"> *#dm *.dmBody div.u_1494016565 { background-color: rgb(1, 77, 111) !important; } </style> <style id="pagestyleDevice" type="text/css"> *#dm *.dmBody h3.u_1374694940 { margin-bottom: 8px !important; margin-top: 8px !important; } *#dm *.dmBody div.u_1494016565 { padding-top: 14px !important; padding-bottom: 15px !important; } *#dm *.dmBody div.u_1445510135 { padding-top: 0px !important; padding-left: 0px !important; padding-bottom: 0px !important; float: none !important; margin-right: 0px !important; margin-left: 0px !important; top: 0px !important; max-width: calc(100% - 0px) !important; left: 0px !important; width: 100% !important; margin-top: -25px !important; position: relative !important; margin-bottom: 0px !important; padding-right: 0px !important; min-width: 25px !important; text-align: start !important; height: auto !important; } </style> <!-- Flex Sections CSS --> <style id="globalFontSizeStyle" type="text/css"> </style> <style id="pageFontSizeStyle" type="text/css"> </style> <style id="hideAnimFix"> .dmDesktopBody:not(.editGrid) [data-anim-desktop]:not([data-anim-desktop='none']), .dmDesktopBody:not(.editGrid) [data-anim-extended] { visibility: hidden; } .dmDesktopBody:not(.editGrid) .dmNewParagraph[data-anim-desktop]:not([data-anim-desktop='none']), .dmDesktopBody:not(.editGrid) .dmNewParagraph[data-anim-extended] { visibility: hidden !important; } #dmRoot:not(.editGrid) .flex-element [data-anim-extended] { visibility: hidden; } </style> <style id="fontFallbacks"> @font-face { font-family: "Cabin Fallback"; src: local('Arial'); ascent-override: 101.7818%; descent-override: 26.3684%; size-adjust: 94.8106%; line-gap-override: 0%; }@font-face { font-family: "Lato Fallback"; src: local('Arial'); ascent-override: 101.3181%; descent-override: 21.865%; size-adjust: 97.4159%; line-gap-override: 0%; }@font-face { font-family: "Jura Fallback"; src: local('Arial'); ascent-override: 89.3929%; descent-override: 20.1945%; size-adjust: 107.9504%; line-gap-override: 0%; }@font-face { font-family: "Arial Fallback"; src: local('Arial'); line-gap-override: 0%; } </style> <!-- End render the required css and JS in the head section --> <link type="application/rss+xml" rel="alternate" href="https://www.invercargillaccountant.co.nz//feed/rss2"/> <link type="application/atom+xml" rel="alternate" href="https://www.invercargillaccountant.co.nz//feed/atom"/> <script type="application/ld+json"> { "@context" : { "@vocab" : "http://schema.org/" }, "@type" : "BlogPosting", "headline" : "Question of the Week", "datePublished" : "2024-07-10T02:34:01", "dateModified" : "2024-07-10T02:36:32", "author" : { "@type" : "Person", "name" : "balancedinvercargill" } } </script> <meta property="og:type" content="article"/> <meta name="twitter:card" content="summary"/> <meta name="twitter:title" content="Question of the Week"/> <meta name="article:published_time" content="2024-07-10T02:34Z"/> <meta property="og:url" content="https://www.invercargillaccountant.co.nz/question-of-the-week"/> <meta property="og:title" content="Question of the Week"/> <title> Question of the Week </title> <meta name="google-site-verification" content="3_jXkRcx8avZre8idFwUJ-1aUtZ-YD-ZZCumIuPzkgw"/> <!-- SYS- VVNfRElSRUNUX1BST0RVQ1RJT04= --> </head> <body id="dmRoot" data-page-alias="d1-internal-blog-post" class="dmRoot dmDesktopBody fix-mobile-scrolling addCanvasBorder msie dmLargeBody " style="padding:0;margin:0;" > <!-- ========= Site Content ========= --> <div id="dm" class='dmwr'> <div class="dm_wrapper standard-var5 widgetStyle-3 standard"> <div dmwrapped="true" id="1640416801" themewaschanged="true"> <div dmtemplateid="skinnyHeaderLayout" class="skinnyHeaderLayout dm-bfs dm-layout-sec hasAnimations hasStickyHeader dmPageBody d-page-1860929441 dmFreeHeader" id="dm-outer-wrapper" data-page-class="1860929441"> <div id="dmStyle_outerContainer" class="dmOuter"> <div id="dmStyle_innerContainer" class="dmInner"> <div class="dmLayoutWrapper standard-var dmStandardDesktop"> <div class="dmHeaderContainer fHeader d-header-wrapper"> <div id="hcontainer" class="u_hcontainer dmHeader p_hfcontainer" freeheader="true" layout="7f3c1de367df47d5b45ab63d33101c7b===header" data-scrollable-target="body" data-scrollable-target-threshold="1" data-scroll-responder-id="1" logo-size-target="80%"> <div dm:templateorder="75" class="dmHeaderResp dmHeaderStack" id="1868756178"> <div class="dmRespRow dmDefaultListContentRow u_1426631066 fullBleedChanged fullBleedMode" style="text-align:center" id="1426631066"> <div class="dmRespColsWrapper" id="1099452127"> <div class="u_1106582760 small-12 dmRespCol large-2 medium-2" id="1106582760"> <div class="u_1721004180 imageWidget align-center" data-widget-type="image" id="1721004180" data-element-type="image"> <a href="/" id="1157345603"><img src="https://lirp-cdn.multiscreensite.com/4ef403d7/dms3rep/multi/opt/Balanced%20Logo%20website-400x183-1920w.png" id="1336667118" class="" data-dm-image-path="https://lirp-cdn.multiscreensite.com/4ef403d7/dms3rep/multi/opt/Balanced%20Logo%20website-400x183-1920w.png" alt="Header / footer" onerror="handleImageLoadError(this)"/></a> </div> </div> <div class="u_1149048674 dmRespCol small-12 large-8 medium-8" id="1149048674"> <nav class="u_1283023820 effect-float main-navigation unifiednav dmLinksMenu" role="navigation" layout-main="horizontal_nav_layout_2" layout-sub="submenu_horizontal_2" data-show-vertical-sub-items="HOVER" id="1283023820" dmle_extension="onelinksmenu" data-element-type="onelinksmenu" wr="true" icon="true" surround="true" adwords="" navigation-id="unifiedNav"> <ul role="menubar" class="unifiednav__container " data-auto="navigation-pages"> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="0"> <a href="/" class="unifiednav__item dmUDNavigationItem_00 " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text=" HOME " data-auto="page-text-style">HOME<span class="icon icon-angle-down"></span> </span> </a> </li> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="0"> <a href="/MEET-THE-TEAM" class="unifiednav__item dmUDNavigationItem_010101582095 " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text=" MEET THE TEAM " data-auto="page-text-style">MEET THE TEAM<span class="icon icon-angle-down"></span> </span> </a> </li> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="0"> <a href="/testimonialsw" class="unifiednav__item dmUDNavigationItem_010101384739 " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text=" TESTIMONIALS " data-auto="page-text-style">TESTIMONIALS<span class="icon icon-angle-down"></span> </span> </a> </li> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="0"> <a href="/Articles" class="unifiednav__item dmUDNavigationItem_01010163949 " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text=" ARTICLES " data-auto="page-text-style">ARTICLES<span class="icon icon-angle-down"></span> </span> </a> </li> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="0"> <a href="/contact" class="unifiednav__item dmUDNavigationItem_03 " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text=" CONTACT US " data-auto="page-text-style">CONTACT US<span class="icon icon-angle-down"></span> </span> </a> </li> </ul> </nav> </div> <div class="u_1817943737 dmRespCol small-12 large-2 medium-2" id="1817943737"> <a data-display-type="block" class="u_1968593619 align-center dmButtonLink dmWidget dmWwr default dmOnlyButton dmDefaultGradient" file="false" href="/contact" id="1968593619" data-element-type="dButtonLinkId"> <span class="iconBg" id="1696770137"> <span class="icon hasFontIcon icon-star" id="1109329907"></span> </span> <span class="text" id="1445425893">CONTACT US</span> </a> </div> </div> </div> </div> </div> </div> <div class="stickyHeaderSpacer" id="stickyHeaderSpacer" data-new="true"></div> <div id="desktopBodyBox"> <div id="iscrollBody"> <div id="site_content"> <div class="dmRespRow dmRespRowStable dmRespRowNoPadding dmPageTitleRow dmInnerBarRow"> <div class="dmRespColsWrapper"> <div class="large-12 dmRespCol"> <div id="innerBar" class="innerBar lineInnerBar dmDisplay_None"> <div class="titleLine display_None"><hr/></div> <!-- Page title is hidden in css for new responsive sites. It is left here only so we don't break old sites. Don't copy it to new layouts --> <div id="pageTitleText"> <div class="innerPageTitle">Blog Post</div> </div> <div class="titleLine display_None"><hr/></div> </div> </div> </div> </div> <div dmwrapped="true" id="dmFirstContainer" themewaschanged="true" class="dmBody u_dmStyle_template_d1-internal-blog-post"> <div id="allWrapper" class="allWrapper"><!-- navigation placeholders --> <div id="dm_content" class="dmContent"> <div dm:templateid="DudaBlogPostTemplateResp" class="generalRespTmplWrapper dmRespRowsWrapper innerPageTmplBox storeDefaultPage" id="1860929441"> <div class="u_1494016565 dmRespRow fullBleedChanged" style="text-align: center;" id="1494016565"> <div class="dmRespColsWrapper" id="1481853538"> <div class="dmRespCol small-12 medium-12 large-12" id="1836623010"> <h3 class="dmNewParagraph u_1374694940" id="1374694940" style="" data-element-type="paragraph"><font style="color: rgb(255, 255, 255);"><span style="font-weight:400;font-family:Cabin, 'Cabin Fallback';">articles</span></font></h3></div> </div> </div> <div class="dmRespRow" id="1420803190"> <div class="dmRespColsWrapper" id="1270895525"> <div class="dmRespCol small-12 medium-12 large-12" id="1496112899"> <div data-blog-component="post" id="1445510135" class="u_1445510135 blog-post-tmpl blog-post" dmle_extension="internal_blog_post" data-element-type="internal_blog_post" icon="true" wr="false" surround="false"> <style id="post-e35d2b8-style"></style> <div data-blog-component="title" id="post-e35d2b8-title" class="blog-post-component blog-post-component-title"> <style id="post-e35d2b8-title-style">#post-e35d2b8-title .inner-title{ text-align: left;font-weight: normal; }#post-e35d2b8-title .inner-post-details{ text-align: left; }</style> <div> <h1 data-blog-inner="title" class="inner-title">Question of the Week</h1> <ul data-blog-inner="post-details" class="inner-post-details"><li><span dmle_is_text="true">By</span><span dmle_is_text="true"> </span><span dmle_is_text="true">balancedinvercargill@gmail.com</span></li><li>•</li><li>10 Jul, 2024</li></ul> </div> </div> <div data-blog-component="subtitle" id="post-component-78320f3" class="blog-post-component blog-post-component-subtitle"> <style id="post-component-78320f3-style">#post-component-78320f3 .inner-subtitle{ text-align: left;font-weight: normal;font-style: normal; }</style> <h3 data-blog-inner="subtitle" class="inner-subtitle">Application date for the new 2-year bright-line test</h3> </div> <div data-blog-component="image" id="post-component-9195656" class="blog-post-component blog-post-component-image"> <style id="post-component-9195656-style">#post-component-9195656 .inner-figure{ text-align: center; }#post-component-9195656 .inner-image{ max-width: 100%; }</style> <figure data-blog-inner="figure" class="inner-figure"><img data-blog-inner="image" class="inner-image" src="https://lirp.cdn-website.com/4ef403d7/dms3rep/multi/opt/Capture-1920w.JPG" onerror="handleImageLoadError(this)"/> <figcaption data-blog-inner="caption" class="inner-caption"><i></i></figcaption> </figure> </div> <div data-blog-component="text" id="post-component-ee74921" class="blog-post-component blog-post-component-text"> <style id="post-component-ee74921-style">#post-component-ee74921 .inner-paragraph{ text-align: left; }</style> <div data-blog-inner="text" class="inner-paragraph"><!--[if gte mso 9]><xml> <w:WordDocument> <w:View>Normal</w:View> <w:Zoom>0</w:Zoom> <w:TrackMoves></w:TrackMoves> <w:TrackFormatting></w:TrackFormatting> <w:PunctuationKerning></w:PunctuationKerning> <w:ValidateAgainstSchemas></w:ValidateAgainstSchemas> <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid> <w:IgnoreMixedContent>false</w:IgnoreMixedContent> <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText> <w:DoNotPromoteQF></w:DoNotPromoteQF> <w:LidThemeOther>EN-NZ</w:LidThemeOther> <w:LidThemeAsian>X-NONE</w:LidThemeAsian> <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript> <w:Compatibility> <w:BreakWrappedTables></w:BreakWrappedTables> <w:SnapToGridInCell></w:SnapToGridInCell> <w:WrapTextWithPunct></w:WrapTextWithPunct> <w:UseAsianBreakRules></w:UseAsianBreakRules> <w:DontGrowAutofit></w:DontGrowAutofit> <w:SplitPgBreakAndParaMark></w:SplitPgBreakAndParaMark> <w:EnableOpenTypeKerning></w:EnableOpenTypeKerning> <w:DontFlipMirrorIndents></w:DontFlipMirrorIndents> <w:OverrideTableStyleHps></w:OverrideTableStyleHps> </w:Compatibility> <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel> <m:mathPr> <m:mathFont m:val="Cambria Math"></m:mathFont> <m:brkBin m:val="before"></m:brkBin> <m:brkBinSub m:val="--"></m:brkBinSub> <m:smallFrac m:val="off"></m:smallFrac> <m:dispDef></m:dispDef> <m:lMargin m:val="0"></m:lMargin> <m:rMargin m:val="0"></m:rMargin> <m:defJc m:val="centerGroup"></m:defJc> <m:wrapIndent m:val="1440"></m:wrapIndent> <m:intLim m:val="subSup"></m:intLim> <m:naryLim m:val="undOvr"></m:naryLim> </m:mathPr></w:WordDocument> </xml><![endif]--><!--[if gte mso 9]><xml> <w:LatentStyles DefLockedState="false" DefUnhideWhenUsed="false" DefSemiHidden="false" DefQFormat="false" DefPriority="99" LatentStyleCount="376"> <w:LsdException Locked="false" Priority="0" QFormat="true" Name="Normal"></w:LsdException> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 1"></w:LsdException> <w:LsdException Locked="false" Priority="9" SemiHidden="true" UnhideWhenUsed="true" QFormat="true" Name="heading 2"></w:LsdException> <w:LsdException Locked="false" Priority="9" SemiHidden="true" UnhideWhenUsed="true" QFormat="true" Name="heading 3"></w:LsdException> <w:LsdException Locked="false" Priority="9" SemiHidden="true" UnhideWhenUsed="true" QFormat="true" Name="heading 4"></w:LsdException> <w:LsdException Locked="false" Priority="9" SemiHidden="true" UnhideWhenUsed="true" QFormat="true" Name="heading 5"></w:LsdException> <w:LsdException Locked="false" Priority="9" SemiHidden="true" UnhideWhenUsed="true" QFormat="true" Name="heading 6"></w:LsdException> <w:LsdException Locked="false" Priority="9" SemiHidden="true" UnhideWhenUsed="true" QFormat="true" Name="heading 7"></w:LsdException> <w:LsdException Locked="false" Priority="9" SemiHidden="true" UnhideWhenUsed="true" QFormat="true" Name="heading 8"></w:LsdException> <w:LsdException Locked="false" Priority="9" SemiHidden="true" UnhideWhenUsed="true" QFormat="true" Name="heading 9"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="index 1"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="index 2"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="index 3"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="index 4"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="index 5"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="index 6"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="index 7"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="index 8"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="index 9"></w:LsdException> <w:LsdException Locked="false" Priority="39" SemiHidden="true" UnhideWhenUsed="true" Name="toc 1"></w:LsdException> <w:LsdException Locked="false" Priority="39" SemiHidden="true" UnhideWhenUsed="true" Name="toc 2"></w:LsdException> <w:LsdException Locked="false" Priority="39" SemiHidden="true" UnhideWhenUsed="true" Name="toc 3"></w:LsdException> <w:LsdException Locked="false" Priority="39" SemiHidden="true" UnhideWhenUsed="true" Name="toc 4"></w:LsdException> <w:LsdException Locked="false" Priority="39" SemiHidden="true" UnhideWhenUsed="true" Name="toc 5"></w:LsdException> <w:LsdException Locked="false" Priority="39" SemiHidden="true" UnhideWhenUsed="true" Name="toc 6"></w:LsdException> <w:LsdException Locked="false" Priority="39" SemiHidden="true" UnhideWhenUsed="true" Name="toc 7"></w:LsdException> <w:LsdException Locked="false" Priority="39" SemiHidden="true" UnhideWhenUsed="true" Name="toc 8"></w:LsdException> <w:LsdException Locked="false" Priority="39" SemiHidden="true" UnhideWhenUsed="true" Name="toc 9"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Normal Indent"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="footnote text"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="annotation text"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="header"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="footer"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="index heading"></w:LsdException> <w:LsdException Locked="false" Priority="35" SemiHidden="true" UnhideWhenUsed="true" QFormat="true" Name="caption"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="table of figures"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="envelope address"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="envelope return"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="footnote reference"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="annotation reference"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="line number"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="page number"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="endnote reference"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="endnote text"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="table of authorities"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="macro"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="toa heading"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List Bullet"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List Number"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List 2"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List 3"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List 4"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List 5"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List Bullet 2"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List Bullet 3"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List Bullet 4"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List Bullet 5"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List Number 2"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List Number 3"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List Number 4"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List Number 5"></w:LsdException> <w:LsdException Locked="false" Priority="10" QFormat="true" Name="Title"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Closing"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Signature"></w:LsdException> <w:LsdException Locked="false" Priority="1" SemiHidden="true" UnhideWhenUsed="true" Name="Default Paragraph Font"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Body Text"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Body Text Indent"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List Continue"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List Continue 2"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List Continue 3"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List Continue 4"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List Continue 5"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Message Header"></w:LsdException> <w:LsdException Locked="false" Priority="11" QFormat="true" Name="Subtitle"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Salutation"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Date"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Body Text First Indent"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Body Text First Indent 2"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Note Heading"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Body Text 2"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Body Text 3"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Body Text Indent 2"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Body Text Indent 3"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Block Text"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Hyperlink"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="FollowedHyperlink"></w:LsdException> <w:LsdException Locked="false" Priority="22" QFormat="true" Name="Strong"></w:LsdException> <w:LsdException Locked="false" Priority="20" QFormat="true" Name="Emphasis"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Document Map"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Plain Text"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="E-mail Signature"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="HTML Top of Form"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="HTML Bottom of Form"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Normal (Web)"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="HTML Acronym"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="HTML Address"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="HTML Cite"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="HTML Code"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="HTML Definition"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="HTML Keyboard"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="HTML Preformatted"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="HTML Sample"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="HTML Typewriter"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="HTML Variable"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Normal Table"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="annotation subject"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="No List"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Outline List 1"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Outline List 2"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Outline List 3"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Simple 1"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Simple 2"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Simple 3"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Classic 1"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Classic 2"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Classic 3"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Classic 4"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Colorful 1"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Colorful 2"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Colorful 3"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Columns 1"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Columns 2"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Columns 3"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Columns 4"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Columns 5"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Grid 1"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Grid 2"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Grid 3"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Grid 4"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Grid 5"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Grid 6"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Grid 7"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Grid 8"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table List 1"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table List 2"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table List 3"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table List 4"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table List 5"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table List 6"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table List 7"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table List 8"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table 3D effects 1"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table 3D effects 2"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table 3D effects 3"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Contemporary"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Elegant"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Professional"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Subtle 1"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Subtle 2"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Web 1"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Web 2"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Web 3"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Balloon Text"></w:LsdException> <w:LsdException Locked="false" Priority="39" Name="Table Grid"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Theme"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" Name="Placeholder Text"></w:LsdException> <w:LsdException Locked="false" Priority="1" QFormat="true" Name="No Spacing"></w:LsdException> <w:LsdException Locked="false" Priority="60" Name="Light Shading"></w:LsdException> <w:LsdException Locked="false" Priority="61" Name="Light List"></w:LsdException> <w:LsdException Locked="false" Priority="62" Name="Light Grid"></w:LsdException> <w:LsdException Locked="false" Priority="63" Name="Medium Shading 1"></w:LsdException> <w:LsdException Locked="false" Priority="64" Name="Medium Shading 2"></w:LsdException> <w:LsdException Locked="false" Priority="65" Name="Medium List 1"></w:LsdException> <w:LsdException Locked="false" Priority="66" Name="Medium List 2"></w:LsdException> <w:LsdException Locked="false" Priority="67" Name="Medium Grid 1"></w:LsdException> <w:LsdException Locked="false" Priority="68" Name="Medium Grid 2"></w:LsdException> <w:LsdException Locked="false" Priority="69" Name="Medium Grid 3"></w:LsdException> <w:LsdException Locked="false" Priority="70" Name="Dark List"></w:LsdException> <w:LsdException Locked="false" Priority="71" Name="Colorful Shading"></w:LsdException> <w:LsdException Locked="false" Priority="72" Name="Colorful List"></w:LsdException> <w:LsdException Locked="false" Priority="73" Name="Colorful Grid"></w:LsdException> <w:LsdException Locked="false" Priority="60" Name="Light Shading Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="61" Name="Light List Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="62" Name="Light Grid Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="63" Name="Medium Shading 1 Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="64" Name="Medium Shading 2 Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="65" Name="Medium List 1 Accent 1"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" Name="Revision"></w:LsdException> <w:LsdException Locked="false" Priority="34" QFormat="true" Name="List Paragraph"></w:LsdException> <w:LsdException Locked="false" Priority="29" QFormat="true" Name="Quote"></w:LsdException> <w:LsdException Locked="false" Priority="30" QFormat="true" Name="Intense Quote"></w:LsdException> <w:LsdException Locked="false" Priority="66" Name="Medium List 2 Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="67" Name="Medium Grid 1 Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="68" Name="Medium Grid 2 Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="69" Name="Medium Grid 3 Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="70" Name="Dark List Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="71" Name="Colorful Shading Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="72" Name="Colorful List Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="73" Name="Colorful Grid Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="60" Name="Light Shading Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="61" Name="Light List Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="62" Name="Light Grid Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="63" Name="Medium Shading 1 Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="64" Name="Medium Shading 2 Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="65" Name="Medium List 1 Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="66" Name="Medium List 2 Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="67" Name="Medium Grid 1 Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="68" Name="Medium Grid 2 Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="69" Name="Medium Grid 3 Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="70" Name="Dark List Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="71" Name="Colorful Shading Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="72" Name="Colorful List Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="73" Name="Colorful Grid Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="60" Name="Light Shading Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="61" Name="Light List Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="62" Name="Light Grid Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="63" Name="Medium Shading 1 Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="64" Name="Medium Shading 2 Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="65" Name="Medium List 1 Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="66" Name="Medium List 2 Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="67" Name="Medium Grid 1 Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="68" Name="Medium Grid 2 Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="69" Name="Medium Grid 3 Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="70" Name="Dark List Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="71" Name="Colorful Shading Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="72" Name="Colorful List Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="73" Name="Colorful Grid Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="60" Name="Light Shading Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="61" Name="Light List Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="62" Name="Light Grid Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="63" Name="Medium Shading 1 Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="64" Name="Medium Shading 2 Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="65" Name="Medium List 1 Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="66" Name="Medium List 2 Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="67" Name="Medium Grid 1 Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="68" Name="Medium Grid 2 Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="69" Name="Medium Grid 3 Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="70" Name="Dark List Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="71" Name="Colorful Shading Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="72" Name="Colorful List Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="73" Name="Colorful Grid Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="60" Name="Light Shading Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="61" Name="Light List Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="62" Name="Light Grid Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="63" Name="Medium Shading 1 Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="64" Name="Medium Shading 2 Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="65" Name="Medium List 1 Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="66" Name="Medium List 2 Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="67" Name="Medium Grid 1 Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="68" Name="Medium Grid 2 Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="69" Name="Medium Grid 3 Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="70" Name="Dark List Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="71" Name="Colorful Shading Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="72" Name="Colorful List Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="73" Name="Colorful Grid Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="60" Name="Light Shading Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="61" Name="Light List Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="62" Name="Light Grid Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="63" Name="Medium Shading 1 Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="64" Name="Medium Shading 2 Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="65" Name="Medium List 1 Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="66" Name="Medium List 2 Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="67" Name="Medium Grid 1 Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="68" Name="Medium Grid 2 Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="69" Name="Medium Grid 3 Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="70" Name="Dark List Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="71" Name="Colorful Shading Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="72" Name="Colorful List Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="73" Name="Colorful Grid Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="19" QFormat="true" Name="Subtle Emphasis"></w:LsdException> <w:LsdException Locked="false" Priority="21" QFormat="true" Name="Intense Emphasis"></w:LsdException> <w:LsdException Locked="false" Priority="31" QFormat="true" Name="Subtle Reference"></w:LsdException> <w:LsdException Locked="false" Priority="32" QFormat="true" Name="Intense Reference"></w:LsdException> <w:LsdException Locked="false" Priority="33" QFormat="true" Name="Book Title"></w:LsdException> <w:LsdException Locked="false" Priority="37" SemiHidden="true" UnhideWhenUsed="true" Name="Bibliography"></w:LsdException> <w:LsdException Locked="false" Priority="39" SemiHidden="true" UnhideWhenUsed="true" QFormat="true" Name="TOC Heading"></w:LsdException> <w:LsdException Locked="false" Priority="41" Name="Plain Table 1"></w:LsdException> <w:LsdException Locked="false" Priority="42" Name="Plain Table 2"></w:LsdException> <w:LsdException Locked="false" Priority="43" Name="Plain Table 3"></w:LsdException> <w:LsdException Locked="false" Priority="44" Name="Plain Table 4"></w:LsdException> <w:LsdException Locked="false" Priority="45" Name="Plain Table 5"></w:LsdException> <w:LsdException Locked="false" Priority="40" Name="Grid Table Light"></w:LsdException> <w:LsdException Locked="false" Priority="46" Name="Grid Table 1 Light"></w:LsdException> <w:LsdException Locked="false" Priority="47" Name="Grid Table 2"></w:LsdException> <w:LsdException Locked="false" Priority="48" Name="Grid Table 3"></w:LsdException> <w:LsdException Locked="false" Priority="49" Name="Grid Table 4"></w:LsdException> <w:LsdException Locked="false" Priority="50" Name="Grid Table 5 Dark"></w:LsdException> <w:LsdException Locked="false" Priority="51" Name="Grid Table 6 Colorful"></w:LsdException> <w:LsdException Locked="false" Priority="52" Name="Grid Table 7 Colorful"></w:LsdException> <w:LsdException Locked="false" Priority="46" Name="Grid Table 1 Light Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="47" Name="Grid Table 2 Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="48" Name="Grid Table 3 Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="49" Name="Grid Table 4 Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="50" Name="Grid Table 5 Dark Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="51" Name="Grid Table 6 Colorful Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="52" Name="Grid Table 7 Colorful Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="46" Name="Grid Table 1 Light Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="47" Name="Grid Table 2 Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="48" Name="Grid Table 3 Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="49" Name="Grid Table 4 Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="50" Name="Grid Table 5 Dark Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="51" Name="Grid Table 6 Colorful Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="52" Name="Grid Table 7 Colorful Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="46" Name="Grid Table 1 Light Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="47" Name="Grid Table 2 Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="48" Name="Grid Table 3 Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="49" Name="Grid Table 4 Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="50" Name="Grid Table 5 Dark Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="51" Name="Grid Table 6 Colorful Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="52" Name="Grid Table 7 Colorful Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="46" Name="Grid Table 1 Light Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="47" Name="Grid Table 2 Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="48" Name="Grid Table 3 Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="49" Name="Grid Table 4 Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="50" Name="Grid Table 5 Dark Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="51" Name="Grid Table 6 Colorful Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="52" Name="Grid Table 7 Colorful Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="46" Name="Grid Table 1 Light Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="47" Name="Grid Table 2 Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="48" Name="Grid Table 3 Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="49" Name="Grid Table 4 Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="50" Name="Grid Table 5 Dark Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="51" Name="Grid Table 6 Colorful Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="52" Name="Grid Table 7 Colorful Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="46" Name="Grid Table 1 Light Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="47" Name="Grid Table 2 Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="48" Name="Grid Table 3 Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="49" Name="Grid Table 4 Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="50" Name="Grid Table 5 Dark Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="51" Name="Grid Table 6 Colorful Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="52" Name="Grid Table 7 Colorful Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="46" Name="List Table 1 Light"></w:LsdException> <w:LsdException Locked="false" Priority="47" Name="List Table 2"></w:LsdException> <w:LsdException Locked="false" Priority="48" Name="List Table 3"></w:LsdException> <w:LsdException Locked="false" Priority="49" Name="List Table 4"></w:LsdException> <w:LsdException Locked="false" Priority="50" Name="List Table 5 Dark"></w:LsdException> <w:LsdException Locked="false" Priority="51" Name="List Table 6 Colorful"></w:LsdException> <w:LsdException Locked="false" Priority="52" Name="List Table 7 Colorful"></w:LsdException> <w:LsdException Locked="false" Priority="46" Name="List Table 1 Light Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="47" Name="List Table 2 Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="48" Name="List Table 3 Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="49" Name="List Table 4 Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="50" Name="List Table 5 Dark Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="51" Name="List Table 6 Colorful Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="52" Name="List Table 7 Colorful Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="46" Name="List Table 1 Light Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="47" Name="List Table 2 Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="48" Name="List Table 3 Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="49" Name="List Table 4 Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="50" Name="List Table 5 Dark Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="51" Name="List Table 6 Colorful Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="52" Name="List Table 7 Colorful Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="46" Name="List Table 1 Light Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="47" Name="List Table 2 Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="48" Name="List Table 3 Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="49" Name="List Table 4 Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="50" Name="List Table 5 Dark Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="51" Name="List Table 6 Colorful Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="52" Name="List Table 7 Colorful Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="46" Name="List Table 1 Light Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="47" Name="List Table 2 Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="48" Name="List Table 3 Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="49" Name="List Table 4 Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="50" Name="List Table 5 Dark Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="51" Name="List Table 6 Colorful Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="52" Name="List Table 7 Colorful Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="46" Name="List Table 1 Light Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="47" Name="List Table 2 Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="48" Name="List Table 3 Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="49" Name="List Table 4 Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="50" Name="List Table 5 Dark Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="51" Name="List Table 6 Colorful Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="52" Name="List Table 7 Colorful Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="46" Name="List Table 1 Light Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="47" Name="List Table 2 Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="48" Name="List Table 3 Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="49" Name="List Table 4 Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="50" Name="List Table 5 Dark Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="51" Name="List Table 6 Colorful Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="52" Name="List Table 7 Colorful Accent 6"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Mention"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Smart Hyperlink"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Hashtag"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Unresolved Mention"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Smart Link"></w:LsdException> </w:LatentStyles> </xml><![endif]--><!--[if gte mso 10]> <style> /* Style Definitions */ table.MsoNormalTable {mso-style-name:"Table Normal"; mso-tstyle-rowband-size:0; mso-tstyle-colband-size:0; mso-style-noshow:yes; mso-style-priority:99; mso-style-parent:""; mso-padding-alt:0cm 5.4pt 0cm 5.4pt; mso-para-margin:0cm; mso-pagination:widow-orphan; font-size:10.0pt; font-family:"Times New Roman",serif;} </style> <![endif]--><!--StartFragment--> <p><strong>Question</strong></p><p>Tony entered into a sale and purchase agreement for a residential property on 15 November 2021. He became the registered owner of the property on 15 December 2021. The residential property is not new build land.</p> <p> <br/> Tony purchased this property for long-term investment purposes and rented the property out since settlement date. <br/> <br/> In May 2024, Tony decided to sell the property due to the rising interest rates over the years. On 15 June 2024, Tony entered into an unconditional sale and purchase agreement with a purchaser, with the settlement date set as 15 July 2024.<br/> <br/> Will the sale of the residential property be subject to the 10-year bright-line test or the new 2-year bright-line test?</p> <p><br/> <strong>Answer</strong><br/> </p><p>The 10-year bright-line test applies to residential land acquired on or after 27 March 2021 and disposed of within 10 years of the bright-line acquisition date (former s CB 6A(1)).</p> <p> <br/> The new 2-year bright-line test applies for disposals of land where the bright-line end date is on or after 1 July 2024. A tax liability will arise under the 2-year bright-line test where the person’s bright-line end date is within 2 years of their bright-line start date (s CB 6A(1)). Exceptions such as the main home exclusion may apply.<br/> <br/> For the purposes of the 2-year bright-line test, the bright-line start date for a standard purchase of land is the date that the title to the land is registered for the purchaser of the property. The bright-line end date for a standard land transaction is generally the date that a person enters into an agreement for the sale of the property. <br/> <br/> For Tony, the bright-line start date is 15 December 2021 which is the date the land transfer was registered with Land Information New Zealand. Tony’s bright-line end date is 15 June 2024, being the date that he entered into an agreement to dispose of the property.<br/> <br/> In this case, despite the settlement date of 15 July 2024, the 10-year bright-line test applies to Tony’s disposal as the bright-line end date of 15 June 2024 is before 1 July 2024. The disposal of the land will be subject to tax under the 10-year bright-line test as Tony has disposed of the land within 10 years of the bright-line acquisition date, being 15 December 2021.<br/> <br/> For completeness, Tony hasn’t used this property as his main home and therefore the main home exclusion doesn’t apply.</p> <br/> <strong>References</strong><br/> Income Tax Act 2007, s CB 6A.<!--EndFragment--></div> </div> <footer data-blog-inner="footer"><div class="timeline-post prev-post" dmle_is_text="true"><a class="prev-post" href="/ird-pay-day-filing">← Older Post</a></div><div class="timeline-post next-post" dmle_is_text="true"></div></footer> </div></div> </div> </div> <div class="dmRespRow" id="1589814737"> <div class="dmRespColsWrapper" id="1700431502"> <div class="dmRespCol small-12 medium-12 large-12" id="1537925879"> <div class="dmShare dmNoMark dmShareDesktop clearfix" id="1899220569" dmle_extension="shareextension" data-element-type="shareextension" google_plus="true" wr="false" icon="true" surround="false" description="Share" icon-name="icon-share" facebook="true" twitter="true" email="true" like="true" use_new_design="true" use_popup="true" linked_in="true" data-title="U2hhcmU=" data-display-title="false" data-layout="layout-3" data-share-hover-effect="zoomout" design="large" share_button_text="Share"> <div data-target="facebook" class="shareLink fbShare clickTarget" data-href="http://www.facebook.com/sharer/sharer.php?u=https%3A%2F%2Fwww.invercargillaccountant.co.nz%2Fquestion-of-the-week"> <span class="icon-facebook shareText">Share</span> </div> <div data-target="twitter" class="shareLink twitterShare clickTarget" data-href="http://twitter.com/intent/tweet?text=I wanted to share this great website with you&url=https%3A%2F%2Fwww.invercargillaccountant.co.nz%2Fquestion-of-the-week"> <span class="icon-twitter shareText">Tweet</span> </div> <div data-target="linkedin" class="shareLink linkedinShare clickTarget" data-href="http://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fwww.invercargillaccountant.co.nz%2Fquestion-of-the-week&title=I wanted to share this great website with you"> <span class="icon-linkedin shareText">Share</span> </div> <div data-target="email" class="shareLink emailShare clickTarget" data-href="/_dm/s/rt/actions/emailshare?text=I wanted to share this great website with you&site=https%3A%2F%2Fwww.invercargillaccountant.co.nz%2Fquestion-of-the-week&lang=us&class=insidePopUp"> <span class="icon-envelope shareText">Mail</span> </div> </div> <span style="clear:both;display:block" id="1201797761"></span> </div> </div> </div> <div class="dmRespRow" id="1786574490"> <div class="dmRespColsWrapper" id="1538838126"> <div class="dmRespCol small-12 medium-12 large-12" id="1035746974"> <div class="mainBlog large_list" id="1973414523" dmle_extension="internal_blog_list" data-element-type="internal_blog_list" show-images="true" postspadding="10" wr="false" trim-title="true" show-blog-title="false" posts-animation="fadeInUp" text-align="left" icon="true" surround="false" list-layout="large_list" visible-items="10" visible-post-lines="3" search-tags="" search-term="" more-posts-text="More Posts" header-type="H1" posts-padding="10" posts-per-row="2" show-author="false" text-box-padding="false" show-action-text="true" action-text="Continue reading" skip-post-index="15926705" blog-posts-feature-flag="false" data-image-hover-effect="zoomout" show-more-posts-text="true"> <div class="inner "> <div style="-ms-grid-column:1; -ms-grid-row:1" class="postArticle "> <div class="inner clearfix wow" style="animation-delay: 200.0ms;"> <a class="blogImgLink" dont-color-link="true" href="/ird-pay-day-filing" data-blog-post-alias="ird-pay-day-filing"> <div class="blogImg" style="background-image: url('https://lirp.cdn-website.com/4ef403d7/dms3rep/multi/opt/download+%281%29-1920w.jpg');"><img src="https://lirp.cdn-website.com/4ef403d7/dms3rep/multi/opt/download+%281%29-1920w.jpg" "="" onerror="handleImageLoadError(this)"/></div> </a> <div class="postText clearfix"> <div class="postTitle"> <h3> <a dont-color-link="true" href="/ird-pay-day-filing" data-blog-post-alias="ird-pay-day-filing">IRD Pay Day Filing</a> </h3> </div> <div class="authorBar"> <span>By balancedinvercargill@gmail.com</span> <span>•</span> <span>February 26, 2019</span> </div> <div class="postDescription"><!--[if gte mso 9]><xml> <o:OfficeDocumentSettings> <o:AllowPNG></o:AllowPNG> </o:OfficeDocumentSettings> </xml><![endif]--><!--[if gte mso 9]><xml> <w:WordDocument> <w:View>Normal</w:View> <w:Zoom>0</w:Zoom> <w:TrackMoves></w:TrackMoves> <w:TrackFormatting></w:TrackFormatting> <w:PunctuationKerning></w:PunctuationKerning> <w:ValidateAgainstSchemas></w:ValidateAgainstSchemas> <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid> <w:IgnoreMixedContent>false</w:IgnoreMixedContent> <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText> <w:DoNotPromoteQF></w:DoNotPromoteQF> <w:LidThemeOther>EN-NZ</w:LidThemeOther> <w:LidThemeAsian>X-NONE</w:LidThemeAsian> <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript> <w:Compatibility> <w:BreakWrappedTables></w:BreakWrappedTables> <w:SnapToGridInCell></w:SnapToGridInCell> <w:WrapTextWithPunct></w:WrapTextWithPunct> <w:UseAsianBreakRules></w:UseAsianBreakRules> <w:DontGrowAutofit></w:DontGrowAutofit> <w:SplitPgBreakAndParaMark></w:SplitPgBreakAndParaMark> <w:EnableOpenTypeKerning></w:EnableOpenTypeKerning> <w:DontFlipMirrorIndents></w:DontFlipMirrorIndents> <w:OverrideTableStyleHps></w:OverrideTableStyleHps> </w:Compatibility> <m:mathPr> <m:mathFont m:val="Cambria Math"></m:mathFont> <m:brkBin m:val="before"></m:brkBin> <m:brkBinSub m:val="--"></m:brkBinSub> <m:smallFrac m:val="off"></m:smallFrac> <m:dispDef></m:dispDef> <m:lMargin m:val="0"></m:lMargin> <m:rMargin m:val="0"></m:rMargin> <m:defJc m:val="centerGroup"></m:defJc> <m:wrapIndent m:val="1440"></m:wrapIndent> <m:intLim m:val="subSup"></m:intLim> <m:naryLim m:val="undOvr"></m:naryLim> </m:mathPr></w:WordDocument> </xml><![endif]--><!--[if gte mso 9]><xml> <w:LatentStyles DefLockedState="false" DefUnhideWhenUsed="false" DefSemiHidden="false" DefQFormat="false" DefPriority="99" LatentStyleCount="371"> <w:LsdException Locked="false" Priority="0" QFormat="true" Name="Normal"></w:LsdException> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 1"></w:LsdException> <w:LsdException Locked="false" Priority="9" SemiHidden="true" UnhideWhenUsed="true" QFormat="true" Name="heading 2"></w:LsdException> <w:LsdException Locked="false" Priority="9" SemiHidden="true" UnhideWhenUsed="true" QFormat="true" Name="heading 3"></w:LsdException> <w:LsdException Locked="false" Priority="9" SemiHidden="true" UnhideWhenUsed="true" QFormat="true" Name="heading 4"></w:LsdException> <w:LsdException Locked="false" Priority="9" SemiHidden="true" UnhideWhenUsed="true" QFormat="true" Name="heading 5"></w:LsdException> <w:LsdException Locked="false" Priority="9" SemiHidden="true" UnhideWhenUsed="true" QFormat="true" Name="heading 6"></w:LsdException> <w:LsdException Locked="false" Priority="9" SemiHidden="true" UnhideWhenUsed="true" QFormat="true" Name="heading 7"></w:LsdException> <w:LsdException Locked="false" Priority="9" SemiHidden="true" UnhideWhenUsed="true" QFormat="true" Name="heading 8"></w:LsdException> <w:LsdException Locked="false" Priority="9" SemiHidden="true" UnhideWhenUsed="true" QFormat="true" Name="heading 9"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="index 1"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="index 2"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="index 3"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="index 4"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="index 5"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="index 6"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="index 7"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="index 8"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="index 9"></w:LsdException> <w:LsdException Locked="false" Priority="39" SemiHidden="true" UnhideWhenUsed="true" Name="toc 1"></w:LsdException> <w:LsdException Locked="false" Priority="39" SemiHidden="true" UnhideWhenUsed="true" Name="toc 2"></w:LsdException> <w:LsdException Locked="false" Priority="39" SemiHidden="true" UnhideWhenUsed="true" Name="toc 3"></w:LsdException> <w:LsdException Locked="false" Priority="39" SemiHidden="true" UnhideWhenUsed="true" Name="toc 4"></w:LsdException> <w:LsdException Locked="false" Priority="39" SemiHidden="true" UnhideWhenUsed="true" Name="toc 5"></w:LsdException> <w:LsdException Locked="false" Priority="39" SemiHidden="true" UnhideWhenUsed="true" Name="toc 6"></w:LsdException> <w:LsdException Locked="false" Priority="39" SemiHidden="true" UnhideWhenUsed="true" Name="toc 7"></w:LsdException> <w:LsdException Locked="false" Priority="39" SemiHidden="true" UnhideWhenUsed="true" Name="toc 8"></w:LsdException> <w:LsdException Locked="false" Priority="39" SemiHidden="true" UnhideWhenUsed="true" Name="toc 9"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Normal Indent"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="footnote text"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="annotation text"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="header"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="footer"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="index heading"></w:LsdException> <w:LsdException Locked="false" Priority="35" SemiHidden="true" UnhideWhenUsed="true" QFormat="true" Name="caption"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="table of figures"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="envelope address"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="envelope return"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="footnote reference"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="annotation reference"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="line number"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="page number"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="endnote reference"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="endnote text"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="table of authorities"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="macro"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="toa heading"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List Bullet"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List Number"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List 2"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List 3"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List 4"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List 5"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List Bullet 2"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List Bullet 3"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List Bullet 4"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List Bullet 5"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List Number 2"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List Number 3"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List Number 4"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List Number 5"></w:LsdException> <w:LsdException Locked="false" Priority="10" QFormat="true" Name="Title"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Closing"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Signature"></w:LsdException> <w:LsdException Locked="false" Priority="1" SemiHidden="true" UnhideWhenUsed="true" Name="Default Paragraph Font"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Body Text"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Body Text Indent"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List Continue"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List Continue 2"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List Continue 3"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List Continue 4"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List Continue 5"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Message Header"></w:LsdException> <w:LsdException Locked="false" Priority="11" QFormat="true" Name="Subtitle"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Salutation"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Date"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Body Text First Indent"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Body Text First Indent 2"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Note Heading"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Body Text 2"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Body Text 3"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Body Text Indent 2"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Body Text Indent 3"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Block Text"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Hyperlink"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="FollowedHyperlink"></w:LsdException> <w:LsdException Locked="false" Priority="22" QFormat="true" Name="Strong"></w:LsdException> <w:LsdException Locked="false" Priority="20" QFormat="true" Name="Emphasis"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Document Map"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Plain Text"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="E-mail Signature"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="HTML Top of Form"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="HTML Bottom of Form"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Normal (Web)"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="HTML Acronym"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="HTML Address"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="HTML Cite"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="HTML Code"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="HTML Definition"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="HTML Keyboard"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="HTML Preformatted"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="HTML Sample"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="HTML Typewriter"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="HTML Variable"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Normal Table"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="annotation subject"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="No List"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Outline List 1"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Outline List 2"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Outline List 3"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Simple 1"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Simple 2"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Simple 3"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Classic 1"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Classic 2"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Classic 3"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Classic 4"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Colorful 1"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Colorful 2"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Colorful 3"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Columns 1"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Columns 2"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Columns 3"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Columns 4"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Columns 5"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Grid 1"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Grid 2"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Grid 3"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Grid 4"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Grid 5"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Grid 6"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Grid 7"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Grid 8"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table List 1"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table List 2"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table List 3"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table List 4"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table List 5"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table List 6"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table List 7"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table List 8"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table 3D effects 1"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table 3D effects 2"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table 3D effects 3"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Contemporary"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Elegant"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Professional"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Subtle 1"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Subtle 2"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Web 1"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Web 2"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Web 3"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Balloon Text"></w:LsdException> <w:LsdException Locked="false" Priority="39" Name="Table Grid"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Theme"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" Name="Placeholder Text"></w:LsdException> <w:LsdException Locked="false" Priority="1" QFormat="true" Name="No Spacing"></w:LsdException> <w:LsdException Locked="false" Priority="60" Name="Light Shading"></w:LsdException> <w:LsdException Locked="false" Priority="61" Name="Light List"></w:LsdException> <w:LsdException Locked="false" Priority="62" Name="Light Grid"></w:LsdException> <w:LsdException Locked="false" Priority="63" Name="Medium Shading 1"></w:LsdException> <w:LsdException Locked="false" Priority="64" Name="Medium Shading 2"></w:LsdException> <w:LsdException Locked="false" Priority="65" Name="Medium List 1"></w:LsdException> <w:LsdException Locked="false" Priority="66" Name="Medium List 2"></w:LsdException> <w:LsdException Locked="false" Priority="67" Name="Medium Grid 1"></w:LsdException> <w:LsdException Locked="false" Priority="68" Name="Medium Grid 2"></w:LsdException> <w:LsdException Locked="false" Priority="69" Name="Medium Grid 3"></w:LsdException> <w:LsdException Locked="false" Priority="70" Name="Dark List"></w:LsdException> <w:LsdException Locked="false" Priority="71" Name="Colorful Shading"></w:LsdException> <w:LsdException Locked="false" Priority="72" Name="Colorful List"></w:LsdException> <w:LsdException Locked="false" Priority="73" Name="Colorful Grid"></w:LsdException> <w:LsdException Locked="false" Priority="60" Name="Light Shading Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="61" Name="Light List Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="62" Name="Light Grid Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="63" Name="Medium Shading 1 Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="64" Name="Medium Shading 2 Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="65" Name="Medium List 1 Accent 1"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" Name="Revision"></w:LsdException> <w:LsdException Locked="false" Priority="34" QFormat="true" Name="List Paragraph"></w:LsdException> <w:LsdException Locked="false" Priority="29" QFormat="true" Name="Quote"></w:LsdException> <w:LsdException Locked="false" Priority="30" QFormat="true" Name="Intense Quote"></w:LsdException> <w:LsdException Locked="false" Priority="66" Name="Medium List 2 Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="67" Name="Medium Grid 1 Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="68" Name="Medium Grid 2 Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="69" Name="Medium Grid 3 Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="70" Name="Dark List Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="71" Name="Colorful Shading Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="72" Name="Colorful List Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="73" Name="Colorful Grid Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="60" Name="Light Shading Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="61" Name="Light List Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="62" Name="Light Grid Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="63" Name="Medium Shading 1 Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="64" Name="Medium Shading 2 Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="65" Name="Medium List 1 Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="66" Name="Medium List 2 Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="67" Name="Medium Grid 1 Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="68" Name="Medium Grid 2 Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="69" Name="Medium Grid 3 Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="70" Name="Dark List Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="71" Name="Colorful Shading Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="72" Name="Colorful List Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="73" Name="Colorful Grid Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="60" Name="Light Shading Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="61" Name="Light List Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="62" Name="Light Grid Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="63" Name="Medium Shading 1 Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="64" Name="Medium Shading 2 Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="65" Name="Medium List 1 Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="66" Name="Medium List 2 Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="67" Name="Medium Grid 1 Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="68" Name="Medium Grid 2 Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="69" Name="Medium Grid 3 Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="70" Name="Dark List Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="71" Name="Colorful Shading Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="72" Name="Colorful List Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="73" Name="Colorful Grid Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="60" Name="Light Shading Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="61" Name="Light List Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="62" Name="Light Grid Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="63" Name="Medium Shading 1 Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="64" Name="Medium Shading 2 Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="65" Name="Medium List 1 Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="66" Name="Medium List 2 Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="67" Name="Medium Grid 1 Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="68" Name="Medium Grid 2 Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="69" Name="Medium Grid 3 Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="70" Name="Dark List Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="71" Name="Colorful Shading Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="72" Name="Colorful List Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="73" Name="Colorful Grid Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="60" Name="Light Shading Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="61" Name="Light List Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="62" Name="Light Grid Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="63" Name="Medium Shading 1 Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="64" Name="Medium Shading 2 Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="65" Name="Medium List 1 Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="66" Name="Medium List 2 Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="67" Name="Medium Grid 1 Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="68" Name="Medium Grid 2 Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="69" Name="Medium Grid 3 Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="70" Name="Dark List Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="71" Name="Colorful Shading Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="72" Name="Colorful List Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="73" Name="Colorful Grid Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="60" Name="Light Shading Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="61" Name="Light List Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="62" Name="Light Grid Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="63" Name="Medium Shading 1 Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="64" Name="Medium Shading 2 Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="65" Name="Medium List 1 Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="66" Name="Medium List 2 Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="67" Name="Medium Grid 1 Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="68" Name="Medium Grid 2 Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="69" Name="Medium Grid 3 Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="70" Name="Dark List Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="71" Name="Colorful Shading Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="72" Name="Colorful List Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="73" Name="Colorful Grid Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="19" QFormat="true" Name="Subtle Emphasis"></w:LsdException> <w:LsdException Locked="false" Priority="21" QFormat="true" Name="Intense Emphasis"></w:LsdException> <w:LsdException Locked="false" Priority="31" QFormat="true" Name="Subtle Reference"></w:LsdException> <w:LsdException Locked="false" Priority="32" QFormat="true" Name="Intense Reference"></w:LsdException> <w:LsdException Locked="false" Priority="33" QFormat="true" Name="Book Title"></w:LsdException> <w:LsdException Locked="false" Priority="37" SemiHidden="true" UnhideWhenUsed="true" Name="Bibliography"></w:LsdException> <w:LsdException Locked="false" Priority="39" SemiHidden="true" UnhideWhenUsed="true" QFormat="true" Name="TOC Heading"></w:LsdException> <w:LsdException Locked="false" Priority="41" Name="Plain Table 1"></w:LsdException> <w:LsdException Locked="false" Priority="42" Name="Plain Table 2"></w:LsdException> <w:LsdException Locked="false" Priority="43" Name="Plain Table 3"></w:LsdException> <w:LsdException Locked="false" Priority="44" Name="Plain Table 4"></w:LsdException> <w:LsdException Locked="false" Priority="45" Name="Plain Table 5"></w:LsdException> <w:LsdException Locked="false" Priority="40" Name="Grid Table Light"></w:LsdException> <w:LsdException Locked="false" Priority="46" Name="Grid Table 1 Light"></w:LsdException> <w:LsdException Locked="false" Priority="47" Name="Grid Table 2"></w:LsdException> <w:LsdException Locked="false" Priority="48" Name="Grid Table 3"></w:LsdException> <w:LsdException Locked="false" Priority="49" Name="Grid Table 4"></w:LsdException> <w:LsdException Locked="false" Priority="50" Name="Grid Table 5 Dark"></w:LsdException> <w:LsdException Locked="false" Priority="51" Name="Grid Table 6 Colorful"></w:LsdException> <w:LsdException Locked="false" Priority="52" Name="Grid Table 7 Colorful"></w:LsdException> <w:LsdException Locked="false" Priority="46" Name="Grid Table 1 Light Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="47" Name="Grid Table 2 Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="48" Name="Grid Table 3 Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="49" Name="Grid Table 4 Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="50" Name="Grid Table 5 Dark Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="51" Name="Grid Table 6 Colorful Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="52" Name="Grid Table 7 Colorful Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="46" Name="Grid Table 1 Light Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="47" Name="Grid Table 2 Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="48" Name="Grid Table 3 Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="49" Name="Grid Table 4 Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="50" Name="Grid Table 5 Dark Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="51" Name="Grid Table 6 Colorful Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="52" Name="Grid Table 7 Colorful Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="46" Name="Grid Table 1 Light Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="47" Name="Grid Table 2 Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="48" Name="Grid Table 3 Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="49" Name="Grid Table 4 Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="50" Name="Grid Table 5 Dark Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="51" Name="Grid Table 6 Colorful Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="52" Name="Grid Table 7 Colorful Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="46" Name="Grid Table 1 Light Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="47" Name="Grid Table 2 Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="48" Name="Grid Table 3 Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="49" Name="Grid Table 4 Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="50" Name="Grid Table 5 Dark Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="51" Name="Grid Table 6 Colorful Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="52" Name="Grid Table 7 Colorful Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="46" Name="Grid Table 1 Light Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="47" Name="Grid Table 2 Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="48" Name="Grid Table 3 Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="49" Name="Grid Table 4 Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="50" Name="Grid Table 5 Dark Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="51" Name="Grid Table 6 Colorful Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="52" Name="Grid Table 7 Colorful Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="46" Name="Grid Table 1 Light Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="47" Name="Grid Table 2 Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="48" Name="Grid Table 3 Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="49" Name="Grid Table 4 Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="50" Name="Grid Table 5 Dark Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="51" Name="Grid Table 6 Colorful Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="52" Name="Grid Table 7 Colorful Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="46" Name="List Table 1 Light"></w:LsdException> <w:LsdException Locked="false" Priority="47" Name="List Table 2"></w:LsdException> <w:LsdException Locked="false" Priority="48" Name="List Table 3"></w:LsdException> <w:LsdException Locked="false" Priority="49" Name="List Table 4"></w:LsdException> <w:LsdException Locked="false" Priority="50" Name="List Table 5 Dark"></w:LsdException> <w:LsdException Locked="false" Priority="51" Name="List Table 6 Colorful"></w:LsdException> <w:LsdException Locked="false" Priority="52" Name="List Table 7 Colorful"></w:LsdException> <w:LsdException Locked="false" Priority="46" Name="List Table 1 Light Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="47" Name="List Table 2 Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="48" Name="List Table 3 Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="49" Name="List Table 4 Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="50" Name="List Table 5 Dark Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="51" Name="List Table 6 Colorful Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="52" Name="List Table 7 Colorful Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="46" Name="List Table 1 Light Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="47" Name="List Table 2 Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="48" Name="List Table 3 Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="49" Name="List Table 4 Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="50" Name="List Table 5 Dark Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="51" Name="List Table 6 Colorful Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="52" Name="List Table 7 Colorful Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="46" Name="List Table 1 Light Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="47" Name="List Table 2 Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="48" Name="List Table 3 Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="49" Name="List Table 4 Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="50" Name="List Table 5 Dark Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="51" Name="List Table 6 Colorful Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="52" Name="List Table 7 Colorful Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="46" Name="List Table 1 Light Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="47" Name="List Table 2 Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="48" Name="List Table 3 Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="49" Name="List Table 4 Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="50" Name="List Table 5 Dark Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="51" Name="List Table 6 Colorful Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="52" Name="List Table 7 Colorful Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="46" Name="List Table 1 Light Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="47" Name="List Table 2 Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="48" Name="List Table 3 Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="49" Name="List Table 4 Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="50" Name="List Table 5 Dark Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="51" Name="List Table 6 Colorful Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="52" Name="List Table 7 Colorful Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="46" Name="List Table 1 Light Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="47" Name="List Table 2 Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="48" Name="List Table 3 Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="49" Name="List Table 4 Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="50" Name="List Table 5 Dark Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="51" Name="List Table 6 Colorful Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="52" Name="List Table 7 Colorful Accent 6"></w:LsdException> </w:LatentStyles> </xml><![endif]--><!--[if gte mso 10]> <style> /* Style Definitions */ table.MsoNormalTable {mso-style-name:"Table Normal"; mso-tstyle-rowband-size:0; mso-tstyle-colband-size:0; mso-style-noshow:yes; mso-style-priority:99; mso-style-parent:""; mso-padding-alt:0cm 5.4pt 0cm 5.4pt; mso-para-margin-top:0cm; mso-para-margin-right:0cm; mso-para-margin-bottom:8.0pt; mso-para-margin-left:0cm; line-height:107%; mso-pagination:widow-orphan; font-size:11.0pt; font-family:"Calibri",sans-serif; mso-ascii-font-family:Calibri; mso-ascii-theme-font:minor-latin; mso-hansi-font-family:Calibri; mso-hansi-theme-font:minor-latin; mso-fareast-language:EN-US;} </style> <![endif]--><!--StartFragment--> <p> <b>Payday filing is here for all employers</b> </p> <p>Time is running out to begin payday filing before 1 April 2019. Remember, the law has changed so you must change to payday filing by 1 April 2019. Some payroll software companies are not yet ready for payday filing, so we suggest you check before launching ahead.</p> <p>Please be aware IRD are phoning all employers to check they are ready, we have had a couple of calls from clients to check in whether this is a scam – it isn’t.</p> <p> <b>IR-file will be discontinued</b> </p> <p>The existing ir-File service in myIR will be discontinued on <u>11 March 2019</u> .<br/>If you’re still filing monthly schedules you must use the ‘payroll returns’ account in myIR to file your EMS and employer deductions.</p> <p>As above if your software provider still isn’t ready, we suggest you ir-File your February EMS <u>BEFORE 11 March</u> .<br/><br/>The payroll returns account will automatically show in your myIR account from 28 February 2019.</p> <p> <b>Changes to myIR in April - some services will be unavailable</b> </p> <p>A lot of IRD services will be down during April, to allow them to implement the changes – we understand this is from 17 to 26 April. This includes secure online services and their call centre. Note a lot of this time will be during the Easter/ANZAC break.</p> <!--EndFragment--></div> <div class="readMore"> <a dont-color-link="true" href="/ird-pay-day-filing"></a> </div> </div> </div> </div> <div style="-ms-grid-column:2; -ms-grid-row:1" class="postArticle "> <div class="inner clearfix wow" style="animation-delay: 400.0ms;"> <a class="blogImgLink" dont-color-link="true" href="/changes-to-tax-rules-around-rental-property-losses" data-blog-post-alias="changes-to-tax-rules-around-rental-property-losses"> <div class="blogImg" style="background-image: url('https://lirp.cdn-website.com/4ef403d7/dms3rep/multi/opt/download-1920w.jpg');"><img src="https://lirp.cdn-website.com/4ef403d7/dms3rep/multi/opt/download-1920w.jpg" "="" onerror="handleImageLoadError(this)"/></div> </a> <div class="postText clearfix"> <div class="postTitle"> <h3> <a dont-color-link="true" href="/changes-to-tax-rules-around-rental-property-losses" data-blog-post-alias="changes-to-tax-rules-around-rental-property-losses">Changes to Tax Rules Around Rental Property Losses</a> </h3> </div> <div class="authorBar"> <span>By balancedinvercargill@gmail.com</span> <span>•</span> <span>February 26, 2019</span> </div> <div class="postDescription"><!--[if gte mso 9]><xml> <o:OfficeDocumentSettings> <o:AllowPNG></o:AllowPNG> </o:OfficeDocumentSettings> </xml><![endif]--><!--[if gte mso 9]><xml> <w:WordDocument> <w:View>Normal</w:View> <w:Zoom>0</w:Zoom> <w:TrackMoves></w:TrackMoves> <w:TrackFormatting></w:TrackFormatting> <w:PunctuationKerning></w:PunctuationKerning> <w:ValidateAgainstSchemas></w:ValidateAgainstSchemas> <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid> <w:IgnoreMixedContent>false</w:IgnoreMixedContent> <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText> <w:DoNotPromoteQF></w:DoNotPromoteQF> <w:LidThemeOther>EN-NZ</w:LidThemeOther> <w:LidThemeAsian>X-NONE</w:LidThemeAsian> <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript> <w:Compatibility> <w:BreakWrappedTables></w:BreakWrappedTables> <w:SnapToGridInCell></w:SnapToGridInCell> <w:WrapTextWithPunct></w:WrapTextWithPunct> <w:UseAsianBreakRules></w:UseAsianBreakRules> <w:DontGrowAutofit></w:DontGrowAutofit> <w:SplitPgBreakAndParaMark></w:SplitPgBreakAndParaMark> <w:EnableOpenTypeKerning></w:EnableOpenTypeKerning> <w:DontFlipMirrorIndents></w:DontFlipMirrorIndents> <w:OverrideTableStyleHps></w:OverrideTableStyleHps> </w:Compatibility> <m:mathPr> <m:mathFont m:val="Cambria Math"></m:mathFont> <m:brkBin m:val="before"></m:brkBin> <m:brkBinSub m:val="--"></m:brkBinSub> <m:smallFrac m:val="off"></m:smallFrac> <m:dispDef></m:dispDef> <m:lMargin m:val="0"></m:lMargin> <m:rMargin m:val="0"></m:rMargin> <m:defJc m:val="centerGroup"></m:defJc> <m:wrapIndent m:val="1440"></m:wrapIndent> <m:intLim m:val="subSup"></m:intLim> <m:naryLim m:val="undOvr"></m:naryLim> </m:mathPr></w:WordDocument> </xml><![endif]--><!--[if gte mso 9]><xml> <w:LatentStyles DefLockedState="false" DefUnhideWhenUsed="false" DefSemiHidden="false" DefQFormat="false" DefPriority="99" LatentStyleCount="371"> <w:LsdException Locked="false" Priority="0" QFormat="true" Name="Normal"></w:LsdException> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 1"></w:LsdException> <w:LsdException Locked="false" Priority="9" SemiHidden="true" UnhideWhenUsed="true" QFormat="true" Name="heading 2"></w:LsdException> <w:LsdException Locked="false" Priority="9" SemiHidden="true" UnhideWhenUsed="true" QFormat="true" Name="heading 3"></w:LsdException> <w:LsdException Locked="false" Priority="9" SemiHidden="true" UnhideWhenUsed="true" QFormat="true" Name="heading 4"></w:LsdException> <w:LsdException Locked="false" Priority="9" SemiHidden="true" UnhideWhenUsed="true" QFormat="true" Name="heading 5"></w:LsdException> <w:LsdException Locked="false" Priority="9" SemiHidden="true" UnhideWhenUsed="true" QFormat="true" Name="heading 6"></w:LsdException> <w:LsdException Locked="false" Priority="9" SemiHidden="true" UnhideWhenUsed="true" QFormat="true" Name="heading 7"></w:LsdException> <w:LsdException Locked="false" Priority="9" SemiHidden="true" UnhideWhenUsed="true" QFormat="true" Name="heading 8"></w:LsdException> <w:LsdException Locked="false" Priority="9" SemiHidden="true" UnhideWhenUsed="true" QFormat="true" Name="heading 9"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="index 1"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="index 2"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="index 3"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="index 4"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="index 5"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="index 6"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="index 7"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="index 8"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="index 9"></w:LsdException> <w:LsdException Locked="false" Priority="39" SemiHidden="true" UnhideWhenUsed="true" Name="toc 1"></w:LsdException> <w:LsdException Locked="false" Priority="39" SemiHidden="true" UnhideWhenUsed="true" Name="toc 2"></w:LsdException> <w:LsdException Locked="false" Priority="39" SemiHidden="true" UnhideWhenUsed="true" Name="toc 3"></w:LsdException> <w:LsdException Locked="false" Priority="39" SemiHidden="true" UnhideWhenUsed="true" Name="toc 4"></w:LsdException> <w:LsdException Locked="false" Priority="39" SemiHidden="true" UnhideWhenUsed="true" Name="toc 5"></w:LsdException> <w:LsdException Locked="false" Priority="39" SemiHidden="true" UnhideWhenUsed="true" Name="toc 6"></w:LsdException> <w:LsdException Locked="false" Priority="39" SemiHidden="true" UnhideWhenUsed="true" Name="toc 7"></w:LsdException> <w:LsdException Locked="false" Priority="39" SemiHidden="true" UnhideWhenUsed="true" Name="toc 8"></w:LsdException> <w:LsdException Locked="false" Priority="39" SemiHidden="true" UnhideWhenUsed="true" Name="toc 9"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Normal Indent"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="footnote text"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="annotation text"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="header"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="footer"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="index heading"></w:LsdException> <w:LsdException Locked="false" Priority="35" SemiHidden="true" UnhideWhenUsed="true" QFormat="true" Name="caption"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="table of figures"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="envelope address"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="envelope return"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="footnote reference"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="annotation reference"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="line number"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="page number"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="endnote reference"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="endnote text"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="table of authorities"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="macro"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="toa heading"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List Bullet"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List Number"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List 2"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List 3"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List 4"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List 5"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List Bullet 2"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List Bullet 3"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List Bullet 4"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List Bullet 5"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List Number 2"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List Number 3"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List Number 4"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List Number 5"></w:LsdException> <w:LsdException Locked="false" Priority="10" QFormat="true" Name="Title"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Closing"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Signature"></w:LsdException> <w:LsdException Locked="false" Priority="1" SemiHidden="true" UnhideWhenUsed="true" Name="Default Paragraph Font"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Body Text"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Body Text Indent"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List Continue"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List Continue 2"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List Continue 3"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List Continue 4"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List Continue 5"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Message Header"></w:LsdException> <w:LsdException Locked="false" Priority="11" QFormat="true" Name="Subtitle"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Salutation"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Date"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Body Text First Indent"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Body Text First Indent 2"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Note Heading"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Body Text 2"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Body Text 3"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Body Text Indent 2"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Body Text Indent 3"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Block Text"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Hyperlink"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="FollowedHyperlink"></w:LsdException> <w:LsdException Locked="false" Priority="22" QFormat="true" Name="Strong"></w:LsdException> <w:LsdException Locked="false" Priority="20" QFormat="true" Name="Emphasis"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Document Map"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Plain Text"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="E-mail Signature"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="HTML Top of Form"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="HTML Bottom of Form"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Normal (Web)"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="HTML Acronym"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="HTML Address"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="HTML Cite"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="HTML Code"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="HTML Definition"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="HTML Keyboard"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="HTML Preformatted"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="HTML Sample"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="HTML Typewriter"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="HTML Variable"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Normal Table"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="annotation subject"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="No List"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Outline List 1"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Outline List 2"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Outline List 3"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Simple 1"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Simple 2"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Simple 3"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Classic 1"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Classic 2"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Classic 3"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Classic 4"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Colorful 1"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Colorful 2"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Colorful 3"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Columns 1"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Columns 2"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Columns 3"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Columns 4"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Columns 5"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Grid 1"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Grid 2"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Grid 3"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Grid 4"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Grid 5"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Grid 6"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Grid 7"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Grid 8"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table List 1"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table List 2"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table List 3"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table List 4"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table List 5"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table List 6"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table List 7"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table List 8"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table 3D effects 1"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table 3D effects 2"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table 3D effects 3"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Contemporary"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Elegant"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Professional"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Subtle 1"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Subtle 2"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Web 1"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Web 2"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Web 3"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Balloon Text"></w:LsdException> <w:LsdException Locked="false" Priority="39" Name="Table Grid"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Theme"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" Name="Placeholder Text"></w:LsdException> <w:LsdException Locked="false" Priority="1" QFormat="true" Name="No Spacing"></w:LsdException> <w:LsdException Locked="false" Priority="60" Name="Light Shading"></w:LsdException> <w:LsdException Locked="false" Priority="61" Name="Light List"></w:LsdException> <w:LsdException Locked="false" Priority="62" Name="Light Grid"></w:LsdException> <w:LsdException Locked="false" Priority="63" Name="Medium Shading 1"></w:LsdException> <w:LsdException Locked="false" Priority="64" Name="Medium Shading 2"></w:LsdException> <w:LsdException Locked="false" Priority="65" Name="Medium List 1"></w:LsdException> <w:LsdException Locked="false" Priority="66" Name="Medium List 2"></w:LsdException> <w:LsdException Locked="false" Priority="67" Name="Medium Grid 1"></w:LsdException> <w:LsdException Locked="false" Priority="68" Name="Medium Grid 2"></w:LsdException> <w:LsdException Locked="false" Priority="69" Name="Medium Grid 3"></w:LsdException> <w:LsdException Locked="false" Priority="70" Name="Dark List"></w:LsdException> <w:LsdException Locked="false" Priority="71" Name="Colorful Shading"></w:LsdException> <w:LsdException Locked="false" Priority="72" Name="Colorful List"></w:LsdException> <w:LsdException Locked="false" Priority="73" Name="Colorful Grid"></w:LsdException> <w:LsdException Locked="false" Priority="60" Name="Light Shading Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="61" Name="Light List Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="62" Name="Light Grid Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="63" Name="Medium Shading 1 Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="64" Name="Medium Shading 2 Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="65" Name="Medium List 1 Accent 1"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" Name="Revision"></w:LsdException> <w:LsdException Locked="false" Priority="34" QFormat="true" Name="List Paragraph"></w:LsdException> <w:LsdException Locked="false" Priority="29" QFormat="true" Name="Quote"></w:LsdException> <w:LsdException Locked="false" Priority="30" QFormat="true" Name="Intense Quote"></w:LsdException> <w:LsdException Locked="false" Priority="66" Name="Medium List 2 Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="67" Name="Medium Grid 1 Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="68" Name="Medium Grid 2 Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="69" Name="Medium Grid 3 Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="70" Name="Dark List Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="71" Name="Colorful Shading Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="72" Name="Colorful List Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="73" Name="Colorful Grid Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="60" Name="Light Shading Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="61" Name="Light List Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="62" Name="Light Grid Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="63" Name="Medium Shading 1 Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="64" Name="Medium Shading 2 Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="65" Name="Medium List 1 Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="66" Name="Medium List 2 Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="67" Name="Medium Grid 1 Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="68" Name="Medium Grid 2 Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="69" Name="Medium Grid 3 Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="70" Name="Dark List Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="71" Name="Colorful Shading Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="72" Name="Colorful List Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="73" Name="Colorful Grid Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="60" Name="Light Shading Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="61" Name="Light List Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="62" Name="Light Grid Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="63" Name="Medium Shading 1 Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="64" Name="Medium Shading 2 Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="65" Name="Medium List 1 Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="66" Name="Medium List 2 Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="67" Name="Medium Grid 1 Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="68" Name="Medium Grid 2 Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="69" Name="Medium Grid 3 Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="70" Name="Dark List Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="71" Name="Colorful Shading Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="72" Name="Colorful List Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="73" Name="Colorful Grid Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="60" Name="Light Shading Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="61" Name="Light List Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="62" Name="Light Grid Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="63" Name="Medium Shading 1 Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="64" Name="Medium Shading 2 Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="65" Name="Medium List 1 Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="66" Name="Medium List 2 Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="67" Name="Medium Grid 1 Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="68" Name="Medium Grid 2 Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="69" Name="Medium Grid 3 Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="70" Name="Dark List Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="71" Name="Colorful Shading Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="72" Name="Colorful List Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="73" Name="Colorful Grid Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="60" Name="Light Shading Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="61" Name="Light List Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="62" Name="Light Grid Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="63" Name="Medium Shading 1 Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="64" Name="Medium Shading 2 Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="65" Name="Medium List 1 Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="66" Name="Medium List 2 Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="67" Name="Medium Grid 1 Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="68" Name="Medium Grid 2 Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="69" Name="Medium Grid 3 Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="70" Name="Dark List Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="71" Name="Colorful Shading Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="72" Name="Colorful List Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="73" Name="Colorful Grid Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="60" Name="Light Shading Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="61" Name="Light List Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="62" Name="Light Grid Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="63" Name="Medium Shading 1 Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="64" Name="Medium Shading 2 Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="65" Name="Medium List 1 Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="66" Name="Medium List 2 Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="67" Name="Medium Grid 1 Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="68" Name="Medium Grid 2 Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="69" Name="Medium Grid 3 Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="70" Name="Dark List Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="71" Name="Colorful Shading Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="72" Name="Colorful List Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="73" Name="Colorful Grid Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="19" QFormat="true" Name="Subtle Emphasis"></w:LsdException> <w:LsdException Locked="false" Priority="21" QFormat="true" Name="Intense Emphasis"></w:LsdException> <w:LsdException Locked="false" Priority="31" QFormat="true" Name="Subtle Reference"></w:LsdException> <w:LsdException Locked="false" Priority="32" QFormat="true" Name="Intense Reference"></w:LsdException> <w:LsdException Locked="false" Priority="33" QFormat="true" Name="Book Title"></w:LsdException> <w:LsdException Locked="false" Priority="37" SemiHidden="true" UnhideWhenUsed="true" Name="Bibliography"></w:LsdException> <w:LsdException Locked="false" Priority="39" SemiHidden="true" UnhideWhenUsed="true" QFormat="true" Name="TOC Heading"></w:LsdException> <w:LsdException Locked="false" Priority="41" Name="Plain Table 1"></w:LsdException> <w:LsdException Locked="false" Priority="42" Name="Plain Table 2"></w:LsdException> <w:LsdException Locked="false" Priority="43" Name="Plain Table 3"></w:LsdException> <w:LsdException Locked="false" Priority="44" Name="Plain Table 4"></w:LsdException> <w:LsdException Locked="false" Priority="45" Name="Plain Table 5"></w:LsdException> <w:LsdException Locked="false" Priority="40" Name="Grid Table Light"></w:LsdException> <w:LsdException Locked="false" Priority="46" Name="Grid Table 1 Light"></w:LsdException> <w:LsdException Locked="false" Priority="47" Name="Grid Table 2"></w:LsdException> <w:LsdException Locked="false" Priority="48" Name="Grid Table 3"></w:LsdException> <w:LsdException Locked="false" Priority="49" Name="Grid Table 4"></w:LsdException> <w:LsdException Locked="false" Priority="50" Name="Grid Table 5 Dark"></w:LsdException> <w:LsdException Locked="false" Priority="51" Name="Grid Table 6 Colorful"></w:LsdException> <w:LsdException Locked="false" Priority="52" Name="Grid Table 7 Colorful"></w:LsdException> <w:LsdException Locked="false" Priority="46" Name="Grid Table 1 Light Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="47" Name="Grid Table 2 Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="48" Name="Grid Table 3 Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="49" Name="Grid Table 4 Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="50" Name="Grid Table 5 Dark Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="51" Name="Grid Table 6 Colorful Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="52" Name="Grid Table 7 Colorful Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="46" Name="Grid Table 1 Light Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="47" Name="Grid Table 2 Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="48" Name="Grid Table 3 Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="49" Name="Grid Table 4 Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="50" Name="Grid Table 5 Dark Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="51" Name="Grid Table 6 Colorful Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="52" Name="Grid Table 7 Colorful Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="46" Name="Grid Table 1 Light Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="47" Name="Grid Table 2 Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="48" Name="Grid Table 3 Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="49" Name="Grid Table 4 Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="50" Name="Grid Table 5 Dark Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="51" Name="Grid Table 6 Colorful Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="52" Name="Grid Table 7 Colorful Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="46" Name="Grid Table 1 Light Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="47" Name="Grid Table 2 Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="48" Name="Grid Table 3 Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="49" Name="Grid Table 4 Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="50" Name="Grid Table 5 Dark Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="51" Name="Grid Table 6 Colorful Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="52" Name="Grid Table 7 Colorful Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="46" Name="Grid Table 1 Light Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="47" Name="Grid Table 2 Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="48" Name="Grid Table 3 Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="49" Name="Grid Table 4 Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="50" Name="Grid Table 5 Dark Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="51" Name="Grid Table 6 Colorful Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="52" Name="Grid Table 7 Colorful Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="46" Name="Grid Table 1 Light Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="47" Name="Grid Table 2 Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="48" Name="Grid Table 3 Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="49" Name="Grid Table 4 Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="50" Name="Grid Table 5 Dark Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="51" Name="Grid Table 6 Colorful Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="52" Name="Grid Table 7 Colorful Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="46" Name="List Table 1 Light"></w:LsdException> <w:LsdException Locked="false" Priority="47" Name="List Table 2"></w:LsdException> <w:LsdException Locked="false" Priority="48" Name="List Table 3"></w:LsdException> <w:LsdException Locked="false" Priority="49" Name="List Table 4"></w:LsdException> <w:LsdException Locked="false" Priority="50" Name="List Table 5 Dark"></w:LsdException> <w:LsdException Locked="false" Priority="51" Name="List Table 6 Colorful"></w:LsdException> <w:LsdException Locked="false" Priority="52" Name="List Table 7 Colorful"></w:LsdException> <w:LsdException Locked="false" Priority="46" Name="List Table 1 Light Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="47" Name="List Table 2 Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="48" Name="List Table 3 Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="49" Name="List Table 4 Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="50" Name="List Table 5 Dark Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="51" Name="List Table 6 Colorful Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="52" Name="List Table 7 Colorful Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="46" Name="List Table 1 Light Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="47" Name="List Table 2 Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="48" Name="List Table 3 Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="49" Name="List Table 4 Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="50" Name="List Table 5 Dark Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="51" Name="List Table 6 Colorful Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="52" Name="List Table 7 Colorful Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="46" Name="List Table 1 Light Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="47" Name="List Table 2 Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="48" Name="List Table 3 Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="49" Name="List Table 4 Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="50" Name="List Table 5 Dark Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="51" Name="List Table 6 Colorful Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="52" Name="List Table 7 Colorful Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="46" Name="List Table 1 Light Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="47" Name="List Table 2 Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="48" Name="List Table 3 Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="49" Name="List Table 4 Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="50" Name="List Table 5 Dark Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="51" Name="List Table 6 Colorful Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="52" Name="List Table 7 Colorful Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="46" Name="List Table 1 Light Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="47" Name="List Table 2 Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="48" Name="List Table 3 Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="49" Name="List Table 4 Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="50" Name="List Table 5 Dark Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="51" Name="List Table 6 Colorful Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="52" Name="List Table 7 Colorful Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="46" Name="List Table 1 Light Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="47" Name="List Table 2 Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="48" Name="List Table 3 Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="49" Name="List Table 4 Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="50" Name="List Table 5 Dark Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="51" Name="List Table 6 Colorful Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="52" Name="List Table 7 Colorful Accent 6"></w:LsdException> </w:LatentStyles> </xml><![endif]--><!--[if gte mso 10]> <style> /* Style Definitions */ table.MsoNormalTable {mso-style-name:"Table Normal"; mso-tstyle-rowband-size:0; mso-tstyle-colband-size:0; mso-style-noshow:yes; mso-style-priority:99; mso-style-parent:""; mso-padding-alt:0cm 5.4pt 0cm 5.4pt; mso-para-margin-top:0cm; mso-para-margin-right:0cm; mso-para-margin-bottom:8.0pt; mso-para-margin-left:0cm; line-height:107%; mso-pagination:widow-orphan; font-size:11.0pt; font-family:"Calibri",sans-serif; mso-ascii-font-family:Calibri; mso-ascii-theme-font:minor-latin; mso-hansi-font-family:Calibri; mso-hansi-theme-font:minor-latin; mso-fareast-language:EN-US;} </style> <![endif]--><!--StartFragment--> <p>A new tax bill was introduced to Parliament in December 2018 setting out new rules for losses incurred in owning a rental property. The Bill has not passed into legislation at this time, however, the legislation is to come into effect from 1 April 2019.</p> <p> <b>Background:</b> </p> <p>Previously, if you owned a rental property and it made a loss, the loss could be offset against your other income and often you would get a refund of tax paid on other income. The most common example is where you earned a PAYE salary, and paid tax (PAYE) on that. At the end of the tax year, everything was included in your tax return, and the loss from the rental property reduced your income, meaning you got a refund of some of the PAYE paid. Happy Days.</p> <p>Over the past 10 years there have been numerous changes which have been targeted at rental investors:</p> <p><!--[if !supportLists]-->- <!--[endif]-->No longer able to depreciate buildings</p> <p><!--[if !supportLists]-->- <!--[endif]-->Harsher rules on depreciation of building fit-outs</p> <p><!--[if !supportLists]-->- <!--[endif]-->LAQCs eliminated (Loss companies which could offset losses)</p> <p><!--[if !supportLists]-->- <!--[endif]-->Brightline (2 years) (effectively Capital Gains Tax if you sold property within 2 years)</p> <p><!--[if !supportLists]-->- <!--[endif]-->Brightline (5 years) (ditto but now you have to hold it for 5 years)</p> <p><!--[if !supportLists]-->- <!--[endif]-->Ring Fencing Losses (as per below)</p> <p><!--[if !supportLists]-->- <!--[endif]-->Possible Capital Gains Tax in Future</p> <p> <b>New Rules:</b> </p> <p>The current tax bill proposes to change the loss offset. The proposal is that any loss incurred from the rental property will NOT be able to be offset against other income, instead that loss will be carried forward or “Ring Fenced” to future years, and can only be offset against future rental profits.</p> <p>The new rules propose that the <u>March 2019 year will be the last year</u> where you can offset the losses against your other income.</p> <p>Our Tax Consultants advise there is a 99.9% chance these new rules will come into play from 1 April, despite legislation not yet being passed.</p> <p> <b>What Can You Do?</b> </p> <p>Not much! Although you have just over a month to bring forward any expenditure that you may have been considering on your rental investment – ie. Repairs and maintenance/purchase of minor assets (under $500) etc so that these can be claimed in the March 2019 year.</p> <p>We are happy to discuss this new development with you if you have any queries in relation to how it will work. For some of you (where your property is owned in a Trust or a Normal Company) things won’t change drastically anyway, as you couldn’t offset the loss anyway.</p> <!--EndFragment--></div> <div class="readMore"> <a dont-color-link="true" href="/changes-to-tax-rules-around-rental-property-losses"></a> </div> </div> </div> </div> <div style="-ms-grid-column:1; -ms-grid-row:2" class="postArticle "> <div class="inner clearfix wow" style="animation-delay: 600.0ms;"> <a class="blogImgLink" dont-color-link="true" href="/post-title1" data-blog-post-alias="post-title1"> <div class="blogImg" style="background-image: url('https://lirp.cdn-website.com/4ef403d7/dms3rep/multi/opt/homeoffice-featured-image-1920w.jpg');"><img src="https://lirp.cdn-website.com/4ef403d7/dms3rep/multi/opt/homeoffice-featured-image-1920w.jpg" "="" onerror="handleImageLoadError(this)"/></div> </a> <div class="postText clearfix"> <div class="postTitle"> <h3> <a dont-color-link="true" href="/post-title1" data-blog-post-alias="post-title1">Home Based Office</a> </h3> </div> <div class="authorBar"> <span>By Julie Findlay</span> <span>•</span> <span>September 26, 2018</span> </div> <div class="postDescription"><!--[if !mso]> <style> v\:* {behavior:url(#default#VML);} o\:* {behavior:url(#default#VML);} w\:* {behavior:url(#default#VML);} .shape {behavior:url(#default#VML);} </style> <![endif]--><!--[if gte mso 9]><xml> <o:OfficeDocumentSettings> <o:AllowPNG></o:AllowPNG> </o:OfficeDocumentSettings> </xml><![endif]--><!--[if gte mso 9]><xml> <w:WordDocument> <w:View>Normal</w:View> <w:Zoom>0</w:Zoom> <w:TrackMoves>false</w:TrackMoves> <w:TrackFormatting></w:TrackFormatting> <w:PunctuationKerning></w:PunctuationKerning> <w:ValidateAgainstSchemas></w:ValidateAgainstSchemas> <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid> <w:IgnoreMixedContent>false</w:IgnoreMixedContent> <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText> <w:DoNotPromoteQF></w:DoNotPromoteQF> <w:LidThemeOther>EN-NZ</w:LidThemeOther> <w:LidThemeAsian>X-NONE</w:LidThemeAsian> <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript> <w:Compatibility> <w:BreakWrappedTables></w:BreakWrappedTables> <w:SnapToGridInCell></w:SnapToGridInCell> <w:WrapTextWithPunct></w:WrapTextWithPunct> <w:UseAsianBreakRules></w:UseAsianBreakRules> <w:DontGrowAutofit></w:DontGrowAutofit> <w:SplitPgBreakAndParaMark></w:SplitPgBreakAndParaMark> <w:EnableOpenTypeKerning></w:EnableOpenTypeKerning> <w:DontFlipMirrorIndents></w:DontFlipMirrorIndents> <w:OverrideTableStyleHps></w:OverrideTableStyleHps> </w:Compatibility> <m:mathPr> <m:mathFont m:val="Cambria Math"></m:mathFont> <m:brkBin m:val="before"></m:brkBin> <m:brkBinSub m:val="--"></m:brkBinSub> <m:smallFrac m:val="off"></m:smallFrac> <m:dispDef></m:dispDef> <m:lMargin m:val="0"></m:lMargin> <m:rMargin m:val="0"></m:rMargin> <m:defJc m:val="centerGroup"></m:defJc> <m:wrapIndent m:val="1440"></m:wrapIndent> <m:intLim m:val="subSup"></m:intLim> <m:naryLim m:val="undOvr"></m:naryLim> </m:mathPr></w:WordDocument> </xml><![endif]--><!--[if gte mso 9]><xml> <w:LatentStyles DefLockedState="false" DefUnhideWhenUsed="false" DefSemiHidden="false" DefQFormat="false" DefPriority="99" LatentStyleCount="371"> <w:LsdException Locked="false" Priority="0" QFormat="true" Name="Normal"></w:LsdException> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 1"></w:LsdException> <w:LsdException Locked="false" Priority="9" SemiHidden="true" UnhideWhenUsed="true" QFormat="true" Name="heading 2"></w:LsdException> <w:LsdException Locked="false" Priority="9" SemiHidden="true" UnhideWhenUsed="true" QFormat="true" Name="heading 3"></w:LsdException> <w:LsdException Locked="false" Priority="9" SemiHidden="true" UnhideWhenUsed="true" QFormat="true" Name="heading 4"></w:LsdException> <w:LsdException Locked="false" Priority="9" SemiHidden="true" UnhideWhenUsed="true" QFormat="true" Name="heading 5"></w:LsdException> <w:LsdException Locked="false" Priority="9" SemiHidden="true" UnhideWhenUsed="true" QFormat="true" Name="heading 6"></w:LsdException> <w:LsdException Locked="false" Priority="9" SemiHidden="true" UnhideWhenUsed="true" QFormat="true" Name="heading 7"></w:LsdException> <w:LsdException Locked="false" Priority="9" SemiHidden="true" UnhideWhenUsed="true" QFormat="true" Name="heading 8"></w:LsdException> <w:LsdException Locked="false" Priority="9" SemiHidden="true" UnhideWhenUsed="true" QFormat="true" Name="heading 9"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="index 1"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="index 2"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="index 3"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="index 4"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="index 5"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="index 6"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="index 7"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="index 8"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="index 9"></w:LsdException> <w:LsdException Locked="false" Priority="39" SemiHidden="true" UnhideWhenUsed="true" Name="toc 1"></w:LsdException> <w:LsdException Locked="false" Priority="39" SemiHidden="true" UnhideWhenUsed="true" Name="toc 2"></w:LsdException> <w:LsdException Locked="false" Priority="39" SemiHidden="true" UnhideWhenUsed="true" Name="toc 3"></w:LsdException> <w:LsdException Locked="false" Priority="39" SemiHidden="true" UnhideWhenUsed="true" Name="toc 4"></w:LsdException> <w:LsdException Locked="false" Priority="39" SemiHidden="true" UnhideWhenUsed="true" Name="toc 5"></w:LsdException> <w:LsdException Locked="false" Priority="39" SemiHidden="true" UnhideWhenUsed="true" Name="toc 6"></w:LsdException> <w:LsdException Locked="false" Priority="39" SemiHidden="true" UnhideWhenUsed="true" Name="toc 7"></w:LsdException> <w:LsdException Locked="false" Priority="39" SemiHidden="true" UnhideWhenUsed="true" Name="toc 8"></w:LsdException> <w:LsdException Locked="false" Priority="39" SemiHidden="true" UnhideWhenUsed="true" Name="toc 9"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Normal Indent"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="footnote text"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="annotation text"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="header"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="footer"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="index heading"></w:LsdException> <w:LsdException Locked="false" Priority="35" SemiHidden="true" UnhideWhenUsed="true" QFormat="true" Name="caption"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="table of figures"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="envelope address"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="envelope return"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="footnote reference"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="annotation reference"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="line number"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="page number"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="endnote reference"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="endnote text"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="table of authorities"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="macro"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="toa heading"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List Bullet"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List Number"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List 2"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List 3"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List 4"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List 5"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List Bullet 2"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List Bullet 3"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List Bullet 4"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List Bullet 5"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List Number 2"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List Number 3"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List Number 4"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List Number 5"></w:LsdException> <w:LsdException Locked="false" Priority="10" QFormat="true" Name="Title"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Closing"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Signature"></w:LsdException> <w:LsdException Locked="false" Priority="1" SemiHidden="true" UnhideWhenUsed="true" Name="Default Paragraph Font"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Body Text"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Body Text Indent"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List Continue"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List Continue 2"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List Continue 3"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List Continue 4"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List Continue 5"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Message Header"></w:LsdException> <w:LsdException Locked="false" Priority="11" QFormat="true" Name="Subtitle"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Salutation"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Date"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Body Text First Indent"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Body Text First Indent 2"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Note Heading"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Body Text 2"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Body Text 3"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Body Text Indent 2"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Body Text Indent 3"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Block Text"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Hyperlink"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="FollowedHyperlink"></w:LsdException> <w:LsdException Locked="false" Priority="22" QFormat="true" Name="Strong"></w:LsdException> <w:LsdException Locked="false" Priority="20" QFormat="true" Name="Emphasis"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Document Map"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Plain Text"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="E-mail Signature"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="HTML Top of Form"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="HTML Bottom of Form"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Normal (Web)"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="HTML Acronym"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="HTML Address"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="HTML Cite"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="HTML Code"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="HTML Definition"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="HTML Keyboard"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="HTML Preformatted"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="HTML Sample"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="HTML Typewriter"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="HTML Variable"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Normal Table"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="annotation subject"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="No List"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Outline List 1"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Outline List 2"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Outline List 3"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Simple 1"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Simple 2"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Simple 3"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Classic 1"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Classic 2"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Classic 3"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Classic 4"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Colorful 1"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Colorful 2"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Colorful 3"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Columns 1"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Columns 2"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Columns 3"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Columns 4"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Columns 5"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Grid 1"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Grid 2"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Grid 3"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Grid 4"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Grid 5"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Grid 6"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Grid 7"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Grid 8"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table List 1"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table List 2"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table List 3"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table List 4"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table List 5"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table List 6"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table List 7"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table List 8"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table 3D effects 1"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table 3D effects 2"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table 3D effects 3"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Contemporary"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Elegant"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Professional"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Subtle 1"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Subtle 2"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Web 1"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Web 2"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Web 3"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Balloon Text"></w:LsdException> <w:LsdException Locked="false" Priority="39" Name="Table Grid"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Theme"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" Name="Placeholder Text"></w:LsdException> <w:LsdException Locked="false" Priority="1" QFormat="true" Name="No Spacing"></w:LsdException> <w:LsdException Locked="false" Priority="60" Name="Light Shading"></w:LsdException> <w:LsdException Locked="false" Priority="61" Name="Light List"></w:LsdException> <w:LsdException Locked="false" Priority="62" Name="Light Grid"></w:LsdException> <w:LsdException Locked="false" Priority="63" Name="Medium Shading 1"></w:LsdException> <w:LsdException Locked="false" Priority="64" Name="Medium Shading 2"></w:LsdException> <w:LsdException Locked="false" Priority="65" Name="Medium List 1"></w:LsdException> <w:LsdException Locked="false" Priority="66" Name="Medium List 2"></w:LsdException> <w:LsdException Locked="false" Priority="67" Name="Medium Grid 1"></w:LsdException> <w:LsdException Locked="false" Priority="68" Name="Medium Grid 2"></w:LsdException> <w:LsdException Locked="false" Priority="69" Name="Medium Grid 3"></w:LsdException> <w:LsdException Locked="false" Priority="70" Name="Dark List"></w:LsdException> <w:LsdException Locked="false" Priority="71" Name="Colorful Shading"></w:LsdException> <w:LsdException Locked="false" Priority="72" Name="Colorful List"></w:LsdException> <w:LsdException Locked="false" Priority="73" Name="Colorful Grid"></w:LsdException> <w:LsdException Locked="false" Priority="60" Name="Light Shading Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="61" Name="Light List Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="62" Name="Light Grid Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="63" Name="Medium Shading 1 Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="64" Name="Medium Shading 2 Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="65" Name="Medium List 1 Accent 1"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" Name="Revision"></w:LsdException> <w:LsdException Locked="false" Priority="34" QFormat="true" Name="List Paragraph"></w:LsdException> <w:LsdException Locked="false" Priority="29" QFormat="true" Name="Quote"></w:LsdException> <w:LsdException Locked="false" Priority="30" QFormat="true" Name="Intense Quote"></w:LsdException> <w:LsdException Locked="false" Priority="66" Name="Medium List 2 Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="67" Name="Medium Grid 1 Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="68" Name="Medium Grid 2 Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="69" Name="Medium Grid 3 Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="70" Name="Dark List Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="71" Name="Colorful Shading Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="72" Name="Colorful List Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="73" Name="Colorful Grid Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="60" Name="Light Shading Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="61" Name="Light List Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="62" Name="Light Grid Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="63" Name="Medium Shading 1 Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="64" Name="Medium Shading 2 Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="65" Name="Medium List 1 Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="66" Name="Medium List 2 Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="67" Name="Medium Grid 1 Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="68" Name="Medium Grid 2 Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="69" Name="Medium Grid 3 Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="70" Name="Dark List Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="71" Name="Colorful Shading Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="72" Name="Colorful List Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="73" Name="Colorful Grid Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="60" Name="Light Shading Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="61" Name="Light List Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="62" Name="Light Grid Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="63" Name="Medium Shading 1 Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="64" Name="Medium Shading 2 Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="65" Name="Medium List 1 Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="66" Name="Medium List 2 Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="67" Name="Medium Grid 1 Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="68" Name="Medium Grid 2 Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="69" Name="Medium Grid 3 Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="70" Name="Dark List Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="71" Name="Colorful Shading Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="72" Name="Colorful List Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="73" Name="Colorful Grid Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="60" Name="Light Shading Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="61" Name="Light List Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="62" Name="Light Grid Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="63" Name="Medium Shading 1 Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="64" Name="Medium Shading 2 Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="65" Name="Medium List 1 Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="66" Name="Medium List 2 Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="67" Name="Medium Grid 1 Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="68" Name="Medium Grid 2 Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="69" Name="Medium Grid 3 Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="70" Name="Dark List Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="71" Name="Colorful Shading Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="72" Name="Colorful List Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="73" Name="Colorful Grid Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="60" Name="Light Shading Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="61" Name="Light List Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="62" Name="Light Grid Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="63" Name="Medium Shading 1 Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="64" Name="Medium Shading 2 Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="65" Name="Medium List 1 Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="66" Name="Medium List 2 Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="67" Name="Medium Grid 1 Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="68" Name="Medium Grid 2 Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="69" Name="Medium Grid 3 Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="70" Name="Dark List Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="71" Name="Colorful Shading Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="72" Name="Colorful List Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="73" Name="Colorful Grid Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="60" Name="Light Shading Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="61" Name="Light List Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="62" Name="Light Grid Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="63" Name="Medium Shading 1 Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="64" Name="Medium Shading 2 Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="65" Name="Medium List 1 Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="66" Name="Medium List 2 Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="67" Name="Medium Grid 1 Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="68" Name="Medium Grid 2 Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="69" Name="Medium Grid 3 Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="70" Name="Dark List Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="71" Name="Colorful Shading Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="72" Name="Colorful List Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="73" Name="Colorful Grid Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="19" QFormat="true" Name="Subtle Emphasis"></w:LsdException> <w:LsdException Locked="false" Priority="21" QFormat="true" Name="Intense Emphasis"></w:LsdException> <w:LsdException Locked="false" Priority="31" QFormat="true" Name="Subtle Reference"></w:LsdException> <w:LsdException Locked="false" Priority="32" QFormat="true" Name="Intense Reference"></w:LsdException> <w:LsdException Locked="false" Priority="33" QFormat="true" Name="Book Title"></w:LsdException> <w:LsdException Locked="false" Priority="37" SemiHidden="true" UnhideWhenUsed="true" Name="Bibliography"></w:LsdException> <w:LsdException Locked="false" Priority="39" SemiHidden="true" UnhideWhenUsed="true" QFormat="true" Name="TOC Heading"></w:LsdException> <w:LsdException Locked="false" Priority="41" Name="Plain Table 1"></w:LsdException> <w:LsdException Locked="false" Priority="42" Name="Plain Table 2"></w:LsdException> <w:LsdException Locked="false" Priority="43" Name="Plain Table 3"></w:LsdException> <w:LsdException Locked="false" Priority="44" Name="Plain Table 4"></w:LsdException> <w:LsdException Locked="false" Priority="45" Name="Plain Table 5"></w:LsdException> <w:LsdException Locked="false" Priority="40" Name="Grid Table Light"></w:LsdException> <w:LsdException Locked="false" Priority="46" Name="Grid Table 1 Light"></w:LsdException> <w:LsdException Locked="false" Priority="47" Name="Grid Table 2"></w:LsdException> <w:LsdException Locked="false" Priority="48" Name="Grid Table 3"></w:LsdException> <w:LsdException Locked="false" Priority="49" Name="Grid Table 4"></w:LsdException> <w:LsdException Locked="false" Priority="50" Name="Grid Table 5 Dark"></w:LsdException> <w:LsdException Locked="false" Priority="51" Name="Grid Table 6 Colorful"></w:LsdException> <w:LsdException Locked="false" Priority="52" Name="Grid Table 7 Colorful"></w:LsdException> <w:LsdException Locked="false" Priority="46" Name="Grid Table 1 Light Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="47" Name="Grid Table 2 Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="48" Name="Grid Table 3 Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="49" Name="Grid Table 4 Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="50" Name="Grid Table 5 Dark Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="51" Name="Grid Table 6 Colorful Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="52" Name="Grid Table 7 Colorful Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="46" Name="Grid Table 1 Light Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="47" Name="Grid Table 2 Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="48" Name="Grid Table 3 Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="49" Name="Grid Table 4 Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="50" Name="Grid Table 5 Dark Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="51" Name="Grid Table 6 Colorful Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="52" Name="Grid Table 7 Colorful Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="46" Name="Grid Table 1 Light Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="47" Name="Grid Table 2 Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="48" Name="Grid Table 3 Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="49" Name="Grid Table 4 Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="50" Name="Grid Table 5 Dark Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="51" Name="Grid Table 6 Colorful Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="52" Name="Grid Table 7 Colorful Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="46" Name="Grid Table 1 Light Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="47" Name="Grid Table 2 Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="48" Name="Grid Table 3 Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="49" Name="Grid Table 4 Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="50" Name="Grid Table 5 Dark Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="51" Name="Grid Table 6 Colorful Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="52" Name="Grid Table 7 Colorful Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="46" Name="Grid Table 1 Light Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="47" Name="Grid Table 2 Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="48" Name="Grid Table 3 Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="49" Name="Grid Table 4 Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="50" Name="Grid Table 5 Dark Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="51" Name="Grid Table 6 Colorful Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="52" Name="Grid Table 7 Colorful Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="46" Name="Grid Table 1 Light Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="47" Name="Grid Table 2 Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="48" Name="Grid Table 3 Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="49" Name="Grid Table 4 Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="50" Name="Grid Table 5 Dark Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="51" Name="Grid Table 6 Colorful Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="52" Name="Grid Table 7 Colorful Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="46" Name="List Table 1 Light"></w:LsdException> <w:LsdException Locked="false" Priority="47" Name="List Table 2"></w:LsdException> <w:LsdException Locked="false" Priority="48" Name="List Table 3"></w:LsdException> <w:LsdException Locked="false" Priority="49" Name="List Table 4"></w:LsdException> <w:LsdException Locked="false" Priority="50" Name="List Table 5 Dark"></w:LsdException> <w:LsdException Locked="false" Priority="51" Name="List Table 6 Colorful"></w:LsdException> <w:LsdException Locked="false" Priority="52" Name="List Table 7 Colorful"></w:LsdException> <w:LsdException Locked="false" Priority="46" Name="List Table 1 Light Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="47" Name="List Table 2 Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="48" Name="List Table 3 Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="49" Name="List Table 4 Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="50" Name="List Table 5 Dark Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="51" Name="List Table 6 Colorful Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="52" Name="List Table 7 Colorful Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="46" Name="List Table 1 Light Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="47" Name="List Table 2 Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="48" Name="List Table 3 Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="49" Name="List Table 4 Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="50" Name="List Table 5 Dark Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="51" Name="List Table 6 Colorful Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="52" Name="List Table 7 Colorful Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="46" Name="List Table 1 Light Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="47" Name="List Table 2 Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="48" Name="List Table 3 Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="49" Name="List Table 4 Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="50" Name="List Table 5 Dark Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="51" Name="List Table 6 Colorful Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="52" Name="List Table 7 Colorful Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="46" Name="List Table 1 Light Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="47" Name="List Table 2 Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="48" Name="List Table 3 Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="49" Name="List Table 4 Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="50" Name="List Table 5 Dark Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="51" Name="List Table 6 Colorful Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="52" Name="List Table 7 Colorful Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="46" Name="List Table 1 Light Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="47" Name="List Table 2 Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="48" Name="List Table 3 Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="49" Name="List Table 4 Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="50" Name="List Table 5 Dark Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="51" Name="List Table 6 Colorful Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="52" Name="List Table 7 Colorful Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="46" Name="List Table 1 Light Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="47" Name="List Table 2 Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="48" Name="List Table 3 Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="49" Name="List Table 4 Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="50" Name="List Table 5 Dark Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="51" Name="List Table 6 Colorful Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="52" Name="List Table 7 Colorful Accent 6"></w:LsdException> </w:LatentStyles> </xml><![endif]--><!--[if gte mso 10]> <style> /* Style Definitions */ table.MsoNormalTable {mso-style-name:"Table Normal"; mso-tstyle-rowband-size:0; mso-tstyle-colband-size:0; mso-style-noshow:yes; mso-style-priority:99; mso-style-parent:""; mso-padding-alt:0cm 5.4pt 0cm 5.4pt; mso-para-margin-top:0cm; mso-para-margin-right:0cm; mso-para-margin-bottom:8.0pt; mso-para-margin-left:0cm; line-height:107%; mso-pagination:widow-orphan; font-size:11.0pt; font-family:"Calibri",sans-serif; mso-ascii-font-family:Calibri; mso-ascii-theme-font:minor-latin; mso-hansi-font-family:Calibri; mso-hansi-theme-font:minor-latin; mso-ansi-language:EN-US; mso-fareast-language:EN-US;} </style> <![endif]--><!--StartFragment--> <p> <b><!--StartFragment--></b> <u>Home Used as Office Expenses</u> <b><!--EndFragment--><br/></b> </p> <p>General Rule - Where a self-employed taxpayer uses his or her home partly to further the conduct of a business, he or she is entitled to a partial deduction for the outgoings which relate to the use of the home for the work related activities. These include:<br/></p> <p> <b></b> </p> <ul> <li>Heating</li> <li>Lighting</li> <li>Rates</li> <li>Insurance</li> <li>Mortgage interest/rent</li> <li>House and contents insurance</li> <li>Repairs and maintenance</li> <li>Telephone rental</li> </ul> <p>The portion of outgoings deductible is based on the area used for the business, expressed as a percentage of the total area of the home:</p> <p>It is not absolutely necessary to set aside a specific room for business purposes, nor is it necessary for your home to be physically changed to suit the business. In cases where a separate room is not set aside, it may be appropriate to apportion the outgoings based on criteria such as the amount of time spent on income-earning activities as home as well as the area used. Examples of areas likely to be used for business purposes include:</p> <p></p> <ul> <li> An office or office area<br/></li> <li>A storeroom or storage area<br/></li> <li> A workshop<br/></li> <li> A garage or part of a garage which is used to house a business vehicle<br/></li> </ul> <p></p> <p>Our Recommendation</p> <p>Do the maths, and think laterally. Most people who are self-employed find it is impossible to completely separate business life from home life. Keep written workings of your calculations, and be sure to keep records of your outgoings in a safe place.</p> <!--EndFragment--> <p></p> <!--EndFragment--></div> <div class="readMore"> <a dont-color-link="true" href="/post-title1"></a> </div> </div> </div> </div> <div style="-ms-grid-column:2; -ms-grid-row:2" class="postArticle "> <div class="inner clearfix wow" style="animation-delay: 800.0ms;"> <a class="blogImgLink" dont-color-link="true" href="/gst-return-filing-just-got-easier-with-xero" data-blog-post-alias="gst-return-filing-just-got-easier-with-xero"> <div class="blogImg" style="background-image: url('https://lirp.cdn-website.com/4ef403d7/dms3rep/multi/opt/GST%20Return-821x398-1920w.jpg');"><img src="https://lirp.cdn-website.com/4ef403d7/dms3rep/multi/opt/GST%20Return-821x398-1920w.jpg" "="" onerror="handleImageLoadError(this)"/></div> </a> <div class="postText clearfix"> <div class="postTitle"> <h3> <a dont-color-link="true" href="/gst-return-filing-just-got-easier-with-xero" data-blog-post-alias="gst-return-filing-just-got-easier-with-xero">GST Return filing just got easier with Xero</a> </h3> </div> <div class="authorBar"> <span>By Julie Findlay</span> <span>•</span> <span>July 28, 2016</span> </div> <div class="postDescription">You can now file your GST return directly from your Xero software</div> <div class="readMore"> <a dont-color-link="true" href="/gst-return-filing-just-got-easier-with-xero"></a> </div> </div> </div> </div> <div style="-ms-grid-column:1; -ms-grid-row:3" class="postArticle "> <div class="inner clearfix wow" style="animation-delay: 1000.0ms;"> <a class="blogImgLink" dont-color-link="true" href="/taking-xero-to-stewart-island" data-blog-post-alias="taking-xero-to-stewart-island"> <div class="blogImg" style="background-image: url('https://lirp.cdn-website.com/4ef403d7/dms3rep/multi/opt/stewart%20island%202-520x294-1920w.jpg');"><img src="https://lirp.cdn-website.com/4ef403d7/dms3rep/multi/opt/stewart%20island%202-520x294-1920w.jpg" "="" onerror="handleImageLoadError(this)"/></div> </a> <div class="postText clearfix"> <div class="postTitle"> <h3> <a dont-color-link="true" href="/taking-xero-to-stewart-island" data-blog-post-alias="taking-xero-to-stewart-island">Taking Xero to Stewart Island</a> </h3> </div> <div class="authorBar"> <span>By Julie Findlay</span> <span>•</span> <span>July 24, 2016</span> </div> <div class="postDescription">The team visit beautiful Stewart Island to demonstrate Xero software.</div> <div class="readMore"> <a dont-color-link="true" href="/taking-xero-to-stewart-island"></a> </div> </div> </div> </div> <div style="-ms-grid-column:2; -ms-grid-row:3" class="postArticle "> <div class="inner clearfix wow" style="animation-delay: 1200.0ms;"> <a class="blogImgLink" dont-color-link="true" href="/specialist-tax-advice-when-you-need-it" data-blog-post-alias="specialist-tax-advice-when-you-need-it"> <div class="blogImg" style="background-image: url('https://irp-cdn.multiscreensite.com/4ef403d7/wGXawLaURmy7ugme1QCB_PH%20Logo.jpg');"><img src="https://irp-cdn.multiscreensite.com/4ef403d7/wGXawLaURmy7ugme1QCB_PH%20Logo.jpg" "="" onerror="handleImageLoadError(this)"/></div> </a> <div class="postText clearfix"> <div class="postTitle"> <h3> <a dont-color-link="true" href="/specialist-tax-advice-when-you-need-it" data-blog-post-alias="specialist-tax-advice-when-you-need-it">Specialist Tax Advice When 'YOU' Need It!</a> </h3> </div> <div class="authorBar"> <span>By Julie Findlay</span> <span>•</span> <span>June 21, 2016</span> </div> <div class="postDescription"><!--[if gte mso 9]><xml> <o:OfficeDocumentSettings> <o:AllowPNG></o:AllowPNG> </o:OfficeDocumentSettings> </xml><![endif]--><!--[if gte mso 9]><xml> <w:WordDocument> <w:View>Normal</w:View> <w:Zoom>0</w:Zoom> <w:TrackMoves></w:TrackMoves> <w:TrackFormatting></w:TrackFormatting> <w:PunctuationKerning></w:PunctuationKerning> <w:ValidateAgainstSchemas></w:ValidateAgainstSchemas> <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid> <w:IgnoreMixedContent>false</w:IgnoreMixedContent> <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText> <w:DoNotPromoteQF></w:DoNotPromoteQF> <w:LidThemeOther>EN-NZ</w:LidThemeOther> <w:LidThemeAsian>X-NONE</w:LidThemeAsian> <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript> <w:Compatibility> <w:BreakWrappedTables></w:BreakWrappedTables> <w:SnapToGridInCell></w:SnapToGridInCell> <w:WrapTextWithPunct></w:WrapTextWithPunct> <w:UseAsianBreakRules></w:UseAsianBreakRules> <w:DontGrowAutofit></w:DontGrowAutofit> <w:SplitPgBreakAndParaMark></w:SplitPgBreakAndParaMark> <w:EnableOpenTypeKerning></w:EnableOpenTypeKerning> <w:DontFlipMirrorIndents></w:DontFlipMirrorIndents> <w:OverrideTableStyleHps></w:OverrideTableStyleHps> </w:Compatibility> <m:mathPr> <m:mathFont m:val="Cambria Math"></m:mathFont> <m:brkBin m:val="before"></m:brkBin> <m:brkBinSub m:val="--"></m:brkBinSub> <m:smallFrac m:val="off"></m:smallFrac> <m:dispDef></m:dispDef> <m:lMargin m:val="0"></m:lMargin> <m:rMargin m:val="0"></m:rMargin> <m:defJc m:val="centerGroup"></m:defJc> <m:wrapIndent m:val="1440"></m:wrapIndent> <m:intLim m:val="subSup"></m:intLim> <m:naryLim m:val="undOvr"></m:naryLim> </m:mathPr></w:WordDocument> </xml><![endif]--><!--[if gte mso 9]><xml> <w:LatentStyles DefLockedState="false" DefUnhideWhenUsed="false" DefSemiHidden="false" DefQFormat="false" DefPriority="99" LatentStyleCount="371"> <w:LsdException Locked="false" Priority="0" QFormat="true" Name="Normal"></w:LsdException> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 1"></w:LsdException> <w:LsdException Locked="false" Priority="9" SemiHidden="true" UnhideWhenUsed="true" QFormat="true" Name="heading 2"></w:LsdException> <w:LsdException Locked="false" Priority="9" SemiHidden="true" UnhideWhenUsed="true" QFormat="true" Name="heading 3"></w:LsdException> <w:LsdException Locked="false" Priority="9" SemiHidden="true" UnhideWhenUsed="true" QFormat="true" Name="heading 4"></w:LsdException> <w:LsdException Locked="false" Priority="9" SemiHidden="true" UnhideWhenUsed="true" QFormat="true" Name="heading 5"></w:LsdException> <w:LsdException Locked="false" Priority="9" SemiHidden="true" UnhideWhenUsed="true" QFormat="true" Name="heading 6"></w:LsdException> <w:LsdException Locked="false" Priority="9" SemiHidden="true" UnhideWhenUsed="true" QFormat="true" Name="heading 7"></w:LsdException> <w:LsdException Locked="false" Priority="9" SemiHidden="true" UnhideWhenUsed="true" QFormat="true" Name="heading 8"></w:LsdException> <w:LsdException Locked="false" Priority="9" SemiHidden="true" UnhideWhenUsed="true" QFormat="true" Name="heading 9"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="index 1"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="index 2"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="index 3"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="index 4"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="index 5"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="index 6"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="index 7"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="index 8"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="index 9"></w:LsdException> <w:LsdException Locked="false" Priority="39" SemiHidden="true" UnhideWhenUsed="true" Name="toc 1"></w:LsdException> <w:LsdException Locked="false" Priority="39" SemiHidden="true" UnhideWhenUsed="true" Name="toc 2"></w:LsdException> <w:LsdException Locked="false" Priority="39" SemiHidden="true" UnhideWhenUsed="true" Name="toc 3"></w:LsdException> <w:LsdException Locked="false" Priority="39" SemiHidden="true" UnhideWhenUsed="true" Name="toc 4"></w:LsdException> <w:LsdException Locked="false" Priority="39" SemiHidden="true" UnhideWhenUsed="true" Name="toc 5"></w:LsdException> <w:LsdException Locked="false" Priority="39" SemiHidden="true" UnhideWhenUsed="true" Name="toc 6"></w:LsdException> <w:LsdException Locked="false" Priority="39" SemiHidden="true" UnhideWhenUsed="true" Name="toc 7"></w:LsdException> <w:LsdException Locked="false" Priority="39" SemiHidden="true" UnhideWhenUsed="true" Name="toc 8"></w:LsdException> <w:LsdException Locked="false" Priority="39" SemiHidden="true" UnhideWhenUsed="true" Name="toc 9"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Normal Indent"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="footnote text"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="annotation text"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="header"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="footer"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="index heading"></w:LsdException> <w:LsdException Locked="false" Priority="35" SemiHidden="true" UnhideWhenUsed="true" QFormat="true" Name="caption"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="table of figures"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="envelope address"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="envelope return"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="footnote reference"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="annotation reference"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="line number"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="page number"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="endnote reference"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="endnote text"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="table of authorities"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="macro"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="toa heading"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List Bullet"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List Number"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List 2"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List 3"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List 4"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List 5"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List Bullet 2"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List Bullet 3"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List Bullet 4"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List Bullet 5"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List Number 2"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List Number 3"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List Number 4"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List Number 5"></w:LsdException> <w:LsdException Locked="false" Priority="10" QFormat="true" Name="Title"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Closing"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Signature"></w:LsdException> <w:LsdException Locked="false" Priority="1" SemiHidden="true" UnhideWhenUsed="true" Name="Default Paragraph Font"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Body Text"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Body Text Indent"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List Continue"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List Continue 2"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List Continue 3"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List Continue 4"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List Continue 5"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Message Header"></w:LsdException> <w:LsdException Locked="false" Priority="11" QFormat="true" Name="Subtitle"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Salutation"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Date"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Body Text First Indent"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Body Text First Indent 2"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Note Heading"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Body Text 2"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Body Text 3"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Body Text Indent 2"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Body Text Indent 3"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Block Text"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Hyperlink"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="FollowedHyperlink"></w:LsdException> <w:LsdException Locked="false" Priority="22" QFormat="true" Name="Strong"></w:LsdException> <w:LsdException Locked="false" Priority="20" QFormat="true" Name="Emphasis"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Document Map"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Plain Text"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="E-mail Signature"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="HTML Top of Form"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="HTML Bottom of Form"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Normal (Web)"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="HTML Acronym"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="HTML Address"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="HTML Cite"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="HTML Code"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="HTML Definition"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="HTML Keyboard"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="HTML Preformatted"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="HTML Sample"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="HTML Typewriter"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="HTML Variable"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Normal Table"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="annotation subject"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="No List"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Outline List 1"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Outline List 2"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Outline List 3"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Simple 1"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Simple 2"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Simple 3"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Classic 1"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Classic 2"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Classic 3"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Classic 4"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Colorful 1"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Colorful 2"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Colorful 3"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Columns 1"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Columns 2"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Columns 3"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Columns 4"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Columns 5"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Grid 1"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Grid 2"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Grid 3"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Grid 4"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Grid 5"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Grid 6"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Grid 7"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Grid 8"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table List 1"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table List 2"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table List 3"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table List 4"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table List 5"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table List 6"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table List 7"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table List 8"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table 3D effects 1"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table 3D effects 2"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table 3D effects 3"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Contemporary"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Elegant"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Professional"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Subtle 1"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Subtle 2"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Web 1"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Web 2"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Web 3"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Balloon Text"></w:LsdException> <w:LsdException Locked="false" Priority="39" Name="Table Grid"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Theme"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" Name="Placeholder Text"></w:LsdException> <w:LsdException Locked="false" Priority="1" QFormat="true" Name="No Spacing"></w:LsdException> <w:LsdException Locked="false" Priority="60" Name="Light Shading"></w:LsdException> <w:LsdException Locked="false" Priority="61" Name="Light List"></w:LsdException> <w:LsdException Locked="false" Priority="62" Name="Light Grid"></w:LsdException> <w:LsdException Locked="false" Priority="63" Name="Medium Shading 1"></w:LsdException> <w:LsdException Locked="false" Priority="64" Name="Medium Shading 2"></w:LsdException> <w:LsdException Locked="false" Priority="65" Name="Medium List 1"></w:LsdException> <w:LsdException Locked="false" Priority="66" Name="Medium List 2"></w:LsdException> <w:LsdException Locked="false" Priority="67" Name="Medium Grid 1"></w:LsdException> <w:LsdException Locked="false" Priority="68" Name="Medium Grid 2"></w:LsdException> <w:LsdException Locked="false" Priority="69" Name="Medium Grid 3"></w:LsdException> <w:LsdException Locked="false" Priority="70" Name="Dark List"></w:LsdException> <w:LsdException Locked="false" Priority="71" Name="Colorful Shading"></w:LsdException> <w:LsdException Locked="false" Priority="72" Name="Colorful List"></w:LsdException> <w:LsdException Locked="false" Priority="73" Name="Colorful Grid"></w:LsdException> <w:LsdException Locked="false" Priority="60" Name="Light Shading Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="61" Name="Light List Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="62" Name="Light Grid Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="63" Name="Medium Shading 1 Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="64" Name="Medium Shading 2 Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="65" Name="Medium List 1 Accent 1"></w:LsdException> <w:LsdException Locked="false" SemiHidden="true" Name="Revision"></w:LsdException> <w:LsdException Locked="false" Priority="34" QFormat="true" Name="List Paragraph"></w:LsdException> <w:LsdException Locked="false" Priority="29" QFormat="true" Name="Quote"></w:LsdException> <w:LsdException Locked="false" Priority="30" QFormat="true" Name="Intense Quote"></w:LsdException> <w:LsdException Locked="false" Priority="66" Name="Medium List 2 Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="67" Name="Medium Grid 1 Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="68" Name="Medium Grid 2 Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="69" Name="Medium Grid 3 Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="70" Name="Dark List Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="71" Name="Colorful Shading Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="72" Name="Colorful List Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="73" Name="Colorful Grid Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="60" Name="Light Shading Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="61" Name="Light List Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="62" Name="Light Grid Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="63" Name="Medium Shading 1 Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="64" Name="Medium Shading 2 Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="65" Name="Medium List 1 Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="66" Name="Medium List 2 Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="67" Name="Medium Grid 1 Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="68" Name="Medium Grid 2 Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="69" Name="Medium Grid 3 Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="70" Name="Dark List Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="71" Name="Colorful Shading Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="72" Name="Colorful List Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="73" Name="Colorful Grid Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="60" Name="Light Shading Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="61" Name="Light List Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="62" Name="Light Grid Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="63" Name="Medium Shading 1 Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="64" Name="Medium Shading 2 Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="65" Name="Medium List 1 Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="66" Name="Medium List 2 Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="67" Name="Medium Grid 1 Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="68" Name="Medium Grid 2 Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="69" Name="Medium Grid 3 Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="70" Name="Dark List Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="71" Name="Colorful Shading Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="72" Name="Colorful List Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="73" Name="Colorful Grid Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="60" Name="Light Shading Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="61" Name="Light List Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="62" Name="Light Grid Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="63" Name="Medium Shading 1 Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="64" Name="Medium Shading 2 Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="65" Name="Medium List 1 Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="66" Name="Medium List 2 Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="67" Name="Medium Grid 1 Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="68" Name="Medium Grid 2 Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="69" Name="Medium Grid 3 Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="70" Name="Dark List Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="71" Name="Colorful Shading Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="72" Name="Colorful List Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="73" Name="Colorful Grid Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="60" Name="Light Shading Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="61" Name="Light List Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="62" Name="Light Grid Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="63" Name="Medium Shading 1 Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="64" Name="Medium Shading 2 Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="65" Name="Medium List 1 Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="66" Name="Medium List 2 Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="67" Name="Medium Grid 1 Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="68" Name="Medium Grid 2 Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="69" Name="Medium Grid 3 Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="70" Name="Dark List Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="71" Name="Colorful Shading Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="72" Name="Colorful List Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="73" Name="Colorful Grid Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="60" Name="Light Shading Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="61" Name="Light List Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="62" Name="Light Grid Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="63" Name="Medium Shading 1 Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="64" Name="Medium Shading 2 Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="65" Name="Medium List 1 Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="66" Name="Medium List 2 Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="67" Name="Medium Grid 1 Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="68" Name="Medium Grid 2 Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="69" Name="Medium Grid 3 Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="70" Name="Dark List Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="71" Name="Colorful Shading Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="72" Name="Colorful List Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="73" Name="Colorful Grid Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="19" QFormat="true" Name="Subtle Emphasis"></w:LsdException> <w:LsdException Locked="false" Priority="21" QFormat="true" Name="Intense Emphasis"></w:LsdException> <w:LsdException Locked="false" Priority="31" QFormat="true" Name="Subtle Reference"></w:LsdException> <w:LsdException Locked="false" Priority="32" QFormat="true" Name="Intense Reference"></w:LsdException> <w:LsdException Locked="false" Priority="33" QFormat="true" Name="Book Title"></w:LsdException> <w:LsdException Locked="false" Priority="37" SemiHidden="true" UnhideWhenUsed="true" Name="Bibliography"></w:LsdException> <w:LsdException Locked="false" Priority="39" SemiHidden="true" UnhideWhenUsed="true" QFormat="true" Name="TOC Heading"></w:LsdException> <w:LsdException Locked="false" Priority="41" Name="Plain Table 1"></w:LsdException> <w:LsdException Locked="false" Priority="42" Name="Plain Table 2"></w:LsdException> <w:LsdException Locked="false" Priority="43" Name="Plain Table 3"></w:LsdException> <w:LsdException Locked="false" Priority="44" Name="Plain Table 4"></w:LsdException> <w:LsdException Locked="false" Priority="45" Name="Plain Table 5"></w:LsdException> <w:LsdException Locked="false" Priority="40" Name="Grid Table Light"></w:LsdException> <w:LsdException Locked="false" Priority="46" Name="Grid Table 1 Light"></w:LsdException> <w:LsdException Locked="false" Priority="47" Name="Grid Table 2"></w:LsdException> <w:LsdException Locked="false" Priority="48" Name="Grid Table 3"></w:LsdException> <w:LsdException Locked="false" Priority="49" Name="Grid Table 4"></w:LsdException> <w:LsdException Locked="false" Priority="50" Name="Grid Table 5 Dark"></w:LsdException> <w:LsdException Locked="false" Priority="51" Name="Grid Table 6 Colorful"></w:LsdException> <w:LsdException Locked="false" Priority="52" Name="Grid Table 7 Colorful"></w:LsdException> <w:LsdException Locked="false" Priority="46" Name="Grid Table 1 Light Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="47" Name="Grid Table 2 Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="48" Name="Grid Table 3 Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="49" Name="Grid Table 4 Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="50" Name="Grid Table 5 Dark Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="51" Name="Grid Table 6 Colorful Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="52" Name="Grid Table 7 Colorful Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="46" Name="Grid Table 1 Light Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="47" Name="Grid Table 2 Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="48" Name="Grid Table 3 Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="49" Name="Grid Table 4 Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="50" Name="Grid Table 5 Dark Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="51" Name="Grid Table 6 Colorful Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="52" Name="Grid Table 7 Colorful Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="46" Name="Grid Table 1 Light Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="47" Name="Grid Table 2 Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="48" Name="Grid Table 3 Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="49" Name="Grid Table 4 Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="50" Name="Grid Table 5 Dark Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="51" Name="Grid Table 6 Colorful Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="52" Name="Grid Table 7 Colorful Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="46" Name="Grid Table 1 Light Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="47" Name="Grid Table 2 Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="48" Name="Grid Table 3 Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="49" Name="Grid Table 4 Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="50" Name="Grid Table 5 Dark Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="51" Name="Grid Table 6 Colorful Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="52" Name="Grid Table 7 Colorful Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="46" Name="Grid Table 1 Light Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="47" Name="Grid Table 2 Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="48" Name="Grid Table 3 Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="49" Name="Grid Table 4 Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="50" Name="Grid Table 5 Dark Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="51" Name="Grid Table 6 Colorful Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="52" Name="Grid Table 7 Colorful Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="46" Name="Grid Table 1 Light Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="47" Name="Grid Table 2 Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="48" Name="Grid Table 3 Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="49" Name="Grid Table 4 Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="50" Name="Grid Table 5 Dark Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="51" Name="Grid Table 6 Colorful Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="52" Name="Grid Table 7 Colorful Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="46" Name="List Table 1 Light"></w:LsdException> <w:LsdException Locked="false" Priority="47" Name="List Table 2"></w:LsdException> <w:LsdException Locked="false" Priority="48" Name="List Table 3"></w:LsdException> <w:LsdException Locked="false" Priority="49" Name="List Table 4"></w:LsdException> <w:LsdException Locked="false" Priority="50" Name="List Table 5 Dark"></w:LsdException> <w:LsdException Locked="false" Priority="51" Name="List Table 6 Colorful"></w:LsdException> <w:LsdException Locked="false" Priority="52" Name="List Table 7 Colorful"></w:LsdException> <w:LsdException Locked="false" Priority="46" Name="List Table 1 Light Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="47" Name="List Table 2 Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="48" Name="List Table 3 Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="49" Name="List Table 4 Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="50" Name="List Table 5 Dark Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="51" Name="List Table 6 Colorful Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="52" Name="List Table 7 Colorful Accent 1"></w:LsdException> <w:LsdException Locked="false" Priority="46" Name="List Table 1 Light Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="47" Name="List Table 2 Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="48" Name="List Table 3 Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="49" Name="List Table 4 Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="50" Name="List Table 5 Dark Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="51" Name="List Table 6 Colorful Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="52" Name="List Table 7 Colorful Accent 2"></w:LsdException> <w:LsdException Locked="false" Priority="46" Name="List Table 1 Light Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="47" Name="List Table 2 Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="48" Name="List Table 3 Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="49" Name="List Table 4 Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="50" Name="List Table 5 Dark Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="51" Name="List Table 6 Colorful Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="52" Name="List Table 7 Colorful Accent 3"></w:LsdException> <w:LsdException Locked="false" Priority="46" Name="List Table 1 Light Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="47" Name="List Table 2 Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="48" Name="List Table 3 Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="49" Name="List Table 4 Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="50" Name="List Table 5 Dark Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="51" Name="List Table 6 Colorful Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="52" Name="List Table 7 Colorful Accent 4"></w:LsdException> <w:LsdException Locked="false" Priority="46" Name="List Table 1 Light Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="47" Name="List Table 2 Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="48" Name="List Table 3 Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="49" Name="List Table 4 Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="50" Name="List Table 5 Dark Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="51" Name="List Table 6 Colorful Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="52" Name="List Table 7 Colorful Accent 5"></w:LsdException> <w:LsdException Locked="false" Priority="46" Name="List Table 1 Light Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="47" Name="List Table 2 Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="48" Name="List Table 3 Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="49" Name="List Table 4 Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="50" Name="List Table 5 Dark Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="51" Name="List Table 6 Colorful Accent 6"></w:LsdException> <w:LsdException Locked="false" Priority="52" Name="List Table 7 Colorful Accent 6"></w:LsdException> </w:LatentStyles> </xml><![endif]--><!--[if gte mso 10]> <style> /* Style Definitions */ table.MsoNormalTable {mso-style-name:"Table Normal"; mso-tstyle-rowband-size:0; mso-tstyle-colband-size:0; mso-style-noshow:yes; mso-style-priority:99; mso-style-parent:""; mso-padding-alt:0cm 5.4pt 0cm 5.4pt; mso-para-margin-top:0cm; mso-para-margin-right:0cm; mso-para-margin-bottom:8.0pt; mso-para-margin-left:0cm; line-height:107%; mso-pagination:widow-orphan; font-size:11.0pt; font-family:"Calibri",sans-serif; mso-ascii-font-family:Calibri; mso-ascii-theme-font:minor-latin; mso-hansi-font-family:Calibri; mso-hansi-theme-font:minor-latin; mso-fareast-language:EN-US;} </style> <![endif]--><!--StartFragment--> <p>At Balanced Accountancy, we engage the specialist service of one of New Zealand’s most reputable accounting firms for taxation advice. Polson Higgs offer practical advice to maximise savings and minimise tax.</p> <p>Polson Higgs has a long-standing relationship with our firm, providing specialist taxation advice when required. This enables us to assist those clients who require this service, without a large overhead being built into our fees. It is a user-pays service. </p> <p>Julie previously worked for Polson Higgs (formerly Price Waterhouse) in Dunedin and has maintained connections with key members of the Polson Higgs team.</p> <p>Find out more about Polson Higgs by visiting:</p> <p> <a href="http://www.ph.co.nz">www.ph.co.nz</a> </p> <p><br/></p> </div> <div class="readMore"> <a dont-color-link="true" href="/specialist-tax-advice-when-you-need-it"></a> </div> </div> </div> </div> <div style="-ms-grid-column:1; -ms-grid-row:4" class="postArticle "> <div class="inner clearfix wow" style="animation-delay: 1400.0ms;"> <a class="blogImgLink" dont-color-link="true" href="/beware-new-ird-scam-doing-the-rounds" data-blog-post-alias="beware-new-ird-scam-doing-the-rounds"> <div class="blogImg" style="background-image: url('https://lirp.cdn-website.com/4ef403d7/dms3rep/multi/opt/ird-1280x367-1920w.png');"><img src="https://lirp.cdn-website.com/4ef403d7/dms3rep/multi/opt/ird-1280x367-1920w.png" "="" onerror="handleImageLoadError(this)"/></div> </a> <div class="postText clearfix"> <div class="postTitle"> <h3> <a dont-color-link="true" href="/beware-new-ird-scam-doing-the-rounds" data-blog-post-alias="beware-new-ird-scam-doing-the-rounds">Beware, New IRD Scam doing the rounds...</a> </h3> </div> <div class="authorBar"> <span>By Julie Findlay</span> <span>•</span> <span>June 16, 2016</span> </div> <div class="postDescription"><!--StartFragment--> <div> <span style="line-height: 1.42857;">Hundreds of people around the country are getting calls about "unpaid taxes" from scammers saying they are from Inland Revenue.</span> <br/></div> <div>IRD customer services group manager Eleanor Young said since Tuesday more than 500 people had reported calls telling them they were being investigated for historic tax fraud or evasion, and threatening legal action.</div> <div><br/></div> <div>Mike Shaw of New Plymouth received a suspicious answer-phone message left by a Kenneth Matthews who had an accent that sounded English or American, he said.</div> <div> <br/></div> <div>The IRD have said they have received over 500 calls from people telling them they were being "investigated".</div> <div><br/></div> <div>"This guy said I needed to call IRD urgently. The phrasing he used was a bit off - he said either myself or my weekend lawyer needed to call them immediately. I didn't bother ringing them back."</div> <div><br/></div> <div>A couple of hours later, he got another call from a different man.<br/></div> <div><br/></div> <div>Mike Shaw was not fooled when someone claiming to be from IRD called him.</div> <div><br/></div> <div>"He told me he needed my details because the IRD was about to sue me. I laughed at this and told him that I knew his call was, to put it bluntly, a "load of bulls...". He was upset at this and said I wouldn't think so when the police called at my home because the IRD was suing me. When I made it clear I did not believe him, he hung up."</div> <div><br/></div> <div>He was keen to warn people about the scammers.</div> <div><br/></div> <div>"They are looking for the vulnerable and the naive. The trouble is that they'll get hold of someone who is not IT literate and aware of these things and they will get caught up in it. You hear of people losing thousands of dollars to scam artists, it makes me furious actually," he said.</div> <div><br/></div> <div>Young said Inland Revenue would never ask for credit card details or bank account numbers over the phone in order to process a monetary payment.</div> <div><br/></div> <div>"Customers should always be totally satisfied that they are talking to a genuine Inland Revenue staff member before handing over any personal details. These callers are quite clever and are particularly aggressive, so people need to be wary of being caught out," she said.</div> <div><br/></div> <div>"We recommend that if anyone receives a call of this nature they hang up and if they have any concerns to email phishing@ird.govt.nz."</div> <div><br/></div> <div>New Plymouth IT consultant Mike Hobin said it was fairly simple to find people's names, phone numbers, email addresses and other information.</div> <div><br/></div> <div>"You can search for a name on the internet and from there you can search for a phone number and from there on social media and sometimes an email address. The only way to guard against this sort of thing is to stay off social media completely."</div> <div><br/></div> <div>He said scammers targeted older people.</div> <div><br/></div> <div>"I've cleaned up four or five PCs in the past year for elderly people who have made the mistake of letting these people in and I've had to go and fix their PCs.</div> <div><br/></div> <div>"When it comes to calls like this IRD scam, if you're not sure, call them back, but not on the number they have given you, look up the number for that department in the phone book."</div> <div></div> <div><br/></div> <div><br/></div> <div><br/><!--EndFragment--></div> </div> <div class="readMore"> <a dont-color-link="true" href="/beware-new-ird-scam-doing-the-rounds"></a> </div> </div> </div> </div> <div style="-ms-grid-column:2; -ms-grid-row:4" class="postArticle "> <div class="inner clearfix wow" style="animation-delay: 1600.0ms;"> <a class="blogImgLink" dont-color-link="true" href="/renting-out-your-holiday-home" data-blog-post-alias="renting-out-your-holiday-home"> <div class="blogImg" style="background-image: url('https://lirp.cdn-website.com/4ef403d7/dms3rep/multi/opt/Holiday_Homes___Rentals-996x423-1920w.JPG');"><img src="https://lirp.cdn-website.com/4ef403d7/dms3rep/multi/opt/Holiday_Homes___Rentals-996x423-1920w.JPG" "="" onerror="handleImageLoadError(this)"/></div> </a> <div class="postText clearfix"> <div class="postTitle"> <h3> <a dont-color-link="true" href="/renting-out-your-holiday-home" data-blog-post-alias="renting-out-your-holiday-home">Renting Out Your Holiday Home?</a> </h3> </div> <div class="authorBar"> <span>By Julie Findlay</span> <span>•</span> <span>April 19, 2016</span> </div> <div class="postDescription">Are there any tax implications for you in renting out your holiday home?</div> <div class="readMore"> <a dont-color-link="true" href="/renting-out-your-holiday-home"></a> </div> </div> </div> </div> <div style="-ms-grid-column:1; -ms-grid-row:5" class="postArticle "> <div class="inner clearfix wow" style="animation-delay: 1800.0ms;"> <a class="blogImgLink" dont-color-link="true" href="/2016-budget-proposals-to-simplify-tax" data-blog-post-alias="2016-budget-proposals-to-simplify-tax"> <div class="blogImg" style="background-image: url('https://lirp.cdn-website.com/4ef403d7/dms3rep/multi/opt/xero_Wa4psKwkRMmwiVtndRZS-367x218-1920w.png');"><img src="https://lirp.cdn-website.com/4ef403d7/dms3rep/multi/opt/xero_Wa4psKwkRMmwiVtndRZS-367x218-1920w.png" "="" onerror="handleImageLoadError(this)"/></div> </a> <div class="postText clearfix"> <div class="postTitle"> <h3> <a dont-color-link="true" href="/2016-budget-proposals-to-simplify-tax" data-blog-post-alias="2016-budget-proposals-to-simplify-tax">2016 Budget Proposals to Simplify Tax</a> </h3> </div> <div class="authorBar"> <span>By Julie Findlay</span> <span>•</span> <span>April 17, 2016</span> </div> <div class="postDescription">Welcome changes to the provisional tax system</div> <div class="readMore"> <a dont-color-link="true" href="/2016-budget-proposals-to-simplify-tax"></a> </div> </div> </div> </div> <div style="-ms-grid-column:2; -ms-grid-row:5" class="postArticle lastArticle"> <div class="inner clearfix wow" style="animation-delay: 2000.0ms;"> <a class="blogImgLink" dont-color-link="true" href="/post-title" data-blog-post-alias="post-title"> <div class="blogImg" style="background-image: url('https://lirp.cdn-website.com/4ef403d7/dms3rep/multi/opt/0Y1A0485_cXiu4MfAQSmNGrHuOm7U-1200x687-1920w.jpg');"><img src="https://lirp.cdn-website.com/4ef403d7/dms3rep/multi/opt/0Y1A0485_cXiu4MfAQSmNGrHuOm7U-1200x687-1920w.jpg" "="" onerror="handleImageLoadError(this)"/></div> </a> <div class="postText clearfix"> <div class="postTitle"> <h3> <a dont-color-link="true" href="/post-title" data-blog-post-alias="post-title">Snow Devastation</a> </h3> </div> <div class="authorBar"> <span>By Julie Findlay</span> <span>•</span> <span>March 2, 2016</span> </div> <div class="postDescription">On the morning of 19 September 2010, while the rest of Invercargill was still absorbing the collapse of Stadium Southland, we awoke early the following day to discover that our original building in Yarrow Street had too, succumbed to the heavy snow.<br/><br/>It was a difficult process to witness how much devastation that a snow dump could cause. The roof of the building had completely caved in, and in places, damaged thousands of dollars’ worth of stock.<br/><br/>When we think about it, we were lucky, firstly that no-one was hurt in the disaster. We were fortunate to be able to temporarily relocate to a smaller shop in Leven Street until our rebuild was complete.<br/><br/>We were also lucky too, that Julie from Balanced Accountancy was on board to assist. We all quickly became Insurance Loss Experts. We would get together and look at the figures from all angles. Initially we paid consultants who specialised in this type of work (at Julie’s recommendation) to advise us on the process and do some initial work for us. However, it became apparent to us that Julie was more than capable of taking this on.<br/><br/>Julie worked closely with our Insurance assessors. When a business literally crashes in, there is a lot of debate/arguments to be had in establishing the value of the loss, this can be quite a subjective process depending on what side of the insurance equation you are on. Julie was able to maximise our insurance claim and have several healthy debates with the assessors, backing her arguments with facts and figures. As we still joke with Julie, Julie speaks ‘accounting-ese’ – our insurance assessor spoke in this language also. Julie was able to deal with the assessors in their unique language and then relay the information to us in plain English. This helped us immensely.<br/><br/>Within 9 months we were back in our original space. The work did continue for Julie - as part of the claim also covered the time back in the new premises until we got completely back on our feet. We are grateful that Julie was able to dedicate a lot of time to preparing our loss claim. She slotted into the business and worked with us on all aspects of the accounts to get the best result for us.<br/><br/>Julie has been our accountant since the inception of the company. She has been with us when we moved from Spey Street, to our new building in Yarrow Street and has seen our business grow, and she continues to provide regular support to our business.<br/><br/>Quite simply, we don’t believe we would be here if it wasn’t for Julie.<br/><br/><!--StartFragment--> <p> <b>DEAN & SHELLEY TODD, WRENS</b> </p> <!--EndFragment--><br/><br/></div> <div class="readMore"> <a dont-color-link="true" href="/post-title"></a> </div> </div> </div> </div> </div> <a dont-color-link="true" class="more-posts-text-container dmWidget"> <span class="morePosts text">More Posts</span> </a> <div></div> </div> </div> </div> </div> </div> </div> </div> </div> <div class="dmFooterContainer"> <div id="fcontainer" class="f_hcontainer dmFooter p_hfcontainer"> <div dm:templateorder="14" class="dmFooterResp dmFullFooterResp" id="1352758348"> <div class="dmRespRow dmDividerRow" id="1784519616"> <div class="dmRespColsWrapper" id="1978631908"> <div class="large-12 medium-12 small-12 dmRespCol" id="1768655725"> <div class="dmDividerWrapper clearfix" id="1462151454" data-element-type="dDividerId"><hr class="dmDivider defaultDivider" id="1214961547"/></div> </div> </div> </div> <div class="u_1191884923 dmRespRow dmFooterContent" id="1191884923"> <div class="dmRespColsWrapper" id="1430854330"> <div class="dmRespCol large-12 medium-12 small-12 dmFooterCol" id="1962194387"> <h3 class="dmFooterDefaultH3" id="1645798237">Follow Us</h3> <div class="dmSocialHome dmSocialHub gapSpacing" id="1602788029" dmle_extension="social_hub" data-element-type="social_hub" wr="false" icon="true" surround="false"> <div class="socialHubWrapper"> <h3 class="dmwidget-title forceDisplay">Balanced Accountancy Services Ltd</h3> <div class="socialHubInnerDiv vertical"> <a href="https://www.facebook.com/Balanced.net/" target="_blank" dm_dont_rewrite_url="true" aria-label="facebook" onclick="dm_gaq_push_event && dm_gaq_push_event('socialLink', 'click', 'Facebook')"> <span class="dmSocialFacebook dm-social-icons-facebook oneIcon socialHubIcon style5" aria-hidden="true" data-hover-effect=""></span> </a> <a href="https://#" dm_dont_rewrite_url="true" aria-label="twitter" onclick="dm_gaq_push_event && dm_gaq_push_event('socialLink', 'click', 'Twitter')"> <span class="dmSocialTwitter dm-social-icons-twitter oneIcon socialHubIcon style5" aria-hidden="true" data-hover-effect=""></span> </a> <a href="https://#" dm_dont_rewrite_url="true" aria-label="google_plus" onclick="dm_gaq_push_event && dm_gaq_push_event('socialLink', 'click', 'GooglePlus')"> <span class="dmSocialGooglePlus dm-social-icons-google-plus oneIcon socialHubIcon style5" aria-hidden="true" data-hover-effect=""></span> </a> </div> </div> </div> </div> </div> </div> <div id="1095727673" dmle_extension="powered_by" data-element-type="powered_by" icon="true" surround="false"></div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> <!-- Add full CSS and Javascript before the close tag of the body if needed --> <!-- ========= JS Section ========= --> <script> var isWLR = false; window.customWidgetsFunctions = {}; window.customWidgetsStrings = {}; window.collections = {}; window.currentLanguage = "ENGLISH" window.isSitePreview = false; </script> <script type="text/javascript"> var d_version = "production_5243"; var build = "2025-03-03T11_50_46"; window['v' + 'ersion'] = d_version; function buildEditorParent() { window.isMultiScreen = true; window.editorParent = {}; window.previewParent = {}; window.assetsCacheQueryParam = "?version=2025-03-03T11_50_46"; try { var _p = window.parent; if (_p && _p.document && _p.$ && _p.$.dmfw) { window.editorParent = _p; } else if (_p.isSitePreview) { window.previewParent = _p; } } catch (e) { } } buildEditorParent(); </script> <!-- Load jQuery --> <script type="text/javascript" id='d-js-jquery' src="https://static.cdn-website.com/libs/jquery/jquery-3.7.0.min.js"></script> <!-- End Load jQuery --> <!-- Injecting site-wide before scripts --> <!-- End Injecting site-wide to the head --> <script> var _jquery = window.$; var jqueryAliases = ['$', 'jquery', 'jQuery']; jqueryAliases.forEach((alias) => { Object.defineProperty(window, alias, { get() { return _jquery; }, set() { console.warn("Trying to over-write the global jquery object!"); } }); }); window.jQuery.migrateMute = true; </script> <script> window.cookiesNotificationMarkupPreview = 'null'; </script> <!-- HEAD RT JS Include --> <script id='d-js-params'> window.INSITE = window.INSITE || {}; window.INSITE.device = "desktop"; window.rtCommonProps = {}; rtCommonProps["rt.ajax.ajaxScriptsFix"] =true; rtCommonProps["rt.pushnotifs.sslframe.encoded"] = 'aHR0cHM6Ly97c3ViZG9tYWlufS5wdXNoLW5vdGlmcy5jb20='; rtCommonProps["runtimecollector.url"] = 'https://rtc.multiscreensite.com'; rtCommonProps["performance.tabletPreview.removeScroll"] = 'false'; rtCommonProps["inlineEditGrid.snap"] =true; rtCommonProps["popup.insite.cookie.ttl"] = '0.5'; rtCommonProps["rt.pushnotifs.force.button"] =true; rtCommonProps["common.mapbox.token"] = 'pk.eyJ1IjoiZGFubnliMTIzIiwiYSI6ImNqMGljZ256dzAwMDAycXBkdWxwbDgzeXYifQ.Ck5P-0NKPVKAZ6SH98gxxw'; rtCommonProps["common.mapbox.js.override"] =false; rtCommonProps["common.here.appId"] = 'iYvDjIQ2quyEu0rg0hLo'; rtCommonProps["common.here.appCode"] = '1hcIxLJcbybmtBYTD9Z1UA'; rtCommonProps["isCoverage.test"] =false; rtCommonProps["ecommerce.ecwid.script"] = 'https://app.multiscreenstore.com/script.js'; rtCommonProps["feature.flag.mappy.kml"] =false; rtCommonProps["common.resources.dist.cdn"] =true; rtCommonProps["common.build.dist.folder"] = 'production/5243'; rtCommonProps["common.resources.cdn.host"] = 'https://static.cdn-website.com'; rtCommonProps["common.resources.folder"] = 'https://static.cdn-website.com/mnlt/production/5243'; rtCommonProps["feature.flag.runtime.backgroundSlider.preload.slowly"] =true; rtCommonProps["feature.flag.runtime.newAnimation.enabled"] =true; rtCommonProps["feature.flag.runtime.newAnimation.respectCssAnimationProps.enabled"] =true; rtCommonProps["feature.flag.runtime.newAnimation.jitAnimation.enabled"] =true; rtCommonProps["feature.flag.sites.google.analytics.gtag"] =true; rtCommonProps["feature.flag.runOnReadyNewTask"] =true; rtCommonProps["isAutomation.test"] =false; rtCommonProps['common.mapsProvider'] = 'mapbox'; rtCommonProps['common.mapsProvider.version'] = '0.52.0'; rtCommonProps['common.geocodeProvider'] = 'mapbox'; rtCommonProps['common.map.defaults.radiusSize'] = '1500'; rtCommonProps['common.map.defaults.radiusBg'] = 'rgba(255, 255, 255, 0.4)'; rtCommonProps['common.map.defaults.strokeColor'] = 'rgba(255, 255, 255, 1)'; rtCommonProps['common.map.defaults.strokeSize'] = '2'; rtCommonProps['server.for.resources'] = ''; rtCommonProps['feature.flag.lazy.widgets'] = true; rtCommonProps['feature.flag.single.wow'] = false; rtCommonProps['feature.flag.disallowPopupsInEditor'] = true; rtCommonProps['feature.flag.mark.anchors'] = true; rtCommonProps['captcha.public.key'] = '6LffcBsUAAAAAMU-MYacU-6QHY4iDtUEYv_Ppwlz'; rtCommonProps['captcha.invisible.public.key'] = '6LeiWB8UAAAAAHYnVJM7_-7ap6bXCUNGiv7bBPME'; rtCommonProps["images.sizes.small"] =160; rtCommonProps["images.sizes.mobile"] =640; rtCommonProps["images.sizes.tablet"] =1280; rtCommonProps["images.sizes.desktop"] =1920; rtCommonProps["modules.resources.cdn"] =true; rtCommonProps["import.images.storage.imageCDN"] = 'https://lirp.cdn-website.com/'; rtCommonProps["feature.flag.runtime.inp.threshold"] =150; rtCommonProps["feature.flag.performance.logs"] =true; rtCommonProps["site.widget.form.captcha.type"] = 'g_recaptcha'; rtCommonProps["friendly.captcha.site.key"] = 'FCMGSQG9GVNMFS8K'; rtCommonProps["cookiebot.mapbox.consent.category"] = 'marketing'; rtCommonProps["platform.monolith.personalization.dateTimeCondition.popupMsgAction.moveToclient.enabled"] =true; // feature flags that's used out of runtime module (in legacy files) rtCommonProps["site.runtime.video.background.ssr"] =true; window.rtFlags = {}; rtFlags["unsuspendEcwidStoreOnRuntime.enabled"] =true; rtFlags["scripts.widgetCount.enabled"] =true; rtFlags["ecom.ecwidNewUrlStructure.enabled"] = false; rtFlags["ecom.ecwid.storefrontV3.enabled"] = false; rtFlags["ecom.ecwid.old.store.fix.facebook.share"] = true; rtFlags["feature.flag.photo.gallery.exact.size"] =true; rtFlags["facebook.runtime.widgets.upgrade"] =true; rtFlags["geocode.search.localize"] =false; rtFlags["feature.flag.runtime.newAnimation.asyncInit.setTimeout.enabled"] =false; rtFlags["site.contact.form.fix.for.attribute"] =true; rtFlags["contact.form.date.format.enabled"] = true; rtFlags["twitter.heightLimit.enabled"] = true; rtFlags["runtime.load.script.native"] =true; rtFlags["editor.classicHybrid.photogallery.fix"] =true; rtFlags["runtime.lottieOverflow"] =false; rtFlags["runtime.monitoring.sentry.ignoreErrors"] = ""; rtFlags["contact.form.browserValidation.enabled"] =true; rtFlags["feature.flag.notifications.push.from.top"] =true; rtFlags["streamline.monolith.personalization.supportMultipleConditions.enabled"] =false; rtFlags["runtime.cwv.report.cls.enabled"] =true; rtFlags["flex.runtime.popup.with.show"] =true; rtFlags["contact.form.useActiveForm"] =true; </script> <script src="https://static.cdn-website.com/mnlt/production/5243/_dm/s/rt/dist/scripts/d-js-one-runtime-unified-desktop.min.js" id="d-js-core"></script> <!-- End of HEAD RT JS Include --> <script src="https://static.cdn-website.com/mnlt/production/5243/_dm/s/rt/dist/scripts/d-js-jquery-migrate.min.js" ></script> <script> $(window).bind("orientationchange", function (e) { $.layoutManager.initLayout(); }); $(document).resize(function () { }); </script> <script type="text/javascript" id="d_track_campaign"> (function() { if (!window.location.search) { return; } const cleanParams = window.location.search.substring(1); // Strip ? const queryParams = cleanParams.split('&'); const expires = 'expires=' + new Date().getTime() + 24 * 60 * 60 * 1000; const domain = 'domain=' + window.location.hostname; const path = "path=/"; queryParams.forEach((param) => { const [key, value = ''] = param.split('='); if (key.startsWith('utm_')) { const cookieName = "_dm_rt_" + key.substring(4); const cookie = cookieName + "=" + value; const joined = [cookie, expires, domain, path].join(";"); document.cookie = joined; } }); }()); </script> <script type="text/javascript" > var _dm_gaq = {}; var _gaq = _gaq || []; var _dm_insite = []; </script> <script async src="https://www.googletagmanager.com/gtag/js?id=UA-75678670-2"></script> <script type="text/javascript" id="d_track_ga"> _dm_gaq.siteAlias = '4ef403d7'; _dm_gaq.systemAggregatedGaqID = ''; _dm_gaq.externalGaqID = 'UA-75678670-2'; _dm_gaq.gaAggregatedEventAttributes = { 'site_alias': _dm_gaq.siteAlias, 'product': 'DM_DIRECT', 'plan': 'BUSINESS_PLUS', 'dfooter': 'false', 'sitetype': '1', 'pwaEnabled': 'false' } _dm_gaq.pushEvent = function(trackingId, event, category, label, value, additionalParams = {}) { const eventProps = { send_to: trackingId, event_category: category, event_label: label, value, ...additionalParams, ...(trackingId === _dm_gaq.systemAggregatedGaqID ? _dm_gaq.gaAggregatedEventAttributes : {}) }; gtag('event', event, eventProps); } window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); function pushInsiteImpressions(id) { _dm_insite.forEach((rule) => { _dm_gaq.pushEvent(id, 'insite_impression', 'insite', rule.ruleType + '__' + rule.ruleId); }); } if(_dm_gaq.systemAggregatedGaqID){ // track aggregated account gtag('config', '', { 'send_page_view': false, 'anonymize_ip': true, 'transport_type': 'beacon', 'custom_map': {'dimension1': 'site_alias', 'dimension2': 'product', 'dimension3': 'dFooter', 'dimension4': 'sitetype'} }); gtag('set', 'developer_id.dMDU5Nj', true); _dm_gaq.pushEvent('', 'page_view'); pushInsiteImpressions(_dm_gaq.systemAggregatedGaqID); } if(_dm_gaq.externalGaqID && _dm_gaq.externalGaqID!= '') { gtag('config', 'UA-75678670-2', { 'send_page_view': false, 'anonymize_ip': true, 'transport_type': 'beacon', 'linker': { 'domains': ['invercargillaccountant.co.nz'] } }); _dm_gaq.pushEvent('UA-75678670-2', 'page_view'); pushInsiteImpressions(_dm_gaq.externalGaqID); } </script> <script type="text/javascript" id="d_track_sp"> ;(function(p,l,o,w,i,n,g){if(!p[i]){p.GlobalSnowplowNamespace=p.GlobalSnowplowNamespace||[]; p.GlobalSnowplowNamespace.push(i);p[i]=function(){(p[i].q=p[i].q||[]).push(arguments) };p[i].q=p[i].q||[];n=l.createElement(o);g=l.getElementsByTagName(o)[0];n.async=1; n.src=w;g.parentNode.insertBefore(n,g)}}(window,document,"script","//d32hwlnfiv2gyn.cloudfront.net/sp-2.0.0-dm-0.1.min.js","snowplow")); window.dmsnowplow = window.snowplow; dmsnowplow('newTracker', 'cf', 'd32hwlnfiv2gyn.cloudfront.net', { // Initialise a tracker appId: '4ef403d7' }); // snowplow queries element styles so we wait until CSS calculations are done. requestAnimationFrame(() => { dmsnowplow('trackPageView'); _dm_insite.forEach((rule) => { // Specifically in popup only the client knows if it is shown or not so we don't always want to track its impression here // the tracking is in popup.js if (rule.actionName !== "popup") { dmsnowplow('trackStructEvent', 'insite', 'impression', rule.ruleType, rule.ruleId); } window?.waitForDeferred?.('dmAjax', () => { $.DM.events.trigger('event-ruleTriggered', {value: rule}); }); }); }); </script> <div style="display:none;" id="P6iryBW0Wu"></div> <!-- photoswipe markup --> <!-- 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 id="fb-root" data-locale="en"></div> <!-- Alias: 4ef403d7 --> <div class="dmPopupMask" id="dmPopupMask"></div> <div id="dmPopup" class="dmPopup"> <div class="dmPopupCloseWrapper"> <div class="dmPopupClose dm-common-icons-close oneIcon" onclick="dmHidePopup(event);"></div> </div> <div class="dmPopupTitle"> <span></span> Share by:</div> <div class="data"></div> </div><script id="d_track_personalization"> window?.waitForDeferred?.('dmAjax', () => { // Collects client data and updates cookies used by smart sites window.expireDays = 365; window.visitLength = 30 * 60000; $.setCookie("dm_timezone_offset", (new Date()).getTimezoneOffset(), window.expireDays); setSmartSiteCookiesInternal("dm_this_page_view","dm_last_page_view","dm_total_visits","dm_last_visit"); }); </script> <script type="text/javascript"> Parameters.NavigationAreaParams.LessButtonText = 'LESS'; Parameters.HomeLinkText = 'Home'; </script> <!-- End Script tags --> <!-- Site Wide Html Markup --> <!-- Site Wide Html Markup --> </body> </html>