301 status code means that the requested resource has been permanently moved to a new URL. All future requests should use the new address.
The browser will automatically redirect the user to the new address, and search engines will update their indexes.
200 status code is a standard successful HTTP server response. It means that the client’s request (e.g., from a browser) was successfully processed, and the server is delivering the requested data.
The user receives content without errors, and the page or application functions properly. If Code 200 is accompanied by data, the browser or program processes and displays it to the user.
GET / HTTP/1.1 Host: alcwc.com Accept: */* User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
<!doctype html > <html xmlns="http://www.w3.org/1999/xhtml" lang="en" class=""> <head> <meta charset="utf-8"> <script type="text/javascript"> window._currentDevice = 'desktop'; window.Parameters = window.Parameters || { HomeUrl: 'https://www.alcwc.com/', AccountUUID: '2ee10e632e8f40eab8a4d4d938aded6b', SystemID: 'US_DIRECT_PRODUCTION', SiteAlias: '104ba787', SiteType: atob('RFVEQU9ORQ=='), PublicationDate: 'Wed Apr 30 04:52:14 UTC 2025', ExternalUid: '1u738tmx50iibzrp', IsSiteMultilingual: false, InitialPostAlias: '', InitialPostPageUuid: '', InitialDynamicItem: '', DynamicPageInfo: { isDynamicPage: false, base64JsonRowData: 'null', }, InitialPageAlias: 'home', InitialPageUuid: '49879f15cd24484ebea4dd5c21120480', InitialPageId: '29977471', InitialEncodedPageAlias: 'aG9tZQ==', InitialHeaderUuid: '0fa52675bd67425096417f6b907a5d62', CurrentPageUrl: '', IsCurrentHomePage: true, AllowAjax: false, AfterAjaxCommand: null, HomeLinkText: 'Back To Home', UseGalleryModule: false, CurrentThemeName: 'Layout Theme', ThemeVersion: '53480', DefaultPageAlias: '', RemoveDID: true, WidgetStyleID: null, IsHeaderFixed: false, IsHeaderSkinny: false, 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: 'en', currentLocale: 'en', 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: 4, NavbarLiveHomePage: 'https://www.alcwc.com/', BlockContainerSelector: '.dmBody', NavbarSelector: '#dmNav:has(a)', SubNavbarSelector: '#subnav_main' }, hasCustomCode: true, planID: '1280', customTemplateId: 'null', siteTemplateId: 'null', productId: 'DM_DIRECT', disableTracking: false, pageType: 'FROM_SCRATCH', isRuntimeServer: true, isInEditor: false, hasNativeStore: false, defaultLang: 'en', hamburgerMigration: null, isFlexSite : false }; window.Parameters.LayoutID = {}; window.Parameters.LayoutID[window._currentDevice] = 6; 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.alcwc.com/"> <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="icon" type="image/x-icon" href="https://irp.cdn-website.com/104ba787/site_favicon_16_1648818923811.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} body #dm #\31 853527195:not(.photo-gallery-done):not([data-widget-initialized]) { height: 425.0px !important; min-height: initial;} </style> <style id="cssVariables" 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="criticalCss"> @charset "UTF-8";.display_None,.dmPopupMask{display:none}#dm .dmInner .dmWidget,.clearfix:after,.dmImageSlider,.dmPhotoGallery,.dmRespRow:after,.dmSocialHub,.slides:after,DIV.dmBody{clear:both}@font-face{font-family:Roboto;font-style:normal;font-weight:100;font-stretch:100%;font-display:swap;src:url(https://irp.cdn-website.com/fonts/s/roboto/v47/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3yUBA.woff2) format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:Roboto;font-style:normal;font-weight:300;font-stretch:100%;font-display:swap;src:url(https://irp.cdn-website.com/fonts/s/roboto/v47/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3yUBA.woff2) format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:FontAwesome;font-display:block;src:url(https://static.cdn-website.com/fonts/fontawesome-webfont.eot?v=6);src:url(https://static.cdn-website.com/fonts/fontawesome-webfont.eot?#iefix&v=6) format("embedded-opentype"),url(https://static.cdn-website.com/fonts/fontawesome-webfont.woff?v=6) format("woff"),url(https://static.cdn-website.com/fonts/fontawesome-webfont.ttf?v=6) format("truetype"),url(https://static.cdn-website.com/fonts/fontawesome-webfont.svg#fontawesomeregular?v=6) format("svg");font-weight:400;font-style:normal}@font-face{font-family:'Source Sans Pro';font-style:normal;font-weight:400;font-display:swap;src:url(https://irp.cdn-website.com/fonts/s/sourcesanspro/v22/6xK3dSBYKcSV-LCoeQqfX1RYOo3qOK7l.woff2) format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:Roboto;font-style:normal;font-weight:400;font-stretch:100%;font-display:swap;src:url(https://irp.cdn-website.com/fonts/s/roboto/v47/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3yUBA.woff2) format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:Roboto;font-style:normal;font-weight:500;font-stretch:100%;font-display:swap;src:url(https://irp.cdn-website.com/fonts/s/roboto/v47/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3yUBA.woff2) format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:Roboto;font-style:normal;font-weight:700;font-stretch:100%;font-display:swap;src:url(https://irp.cdn-website.com/fonts/s/roboto/v47/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3yUBA.woff2) format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:Roboto;font-style:normal;font-weight:900;font-stretch:100%;font-display:swap;src:url(https://irp.cdn-website.com/fonts/s/roboto/v47/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3yUBA.woff2) format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:'Open Sans';font-style:normal;font-weight:300 800;font-stretch:100%;font-display:swap;src:url(https://irp.cdn-website.com/fonts/s/opensans/v40/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS-muw.woff2) format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:Karla;font-style:normal;font-weight:200 800;font-display:swap;src:url(https://irp.cdn-website.com/fonts/s/karla/v31/qkBbXvYC6trAT7RVLtw.woff2) format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}.dmInner{min-height:100vh!important;position:relative;min-width:768px!important}.dmPopup,.dmPopupMask{position:fixed;left:0}.dmDisplay_None{display:none!important}.clearfix:after{visibility:hidden;line-height:0;height:0}.clearfix:after,.clearfix:before{content:' ';display:table}.clearfix{display:inline-block}#dm .dmWidget .icon{font-size:26px}body.dmRoot #dm .dmOuter .dmInner .dmWidget .icon.hasFontIcon{height:26px;margin-top:-13px;line-height:normal;text-align:center;background-image:none}.dmRoot .hasFontIcon{background-image:none!important}.dmPopupMask{margin:0;width:10px;z-index:1000000999;top:0}#dmRoot .dmPopup{display:block}.dmPopup{text-align:left;top:10px;width:93%;z-index:1000009999!important;box-sizing:border-box;background:#f5f5f5;overflow-y:auto;height:100%;display:block}.dmPopup .dmPopupTitle{text-align:left;font:700 19px Helvetica,Arial;margin:20px 20px 35px;color:#999}#dmPopup{opacity:0}.dmPopupClose,.dmPopupClose:before{position:absolute;visibility:visible}.dmPopupClose{border-radius:25px;width:27px;height:27px;z-index:1;background-color:rgba(255,255,255,.4);top:12px;right:12px}.dmPopupClose:before{display:block;font-size:20px;color:#000;top:3px;right:3px}body.dmDesktopBody:not(.mac) .data::-webkit-scrollbar{width:5px;height:5px}body.dmDesktopBody:not(.mac) .data::-webkit-scrollbar-track{background:rgba(0,0,0,.1)}body.dmDesktopBody:not(.mac) .data::-webkit-scrollbar-thumb{background:#c8c8c8;box-shadow:inset 0 1px 2px #454545;border-radius:45px}#dm .dmRespRow .dmRespColsWrapper{display:flex}#dm .hasBackgroundOverlay:not(.dmPopupPage):not(.layout-drawer){position:relative!important}#dm .hasBackgroundOverlay:not(.hasExtraLayerOverlay):before{display:block!important;position:absolute!important;top:0!important;left:0!important;width:100%!important;height:100%!important;content:' '!important;border-radius:inherit}.align-center{margin-left:auto;margin-right:auto}.text-align-center{text-align:center}body.fix-mobile-scrolling{overflow:initial}#hcontainer[has-shadow=true]{position:relative;z-index:1}#dmRoot{text-decoration-skip-ink:none}#dm .flexslider[sliderscriptparams*="'isFade':true"] .slides li{width:100%!important;float:left!important;margin-right:-100%!important;position:relative!important}.flexslider,.slides,button,p.rteBlock{margin:0}#dm .flexslider .slides li:first-child>img{width:100%;height:100%;object-fit:contain;position:absolute;display:block}#dm .flexslider[sliderscriptparams*="'stretch':true"] .slides li:first-child img{object-fit:cover}body{-webkit-overflow-scrolling:touch}@media (min-width:1025px){:root{--btn-text-font-size:16px}}@media (min-width:768px) and (max-width:1024px){:root{--btn-text-font-size:16px}}nav{display:block}html{font-family:Source Sans Pro;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}h1{font-size:2em;margin:.67em 0}strong{font-weight:700}hr{box-sizing:content-box;height:0}img{border:0;max-width:100%;-ms-interpolation-mode:bicubic;display:inline-block}button{font-family:inherit;font-size:100%;line-height:normal;text-transform:none;-webkit-appearance:button}button::-moz-focus-inner{border:0;padding:0}*,:after,:before{box-sizing:border-box}.dmRespRow.dmRespRowNoPadding{padding:0}.dmRespRow{padding-top:15px;padding-bottom:15px}.dmRespRow:after,.dmRespRow:before{content:' ';display:table}.dmRespRow,.dmRespRow .dmRespColsWrapper{max-width:960px;position:relative;margin:0 auto;width:100%}@media screen and (min-width:1200px){.rows-1200 .dmRespRow:not(.fullBleedMode) .dmRespColsWrapper{max-width:1200px}}.dmRespRow .dmRespCol{position:relative;width:100%;display:inline-block;vertical-align:top;float:left}.dmRespRow .dmRespCol>*{max-width:100%}.dmDesktopBody .dmRespRow .large-1{position:relative;width:8.33333%}.dmDesktopBody .dmRespRow .large-2{position:relative;width:16.66667%}.dmDesktopBody .dmRespRow .large-4{position:relative;width:33.33333%}.dmDesktopBody .dmRespRow .large-5{position:relative;width:41.66667%}.dmDesktopBody .dmRespRow .large-6{position:relative;width:50%}.dmDesktopBody .dmRespRow .large-10{position:relative;width:83.33333%}.dmDesktopBody .dmRespRow .large-12{position:relative;width:100%}.socialHubIcon,[class*=' dm-common-icons-'],[class*=' dm-social-icons-']{font-family:dm-social-icons!important;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.dm-social-icons-facebook:before{content:'\ea90'}.dm-social-icons-instagram:before{content:'\ea92'}.dm-social-icons-twitter:before{content:'\ea96'}.dm-social-icons-youtube:before{content:'\ea9d'}[class*=' dm-common-icons-']{font-family:dm-common-icons!important}.dm-common-icons-close:before{content:'\e901'}#dm div.dmContent [class*=' icon-'],[class*=' icon-']{font-family:FontAwesome!important;font-weight:400;font-style:normal;text-decoration:inherit;-webkit-font-smoothing:antialiased}[class*=' icon-']:before{text-decoration:none;display:inline-block;speak:none}a [class*=' icon-']{display:inline}[class*=' icon-']{display:inline;width:auto;height:auto;line-height:normal;vertical-align:baseline;background-image:none;background-position:0 0;background-repeat:repeat;margin-top:0}.icon-star:before{content:'\f005'}.icon-angle-right:before{content:'\f105'}.icon-angle-down:before{content:'\f107'}.animated{-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-fill-mode:both;animation-fill-mode:both}@media (max-width:767px){#dm .dmInner .dmWidget{width:100%}}#dm .dmInner .dmWidget:not(.displayNone){display:inline-block}#dm .dmInner .dmWidget{text-decoration:none;margin:10px 0;position:relative;text-align:center;line-height:22px;box-shadow:none;background-image:none;padding:0;height:auto;border-style:solid;white-space:nowrap}#dm .dmInner .dmWidget.slide-button{margin-bottom:0}#dm .dmInner .dmWidget:after{content:'';display:inline-block;height:100%;vertical-align:middle;width:0;margin-right:-.25em}#dm .dmInner .dmWidget .iconBg{position:absolute;left:0;width:50px;top:50%;margin-top:-13px}#dm .dmWidget .text{display:inline-block;vertical-align:middle;font-size:1.125em;line-height:normal;white-space:normal;padding:10px 7px;max-width:98%}#dm .dmWidget.slide-button:after{display:none}.dmImageSlider{height:350px;position:relative}.flexslider{-webkit-transform:translate3d(0,0,0);padding:0;-webkit-transform:translateZ(0);direction:ltr;zoom:1;opacity:1!important}html:not(.ios-preview) #dm .hasStickyHeader .dmInner div.dmHeaderContainer{position:fixed!important;z-index:101;width:100%;min-width:768px}body:not(.responsiveTablet) #dm .dmInner #fcontainer .hide-for-large,body:not(.responsiveTablet) #dm .dmInner .dmBody .hide-for-large,body:not(.responsiveTablet) .hide-for-large{display:none!important}.dmNewParagraph[data-version]{line-height:initial}.dmNewParagraph[data-version] .text-align-left{text-align:left!important}.dmNewParagraph[data-version] .text-align-center{text-align:center!important}.dmNewParagraph[data-version] .text-align-right{text-align:right!important}.dmNewParagraph[data-version] h1,.dmNewParagraph[data-version] h3,.dmNewParagraph[data-version] p{margin-top:0;margin-bottom:0}.dmNewParagraph[data-version] a{vertical-align:initial}.slides{padding:0;list-style:none}.flexslider,.flexslider .slides>li{height:100%;overflow:hidden;position:relative}.flexslider .slides{height:100%;zoom:1}.flexslider .slides>li{display:none;text-align:center}.flexslider .slides img{width:100%;display:block;margin:auto}.slides:after{content:'\0020';display:block;visibility:hidden;line-height:0;height:0}html[xmlns] .slides{display:block}.flexslider .color-overlay{position:absolute;top:0;left:0;width:100%;height:100%;background-color:rgba(0,0,0,.25);display:block}.flexslider .slides>li .slide-inner{font-weight:700;color:#fff;position:absolute;z-index:1;visibility:hidden}.flexslider .slides>li .slide-inner *{line-height:normal}.flexslider .slides>li .slide-inner .slide-title{margin:0}.flexslider .slides>li .slide-inner .slide-text{margin:0;font-size:19px;font-weight:400;white-space:pre-line}#dm .dmInner .flexslider .slides>li .slide-inner .slide-button{margin-top:20px;margin-left:auto;margin-right:auto}.flexslider .slides>li[layout=center] .slide-inner{max-width:70%;max-height:80%}#dm .flexslider .slides .dmWidget .text{max-width:100%;width:100%;padding:10px 20px!important}#dm .dmInner .flexslider.ed-version .slide-button{-js-display:inline-flex;display:inline-flex;justify-content:center;align-items:center}.flexslider.ed-version .slides img{display:none}.flexslider.ed-version:not([layout]) .slides>li[layout=center]{-ms-flex-pack:center;-ms-flex-align:center;display:flex!important;justify-content:center;align-items:center}.flexslider.ed-version:not([layout]) .slides>li[layout=center] .slide-inner{position:static!important;top:auto!important;left:auto!important;margin:0!important}.flexslider.ed-version:not([layout]) .slides>li[layout=center] .slide-inner .slide-button.slide-button-invisible{display:none!important}.flexslider.ed-version:not([layout]) .slide-inner{max-width:70%;max-height:80%;background-color:transparent;top:50%!important;left:50%!important;right:auto!important;width:auto}.flexslider.ed-version:not([layout]) .slide-inner .slide-title{display:block!important;text-align:center!important}.flexslider.ed-version:not([layout])[position=left] .slides>li{justify-content:flex-start}.flexslider.ed-version:not([layout])[position=left] .slides>li .slide-inner{margin-left:10%!important}.flexslider.ed-version:not([layout])[position=left] .slides>li .slide-inner .slide-button{float:left}.flexslider.ed-version:not([layout])[position=left] .slides>li .slide-inner .slide-text,.flexslider.ed-version:not([layout])[position=left] .slides>li .slide-inner .slide-text p,.flexslider.ed-version:not([layout])[position=left] .slides>li .slide-inner .slide-title{text-align:left!important}#dm .dmPhotoGallery.newPhotoGallery .photoGalleryThumbs .caption-container .caption-inner div,#dm .dmPhotoGallery.newPhotoGallery .photoGalleryThumbs .caption-container .caption-inner h3,#dm .dmPhotoGallery.newPhotoGallery.captionAlignment-center_center .photoGalleryThumbs .caption-container .caption-inner:not(:has(>.caption-link)) div,#dm .dmPhotoGallery.newPhotoGallery.captionAlignment-center_center .photoGalleryThumbs .caption-container .caption-inner:not(:has(>.caption-link)) h3,.dmHeader,.dmPhotoGallery.newPhotoGallery .photoGalleryThumbs .caption-container .caption-inner,.dmPhotoGalleryHolder,.imageWidget a{text-align:center}.dmPhotoGallery{margin:10px 0;width:100%;overflow:hidden;min-height:1px}.dmPhotoGallery .image-container{position:relative}.dmPhotoGallery.newPhotoGallery .photoGalleryThumbs .caption-container .caption-inner h3{margin:0;line-height:normal;font-size:21px}.dmPhotoGallery.newPhotoGallery .photoGalleryThumbs .caption-container .caption-inner .caption-text,.dmPhotoGallery.newPhotoGallery .photoGalleryThumbs .caption-container .caption-inner .caption-title{max-width:100%}#dm .dmPhotoGallery.newPhotoGallery.hasShadow .thumbnailInnerWrapper{box-shadow:rgba(0,0,0,.25) 0 3px 11px 0!important}#dm .dmPhotoGallery.newPhotoGallery .photoGalleryThumbs{list-style:none;position:relative}#dm .dmPhotoGallery.newPhotoGallery.captionAlignment-center_center .photoGalleryThumbs .caption-container .caption-inner:not(:has(>.caption-link)){justify-content:center;align-items:center}#dm .dmPhotoGallery.newPhotoGallery.captionAlignment-center_center .photoGalleryThumbs .caption-container .caption-inner .caption-button{margin:10px auto}#dm .dmPhotoGallery.newPhotoGallery .photoGalleryThumbs .caption-container .caption-inner{align-items:center}#dm .dmPhotoGallery.newPhotoGallery .dmPhotoGalleryHolder{width:100%;padding:0;display:none}#dm .dmPhotoGallery.newPhotoGallery .photogallery-row{display:flex}#dm .dmPhotoGallery.newPhotoGallery .layout-container.square{display:flex;width:100%;flex-direction:column}#dm .dmPhotoGallery.newPhotoGallery .layout-container .photogallery-column{display:flex;flex-direction:column;padding:0;width:100%;margin:0}#dm .dmPhotoGallery.newPhotoGallery .layout-container .photogallery-column.column-2{width:50%}#dm .dmPhotoGallery.newPhotoGallery .layout-container .photogallery-column .photoGalleryThumbs{position:relative;overflow:hidden}#dm .dmPhotoGallery.newPhotoGallery .layout-container .photogallery-column .photoGalleryThumbs .image-container{width:100%;overflow:hidden;background:url(https://dd-cdn.multiscreensite.com/runtime-img/galleryLoader.gif) center no-repeat}#dm .dmPhotoGallery.newPhotoGallery .layout-container .photogallery-column .photoGalleryThumbs .image-container.revealed{background:0}#dm .dmPhotoGallery.newPhotoGallery .layout-container .photogallery-column .photoGalleryThumbs .image-container a{display:flex;flex-direction:column;background-size:cover;padding-top:100%}#dm .dmPhotoGallery.newPhotoGallery .layout-container .photogallery-column .photoGalleryThumbs .image-container a img{display:none!important}#dm .dmPhotoGallery.newPhotoGallery .photoGalleryThumbs .thumbnailInnerWrapper{overflow:hidden;transform:translateZ(0)}#dm .dmPhotoGallery.newPhotoGallery .photoGalleryThumbs .image-container{overflow:hidden}#dm .dmPhotoGallery.newPhotoGallery .photoGalleryThumbs .image-container a{background-repeat:no-repeat;background-position:center}#dm .dmPhotoGallery.newPhotoGallery .photoGalleryThumbs .caption-container .caption-inner{display:flex;flex-direction:column;justify-content:center;position:relative;overflow:hidden;z-index:1;background-color:rgba(255,255,255,.9);color:#333;padding:15px;height:100%;box-sizing:border-box}#dm .dmPhotoGallery.newPhotoGallery .photoGalleryThumbs .caption-container .caption-inner .caption-button{margin:10px auto;max-width:100%}#dm .dmPhotoGallery.newPhotoGallery .photoGalleryThumbs .caption-container .caption-inner .caption-button .text{padding:10px 20px!important}#dm .dmPhotoGallery.newPhotoGallery.text-layout-over .photoGalleryThumbs .caption-container{height:100%;width:100%;position:absolute;top:0;left:0;padding:inherit}#dm .dmPhotoGallery.newPhotoGallery.text-layout-over .photoGalleryThumbs .caption-inner{display:flex;flex-direction:column;justify-content:center;box-sizing:border-box;min-height:0!important;padding:10px;transform:scale(1.05);opacity:0;filter:alpha(opacity=0)}#dm .dmRespRow.dmRespRowNoPadding,.dmContent,.dmInner ul:not(.defaultList),DIV.dmBody{padding:0}.imageWidget{position:relative}.imageWidget a{font-style:italic}.imageWidget img[width][height]{height:auto}.socialHubIcon{display:flex!important;align-items:center;justify-content:center}img[width][height]{height:auto}*{border:0 solid #333;scrollbar-arrow-color:#fff;scrollbar-track-color:#F2F2F2;scrollbar-face-color:silver;scrollbar-highlight-color:silver;scrollbar-3dlight-color:silver;scrollbar-shadow-color:silver;scrollbar-darkshadow-color:silver;scrollbar-width:12px}body{width:100%;overflow:hidden;-webkit-text-size-adjust:100%!important;-ms-text-size-adjust:100%!important}A IMG{border:none}h1,h3,ul{margin-left:0;margin-right:0}.dmInner *{-webkit-font-smoothing:antialiased}span.oneIcon:before{display:inline-block}.clearfix,a,img,li,ul{vertical-align:top}#iscrollBody,#site_content{position:relative}.dmOuter{word-wrap:break-word}.dmInner{font-size:16px;background:#fff;color:#666}.dmDesktopBody .dmInner{min-width:960px}.dmInner a{color:#463939}.dmHeader{background:#68ccd1;color:#666;position:relative;width:100%;max-width:100%}.dmContent{margin:0}#site_content ul:not(.defaultList){-webkit-padding-start:0;-moz-padding-start:0;list-style-position:inside}#innerBar{position:relative;height:36px;width:100%;font-size:20px;margin:0;z-index:80}.dmRespRowsWrapper{max-width:960px;margin:0 auto}.dmRespCol>[dmle_extension]:not(:first-child){margin-top:10px}.dmLargeBody .imageWidget:not(.displayNone){display:inline-block;max-width:100%}#dm .dmRespColsWrapper,.dmStandardDesktop{display:block}.imageWidget:not(.displayNone) img{width:100%}h3{font-weight:400;font-size:23px}.dmNewParagraph{text-align:left;margin:8px 0;padding:2px 0}.dmLargeBody .dmRespRowsWrapper>.dmRespRow .dmRespCol,.dmLargeBody .fHeader .dmRespRow .dmRespCol{padding-left:.75%;padding-right:.75%}.dmLargeBody .dmRespRowsWrapper>.dmRespRow .dmRespCol:first-child,.dmLargeBody .fHeader .dmRespRow .dmRespCol:first-child{padding-left:0;padding-right:1.5%}.dmLargeBody .dmRespRowsWrapper>.dmRespRow .dmRespCol:last-child,.dmLargeBody .fHeader .dmRespRow .dmRespCol:last-child{padding-right:0;padding-left:1.5%}.dmLargeBody .dmRespRowsWrapper>.dmRespRow .dmRespCol:only-child{padding-left:0;padding-right:0}#innerBar.lineInnerBar{display:table;width:100%;box-shadow:none;-webkit-box-shadow:none;-moz-box-shadow:none;font-size:20px;margin-top:30px;margin-bottom:30px;background-color:transparent;color:#666}#innerBar .titleLine{display:table-cell;vertical-align:middle;width:50%}.dmPageTitleRow:not(#innerBar){display:none}.titleLine hr{min-height:1px;background-color:rgba(102,102,102,.2)}.dmLargeBody .dmFooterResp>.dmRespRow .dmRespCol{padding-left:.75%;padding-right:.75%}.dmLargeBody .dmFooterResp>.dmRespRow .dmRespCol:first-child{padding-left:0;padding-right:1.5%}.dmLargeBody .dmFooterResp>.dmRespRow .dmRespCol:last-child{padding-right:0;padding-left:1.5%}#dmFirstContainer .dmRespRowsWrapper:after,#dmFirstContainer .dmRespRowsWrapper:before{content:"";display:table}.dmInner a{outline:0;vertical-align:inherit}.dmLinksMenu>ul{display:block;margin:0;font-size:inherit}.dmStandardDesktop{margin:0 auto}.dmCustomHtml{margin:10px 0}#dm .dmDivider{display:block;margin:10px 0}.dmSpacer{border:0;height:15px}.dmPhotoGalleryHolder{font-size:medium!important;margin:0;list-style:none}#dm .dmPhotoGallery .dmPhotoGalleryHolder{width:100%;padding:0}#dm .dmSocialHub a{display:inline-block;text-decoration:none;margin:0;vertical-align:bottom}.dmSocialHub>div{text-align:inherit}a span.socialHubIcon{width:36px;height:36px;font-size:31px;display:inline-block;text-align:center;margin-right:0;margin-bottom:5px;line-height:36px;box-sizing:content-box;background-image:none!important}.socialHubIcon.style5{color:#fff}#dm .dmSocialHub .socialHubWrapper{display:inline-block;max-width:100%}body{background-color:#eee}.dmDivider{min-height:2px;border:currentColor;color:grey;background:0 0}#dm .dmDividerWrapper{display:block}.main-navigation.unifiednav{-js-display:flex;display:flex;justify-content:flex-start;align-items:stretch;overflow:visible}.main-navigation.unifiednav ul{list-style:none;padding:0;margin:0;font-size:1rem}.main-navigation.unifiednav .unifiednav__container{-js-display:flex;display:flex;justify-content:flex-start;list-style:none}.main-navigation.unifiednav .unifiednav__container>.unifiednav__item-wrap{-js-display:flex;display:flex;justify-content:flex-start;position:relative;font-weight:400}.main-navigation.unifiednav .unifiednav__container:not([data-depth])>.unifiednav__item-wrap::after,.main-navigation.unifiednav .unifiednav__container:not([data-depth])>.unifiednav__item-wrap::before{content:'';align-self:center;font-weight:700}.main-navigation.unifiednav .unifiednav__container>.unifiednav__item-wrap>.unifiednav__item{-js-display:flex;display:flex;justify-content:flex-start;align-items:center;flex-direction:row;color:inherit;text-decoration:none;position:relative;padding:12px 15px;margin:0;font-weight:inherit;letter-spacing:.03em}.main-navigation.unifiednav .unifiednav__container:not([data-depth])>.unifiednav__item-wrap>.unifiednav__item{padding:0 15px}.main-navigation.unifiednav .unifiednav__container>.unifiednav__item-wrap>.unifiednav__item .nav-item-text{white-space:nowrap}.main-navigation.unifiednav .unifiednav__container:not([data-depth])>.unifiednav__item-wrap>.unifiednav__item .nav-item-text::after,.main-navigation.unifiednav .unifiednav__container:not([data-depth])>.unifiednav__item-wrap>.unifiednav__item .nav-item-text::before{content:'';width:100%;height:0;border:0 solid transparent;border-top-color:currentColor;display:block;opacity:0}.main-navigation.unifiednav .unifiednav__container:not([data-depth])>.unifiednav__item-wrap>.unifiednav__item.dmNavItemSelected .nav-item-text::after,.main-navigation.unifiednav .unifiednav__container:not([data-depth])>.unifiednav__item-wrap>.unifiednav__item.dmNavItemSelected .nav-item-text::before{opacity:1}.main-navigation.unifiednav.effect-bottom2{padding:calc(12px - .2em - 2px) 15px}.main-navigation.unifiednav.effect-bottom2 .unifiednav__container:not([data-depth])>.unifiednav__item-wrap>.unifiednav__item .nav-item-text::after,.main-navigation.unifiednav.effect-bottom2 .unifiednav__container:not([data-depth])>.unifiednav__item-wrap>.unifiednav__item .nav-item-text::before{transform:scaleX(0);border-top-width:2px}.main-navigation.unifiednav.effect-bottom2 .unifiednav__container:not([data-depth])>.unifiednav__item-wrap>.unifiednav__item .nav-item-text::after{margin-top:.2em}.main-navigation.unifiednav.effect-bottom2 .unifiednav__container:not([data-depth])>.unifiednav__item-wrap>.unifiednav__item .nav-item-text::before{margin-bottom:.2em;border-top-color:transparent}.main-navigation.unifiednav.effect-bottom2 .unifiednav__container:not([data-depth])>.unifiednav__item-wrap>.unifiednav__item.dmNavItemSelected .nav-item-text::after,.main-navigation.unifiednav.effect-bottom2 .unifiednav__container:not([data-depth])>.unifiednav__item-wrap>.unifiednav__item.dmNavItemSelected .nav-item-text::before{transform:scaleX(1)}.main-navigation.unifiednav.effect-bottom2 .unifiednav__container:not([data-depth])>.unifiednav__item-wrap>.unifiednav__item .nav-item-text::after,.main-navigation.unifiednav.effect-bottom2 .unifiednav__container:not([data-depth])>.unifiednav__item-wrap>.unifiednav__item .nav-item-text::before{transform-origin:left}.main-navigation.unifiednav .unifiednav__container .unifiednav__item:not(.unifiednav__item_has-sub-nav) .icon{display:none}.main-navigation.unifiednav .unifiednav__container[data-depth]{position:absolute;top:0;left:0;flex-direction:column;opacity:0;z-index:100;background-color:#faf9f9}.main-navigation.unifiednav .unifiednav__container[data-depth='0']{top:100%;transform:translateY(-10px)}.main-navigation.unifiednav:not(.unifiednav_vertical) .unifiednav__container[data-depth='0']{left:15px}.main-navigation.unifiednav .unifiednav__container>.unifiednav__item-wrap .unifiednav__container>.unifiednav__item-wrap{flex-direction:column}.main-navigation.unifiednav .unifiednav__container[data-depth]>.unifiednav__item-wrap .unifiednav__item{padding:15px 30px 15px 15px;margin:0}.main-navigation.unifiednav .unifiednav__container[data-depth]>.unifiednav__item-wrap:not(:last-child)::after{content:''!important;width:100%;height:0;color:#ececec;align-self:center;border:0 solid currentColor}.main-navigation.unifiednav[layout-sub=submenu_horizontal_1] .unifiednav__container[data-depth]{color:#999}.main-navigation.unifiednav .unifiednav__container>.unifiednav__item-wrap>.unifiednav__item.unifiednav__item_has-sub-nav .icon{display:initial;padding-left:10px;margin-left:0}.main-navigation.unifiednav:not(.unifiednav_vertical)>.unifiednav__container{justify-content:inherit}#dm .p_hfcontainer nav.main-navigation.unifiednav{min-width:9em!important;text-align:initial!important}#dm .main-navigation.unifiednav .unifiednav__container[data-depth]{background-color:transparent}#dm .main-navigation.unifiednav[layout-sub=submenu_horizontal_1] .unifiednav__container[data-depth]{background-color:#faf9f9}#dm .main-navigation.unifiednav .unifiednav__container[data-depth]>.unifiednav__item-wrap:not(:last-child)::after{color:#d1d1d1}#dm .main-navigation.unifiednav:not([data-nav-structure=VERTICAL])>.unifiednav__container{flex-wrap:wrap;justify-content:inherit}#dm .main-navigation.unifiednav:not([data-nav-structure=VERTICAL])>.unifiednav__container .nav-item-text::before{text-align:left}#dm .main-navigation.unifiednav:not([data-nav-structure=VERTICAL]) .unifiednav__container:not([data-depth])>.unifiednav__item-wrap:not(:last-child)::after,#dm .main-navigation.unifiednav:not([data-nav-structure=VERTICAL]) .unifiednav__container:not([data-depth])>.unifiednav__item-wrap:not(:last-child)::before,#dm .main-navigation.unifiednav:not([data-nav-structure=VERTICAL])[data-divider]:not([data-direction=RIGHT]) .unifiednav__container:not([data-depth])>.unifiednav__item-wrap:not(:last-child)::before{content:''}#dm .dmBody .dmRespRowsWrapper{max-width:none;background-color:transparent}.dmLargeBody .dmRespRow{width:100%;max-width:none;margin-left:0;margin-right:0;padding-left:40px;padding-right:40px}.dm-bfs.dm-layout-home div.dmInner{background-color:#fff}.dmStandardDesktop .dmHeader{background-color:#68ccd1;max-width:100%}.standardHeaderLayout .dmHeader{float:none;display:block;height:auto}.dmRespRow:not(.dmPlaceHolderRespRow) .dmRespColsWrapper .dmRespCol:not(.content-removed).empty-column{min-height:100px}.dmRespRow:not(.dmPlaceHolderRespRow) .dmRespCol:not(.content-removed).empty-column,.dmRespRow:not(.dmPlaceHolderRespRow) .dmRespCol:not(.content-removed):empty{min-height:1px}#dm div.dmRespCol>*{line-height:1.5}#dm .dmNewParagraph a,#dm div.dmNewParagraph a{color:transparent;text-decoration:none}#dm div.dmInner,#dm div.dmInner .dmRespCol{color:rgba(0,0,0,1);font-family:"Open Sans","Open Sans Fallback";font-size:16px}.dmLargeBody .dmBody .dmRespRowsWrapper{background-color:transparent}#dm div.dmContent h1,#dm div.dmContent h3{color:#333;font-weight:700;direction:ltr;font-family:Roboto,"Roboto Fallback";font-style:normal;text-decoration:none}#dm #dm-outer-wrapper .imageWidget img{border-width:0;border-style:solid;border-color:rgba(204,204,204,1);-webkit-box-shadow:rgba(0,0,0,.25) 0 3px 11px 0;-moz-box-shadow:rgba(0,0,0,.25) 0 3px 11px 0;box-shadow:rgba(0,0,0,.25) 0 3px 11px 0}#dm .dmRespCol div.dmNewParagraph,#dm div.dmInner,#dm div.dmInner .dmRespCol,.dmPhotoGallery .caption-text.caption-text{font-weight:400;color:rgba(51,51,51,1);font-family:Karla,"Karla Fallback"}#dm div.dmContent .dmNewParagraph[data-version] h1{text-decoration:inherit}#dm div.dmContent .dmNewParagraph[data-version] h1 *{text-decoration:none}#dm div.dmContent .dmNewParagraph[data-version] h3{text-decoration:inherit}#dm div.dmContent .dmNewParagraph[data-version] h3 *{text-decoration:none}#dm .dmNewParagraph a,#dm div.dmNewParagraph a{color:rgba(138,205,75,1)}.imageWidget a::after{height:0!important}#dm DIV.dmOuter DIV.dmInner{background-color:rgba(255,255,255,1);background-image:none;background-size:cover;background-repeat:no-repeat;background-attachment:fixed}#dm div.dmContent h1{font-size:30px}#dm div.dmContent h3{font-size:20px}#dm div.dmInner,#dm div.dmInner .dmRespCol,.dmPhotoGallery .caption-text.caption-text{font-size:14px}#dm .dmContent .dmRespRow,#dm .dmFooter .dmRespRow{padding:80px 65px;margin:0}#dm .dmContent .dmRespRow .dmRespCol,#dm .dmFooter .dmRespRow .dmRespCol{padding-top:0}#dm .dmRespCol div.dmNewParagraph,#dm div.dmInner,#dm div.dmInner .dmRespCol,.dmPhotoGallery .caption-text.caption-text{font-size:16px}@media all{:root{--btn-text-direction:ltr;--btn-border-r-color:var(--btn-border-color);--btn-border-l-color:var(--btn-border-color);--btn-border-b-width:var(--btn-border-width);--btn-border-width:0px;--btn-border-radius:50px;--btn-border-t-width:var(--btn-border-width);--btn-border-tl-radius:var(--btn-border-radius);--btn-border-br-radius:var(--btn-border-radius);--btn-border-bl-radius:var(--btn-border-radius);--btn-bg-color:rgb(138, 205, 75);--btn-border-color:rgb(20, 37, 65);--btn-border-tr-radius:var(--btn-border-radius);--btn-border-r-width:var(--btn-border-width);--btn-bg-image:none;--btn-border-b-color:var(--btn-border-color);--btn-border-l-width:var(--btn-border-width);--btn-border-t-color:var(--btn-border-color);--btn-text-align:center;--btn-text-color:rgb(255, 255, 255);--btn-text-decoration:none;--btn-text-font-weight:400;--btn-text-font-family:Karla,"Karla Fallback";--btn-icon-color:rgb(247, 247, 247);--btn-icon-fill:rgb(247, 247, 247);--btn-icon-wrpr-display:none;--btn-hover-border-b-color:var(--btn-hover-border-color);--btn-hover-bg:rgb(59, 35, 20);--btn-hover-border-t-color:var(--btn-hover-border-color);--btn-hover-border-r-color:var(--btn-hover-border-color);--btn-hover-border-l-color:var(--btn-hover-border-color);--btn-hover-border-color:rgba(0, 0, 0, 0);--btn-hover-text-color:var(--btn-text-color);--btn-hover-text-font-weight:var(--btn-text-font-weight);--btn-hover-text-decoration:var(--btn-text-decoration);--btn-hover-text-font-style:var(--btn-text-font-style)}}@media (min-width:0px) and (max-width:767px){:root{--btn-text-font-size:16px}}#dm .dmWidget:not([data-buttonstyle]){border-radius:50px}#dm .dmWidget:not([data-buttonstyle]) .text{padding:10px 0}#dm .dmWidget:not([data-buttonstyle]) .iconBg{display:none}#dm div.dmInner #site_content .dmWidget{background-color:var(--btn-bg-color);background-image:var(--btn-bg-image);border-color:var(--btn-border-color);border-bottom-color:var(--btn-border-b-color);border-left-color:var(--btn-border-l-color);border-right-color:var(--btn-border-r-color);border-top-color:var(--btn-border-t-color);border-radius:var(--btn-border-radius);border-bottom-left-radius:var(--btn-border-bl-radius);border-bottom-right-radius:var(--btn-border-br-radius);border-top-left-radius:var(--btn-border-tl-radius);border-top-right-radius:var(--btn-border-tr-radius);border-width:var(--btn-border-width);border-bottom-width:var(--btn-border-b-width);border-left-width:var(--btn-border-l-width);border-right-width:var(--btn-border-r-width);border-top-width:var(--btn-border-t-width);direction:var(--btn-text-direction);text-align:var(--btn-text-align)}#dm .dmInner div.dmHeader,#dm .dmInner div.dmHeader.u_hcontainer,#dm .dmInner div.u_hcontainer{border-style:solid!important;border-width:0!important;border-color:rgba(193,193,193,1)!important;background-image:none!important;background-repeat:no-repeat!important;background-size:cover!important}#dm .p_hfcontainer div.u_1186397610,div.u_1227584101{text-align:center!important;padding:0!important}#dm div.dmInner #site_content .dmWidget span.text{color:var(--btn-text-color);font-family:var(--btn-text-font-family);font-size:var(--btn-text-font-size);font-weight:var(--btn-text-font-weight);text-decoration:var(--btn-text-decoration)}#dm div.dmInner #site_content .dmWidget span.icon{color:var(--btn-icon-color);fill:var(--btn-icon-fill)}#dm div.dmInner #site_content .dmWidget:not([data-buttonstyle]) .iconBg{display:var(--btn-icon-wrpr-display)}#dm .p_hfcontainer .main-navigation.unifiednav:not(.unifiednav_vertical) .unifiednav__container:not([data-depth])>.unifiednav__item-wrap:not(:last-child)::after,#dm .p_hfcontainer .main-navigation.unifiednav:not(.unifiednav_vertical) .unifiednav__container:not([data-depth])>.unifiednav__item-wrap:not(:last-child)::before{font-size:13px!important}#dm .p_hfcontainer .u_1944679469{width:100%!important}#dm .p_hfcontainer div.u_1390590208{background-color:rgba(59,35,20,1)!important}#dm .dmInner div.dmHeader.u_hcontainer,#dm .dmInner div.u_hcontainer{background-color:rgba(255,255,255,1)!important;box-shadow:rgba(0,0,0,.25) 0 3px 11px 0!important;-moz-box-shadow:rgba(0,0,0,.25) 0 3px 11px 0!important;-webkit-box-shadow:rgba(0,0,0,.25) 0 3px 11px 0!important}#dm .dmInner div.dmHeader{background-color:rgba(255,255,255,.8)!important;box-shadow:rgba(0,0,0,.25) 0 3px 11px 0!important;-moz-box-shadow:rgba(0,0,0,.25) 0 3px 11px 0!important;-webkit-box-shadow:rgba(0,0,0,.25) 0 3px 11px 0!important}#dm .p_hfcontainer div.u_1684407284 hr,div.u_1767121065 hr{border-top-style:solid!important;border-top-width:3px!important;color:rgba(255,255,255,1)!important}#dm .p_hfcontainer div.u_1944679469 img{box-shadow:none!important;-moz-box-shadow:none!important;-webkit-box-shadow:none!important}#dm .p_hfcontainer div.u_1921388554{display:flex!important;flex-direction:column!important;justify-content:center!important}#dm .p_hfcontainer div.u_1869301598{background-color:rgba(59,35,20,1)!important;background-image:none!important}nav.u_1484985246.main-navigation.unifiednav .unifiednav__container[data-depth]{background-color:rgba(255,255,255,1)!important}nav.u_1484985246.main-navigation.unifiednav:not([data-nav-structure=VERTICAL]) .unifiednav__container[data-depth]{box-shadow:rgba(0,0,0,.25) 0 3px 11px 0!important;-moz-box-shadow:rgba(0,0,0,.25) 0 3px 11px 0!important;-webkit-box-shadow:rgba(0,0,0,.25) 0 3px 11px 0!important}#dm .p_hfcontainer .u_1484985246.main-navigation.unifiednav .unifiednav__container[data-depth] .unifiednav__item{margin:0!important;padding:10px 30px!important}#dm .p_hfcontainer .u_1484985246.main-navigation.unifiednav .unifiednav__container:not([data-depth])>.unifiednav__item-wrap>.unifiednav__item{margin:0!important;padding:0 0 0 25px!important}#dm .p_hfcontainer .u_1484985246.main-navigation.unifiednav:not([data-nav-structure=VERTICAL]) .unifiednav__container:not([data-depth])>.unifiednav__item-wrap:not(:last-child)::after,#dm .p_hfcontainer .u_1484985246.main-navigation.unifiednav:not([data-nav-structure=VERTICAL]) .unifiednav__container:not([data-depth])>.unifiednav__item-wrap:not(:last-child)::before{font-size:15px!important}#dm .p_hfcontainer div.u_1616944113{display:flex!important;flex-direction:column!important;justify-content:center!important}#dm .dmInner div.dmHeader.u_hcontainer{padding-top:10px!important}.fHeader #hcontainer.dmHeader[freeheader=true]{padding-top:initial!important;padding-bottom:initial!important}#dm .dmInner div.u_hcontainer{padding:0!important}#dm .dmInner div.fHeader .dmHeader[freeheader=true]{padding:0!important;margin:0!important}#dm .p_hfcontainer div.u_1870603734{width:auto!important;margin:0!important;padding:15px 65px!important}#dm .p_hfcontainer .u_1186397610 .socialHubIcon{width:25px!important;height:25px!important;font-size:16.67px!important;line-height:25px!important}#dm .p_hfcontainer .u_1186397610 .socialHubIcon:after{width:33px!important;height:25px!important}#dm .p_hfcontainer div.u_1069796964,#dm .p_hfcontainer div.u_1186397610{float:none!important;top:0!important;left:0!important;width:calc(100% - 0px)!important;position:relative!important;height:auto!important;max-width:100%!important;min-width:25px!important}#dm .p_hfcontainer div.u_1069796964{padding:2px 0!important;margin:8px 0!important}#dm .p_hfcontainer div.u_1186397610{margin:8px 0 0!important}#dm .p_hfcontainer .u_1227584101 .socialHubIcon{width:25px!important;height:25px!important;font-size:16.67px!important;line-height:25px!important}#dm .p_hfcontainer .u_1227584101 .socialHubIcon:after{width:33px!important;height:25px!important}#dm .p_hfcontainer div.u_1060130767,#dm .p_hfcontainer div.u_1227584101,div.u_1227584101{width:calc(100% - 0px)!important;min-width:25px!important}#dm .p_hfcontainer div.u_1060130767,#dm .p_hfcontainer div.u_1227584101,#dm .p_hfcontainer div.u_1390590208,div.u_1227584101{float:none!important;top:0!important;left:0!important;position:relative!important;height:auto!important;max-width:100%!important}#dm .p_hfcontainer div.u_1227584101{text-align:left!important;display:block!important;padding:0!important;margin:12px 0 0!important}#dm .p_hfcontainer div.u_1060130767{padding:2px 0!important;margin:13px 0 8px!important}#dm .p_hfcontainer div.u_1390590208{width:auto!important;min-width:0!important;text-align:center!important;padding:6px 65px 5.5px!important;margin:0!important}#dm .p_hfcontainer div.u_1585539890,#dm .p_hfcontainer div.u_1626106914,#dm .p_hfcontainer div.u_1663862806,div.u_1740008471{min-width:25px!important;padding:2px 0!important;float:none!important;top:0!important;left:0!important;width:calc(100% - 0px)!important;position:relative!important;height:auto!important;max-width:100%!important}#dm .p_hfcontainer div.u_1585539890,#dm .p_hfcontainer div.u_1626106914{margin:0 0 8px!important}#dm .p_hfcontainer div.u_1663862806{margin:8px 0!important}div.u_1740008471{display:block!important;margin:11px 200.03px 0 0!important}#dm .p_hfcontainer div.u_1622725674{margin:0!important;padding:0!important}#dm .p_hfcontainer div.u_1869301598{width:auto!important;background-repeat:repeat!important;background-size:auto!important;float:none!important;top:0!important;left:0!important;position:relative!important;height:auto!important;max-width:100%!important;min-width:0!important;text-align:left!important;margin:0!important;padding:65px 0 65px 60px!important}#dm .p_hfcontainer div.u_1522818338{float:none!important;top:0!important;left:0!important;width:calc(100% - 0px)!important;position:relative!important;height:auto!important;max-width:100%!important;min-width:25px!important;display:block!important;padding:2px 0!important;margin:11px 0 0!important}#dm .p_hfcontainer div.u_1684407284,#dm .p_hfcontainer div.u_1767121065,div.u_1767121065{width:calc(100% - 0px)!important;position:relative!important;height:auto!important;max-width:332px!important;min-width:25px!important;text-align:left!important;float:none!important;top:0!important;left:0!important}#dm .p_hfcontainer div.u_1106539778{margin:0!important;padding:0!important}#dm .p_hfcontainer div.u_1684407284{display:block!important;padding:0!important;margin:-8px 41.99px 0 0!important}div.u_1767121065{display:block!important;padding:0!important}#dm .p_hfcontainer div.u_1767121065{padding:0!important;margin:-8px 0 0!important}nav.u_1484985246.main-navigation.unifiednav .unifiednav__container[data-depth] .unifiednav__item{color:rgba(51,51,51,1)!important;font-size:14px!important}nav.u_1484985246{text-transform:uppercase!important;float:none!important;top:0!important;left:0!important;width:calc(100% - 29px)!important;position:relative!important;height:auto!important;max-width:970px!important;justify-content:flex-end!important;align-items:stretch!important;min-width:25px!important;text-align:start!important;padding:0!important}#dm .p_hfcontainer div.u_1944679469,#dm .p_hfcontainer nav.u_1484985246{float:none!important;left:0!important;width:calc(100% - 0px)!important;position:relative!important;height:auto!important;min-width:25px!important;top:0!important;padding:0!important}nav.u_1484985246.main-navigation.unifiednav .unifiednav__container:not([data-depth])>.unifiednav__item-wrap>.unifiednav__item{font-size:15px!important}#dm .p_hfcontainer div.u_1616944113{padding:0!important}#dm .p_hfcontainer nav.u_1484985246{max-width:100%!important;justify-content:flex-end!important;align-items:stretch!important;text-align:start!important;margin:-12px 0 0!important}#dm .p_hfcontainer div.u_1944679469{max-width:154.31px!important;text-align:center!important;display:block!important;min-height:auto!important;margin:0 117px 0 0!important}.stickyHeaderSpacer{height:224.5px!important}#dm .dmBody div.u_1143032565,#dm .dmBody div.u_1853527195{float:none!important;left:0!important;position:relative!important;height:auto!important;max-width:100%!important;min-width:0!important}#dm .dmBody div.u_1056635707,#dm .dmBody div.u_1159597987{display:flex!important;flex-direction:column!important;justify-content:center!important}#dm .dmBody .u_1098885700,#dm .dmBody .u_1139896181,#dm .dmBody .u_1398910401,#dm .dmBody .u_1469142563,#dm .dmBody .u_1512937897,#dm .dmBody .u_1519919918,#dm .dmBody .u_1643628832{display:none!important}#dm .dmBody .u_1531024934{background-image:url(https://lirp.cdn-website.com/104ba787/dms3rep/multi/opt/invisible+background-1920w.png),url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAABhGlDQ1BJQ0MgcHJvZmlsZQAAKJF9kT1Iw0AcxV9TpUUqHSwo4pChOlkQFemoVShChVArtOpgcukXNGlIUlwcBdeCgx+LVQcXZ10dXAVB8APEzc1J0UVK/F9aaBHjwXE/3t173L0DhEaFaVbPBKDptplOJsRsblUMvEJAGEEMIi4zy5iTpBQ8x9c9fHy9i/Es73N/jn41bzHAJxLPMsO0iTeIZzZtg/M+cYSVZJX4nHjcpAsSP3JdafEb56LLAs+MmJn0PHGEWCx2sdLFrGRqxNPEUVXTKV/ItljlvMVZq9RY+578haG8vrLMdZojSGIRS5AgQkENZVRgI0arToqFNO0nPPzDrl8il0KuMhg5FlCFBtn1g//B726twtRkKymUAHpfHOdjFAjsAs2643wfO07zBPA/A1d6x19tAPFP0usdLXoEhLeBi+uOpuwBlzvA0JMhm7Ir+WkKhQLwfkbflAMGboG+tVZv7X2cPgAZ6ip1AxwcAmNFyl73eHewu7d/z7T7+wFwJnKmZ9+MiwAAAAZiS0dEAP8A/wD/oL2nkwAAAAlwSFlzAAAuIwAALiMBeKU/dgAAAAd0SU1FB+UCDwksLkLIPkkAAAAZdEVYdENvbW1lbnQAQ3JlYXRlZCB3aXRoIEdJTVBXgQ4XAAAAC0lEQVQI12NgAAIAAAUAAeImBZsAAAAASUVORK5CYII=)!important}#dm .dmBody div.u_1222472105 .color-overlay{background-color:rgba(0,0,0,0)!important}#dm .dmBody .u_1222472105 .slides>li .rteBlock{display:block!important;text-align:left!important}#dm .dmBody .u_1099415109:before{opacity:.5!important;background-color:#fff!important}#dm .dmBody div.u_1099415109:before{background-color:rgba(0,0,0,1)!important}#dm .dmBody .u_1659135209{background-position:50% 0!important}#dm .dmBody div.u_1143032565{top:0!important;width:100%!important;padding:2px 0!important;margin:0 auto!important}#dm .dmBody div.u_1853527195{top:0!important;width:582px!important;text-align:center!important;padding:0!important;margin:0!important}#dm .dmBody div.u_1159597987,#dm .dmBody div.u_1222472105{float:none!important;top:0!important;left:0!important;width:calc(100% - 0px)!important;position:relative!important;max-width:100%!important;min-width:25px!important}#dm .dmBody .u_1853527195 .layout-container,#dm .dmBody .u_1853527195 .photoGalleryThumbs{padding:7.5px!important}#dm .dmBody .u_1853527195 .photoGalleryThumbs .image-container a{background-size:cover!important;padding-top:190px!important}#dm .dmBody div.u_1222472105 .slides .slide-text{font-size:16px!important}#dm .dmBody div.u_1222472105{height:242px!important;text-align:start!important;padding:0!important}#dm .dmBody div.u_1159597987{height:auto!important;justify-content:center!important;align-items:normal!important;padding:2px 0!important;margin:18px 0 8px!important}#dm .dmBody div.u_1542935401{margin:0!important;padding:0!important}#dm .dmBody div.u_1074125694,#dm .dmBody div.u_1787505567{height:auto!important;padding:2px 0!important;width:calc(100% - 0px)!important;min-width:25px!important;float:none!important;top:0!important;left:0!important;position:relative!important;max-width:100%!important}#dm .dmBody div.u_1074125694{margin:-10px auto 8px!important}#dm .dmBody div.u_1787505567{margin:23px auto 8px!important}#dm .dmBody div.u_1602100454{height:162px!important;float:none!important;top:0!important;left:0!important;width:calc(100% - 0px)!important;position:relative!important;max-width:100%!important;min-width:25px!important;text-align:start!important;padding:0!important;margin:0 auto!important}#dm .dmBody div.u_1099415109{background-repeat:no-repeat!important;background-image:url(https://lirp.cdn-website.com/104ba787/dms3rep/multi/opt/thumbnail_Homepage+image-1920w.jpg),url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAABhGlDQ1BJQ0MgcHJvZmlsZQAAKJF9kT1Iw0AcxV9TpUUqHSwo4pChOlkQFemoVShChVArtOpgcukXNGlIUlwcBdeCgx+LVQcXZ10dXAVB8APEzc1J0UVK/F9aaBHjwXE/3t173L0DhEaFaVbPBKDptplOJsRsblUMvEJAGEEMIi4zy5iTpBQ8x9c9fHy9i/Es73N/jn41bzHAJxLPMsO0iTeIZzZtg/M+cYSVZJX4nHjcpAsSP3JdafEb56LLAs+MmJn0PHGEWCx2sdLFrGRqxNPEUVXTKV/ItljlvMVZq9RY+578haG8vrLMdZojSGIRS5AgQkENZVRgI0arToqFNO0nPPzDrl8il0KuMhg5FlCFBtn1g//B726twtRkKymUAHpfHOdjFAjsAs2643wfO07zBPA/A1d6x19tAPFP0usdLXoEhLeBi+uOpuwBlzvA0JMhm7Ir+WkKhQLwfkbflAMGboG+tVZv7X2cPgAZ6ip1AxwcAmNFyl73eHewu7d/z7T7+wFwJnKmZ9+MiwAAAAZiS0dEAP8A/wD/oL2nkwAAAAlwSFlzAAAuIwAALiMBeKU/dgAAAAd0SU1FB+UCDwksLkLIPkkAAAAZdEVYdENvbW1lbnQAQ3JlYXRlZCB3aXRoIEdJTVBXgQ4XAAAAC0lEQVQI12NgAAIAAAUAAeImBZsAAAAASUVORK5CYII=)!important;background-size:cover!important;float:none!important;top:0!important;left:0!important;width:auto!important;position:relative!important;height:auto!important;max-width:100%!important;min-width:0!important;text-align:start!important;background-position:50% 50%!important;background-attachment:initial!important;padding:77.5px 65px!important;margin:0!important}#dm .dmBody div.u_1056635707{margin:0!important;padding:0 17.99px 0 0!important}.font-size-21{font-size:21px!important}.font-size-48,.size-48{font-size:48px!important}.font-size-20,.size-20{font-size:20px!important}#\31 004124748,#\31 013989628,#\31 176862943,#\31 380053304,#\31 399734242,#\31 529922324,#\31 531024934,#\31 601738840,#\31 774516301,#\31 824514946,#\31 825563277,#\31 834127031,#\31 892320955,#\31 939781574,#\31 948058829{order:0;flex-direction:row}#\31 053073322,#\31 056635707,#\31 159597987,#\31 484985246,#\31 490284470,#\31 616944113,#\31 921388554{order:0}#\31 053073322,#\31 484985246,#\31 490284470{flex-direction:row} #dm .dmPhotoGallery.newPhotoGallery .dmPhotoGalleryHolder:not(.photo-gallery-done) {display: none;} @media (max-width:767px){ [data-hidden-on-mobile] {display:none!important}} .dmDesktopBody [data-anim-desktop]:not([data-anim-desktop='none']) { visibility: hidden; } </style> <style id="fontFallbacks"> @font-face { font-family: "Roboto Fallback"; src: local('Arial'); ascent-override: 92.6709%; descent-override: 24.3871%; size-adjust: 100.1106%; line-gap-override: 0%; }@font-face { font-family: "Montserrat Fallback"; src: local('Arial'); ascent-override: 84.9466%; descent-override: 22.0264%; size-adjust: 113.954%; line-gap-override: 0%; }@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: "Pacifico Fallback"; src: local('Arial'); ascent-override: 140.9687%; descent-override: 49.0091%; size-adjust: 92.4319%; line-gap-override: 0%; }@font-face { font-family: "Open Sans Fallback"; src: local('Arial'); ascent-override: 101.1768%; descent-override: 27.7323%; size-adjust: 105.6416%; line-gap-override: 0%; }@font-face { font-family: "Karla Fallback"; src: local('Arial'); ascent-override: 88.668%; descent-override: 24.3668%; size-adjust: 103.4195%; line-gap-override: 0%; } </style> <!-- End render the required css and JS in the head section --> <meta property="og:type" content="website"> <meta property="og:url" content="https://www.alcwc.com/"> <title> Worship | University Place, WA | Abundant Life Worship </title> <meta name="description" content="Abundant Life Worship Community Center is a church for all people in University Place, Washington. Call us at (253) 328-6461 now for our service times."/> <meta name="twitter:card" content="summary"/> <meta name="twitter:title" content="Worship | University Place, WA | Abundant Life Worship"/> <meta name="twitter:description" content="Abundant Life Worship Community Center is a church for all people in University Place, Washington. Call us at (253) 328-6461 now for our service times."/> <meta property="og:description" content="Abundant Life Worship Community Center is a church for all people in University Place, Washington. Call us at (253) 328-6461 now for our service times."/> <meta property="og:title" content="Worship | University Place, WA | Abundant Life Worship"/> <!-- SYS- VVNfRElSRUNUX1BST0RVQ1RJT04= --> </head> <body id="dmRoot" data-page-alias="home" class="dmRoot dmDesktopBody fix-mobile-scrolling addCanvasBorder dmResellerSite 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="1901957768" class="dm-home-page" themewaschanged="true"> <div dmtemplateid="StandardLayoutMultiD" class="standardHeaderLayout dm-bfs dm-layout-home hasAnimations rows-1200 inMiniHeaderMode hasStickyHeader dmPageBody d-page-1716942098 dmFreeHeader" id="dm-outer-wrapper" data-page-class="1716942098" data-soch="true" data-background-parallax-selector=".dmHomeSection1, .dmSectionParallex"> <div id="dmStyle_outerContainer" class="dmOuter"> <div id="dmStyle_innerContainer" class="dmInner"> <div class="dmLayoutWrapper standard-var dmStandardDesktop"> <div> <div id="iscrollBody"> <div id="site_content"> <div class="dmHeaderContainer fHeader d-header-wrapper"> <div id="hcontainer" class="u_hcontainer dmHeader p_hfcontainer" freeheader="true" headerlayout="696" layout="7621f7e0002549258c16efb7610abc8f===header" data-scrollable-target="body" data-scrollable-target-threshold="1" data-scroll-responder-id="1" logo-size-target="66%" mini-header-show-only-navigation-row="true" has-shadow="true"> <div dm:templateorder="85" class="dmHeaderResp dmHeaderStack noSwitch" id="1709005236"> <div class="u_1390590208 dmRespRow" id="1390590208"> <div class="dmRespColsWrapper" id="1774516301"> <div class="u_1059944590 dmRespCol small-12 large-6 medium-6" id="1059944590"> <div class="u_1069796964 dmNewParagraph" data-element-type="paragraph" data-version="5" id="1069796964" style="transition: opacity 1s ease-in-out 0s;"><p><a href="https://www.google.com/maps/place/Abundant+Life+Community+Worship+Center/@47.2113005,-122.5297451,17z/data=!4m13!1m7!3m6!1s0x5491aa85d78b0e61:0xe9cbe04ab325f16a!2s5000+67th+Ave+W,+University+Place,+WA+98467,+USA!3b1!8m2!3d47.2113005!4d-122.5275564!3m4!1s0x5491008c16538571:0xae80d00231a2f634!8m2!3d47.211408!4d-122.5275554" target="_blank" runtime_url="https://www.google.com/maps/place/Abundant+Life+Community+Worship+Center/@47.2113005,-122.5297451,17z/data=!4m13!1m7!3m6!1s0x5491aa85d78b0e61:0xe9cbe04ab325f16a!2s5000+67th+Ave+W,+University+Place,+WA+98467,+USA!3b1!8m2!3d47.2113005!4d-122.5275564!3m4!1s0x5491008c16538571:0xae80d00231a2f634!8m2!3d47.211408!4d-122.5275554" type="url" style="display: unset; color: rgb(138, 205, 75); font-weight: bold;">5000 67th Ave W University Place, WA 98467</a></p></div> </div> <div class="u_1106569889 dmRespCol small-12 large-2 medium-2" id="1106569889"> <div class="u_1186397610 align-center text-align-center dmSocialHub gapSpacing" id="1186397610" dmle_extension="social_hub" data-element-type="social_hub" wr="true" networks="" icon="true" surround="true" adwords=""> <div class="socialHubWrapper"> <div class="socialHubInnerDiv "> <a href="https://www.facebook.com/abundantlifecommunityworship/" 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://www.instagram.com/alcwc/" target="_blank" dm_dont_rewrite_url="true" aria-label="instagram" onclick="dm_gaq_push_event && dm_gaq_push_event('socialLink', 'click', 'Instagram')"> <span class="dmSocialInstagram dm-social-icons-instagram oneIcon socialHubIcon style5" aria-hidden="true" data-hover-effect=""></span> </a> <a href="https://twitter.com/ALCWC_" target="_blank" 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://www.youtube.com/channel/UCpsSwIZlfvoPJWsEQU5bArQ" target="_blank" dm_dont_rewrite_url="true" aria-label="youtube" onclick="dm_gaq_push_event && dm_gaq_push_event('socialLink', 'click', 'Youtube')"> <span class="dmSocialYoutube dm-social-icons-youtube oneIcon socialHubIcon style5" aria-hidden="true" data-hover-effect=""></span> </a> </div> </div> </div> </div> <div class="u_1921388554 dmRespCol small-12 large-4 medium-4" id="1921388554"> <div class="dmNewParagraph u_1663862806" data-element-type="paragraph" data-version="5" id="1663862806" style="transition: none 0s ease 0s; text-align: left; display: block;"><p class="text-align-right" style="line-height: 115%;"><span class="" style="display: unset; color: rgb(255, 255, 255);"><span style="display: unset; color: rgb(255, 255, 255);">Call Now!</span> </span><a href="tel:253-328-6461" type="call" class="font-size-21 m-font-size-17" style="color:rgb(138, 205, 75);font-weight:700;display:unset;font-family:Karla, 'Karla Fallback';" runtime_url="tel:253-328-6461">253-328-6461</a></p></div> </div> </div> </div> <div class="dmRespRow u_1870603734" id="1870603734"> <div class="dmRespColsWrapper" id="1490284470"> <div class="u_1973872107 dmRespCol small-12 large-2 medium-2" id="1973872107"> <div class="u_1944679469 imageWidget align-center" data-element-type="image" data-widget-type="image" id="1944679469"> <a href="/" id="1679476727"><img src="https://lirp.cdn-website.com/104ba787/dms3rep/multi/opt/Abundant-Life-logo-171w.png" alt="Abundant Life Community Worship Center" id="1497992646" class="" data-dm-image-path="https://irp.cdn-website.com/104ba787/dms3rep/multi/Abundant-Life-logo.png" width="222" height="200" title="Abundant Life Community Worship Center" onerror="handleImageLoadError(this)"/></a> </div> </div> <div class="u_1616944113 dmRespCol small-12 large-10 medium-10" id="1616944113"> <nav class="u_1484985246 effect-bottom2 main-navigation unifiednav dmLinksMenu" role="navigation" layout-main="horizontal_nav_layout_1" layout-sub="submenu_horizontal_1" data-show-vertical-sub-items="HOVER" id="1484985246" dmle_extension="onelinksmenu" data-element-type="onelinksmenu" data-logo-src="" alt="" data-nav-structure="HORIZONTAL" 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 dmNavItemSelected dmUDNavigationItem_00 " target="" data-target-page-alias="" data-auto="selected-page"> <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" aria-haspopup="true" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="0"> <a href="#" class="unifiednav__item dmUDNavigationItem_010101983252 unifiednav__item_has-sub-nav" target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text=" About Us " data-auto="page-text-style">About Us<span class="icon icon-angle-down"></span> </span> </a> <ul role="menu" aria-expanded="false" class="unifiednav__container unifiednav__container_sub-nav" data-depth="0" data-auto="sub-pages"> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="1"> <a href="/our-team" class="unifiednav__item dmUDNavigationItem_010101948624 " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text=" Our Pastors " data-auto="page-text-style">Our Pastors<span class="icon icon-angle-right"></span> </span> </a> </li> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="1"> <a href="/copy-of-our-team" class="unifiednav__item dmUDNavigationItem_01010160578 " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text=" Our Board " data-auto="page-text-style">Our Board<span class="icon icon-angle-right"></span> </span> </a> </li> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="1"> <a href="/our-story" class="unifiednav__item dmUDNavigationItem_010101883532 " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text=" Our Story " data-auto="page-text-style">Our Story<span class="icon icon-angle-right"></span> </span> </a> </li> </ul> </li> <li role="menuitem" aria-haspopup="true" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="0"> <a href="/get-connected" class="unifiednav__item dmUDNavigationItem_010101538288 unifiednav__item_has-sub-nav" target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text=" Get Connected " data-auto="page-text-style">Get Connected<span class="icon icon-angle-down"></span> </span> </a> <ul role="menu" aria-expanded="false" class="unifiednav__container unifiednav__container_sub-nav" data-depth="0" data-auto="sub-pages"> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="1"> <a href="/spotlight-family" class="unifiednav__item dmUDNavigationItem_010101870607 " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text=" May Spotlight Family " data-auto="page-text-style">May Spotlight Family<span class="icon icon-angle-right"></span> </span> </a> </li> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="1"> <a href="/highlight-video" class="unifiednav__item dmUDNavigationItem_010101193356 " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text=" Highlight Video " data-auto="page-text-style">Highlight Video<span class="icon icon-angle-right"></span> </span> </a> </li> </ul> </li> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="0"> <a href="/life-groups" class="unifiednav__item dmUDNavigationItem_01010136887 " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text=" Life Groups " data-auto="page-text-style">Life Groups<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="/serve" class="unifiednav__item dmUDNavigationItem_010101823650 " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text=" Serve " data-auto="page-text-style">Serve<span class="icon icon-angle-down"></span> </span> </a> </li> <li role="menuitem" aria-haspopup="true" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="0"> <a href="/calendar" class="unifiednav__item dmUDNavigationItem_010101205659 unifiednav__item_has-sub-nav" target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text=" Calendar " data-auto="page-text-style">Calendar<span class="icon icon-angle-down"></span> </span> </a> <ul role="menu" aria-expanded="false" class="unifiednav__container unifiednav__container_sub-nav" data-depth="0" data-auto="sub-pages"> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="1"> <a href="/2025-Theme" class="unifiednav__item dmUDNavigationItem_010101619143 " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text=" 2025 Theme " data-auto="page-text-style">2025 Theme<span class="icon icon-angle-right"></span> </span> </a> </li> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="1"> <a href="/national-day-of-prayer" class="unifiednav__item dmUDNavigationItem_010101398785 " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text=" National Day of Prayer " data-auto="page-text-style">National Day of Prayer<span class="icon icon-angle-right"></span> </span> </a> </li> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="1"> <a href="/teacher-appreciation" class="unifiednav__item dmUDNavigationItem_010101595653 " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text=" Teacher Appreciation " data-auto="page-text-style">Teacher Appreciation<span class="icon icon-angle-right"></span> </span> </a> </li> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="1"> <a href="/happy-mothers-day" class="unifiednav__item dmUDNavigationItem_010101421330 " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text=" Happy Mother's Day " data-auto="page-text-style">Happy Mother's Day<span class="icon icon-angle-right"></span> </span> </a> </li> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="1"> <a href="/memorial-day" class="unifiednav__item dmUDNavigationItem_010101165099 " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text=" Memorial Day " data-auto="page-text-style">Memorial Day<span class="icon icon-angle-right"></span> </span> </a> </li> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="1"> <a href="/9-year-celebration" class="unifiednav__item dmUDNavigationItem_010101602977 " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text=" 9 Year Celebration " data-auto="page-text-style">9 Year Celebration<span class="icon icon-angle-right"></span> </span> </a> </li> </ul> </li> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="0"> <a href="https://pushpay.com/g/alcwctacoma?src=hpp" class="unifiednav__item dmUDNavigationItem_010101505727 " target="_blank" data-target-page-alias=""> <span class="nav-item-text " data-link-text=" Give " data-auto="page-text-style">Give<span class="icon icon-angle-down"></span> </span> </a> </li> <li role="menuitem" aria-haspopup="true" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="0"> <a href="/RISE" class="unifiednav__item dmUDNavigationItem_010101810133 unifiednav__item_has-sub-nav" target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text=" RISE! " data-auto="page-text-style">RISE!<span class="icon icon-angle-down"></span> </span> </a> <ul role="menu" aria-expanded="false" class="unifiednav__container unifiednav__container_sub-nav" data-depth="0" data-auto="sub-pages"> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="1"> <a href="https://www.rise-womens-conference.com" class="unifiednav__item dmUDNavigationItem_010101138508 " target="_blank" data-target-page-alias=""> <span class="nav-item-text " data-link-text=" RISE! Webpage " data-auto="page-text-style">RISE! Webpage<span class="icon icon-angle-right"></span> </span> </a> </li> </ul> </li> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="0"> <a href="/contact-us" class="unifiednav__item dmUDNavigationItem_010101106855 " 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> </div> </div> </div> </div> <div class="stickyHeaderSpacer" id="stickyHeaderSpacer" data-new="true"></div> <div class="dmRespRow dmRespRowStable dmRespRowNoPadding dmPageTitleRow "> <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> <div class="titleLine display_None"><hr/></div> </div> </div> </div> </div> <div dmwrapped="true" id="dmFirstContainer" class="dmBody u_dmStyle_template_home dm-home-page" themewaschanged="true"> <div id="allWrapper" class="allWrapper"><!-- navigation placeholders --> <div id="dm_content" class="dmContent" role="main"> <div dm:templateorder="170" class="dmHomeRespTmpl mainBorder dmRespRowsWrapper dmFullRowRespTmpl" id="1716942098"> <div class="u_1099415109 dmRespRow dmSectionNoParallax hasBackgroundOverlay" id="1099415109" data-gallery-bg="eyJzbGlkZXMiOltdfQ=="> <div class="dmRespColsWrapper" id="1824514946"> <div class="dmRespCol large-12 medium-12 small-12 u_1542935401" id="1542935401"> <div data-element-type="html" class="dmCustomHtml" id="1293530750"> <script type="text/javascript"> window.liveSiteAsyncInit = function() { LiveSite.init({ id : 'WI-77GV4WWITS16CBSTP7WQ' }); }; (function(d, s, id){ var js, fjs = d.getElementsByTagName(s)[0], p = 'https://', r = Math.floor(new Date().getTime() / 1000000); if (d.getElementById(id)) {return;} js = d.createElement(s); js.id = id; js.src = p + "d2ra6nuwn69ktl.cloudfront.net/assets/livesite.js?" + r; fjs.parentNode.insertBefore(js, fjs); }(document, 'script', 'livesite-jssdk')); </script> </div> <div data-element-type="spacer" class="u_1602100454 dmSpacer" id="1602100454"></div> <div class="u_1074125694 dmNewParagraph" data-element-type="paragraph" data-version="5" id="1074125694" style="transition: none 0s ease 0s; text-align: left; display: block;"> <h1 class="text-align-center size-48 m-size-25"><span class="font-size-48 m-font-size-25" style="display: unset; color: rgb(255, 255, 255);" m-font-size-set="true">Loving God, Loving People</span></h1> <h3 class="text-align-center"><span style="display: unset; color: rgb(255, 255, 255);">ALCWC - A Place To Call Home</span></h3> </div> <div class="u_1787505567 dmNewParagraph" data-element-type="paragraph" data-version="5" id="1787505567" style="transition: opacity 1s ease-in-out 0s;"><p class="text-align-center"><span style="color: rgb(255, 255, 255); display: unset;">"The thief cometh not, but for to steal, and to kill, and to destroy: I am come that they might have life, and that they might have it more abundantly." John 10:10</span><span style="display: initial;"><br/></span></p></div> </div> </div> </div> <div class="dmRespRow" style="text-align: center;" id="1265059670"> <div class="dmRespColsWrapper" id="1948058829"> <div class="u_1056635707 dmRespCol small-12 large-6 medium-6" id="1056635707"> <div class="dmNewParagraph u_1143032565" data-element-type="paragraph" data-version="5" id="1143032565"> <h1 class="text-align-left"><span style="text-transform: uppercase; display: unset;">Welcome to Abundant Life Community Worship Center!</span></h1> </div> <div class="u_1159597987 dmNewParagraph" data-element-type="paragraph" data-version="5" id="1159597987" style="transition: none 0s ease 0s; text-align: left; display: block;" data-preserve-display="true"><p><span class="" style="display: unset;"><span style="display: unset;">Abundant Life Community Worship Center (ALCWC) is a Bible-based, non-denominational, and multi-cultural church that helps people become whole through the power of God’s love and grace. It is through transparency, acceptance and meaningful relationships that allows our ministry to help people connect with God on a deeper level and embrace the Word of God in their daily lives. In addition to our weekly worship experiences, ALCWC provides support and offers several programs to encourage and uplift people of all ages and families. </span> </span></p></div> </div> <div class="dmRespCol large-6 medium-6 small-12" id="1665325279"> <div class="u_1853527195 dmPhotoGallery newPhotoGallery dmPhotoGalleryResp hasShadow photo-gallery-done text-layout-over captionAlignment-center_center photoGallery" galleryoptionsparams="{thumbnailsPerRow: 3, rowsToShow: 3, imageScaleMethod: true}" data-desktop-layout="square" data-desktop-columns="2" data-element-type="dPhotoGalleryId" data-desktop-text-layout="over" id="1853527195" data-placeholder="false"> <div class="dmPhotoGalleryHolder clearfix gallery shadowEffectToChildren gallery4inArow" id="1362986591"></div> <div class="layout-container square"> <div class="photogallery-row " data-index=""> <div class="photogallery-column column-2" data-index="0"> <div index="0" class="photoGalleryThumbs animated " data-index="0"> <div class="thumbnailInnerWrapper" style="opacity: 1;"> <div class="image-container revealed"> <a data-dm-multisize-attr="temp" data-dm-force-device="mobile" class="u_1062453432" data-image-url="https://irp.cdn-website.com/104ba787/dms3rep/multi/Untitled-381.JPG" style="background-image: url('https://lirp.cdn-website.com/104ba787/dms3rep/multi/opt/Untitled-381-640w.JPG');"><img id="1167005037" data-src="https://lirp.cdn-website.com/104ba787/dms3rep/multi/opt/Untitled-381-1920w.JPG" alt="" onerror="handleImageLoadError(this)"/></a> </div> <div id="1194789827" class="caption-container u_1194789827" style="display:none"> <span class="caption-inner"> <a id="1163037653" class="caption-button dmWidget clearfix u_1163037653" href="" style=""> <span class="iconBg"> <span class="icon hasFontIcon "></span> </span> <span class="text">Button</span> </a> </span> </div> </div> </div> </div> <div class="photogallery-column column-2" data-index="1"> <div index="1" class="photoGalleryThumbs animated " data-index="1"> <div class="thumbnailInnerWrapper" style="opacity: 1;"> <div class="image-container revealed"> <a data-dm-multisize-attr="temp" data-dm-force-device="mobile" class="u_1237218086" data-image-url="https://irp.cdn-website.com/104ba787/dms3rep/multi/F2705D8E-.jpg" style="background-image: url('https://lirp.cdn-website.com/104ba787/dms3rep/multi/opt/F2705D8E--640w.jpg');"><img id="1648596731" data-src="https://lirp.cdn-website.com/104ba787/dms3rep/multi/opt/F2705D8E--1920w.jpg" alt="" onerror="handleImageLoadError(this)"/></a> </div> <div id="1310473868" class="caption-container u_1310473868" style="display:none"> <span class="caption-inner"> <a id="1662350322" class="caption-button dmWidget clearfix u_1662350322" href="" style=""> <span class="iconBg"> <span class="icon hasFontIcon "></span> </span> <span class="text">Button</span> </a> </span> </div> </div> </div> </div> </div> <div class="photogallery-row " data-index=""> <div class="photogallery-column column-2" data-index="2"> <div index="2" class="photoGalleryThumbs animated " data-index="2"> <div class="thumbnailInnerWrapper" style="opacity: 1;"> <div class="image-container revealed"> <a data-dm-multisize-attr="temp" data-dm-force-device="mobile" class="u_1599473157" data-image-url="https://irp.cdn-website.com/104ba787/dms3rep/multi/Untitled-342.JPG" style="background-image: url('https://lirp.cdn-website.com/104ba787/dms3rep/multi/opt/Untitled-342-640w.JPG');"><img id="1305957291" data-src="https://lirp.cdn-website.com/104ba787/dms3rep/multi/opt/Untitled-342-1920w.JPG" alt="" onerror="handleImageLoadError(this)"/></a> </div> <div id="1047921661" class="caption-container u_1047921661" style="display:none"> <span class="caption-inner"> <a id="1682543107" class="caption-button dmWidget clearfix u_1682543107" href="" style=""> <span class="iconBg"> <span class="icon hasFontIcon "></span> </span> <span class="text">Button</span> </a> </span> </div> </div> </div> </div> <div class="photogallery-column column-2" data-index="3"> <div index="3" class="photoGalleryThumbs animated " data-index="3"> <div class="thumbnailInnerWrapper" style="opacity: 1;"> <div class="image-container revealed"> <a data-dm-multisize-attr="temp" data-dm-force-device="mobile" class="u_1659135209" data-image-url="https://irp.cdn-website.com/104ba787/dms3rep/multi/Untitled-336.JPG" style="background-image: url('https://lirp.cdn-website.com/104ba787/dms3rep/multi/opt/Untitled-336-640w.JPG');"><img id="1349682564" data-src="https://lirp.cdn-website.com/104ba787/dms3rep/multi/opt/Untitled-336-1920w.JPG" alt="" onerror="handleImageLoadError(this)"/></a> </div> <div id="1621893903" class="caption-container u_1621893903" style="display:none"> <span class="caption-inner"> <a id="1982263960" class="caption-button dmWidget clearfix u_1982263960" href="" style=""> <span class="iconBg"> <span class="icon hasFontIcon "></span> </span> <span class="text">Button</span> </a> </span> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> <div class="u_1537766788 dmRespRow hasBackgroundOverlay" id="1537766788"> <div class="dmRespColsWrapper" id="1053073322"> <div class="u_1613107335 dmRespCol small-12 large-8 medium-8" id="1613107335"> <div class="u_1150104434 dmNewParagraph" data-element-type="paragraph" data-version="5" id="1150104434" style="transition: none 0s ease 0s; text-align: left; display: block;"> <h2 class="text-align-left"><span style="text-transform: uppercase; display: unset; color: rgb(255, 255, 255);">Location</span></h2> </div> <div class="u_1645431847 dmNewParagraph" data-element-type="paragraph" data-version="5" id="1645431847" style="transition: none 0s ease 0s; text-align: left; display: block;"><p class="text-align-left"><span style="display: unset; color: rgb(255, 255, 255);">5000 67th Ave W University Place, WA 98467</span></p><p class="text-align-left"><span style="display: unset; color: rgb(255, 255, 255);">(On the campus of OURCHURCH)</span></p></div> <div class="u_1548752771 dmNewParagraph" data-element-type="paragraph" data-version="5" id="1548752771" style="transition: none 0s ease 0s; text-align: left; display: block;"> <h2 class="text-align-left"><span style="display: unset; color: rgb(255, 255, 255); text-transform: uppercase;">Schedule Of Services</span></h2> </div> <div class="dmNewParagraph u_1134443419" data-element-type="paragraph" data-version="5" id="1134443419" style="transition: none 0s ease 0s; text-align: left; display: block;"><p class="m-size-13 size-16"><span class="m-font-size-13 font-size-16" style="color: rgb(255, 255, 255); font-weight: bold; display: unset;">Sunday Inspiration - 2:30 PM</span></p><p class="m-size-13 size-16"><span class="m-font-size-13 font-size-16" style="color: rgb(255, 255, 255); font-weight: bold; display: unset;">Weekly Worship Experience - Sundays at 3:15 PM</span></p><p class="m-size-13"><span class="m-font-size-13" style="color: rgb(255, 255, 255); font-weight: bold; display: unset;">Mid-Week Prayer Every Wednesday 12:00pm (Zoom)</span></p><p class="m-size-13 size-16"><span class="m-font-size-13 font-size-16" style="color: rgb(255, 255, 255); font-weight: bold; display: unset;">Bible Study - Wednesdays at 7:00 PM</span></p><p class="m-size-13 size-16"><span class="m-font-size-13 font-size-16" style="color: rgb(255, 255, 255); font-weight: bold; display: unset;">Abundant Life Kids - Ages 3 - 11</span></p><p class="m-size-13 size-16"><span class="m-font-size-13 font-size-16" style="color: rgb(255, 255, 255); font-weight: bold; display: unset;">Abundant Life Teens - Ages 12 -17</span></p><p class="m-size-13 size-16"><span class="m-font-size-13 font-size-16" style="color: rgb(255, 255, 255); font-weight: bold; display: unset;">2nd, 3rd, and 4th Sundays - 3:15 PM</span></p><p class="m-size-13 size-16"><span class="m-font-size-13 font-size-16" style="color: rgb(255, 255, 255); font-weight: bold; display: unset;">5th Sundays - YES (Youth Empowerment Sunday)</span><span style="display: initial;"><br/></span></p></div> </div> <div class="u_1156026892 dmRespCol small-12 large-4 medium-4" id="1156026892"> <div data-element-type="spacer" class="u_1121083230 dmSpacer" id="1121083230"></div> <div class="u_1394769528 imageWidget align-center" data-element-type="image" data-widget-type="image" id="1394769528"><img src="https://lirp.cdn-website.com/104ba787/dms3rep/multi/opt/Untitled-288-387w.JPG" alt="" id="1098015412" class="" data-dm-image-path="https://irp.cdn-website.com/104ba787/dms3rep/multi/Untitled-288.JPG" width="320" height="320" onerror="handleImageLoadError(this)"/></div> </div> </div> </div> <div class="dmRespRow" id="1224574816"> <div class="dmRespColsWrapper" id="1892320955"> <div class="u_1232609975 dmRespCol small-12 medium-12 large-12" id="1232609975"> <div class="u_1698555659 dmNewParagraph" data-element-type="paragraph" data-version="5" id="1698555659" style="transition: opacity 1s ease-in-out 0s;"> <h2><span style="display: unset;">WHAT WE BELIEVE </span></h2> </div> <div class="u_1504114646 dmNewParagraph" data-element-type="paragraph" data-version="5" id="1504114646" style="transition: opacity 1s ease-in-out 0s;"> <ul class="defaultList"><li><span style="display: unset;">We believe in baptism in water by immersion in the Name of the Lord Jesus Christ for the remission of sin according to Acts 2:38.</span></li><li><span style="display: unset;">We believe in the Baptism of the Holy Spirit with the evidence of speaking in tongues according to Acts 2:4.</span></li><li><span style="display: unset;">We believe everyone has sinned and needs salvation, which comes by grace through faith in Jesus Christ.</span></li><li><span style="display: unset;">We believe in the great commission of sharing the Gospel of Christ with love, mercy, and compassion.</span></li><li><span style="display: unset;">We believe there is one God according to Deuteronomy 6:4.</span></li><li><span style="display: unset;">We believe that as Christians, we are to love God and others. We are to live a holy life and serve God with our talents and gifts.</span></li><li><span style="display: unset;">We believe that there is a heaven and a hell and that God in His graciousness gives us the choice as to where we’ll spend eternity.</span><span style="display: initial;"><br/></span></li></ul> </div> </div> </div> </div> <div class="dmRespRow u_1592754625 hasBackgroundOverlay" id="1592754625"> <div class="dmRespColsWrapper" id="1004124748"> <div class="dmRespCol large-12 medium-12 small-12" id="1437822806"> <div class="u_1222472105 flex-container dmImageSlider dmNoMargin dmNoMark hide-for-medium hide-for-large" data-widget-type="imageSlider" dmle_volatile_widget="true" data-element-type="dSliderId" id="1222472105"> <div class="flexslider ed-version" sliderscriptparams="{'stretch':true,'animation':true,'randomize':false,'directionNav':true,'isAutoPlay':false,'isFade':true,'controlNav':false,'slideshowSpeed':7000,'animationDuration':600,'pausePlay':true,'prevText':'','nextText':''}" id="1663500147" position="left"> <ul class="slides" id="1763607661"> <li layout="center" position="center" animation="none" show-content="true" color-overlay="true" text-background="true" id="1531024934" class="u_1531024934" show-caption="true"><img dm="true" src="https://lirp.cdn-website.com/104ba787/dms3rep/multi/opt/invisible+background-1920w.png" id="1043649498" class="" onerror="handleImageLoadError(this)" height="0.0" width="0.0"/> <div class="color-overlay" id="1431315623"></div> <div class="slide-inner" id="1149927282"> <div class="text-wrapper" id="1800085000"> <h3 class="slide-title u_1519919918" id="1519919918">Slide title</h3> <div class="slide-text richText u_1924634265" id="1924634265"><p class="rteBlock">Amazing place of worship.... PASTOR Dan is an amazing man of GOD that brings the unedited word of GOD. The praise and worship team ushers a transforming spirit in the place. See you at 3:15pm</p><br/><p class="rteBlock"><strong><em>- Calvin C.</em></strong></p></div> </div> <div class="slide-button dmWidget clearfix slide-button-invisible" id="1124149160"> <span class="iconBg" id="1380195753"> <span class="icon hasFontIcon icon-star" id="1721395020"></span> </span> <span class="text" id="1649125559">Button</span> </div> </div> </li> <li layout="center" position="center" animation="none" show-content="true" color-overlay="true" text-background="true" id="1529922324" class="" show-caption="true"><img dm="true" src="https://lirp.cdn-website.com/104ba787/dms3rep/multi/opt/invisible+background-1920w.png" id="1340177198" onerror="handleImageLoadError(this)" height="0.0" width="0.0"/> <div class="color-overlay" id="1845780744"></div> <div class="slide-inner" id="1870059052"> <div class="text-wrapper" id="1433852480"> <h3 class="slide-title u_1398910401" id="1398910401">Slide title</h3> <div class="slide-text richText u_1270291525" id="1270291525"><p class="rteBlock">Love the pasta and his wife and all the people that's in the church everyone is very friendly</p><br/><p class="rteBlock"><em><strong>- Althea F.</strong></em></p></div> </div> <div class="slide-button dmWidget clearfix slide-button-invisible" id="1691501090"> <span class="iconBg" id="1501297121"> <span class="icon hasFontIcon icon-star" id="1747723814"></span> </span> <span class="text" id="1195956120"></span> </div> </div> </li> <li layout="center" position="center" animation="none" show-content="true" color-overlay="true" text-background="true" id="1939781574" class="" show-caption="true"><img dm="true" src="https://lirp.cdn-website.com/104ba787/dms3rep/multi/opt/invisible+background-1920w.png" id="1342486065" onerror="handleImageLoadError(this)" height="0.0" width="0.0"/> <div class="color-overlay" id="1124713092"></div> <div class="slide-inner" id="1888209247"> <div class="text-wrapper" id="1688556294"> <h3 class="slide-title u_1098885700" id="1098885700">Slide title</h3> <div class="slide-text richText u_1224423649" id="1224423649"><p class="rteBlock">Powerful family worship ! Synchronizing Gods will for entire family body!</p><br/><p class="rteBlock"><strong><em>- Dr. Earl P.</em></strong></p></div> </div> <div class="slide-button dmWidget clearfix slide-button-invisible" id="1227026165"> <span class="iconBg" id="1127091844"> <span class="icon hasFontIcon icon-star" id="1770423910"></span> </span> <span class="text" id="1271827812">Button</span> </div> </div> </li> <li layout="center" position="center" animation="none" show-content="true" color-overlay="true" text-background="true" id="1834127031" class="" show-caption="true"><img dm="true" src="https://lirp.cdn-website.com/104ba787/dms3rep/multi/opt/invisible+background-1920w.png" id="1488275269" onerror="handleImageLoadError(this)" height="0.0" width="0.0"/> <div class="color-overlay" id="1756888171"></div> <div class="slide-inner" id="1372320004"> <div class="text-wrapper" id="1371990432"> <h3 class="slide-title u_1512937897" id="1512937897">Slide title</h3> <div class="slide-text richText u_1012163455" id="1012163455"><p class="rteBlock">Great church and love the people who are truly a loving church.</p><br/><p class="rteBlock"><strong><em>- Benjamin D.</em></strong></p></div> </div> <div class="slide-button dmWidget clearfix slide-button-invisible" id="1372280373"> <span class="iconBg" id="1780877446"> <span class="icon hasFontIcon icon-star" id="1242595936"></span> </span> <span class="text" id="1807753679">Button</span> </div> </div> </li> </ul> </div> </div> <div class="u_1906336321 flex-container dmImageSlider dmNoMargin dmNoMark hide-for-small" data-widget-type="imageSlider" dmle_volatile_widget="true" data-element-type="dSliderId" id="1906336321"> <div class="flexslider ed-version" sliderscriptparams="{'stretch':true,'animation':true,'randomize':false,'directionNav':true,'isAutoPlay':true,'isFade':true,'controlNav':false,'slideshowSpeed':7000,'animationDuration':600,'pausePlay':true,'prevText':'','nextText':''}" id="1380636075"> <ul class="slides" id="1729208431"> <li layout="center" position="center" animation="fadeInUp" show-content="true" color-overlay="true" text-background="true" id="1601738840" class="u_1601738840" show-caption="true"><img dm="true" src="https://lirp.cdn-website.com/104ba787/dms3rep/multi/opt/invisible+background-1440w.png" id="1795680862" class="" onerror="handleImageLoadError(this)" height="242.0" width="1200.0"/> <div class="color-overlay" id="1593934075"></div> <div class="slide-inner" id="1397655692"> <div class="text-wrapper" id="1357292018"> <h3 class="slide-title u_1469142563" id="1469142563">Slide title</h3> <div class="slide-text richText u_1564345923" id="1564345923"><p class="rteBlock">Amazing place of worship.... PASTOR Dan is an amazing man of GOD that brings the unedited word of GOD. The praise and worship team ushers a transforming spirit in the place. See you at 3:15pm</p><br/><p class="rteBlock"><strong><em>- Calvin C.</em></strong></p></div> </div> <div class="slide-button dmWidget clearfix slide-button-invisible" id="1615256328"> <span class="iconBg" id="1126313745"> <span class="icon hasFontIcon icon-star" id="1500983100"></span> </span> <span class="text" id="1561990305">Button</span> </div> </div> </li> <li layout="center" position="center" animation="fadeInUp" show-content="true" color-overlay="true" text-background="true" id="1013989628" class="" show-caption="true"><img dm="true" src="https://lirp.cdn-website.com/104ba787/dms3rep/multi/opt/invisible+background-1440w.png" id="1638917406" onerror="handleImageLoadError(this)" height="242.0" width="1200.0"/> <div class="color-overlay" id="1585429266"></div> <div class="slide-inner" id="1912694522"> <div class="text-wrapper" id="1454117606"> <h3 class="slide-title u_1139896181" id="1139896181">Slide title</h3> <div class="slide-text richText u_1082227387" id="1082227387"><p class="rteBlock">Powerful family worship ! Synchronizing Gods will for entire family body!</p><br/><p class="rteBlock"><strong><em>- Dr. Earl P.</em></strong></p></div> </div> <div class="slide-button dmWidget clearfix slide-button-invisible" id="1117509550"> <span class="iconBg" id="1447359200"> <span class="icon hasFontIcon icon-star" id="1453536460"></span> </span> <span class="text" id="1789904542">Button</span> </div> </div> </li> <li layout="center" position="center" animation="fadeInUp" show-content="true" color-overlay="true" text-background="true" id="1176862943" class="" show-caption="true"><img dm="true" src="https://lirp.cdn-website.com/104ba787/dms3rep/multi/opt/invisible+background-1440w.png" id="1419843449" onerror="handleImageLoadError(this)" height="242.0" width="1200.0"/> <div class="color-overlay" id="1376451712"></div> <div class="slide-inner" id="1932393173"> <div class="text-wrapper" id="1492133543"> <h3 class="slide-title u_1643628832" id="1643628832">Slide title</h3> <div class="slide-text richText u_1600685250" id="1600685250"><p class="rteBlock">Great church and love the people who are truly a loving church.</p><br/><p class="rteBlock"><strong><em>- Benjamin D.</em></strong></p></div> </div> <div class="slide-button dmWidget clearfix slide-button-invisible" id="1580116002"> <span class="iconBg" id="1582695528"> <span class="icon hasFontIcon icon-star" id="1622459434"></span> </span> <span class="text" id="1137211417">Button</span> </div> </div> </li> </ul> </div> </div> </div> </div> </div> </div> </div> </div> </div> <div class="dmFooterContainer"> <div id="fcontainer" class="u_fcontainer f_hcontainer dmFooter p_hfcontainer"> <div dm:templateorder="250" class="dmFooterResp generalFooter" id="1943048428"> <div class="u_1613979584 dmRespRow hide-for-medium" id="1613979584"> <div class="dmRespColsWrapper" id="1399734242"> <div class="u_1781202990 dmRespCol small-12 large-5 medium-5" id="1781202990"> <div class="u_1072679486 dmNewParagraph" data-element-type="paragraph" data-version="5" id="1072679486" style="transition: opacity 1s ease-in-out 0s;"><p class="m-size-18 size-20"><span class="m-font-size-18 font-size-20" m-font-size-set="true" style="display: unset; color: rgb(255, 255, 255); text-transform: uppercase;">Contact Information</span></p></div> <div class="u_1691287328 dmDividerWrapper clearfix" data-element-type="dDividerId" data-layout="divider-style-1" data-widget-version="2" id="1691287328"><hr class="dmDivider" style="border-width:2px; border-top-style:solid; color:grey;" id="1692799781"/></div> <div class="u_1817048642 dmNewParagraph" data-element-type="paragraph" data-version="5" id="1817048642" style="transition: opacity 1s ease-in-out 0s;"><p class="text-align-left" style="line-height: 115%;"><span class="" style="display: unset; color: rgb(255, 255, 255);"><span style="display: unset; color: rgb(255, 255, 255);">Phone:</span> </span><a href="tel:253-328-6461" type="call" style="display: unset; font-weight: bold;">253-328-6461</a><span single-space="true" class="" style="display: unset; font-weight: bold;"> <span style="display: unset; font-weight: bold;"></span> </span></p></div> <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1539923231" style="transition: opacity 1s ease-in-out 0s;"><p class="text-align-left" style="line-height: 115%;"><span class="" style="display: unset; color: rgb(255, 255, 255);"><span style="display: unset; color: rgb(255, 255, 255);">Email:</span> </span><a href="mailto:[email protected]" type="email" style="display: unset; color: rgb(138, 205, 75); font-weight: bold;">[email protected]</a></p></div> <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1338650444" style="transition: opacity 1s ease-in-out 0s;"><p class="text-align-left"><span class="" style="display: unset; color: rgb(255, 255, 255);"><span style="display: unset; color: rgb(255, 255, 255);">Addresses:</span> </span></p><p class="text-align-left"><span style="color: rgb(255, 255, 255); display: unset;">5000 67th Ave W University Place, WA 98467</span></p><p class="text-align-left"><span style="color: rgb(255, 255, 255); display: unset;">PO Box 1803, Tacoma, WA 98401</span></p></div> <div class="u_1046175946 align-center text-align-center dmSocialHub gapSpacing" id="1046175946" dmle_extension="social_hub" data-element-type="social_hub" wr="true" networks="" icon="true" surround="true" adwords=""> <div class="socialHubWrapper"> <div class="socialHubInnerDiv "> <a href="https://www.facebook.com/abundantlifecommunityworship/" 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://www.instagram.com/alcwc/" target="_blank" dm_dont_rewrite_url="true" aria-label="instagram" onclick="dm_gaq_push_event && dm_gaq_push_event('socialLink', 'click', 'Instagram')"> <span class="dmSocialInstagram dm-social-icons-instagram oneIcon socialHubIcon style5" aria-hidden="true" data-hover-effect=""></span> </a> <a href="https://twitter.com/ALCWC_" target="_blank" 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://www.youtube.com/channel/UCpsSwIZlfvoPJWsEQU5bArQ" target="_blank" dm_dont_rewrite_url="true" aria-label="youtube" onclick="dm_gaq_push_event && dm_gaq_push_event('socialLink', 'click', 'Youtube')"> <span class="dmSocialYoutube dm-social-icons-youtube oneIcon socialHubIcon style5" aria-hidden="true" data-hover-effect=""></span> </a> </div> </div> </div> </div> <div class="u_1112822034 dmRespCol empty-column small-12 large-2 medium-2 hide-for-small" id="1112822034"></div> <div class="u_1662003367 dmRespCol small-12 large-5 medium-5" id="1662003367"> <div class="u_1331869157 dmNewParagraph" data-element-type="paragraph" data-version="5" id="1331869157" style="transition: none 0s ease 0s; text-align: left; display: block;"><p class="m-size-18 size-20"><span class="m-font-size-18 font-size-20" m-font-size-set="true" style="display: unset; color: rgb(255, 255, 255); text-transform: uppercase;">Service times</span></p></div> <div class="u_1132202737 dmDividerWrapper clearfix" data-element-type="dDividerId" data-layout="divider-style-1" data-widget-version="2" id="1132202737"><hr class="dmDivider" style="border-width:2px; border-top-style:solid; color:grey;" id="1737769422"/></div> <div class="u_1588702265 dmNewParagraph hide-for-small" data-element-type="paragraph" data-version="5" id="1588702265" style="transition: opacity 1s ease-in-out 0s;"><p><span style="color: rgb(255, 255, 255); font-weight: bold; display: initial;">Time of Inspiration & Blessing at 2:30 PM</span></p><p><span style="display: initial;"><br/></span></p><p><span style="color: rgb(255, 255, 255); font-weight: bold; display: initial;">Weekly Worship Experience - Sundays at 3:15 PM</span></p><p><span style="display: initial;"><br/></span></p><p><span style="font-weight: bold; display: initial; color: rgb(255, 255, 255);">Mid-Week Prayer Every Wednesday 12:00pm (Zoom)</span></p><p><br/></p><p><span style="color: rgb(255, 255, 255); font-weight: bold; display: initial;">Bible Study - Wednesdays at 7:00 PM</span></p><p><span style="display: initial;"><br/></span></p><p><span style="font-weight: 700; display: initial; color: rgb(255, 255, 255);">2nd, 3rd, and 4th Sundays - 3:15 PM</span></p><p><span style="color: rgb(255, 255, 255); font-weight: bold; display: initial;">Abundant Life Kids - Ages 3 - 10</span></p><p><span style="color: rgb(255, 255, 255); font-weight: bold; display: initial;">Abundant Life Middles - Ages 11 - 13</span></p><p><span style="color: rgb(255, 255, 255); font-weight: bold; display: initial;">Abundant Life Teens - Ages 14-17</span></p><p><span style="display: initial;"><br/></span></p><p><span style="color: rgb(255, 255, 255); font-weight: bold; display: initial;">5th Sundays - YES (Youth Empowerment Sunday) - 3:15 PM</span><span style="display: initial;"><br/></span></p></div> <div class="u_1740008471 dmNewParagraph hide-for-large hide-for-medium" data-element-type="paragraph" data-version="5" id="1740008471" style="transition: opacity 1s ease-in-out 0s;"><p><span style="display: unset; font-weight: bold; color: rgb(255, 255, 255);">Time of Inspiration & Blessing at 2:30 PM</span></p><p><span style="display: initial;"><br/></span></p><p><span style="display: unset; font-weight: bold; color: rgb(255, 255, 255);">Weekly Worship Experience</span></p><p><span style="display: unset; font-weight: bold; color: rgb(255, 255, 255);">Sundays at 3:15 PM</span></p><p><span style="display: initial;"><br/></span></p><p><span style="color: rgb(255, 255, 255); display: unset; font-weight: bold;">Mid-Week Prayer Every Wednesday 12:00pm (Zoom)</span></p><p><br/></p><p><span style="display: unset; font-weight: bold; color: rgb(255, 255, 255);">Bible Study - Wednesdays at 7:00 PM</span></p><p><span style="display: initial;"><br/></span></p><p><span style="color: rgb(255, 255, 255); display: initial; font-weight: 700;">2nd, 3rd, and 4th Sundays - 3:15 PM</span></p><p><span style="display: initial; font-weight: bold; color: rgb(255, 255, 255);">Abundant Life Kids - Ages 3 - 11</span></p><p><span style="display: initial; font-weight: bold; color: rgb(255, 255, 255);">Abundant Life Teens - Ages 12 -17</span></p><p><span style="display: initial;"><br/></span></p><p><span style="display: initial; font-weight: bold; color: rgb(255, 255, 255);">5th Sundays - YES (Youth Empowerment Sunday) - 3:15 PM</span><span style="display: initial;"><br/></span></p></div> </div> </div> </div> <div class="u_1869301598 dmRespRow hide-for-large hide-for-small" id="1869301598"> <div class="dmRespColsWrapper" id="1825563277"> <div class="u_1622725674 dmRespCol small-12 large-5 medium-5" id="1622725674"> <div class="u_1626106914 dmNewParagraph" data-element-type="paragraph" data-version="5" id="1626106914" style="transition: opacity 1s ease-in-out 0s;"><p class="m-size-18 size-20"><span class="m-font-size-18 font-size-20" m-font-size-set="true" style="display: unset; color: rgb(255, 255, 255); text-transform: uppercase;">Contact Information</span></p></div> <div class="u_1684407284 dmDividerWrapper clearfix" data-element-type="dDividerId" data-layout="divider-style-1" data-widget-version="2" id="1684407284"><hr class="dmDivider" style="border-width:2px; border-top-style:solid; color:grey;" id="1205043523"/></div> <div class="u_1060130767 dmNewParagraph" data-element-type="paragraph" data-version="5" id="1060130767" style="transition: opacity 1s ease-in-out 0s;"><p class="text-align-left" style="line-height: 115%;"><span class="" style="display: unset; color: rgb(255, 255, 255);"><span style="display: unset; color: rgb(255, 255, 255);">Phone:</span> </span><a href="tel:253-328-6461" type="call" style="display: unset; font-weight: bold;">253-328-6461</a><span single-space="true" class="" style="display: unset; font-weight: bold;"> <span style="display: unset; font-weight: bold;"></span> </span></p></div> <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1482404834" style="transition: opacity 1s ease-in-out 0s;"><p class="text-align-left" style="line-height: 115%;"><span class="" style="display: unset; color: rgb(255, 255, 255);"><span style="display: unset; color: rgb(255, 255, 255);">Email:</span> </span><a href="mailto:[email protected]" type="email" style="display: unset; color: rgb(138, 205, 75); font-weight: bold;">[email protected]</a></p></div> <div class="dmNewParagraph" data-element-type="paragraph" data-version="5" id="1254274210" style="transition: opacity 1s ease-in-out 0s;"><p class="text-align-left"><span class="" style="display: unset; color: rgb(255, 255, 255);"><span style="display: unset; color: rgb(255, 255, 255);">Addresses:</span> </span></p><p class="text-align-left"><span style="color: rgb(255, 255, 255); display: unset;">5000 67th Ave W University Place, WA 98467</span></p><p class="text-align-left"><span style="color: rgb(255, 255, 255); display: unset;">PO Box 1803, Tacoma, WA 98401</span></p></div> <div class="u_1227584101 align-center text-align-center dmSocialHub gapSpacing" id="1227584101" dmle_extension="social_hub" data-element-type="social_hub" wr="true" networks="" icon="true" surround="true" adwords=""> <div class="socialHubWrapper"> <div class="socialHubInnerDiv "> <a href="https://www.facebook.com/abundantlifecommunityworship/" 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://www.instagram.com/alcwc/" target="_blank" dm_dont_rewrite_url="true" aria-label="instagram" onclick="dm_gaq_push_event && dm_gaq_push_event('socialLink', 'click', 'Instagram')"> <span class="dmSocialInstagram dm-social-icons-instagram oneIcon socialHubIcon style5" aria-hidden="true" data-hover-effect=""></span> </a> <a href="https://twitter.com/ALCWC_" target="_blank" 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://www.youtube.com/channel/UCpsSwIZlfvoPJWsEQU5bArQ" target="_blank" dm_dont_rewrite_url="true" aria-label="youtube" onclick="dm_gaq_push_event && dm_gaq_push_event('socialLink', 'click', 'Youtube')"> <span class="dmSocialYoutube dm-social-icons-youtube oneIcon socialHubIcon style5" aria-hidden="true" data-hover-effect=""></span> </a> </div> </div> </div> </div> <div class="u_1018727870 dmRespCol empty-column small-12 large-1 medium-1 hide-for-medium" id="1018727870"></div> <div class="u_1106539778 dmRespCol small-12 large-6 medium-6" id="1106539778"> <div class="u_1585539890 dmNewParagraph" data-element-type="paragraph" data-version="5" id="1585539890" style="transition: none 0s ease 0s; text-align: left; display: block;"><p class="m-size-18 size-20"><span class="m-font-size-18 font-size-20" m-font-size-set="true" style="display: unset; color: rgb(255, 255, 255); text-transform: uppercase;">Service times</span></p></div> <div class="u_1767121065 dmDividerWrapper clearfix" data-element-type="dDividerId" data-layout="divider-style-1" data-widget-version="2" id="1767121065"><hr class="dmDivider" style="border-width:2px; border-top-style:solid; color:grey;" id="1624813258"/></div> <div class="u_1522818338 dmNewParagraph" data-element-type="paragraph" data-version="5" id="1522818338" style="transition: opacity 1s ease-in-out 0s;"><p><span style="display: unset; font-weight: bold; color: rgb(255, 255, 255);">Time of Inspiration & Blessing at 2:30 PM</span></p><p><span style="display: initial;"><br/></span></p><p><span style="display: unset; font-weight: bold; color: rgb(255, 255, 255);">Weekly Worship Experience - Sundays at 3:15 PM</span></p><p><span style="display: initial;"><br/></span></p><p><span style="color: rgb(255, 255, 255); display: unset; font-weight: bold;">Mid-Week Prayer Every Wednesday 12:00pm (Zoom)</span></p><p><span style="display: initial;"><br/></span></p><p><span style="font-weight: bold; color: rgb(255, 255, 255); display: unset;">Bible Study - Wednesdays at 7:00 PM</span></p><p><span style="display: initial;"><br/></span></p><p><span style="color: rgb(255, 255, 255); display: initial; font-weight: 700;">2nd, 3rd, and 4th Sundays - 3:15 PM</span></p><p><span style="display: initial; font-weight: bold; color: rgb(255, 255, 255);">Abundant Life Kids - Ages 3 - 11</span></p><p><span style="display: initial; font-weight: bold; color: rgb(255, 255, 255);">Abundant Life Teens - Ages 12 -17</span></p><p><span style="display: initial;"><br/></span></p><p><span style="display: initial; font-weight: bold; color: rgb(255, 255, 255);">5th Sundays - YES (Youth Empowerment Sunday) - 3:15 PM</span><span style="display: initial;"><br/></span></p></div> </div> </div> </div> <div class="dmRespRow u_1640212074" id="1640212074"> <div class="dmRespColsWrapper" id="1380053304"> <div class="dmRespCol large-12 medium-12 small-12" id="1091056446"> <div class="u_1992237931 widget-d3c663 dmCustomWidget" data-lazy-load="" data-title="" id="1992237931" dmle_extension="custom_extension" data-element-type="custom_extension" icon="false" surround="false" data-widget-id="d3c66308b2ae4c2eb8bccd831a63a3d8" data-widget-version="77" data-widget-config="eyJpbnRlZ3JhdGlvbl9pZCI6IjY2MzU4MmMxOTU1MDg0NDA3OTNmYjZkZiIsImN1c3RvbUxpbmtzIjpudWxsLCJ0b3VMaW5rIjp7ImhyZWYiOiIvaG9tZSJ9LCJwcExpbmsiOnsiaHJlZiI6Ii9ob21lIn0sImJjV2lkZ2V0c0xlZnQiOmZhbHNlLCJ3ZWJjaGF0Ijp0cnVlfQ==">Content, including images, displayed on this website is protected by copyright laws. Downloading, republication, retransmission or reproduction of content on this website is strictly prohibited. <a href="https://www.thryv.com/client-terms-of-use/" rel="nofollow" target="_blank">Terms of Use</a> | <a href="https://www.thryv.com/client-privacy-policy/" rel="nofollow" target="_blank">Privacy Policy</a> <style>.dm-social-icons-google-my-business:before { content: '' !important; }</style> </div> </div> </div> </div> </div> <div id="1236746004" 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> <!-- Add full CSS and Javascript before the close tag of the body if needed --> <!-- Google Fonts Include --> <!-- loadCSS function fonts.jsp--> <link rel="preload" href="https://irp.cdn-website.com/fonts/css2?family=Roboto:wght@100;300;400;500;700;900&family=Montserrat:[email protected]&family=Cabin:[email protected]&family=Pacifico:wght@400&family=Source+Sans+Pro:wght@200;300;400;600;700;900&family=Open+Sans:[email protected]&family=Karla:[email protected]&subset=latin-ext&display=swap" as="style" fetchpriority="low" onload="loadCSS(this)" /> <!-- RT CSS Include d-css-runtime-desktop-one-package-structured-global--> <link rel="preload" as="style" fetchpriority="low" onload="loadCSS(this)" href="https://static.cdn-website.com/mnlt/production/5425/_dm/s/rt/dist/css/d-css-runtime-desktop-one-package-structured-global.min.css" /> <!-- End of RT CSS Include --> <link rel="preload" href="https://irp.cdn-website.com/WIDGET_CSS/cb76e4966817ae768160f104e1426e84.css" id="widgetCSS" as="style" fetchpriority="low" onload="loadCSS(this)" /> <!-- Support `img` size attributes --> <style>img[width][height] { height: auto; }</style> <!-- Support showing sticky element on page only --> <style> body[data-page-alias="home"] #dm [data-show-on-page-only="home"] { display: block !important; } </style> <!-- This is populated in Ajax navigation --> <style id="pageAdditionalWidgetsCss" type="text/css"> </style> <!-- Site CSS --> <link rel="preload" href="https://irp.cdn-website.com/104ba787/files/104ba787_withFlex_1.min.css?v=323" id="siteGlobalCss" as="style" fetchpriority="low" onload="loadCSS(this)" /> <style id="customWidgetStyle" type="text/css"> </style> <style id="innerPagesStyle" type="text/css"> </style> <style id="additionalGlobalCss" type="text/css" > </style> <!-- Page CSS --> <link rel="preload" href="https://irp.cdn-website.com/104ba787/files/104ba787_home_withFlex_1.min.css?v=323" id="homeCssLink" as="style" fetchpriority="low" onload="loadCSS(this)" /> <style id="pagestyle" type="text/css"> </style> <style id="pagestyleDevice" type="text/css"> </style> <!-- Flex Sections CSS --> <style id="globalFontSizeStyle" type="text/css"> .font-size-21, .size-21, .size-21 > font { font-size: 21px !important; }.font-size-48, .size-48, .size-48 > font { font-size: 48px !important; }.font-size-16, .size-16, .size-16 > font { font-size: 16px !important; }.font-size-20, .size-20, .size-20 > font { font-size: 20px !important; } </style> <style id="pageFontSizeStyle" type="text/css"> </style> <!-- ========= JS Section ========= --> <script> var isWLR = true; window.customWidgetsFunctions = {}; window.customWidgetsStrings = {}; window.collections = {}; window.currentLanguage = "ENGLISH" window.isSitePreview = false; </script> <script> window.customWidgetsFunctions["d3c66308b2ae4c2eb8bccd831a63a3d8~77"] = function (element, data, api) { if (data.config.webchat){ let thryvId = dmAPI.getSiteExternalId(); var integrationId = data.config.integration_id; setTimeout(() => { !(function (o, p, s, e, c) { var i, a, h, u = [], d = []; function t() { var t = "You must provide a supported major version."; try { if (!c) throw new Error(t); var e, n = "https://cdn.smooch.io/", r = "smooch"; if ((e = "string" == typeof this.response ? JSON.parse(this.response) : this.response).url) { var o = p.getElementsByTagName("script")[0], s = p.createElement("script"); s.async = !0; var i = c.match(/([0-9]+).?([0-9]+)?.?([0-9]+)?/), a = i && i[1]; if (i && i[3]) s.src = n + r + "." + c + ".min.js"; else { if (!(4 <= a && e["v" + a])) throw new Error(t); s.src = e["v" + a]; } o.parentNode.insertBefore(s, o); } } catch (e) { e.message === t && console.error(e); } } (o[s] = { init: function () { i = arguments; var t = { then: function (e) { return d.push({ type: "t", next: e }), t; }, catch: function (e) { return d.push({ type: "c", next: e }), t; }, }; return t; }, on: function () { u.push(arguments); }, render: function () { a = arguments; }, destroy: function () { h = arguments; }, }), (o.__onWebMessengerHostReady__ = function (e) { if ((delete o.__onWebMessengerHostReady__, (o[s] = e), i)) for (var t = e.init.apply(e, i), n = 0; n < d.length; n++) { var r = d[n]; t = "t" === r.type ? t.then(r.next) : t.catch(r.next); } a && e.render.apply(e, a), h && e.destroy.apply(e, h); for (n = 0; n < u.length; n++) e.on.apply(e, u[n]); }); var n = new XMLHttpRequest(); n.addEventListener("load", t), n.open("GET", "https://" + e + ".webloader.smooch.io/", !0), (n.responseType = "json"), n.send(); })(window, document, "Smooch", integrationId, "5"); setTimeout(() => { const delegate = { beforeSend(message, data) { const urlParams = new URLSearchParams(window.location.search); const utm_ci = urlParams.get('utm_ci'); const utm_channel = urlParams.get('utm_channel'); const utm_ad = urlParams.get('utm_ad'); const utm_cm = urlParams.get('utm_cm'); if (utm_ci && utm_channel && utm_ad && utm_cm) { message.metadata = { utm_ci, utm_channel, utm_ad, utm_cm }; } return message; } }; Smooch.init({ integrationId: integrationId, delegate: delegate, menuItems: {}, prechatCapture: { enabled: true, enableEmailLinking: true, fields: [ { type: 'email', name: 'email', label: 'Email', placeholder: '[email protected]' }, { type: 'text', name: 'phone', label: 'Phone', placeholder: '555-555-5555' }, { type: 'text', name: 'first_name', label: 'First Name', placeholder: 'first name' }, { type: 'text', name: 'last_name', label: 'Last Name', placeholder: 'last name' } ] }, customText: { prechatCaptureGreetingText: "Hi there,\n\nBefore you begin, please note that a transcript of this chat may be retained.\n\nTo start off, we'd like to know a little bit about you. \n\n By providing your email and mobile number via this chat, you consent to our Terms of Use and Privacy Policy (found in the footer of this site) and to us sending emails and text messages or placing voice calls to you for advertising and marketing purposes. Giving this consent is not required as a condition of purchasing any goods or services." }, }).then( function () { console.log("Script Ran for Sunshine"); }, function (err) { console.log("Script Error for Sunshine"); } ); }, 3000) }, 5000); } // Find the span elements with the specified classes var spans = document.querySelectorAll('.dmSocialGoogleMyBusiness.dm-social-icons-google-my-business'); // Loop through each found span element spans.forEach(function(span) { // Replace inner HTML with SVG code of legal-approved GMB span.innerHTML = '<svg height="2185" width="2500" xmlns="http://www.w3.org/2000/svg" viewBox="0 0.43 1064 928.69"><linearGradient id="a" x1="0%" x2="99.999%" y1="49.999%" y2="49.999%"><stop offset=".03" stop-color="#4079d8"/><stop offset="1" stop-color="#4989f5"/></linearGradient><g fill="none" fill-rule="evenodd"><g fill-rule="nonzero"><rect fill="#4989f5" height="696.14" rx="36.88" width="931" x="53.45" y="232.98"/><path d="M936.81 227.75H100.06c-25.92 0-46.09 200.6-46.09 226.52L512.2 929.12h424.61c26-.071 47.059-21.13 47.13-47.13V274.87c-.077-25.996-21.134-47.049-47.13-47.12z" fill="url(#a)"/><path d="M266.03 349.56h266V.44H305.86z" fill="#3c4ba6"/><path d="M798.03 349.56h-266V.44H758.2zM984.45 66.62l.33 1.19c-.08-.42-.24-.81-.33-1.19z" fill="#7babf7"/><path d="M984.78 67.8l-.33-1.19C976.017 27.993 941.837.455 902.31.43H758.2L798 349.56h266z" fill="#3f51b5"/><path d="M79.61 66.62l-.33 1.19c.08-.42.24-.81.33-1.19z" fill="#7babf7"/><path d="M79.27 67.8l.33-1.19C88.033 27.993 122.213.455 161.74.43h144.12L266 349.56H0z" fill="#7babf7"/></g><path d="M266.48 349.47c0 73.412-59.513 132.925-132.925 132.925S.63 422.882.63 349.47z" fill="#709be0"/><path d="M532.33 349.47c0 73.412-59.513 132.925-132.925 132.925S266.48 422.882 266.48 349.47z" fill="#3c4ba6"/><path d="M798.18 349.47c0 73.412-59.513 132.925-132.925 132.925S532.33 422.882 532.33 349.47z" fill="#709be0"/><path d="M1064 349.47c0 73.412-59.513 132.925-132.925 132.925S798.15 422.882 798.15 349.47z" fill="#3c4ba6"/><path d="M931.08 709.6c-.47-6.33-1.25-12.11-2.36-19.49h-145c0 20.28 0 42.41-.08 62.7h84a73.05 73.05 0 0 1-30.75 46.89s0-.35-.06-.36a88 88 0 0 1-34 13.27 99.85 99.85 0 0 1-36.79-.16 91.9 91.9 0 0 1-34.31-14.87 95.72 95.72 0 0 1-33.73-43.1c-.52-1.35-1-2.71-1.49-4.09v-.15l.13-.1a93 93 0 0 1-.05-59.84A96.27 96.27 0 0 1 718.9 654c23.587-24.399 58.829-33.576 91.32-23.78a83 83 0 0 1 33.23 19.56l28.34-28.34c5-5.05 10.19-9.94 15-15.16a149.78 149.78 0 0 0-49.64-30.74 156.08 156.08 0 0 0-103.83-.91c-1.173.4-2.34.817-3.5 1.25A155.18 155.18 0 0 0 646 651a152.61 152.61 0 0 0-13.42 38.78c-16.052 79.772 32.623 158.294 111.21 179.4 25.69 6.88 53 6.71 78.89.83a139.88 139.88 0 0 0 63.14-32.81c18.64-17.15 32-40 39-64.27a179 179 0 0 0 6.26-63.33z" fill="#fff" fill-rule="nonzero"/></g></svg>'; }); }; </script> <script type="text/javascript"> var d_version = "production_5425"; var build = "2025-04-29T12_49_07"; window['v' + 'ersion'] = d_version; function buildEditorParent() { window.isMultiScreen = true; window.editorParent = {}; window.previewParent = {}; window.assetsCacheQueryParam = "?version=2025-04-29T12_49_07"; 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/5425'; rtCommonProps["common.resources.cdn.host"] = 'https://static.cdn-website.com'; rtCommonProps["common.resources.folder"] = 'https://static.cdn-website.com/mnlt/production/5425'; 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'; // feature flags that's used out of runtime module (in legacy files) rtCommonProps["platform.monolith.personalization.dateTimeCondition.popupMsgAction.moveToclient.enabled"] =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["geocode.search.localize"] =false; rtFlags["feature.flag.runtime.newAnimation.asyncInit.setTimeout.enabled"] =false; rtFlags["twitter.heightLimit.enabled"] = 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["editor.link.on.container"] =false; rtFlags["flex.runtime.popup.with.show"] =true; rtFlags["contact.form.useActiveForm"] =true; rtFlags["runtime.ssr.productStore.internal.observer"] =true; rtFlags["runtime.ssr.productCustomizations"] =true; rtFlags["flex.megaMenu.a11y"] =false; </script> <script src="https://static.cdn-website.com/mnlt/production/5425/_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/5425/_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 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: '104ba787' }); // 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: 104ba787 --> <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.MoreButtonText = 'MORE'; Parameters.NavigationAreaParams.LessButtonText = 'LESS'; Parameters.HomeLinkText = 'Home'; </script> <!-- End Script tags --> <!-- Begin Body End Markup --> <script src="//mpactions.superpages.com/actionthru/js/dxmscript.min.js" type="text/javascript"></script> <script type='text/javascript' charset='utf-8'> window.liveSiteAsyncInit = function() { LiveSite.init({ id : 'WI-77GV4WWITS16CBSTP7WQ' }); }; (function(d, s, id){ var js, fjs = d.getElementsByTagName(s)[0], p = 'https://', r = Math.floor(new Date().getTime() / 1000000); if (d.getElementById(id)) {return;} js = d.createElement(s); js.id = id; js.src = p + "d2ra6nuwn69ktl.cloudfront.net/assets/livesite.js?" + r; fjs.parentNode.insertBefore(js, fjs); }(document, 'script', 'livesite-jssdk')); </script> <!-- End Body End Markup --> <!-- Site Wide Html Markup --> <!-- Site Wide Html Markup --> <!-- Begin Product Custom HTML Markup --> <script type="text/javascript" charset="utf-8"> $(document).ready(function() { var _extID; var _device = 'desktop'; var _plan = window.Parameters.planID; //set the external ID, if the site is fast migrated or normal site if (typeof(dmAPI) === 'object') { _extID = dmAPI.getSiteExternalId() } else if (typeof(siteDetails) === 'object') { _extID = siteDetails.ExternalUid; } else { _extID = false; } //if site is normal site & mobile visitor if(typeof($.layoutDevice) !== "undefined") { if($.layoutDevice.type === "mobile") { _device = 'mobile'; } } else if(typeof(camilyo.platform)){ _device = camilyo.platform.toLowerCase(); } //if site has an external ID set, load floating widgets if (_extID && _plan !== "1681" && _plan !== "1680") { window.liveSiteAsyncInit = function() { LiveSite.init({ id: _extID, mode: _device }); }; (function(d, s, id) { var js, fjs = d.getElementsByTagName(s)[0], p = "https://", r = Math.floor(new Date().getTime() / 1000000); if (d.getElementById(id)) { return; } js = d.createElement(s); js.id = id; js.src = p + "widgets.vcdnita.com/assets/livesite.js?" + r; fjs.parentNode.insertBefore(js, fjs); }(document, "script", "livesite-jssdk")); } else { console.log("ExternalID/vID has not been added to site") } }) </script><!-- End Product Custom HTML Markup --> </body> </html>