<!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.belaray.com/',

        SystemID: 'US_DIRECT_PRODUCTION',
        SiteAlias: '2d849614',
        SiteType: atob('RFVEQU9ORQ=='),
        PublicationDate: 'Apr 29, 2026',
        ExternalUid: null,
        IsSiteMultilingual: true,
        InitialPostAlias: '',
        InitialPostPageUuid: '',
        InitialDynamicItem: '',
        DynamicPageInfo: {
            isDynamicPage: false,
            base64JsonRowData: 'null',
        },
        InitialPageAlias: 'blog',
        InitialPageUuid: '3b010c212c964ebaa7d258262b59d3d6',
        InitialPageId: '1204621475',
        InitialEncodedPageAlias: 'YmxvZw==',
        InitialHeaderUuid: '0c57fb2cd2c8444d8eb8890672c3d858',
        CurrentPageUrl: '',
        IsCurrentHomePage: false,
        AllowAjax: false,
        AfterAjaxCommand: null,
        HomeLinkText: 'Back To Home',
        UseGalleryModule: false,
        CurrentThemeName: 'Layout Theme',
        ThemeVersion: '500000',
        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.belaray.com/',
            BlockContainerSelector: '.dmBody',
            NavbarSelector: '#dmNav:has(a)',
            SubNavbarSelector: '#subnav_main'
        },
        hasCustomCode: true,
        planID: '7',
        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.belaray.com/blog">

<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="apple-touch-icon"
      href="https://irp-cdn.multiscreensite.com/2d849614/dms3rep/multi/icon_512x512.png"/>

<link rel="icon" type="image/x-icon" href="https://irp-cdn.multiscreensite.com/2d849614/site_favicon_16_1513374289487.ico"/>

<!-- End favorite icons -->
<link rel="preconnect" href="https://lirp.cdn-website.com/"/>



<!-- render the required CSS and JS in the head section -->
<script id='d-js-dmapi'>
    window.SystemID = 'US_DIRECT_PRODUCTION';

    if (!window.dmAPI) {
        window.dmAPI = {
            registerExternalRuntimeComponent: function () {
            },
            getCurrentDeviceType: function () {
                return window._currentDevice;
            },
            runOnReady: (ns, fn) => {
                const safeFn = dmAPI.toSafeFn(fn);
                ns = ns || 'global_' + Math.random().toString(36).slice(2, 11);
                const eventName = 'afterAjax.' + ns;

                if (document.readyState === 'complete') {
                    $.DM.events.off(eventName).on(eventName, safeFn);
                    setTimeout(function () {
                        safeFn({
                            isAjax: false,
                        });
                    }, 0);
                } else {
                    window?.waitForDeferred?.('dmAjax', () => {
                        $.DM.events.off(eventName).on(eventName, safeFn);
                        safeFn({
                            isAjax: false,
                        });
                    });
                }
            },
            toSafeFn: (fn) => {
                if (fn?.safe) {
                    return fn;
                }
                const safeFn = function (...args) {
                    try {
                        return fn?.apply(null, args);
                    } catch (e) {
                        console.log('function failed ' + e.message);
                    }
                };
                safeFn.safe = true;
                return safeFn;
            }
        };
    }

    if (!window.requestIdleCallback) {
        window.requestIdleCallback = function (fn) {
            setTimeout(fn, 0);
        }
    }
</script>

<!-- loadCSS function header.jsp-->






<script id="d-js-load-css">
/**
 * There are a few <link> tags with CSS resource in them that are preloaded in the page
 * in each of those there is a "onload" handler which invokes the loadCSS callback
 * defined here.
 * We are monitoring 3 main CSS files - the runtime, the global and the page.
 * When each load we check to see if we can append them all in a batch. If threre
 * is no page css (which may happen on inner pages) then we do not wait for it
 */
(function () {
  let cssLinks = {};
  function loadCssLink(link) {
    link.onload = null;
    link.rel = "stylesheet";
    link.type = "text/css";
  }
  
    function checkCss() {
      const pageCssLink = document.querySelector("[id*='CssLink']");
      const widgetCssLink = document.querySelector("[id*='widgetCSS']");

        if (cssLinks && cssLinks.runtime && cssLinks.global && (!pageCssLink || cssLinks.page) && (!widgetCssLink || cssLinks.widget)) {
            const storedRuntimeCssLink = cssLinks.runtime;
            const storedPageCssLink = cssLinks.page;
            const storedGlobalCssLink = cssLinks.global;
            const storedWidgetCssLink = cssLinks.widget;

            storedGlobalCssLink.disabled = true;
            loadCssLink(storedGlobalCssLink);

            if (storedPageCssLink) {
                storedPageCssLink.disabled = true;
                loadCssLink(storedPageCssLink);
            }

            if(storedWidgetCssLink) {
                storedWidgetCssLink.disabled = true;
                loadCssLink(storedWidgetCssLink);
            }

            storedRuntimeCssLink.disabled = true;
            loadCssLink(storedRuntimeCssLink);

            requestAnimationFrame(() => {
                setTimeout(() => {
                    storedRuntimeCssLink.disabled = false;
                    storedGlobalCssLink.disabled = false;
                    if (storedPageCssLink) {
                      storedPageCssLink.disabled = false;
                    }
                    if (storedWidgetCssLink) {
                      storedWidgetCssLink.disabled = false;
                    }
                    // (SUP-4179) Clear the accumulated cssLinks only when we're
                    // sure that the document has finished loading and the document 
                    // has been parsed.
                    if(document.readyState === 'interactive') {
                      cssLinks = null;
                    }
                }, 0);
            });
        }
    }
  

  function loadCSS(link) {
    try {
      var urlParams = new URLSearchParams(window.location.search);
      var noCSS = !!urlParams.get("nocss");
      var cssTimeout = urlParams.get("cssTimeout") || 0;

      if (noCSS) {
        return;
      }
      if (link.href && link.href.includes("d-css-runtime")) {
        cssLinks.runtime = link;
        checkCss();
      } else if (link.id === "siteGlobalCss") {
        cssLinks.global = link;
        checkCss();
      } 
      
      else if (link.id && link.id.includes("CssLink")) {
        cssLinks.page = link;
        checkCss();
      } else if (link.id && link.id.includes("widgetCSS")) {
        cssLinks.widget = link;
        checkCss();
      }
      
      else {
        requestIdleCallback(function () {
          window.setTimeout(function () {
            loadCssLink(link);
          }, parseInt(cssTimeout, 10));
        });
      }
    } catch (e) {
      throw e
    }
  }
  window.loadCSS = window.loadCSS || loadCSS;
})();
</script>



<script data-role="deferred-init" type="text/javascript">
    /* usage: window.getDeferred(<deferred name>).resolve() or window.getDeferred(<deferred name>).promise.then(...)*/
    function Def() {
        this.promise = new Promise((function (a, b) {
            this.resolve = a, this.reject = b
        }).bind(this))
    }

    const defs = {};
    window.getDeferred = function (a) {
        return null == defs[a] && (defs[a] = new Def), defs[a]
    }
    window.waitForDeferred = function (b, a, c) {
        let d = window?.getDeferred?.(b);
        d
            ? d.promise.then(a)
            : c && ["complete", "interactive"].includes(document.readyState)
                ? setTimeout(a, 1)
                : c
                    ? document.addEventListener("DOMContentLoaded", a)
                    : console.error(`Deferred  does not exist`);
    };
</script>
<style id="forceCssIncludes">
    /* This file is auto-generated from a `scss` file with the same name */

.videobgwrapper{overflow:hidden;position:absolute;z-index:0;width:100%;height:100%;top:0;left:0;pointer-events:none;border-radius:inherit}.videobgframe{position:absolute;width:101%;height:100%;top:50%;left:50%;transform:translateY(-50%) translateX(-50%);object-fit:fill}#dm video.videobgframe{margin:0}@media (max-width:767px){.dmRoot .dmPhotoGallery.newPhotoGallery:not(.photo-gallery-done){min-height:80vh}}@media (min-width:1025px){.dmRoot .dmPhotoGallery.newPhotoGallery:not(.photo-gallery-done){min-height:45vh}}@media (min-width:768px) and (max-width:1024px){.responsiveTablet .dmPhotoGallery.newPhotoGallery:not(.photo-gallery-done){min-height:45vh}}#dm [data-show-on-page-only]{display:none!important}#dmRoot div.stickyHeaderFix div.site_content{margin-top:0!important}#dmRoot div.stickyHeaderFix div.hamburger-header-container{position:relative}
    

</style>
<style id="cssVariables" type="text/css">
    
</style>























<!-- Google Fonts Include -->













<!-- loadCSS function fonts.jsp-->



<link type="text/css" rel="stylesheet" href="https://irp.cdn-website.com/fonts/css2?family=Sanchez:ital,wght@0,400;1,400&family=Eater:ital,wght@0,400&family=Lobster:ital,wght@0,400&family=Creepster:ital,wght@0,400&family=Arvo:ital,wght@0,400;0,700;1,400;1,700&family=Abril+Fatface:ital,wght@0,400&family=Lobster+Two:ital,wght@0,400;0,700;1,400;1,700&family=Creepster:ital,wght@0,400&family=Alegreya:ital,wght@0,400..900;1,400..900&family=Amiri:ital,wght@0,400;0,700;1,400;1,700&family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Bebas+Neue:ital,wght@0,400&family=Be+Vietnam:ital,wght@0,100;0,200;0,300;0,400;0,600;0,700;0,800;0,900&family=Comfortaa:ital,wght@0,300..700;1,300..700&family=Dancing+Script:ital,wght@0,400..700;1,400..700&family=DM+Sans:ital,wght@0,100..1000;1,100..1000&family=DM+Serif+Display:ital,wght@0,400;1,400&family=Droid+Sans:ital,wght@0,400;0,700&family=Droid+Sans+Mono:ital,wght@0,400&family=Droid+Serif:ital,wght@0,400;0,700&family=Epilogue:ital,wght@0,100..900;1,100..900&family=Fjalla+One:ital,wght@0,400&family=Heebo:ital,wght@0,100..900;1,100..900&family=Inter:ital,wght@0,100..900;1,100..900&amp;subset=latin-ext&amp;display=swap"  />

<link type="text/css" rel="stylesheet" href="https://irp.cdn-website.com/fonts/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Lora:ital,wght@0,400..700;1,400..700&family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Muli:ital,wght@0,200;0,300;0,400;0,600;0,700;0,800;0,900&family=Noto+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Noto+Serif:ital,wght@0,100..900;1,100..900&family=Nunito+Sans:ital,wght@0,200..1000;1,200..1000&family=Old+Standard+TT:ital,wght@0,400;0,700;1,400&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Oswald:ital,wght@0,200..700;1,200..700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Petit+Formal+Script:ital,wght@0,400&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Prata:ital,wght@0,400&family=Prompt:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Quicksand:ital,wght@0,300..700;1,300..700&family=Raleway:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Roboto+Mono:ital,wght@0,100..700;1,100..700&family=Roboto+Slab:ital,wght@0,100..900;1,100..900&family=Rubik:ital,wght@0,300..900;1,300..900&amp;subset=latin-ext&amp;display=swap"  />

<link type="text/css" rel="stylesheet" href="https://irp.cdn-website.com/fonts/css2?family=Rock+Salt:ital,wght@0,400&family=Shadows+Into+Light:ital,wght@0,400&family=Slabo+27px:ital,wght@0,400&family=Source+Sans+Pro:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700;1,900&family=Spartan:ital,wght@0,100;0,200;0,300;0,400;0,600;0,700;0,800;0,900&family=Sulphur+Point:ital,wght@0,300;0,400;0,700&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&family=Vidaloka:ital,wght@0,400&family=Work+Sans:ital,wght@0,100..900;1,100..900&family=Yeseva+One:ital,wght@0,400&family=Mulish:ital,wght@0,200..1000;1,200..1000&family=Red+Rose:ital,wght@0,300..700;1,300..700&family=Abril+Fatface:ital,wght@0,400&family=Fraunces:ital,wght@0,100..900;1,100..900&family=Albert+Sans:ital,wght@0,100..900;1,100..900&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Space+Grotesk:ital,wght@0,300..700;1,300..700&family=Outfit:ital,wght@0,100..900;1,100..900&family=Aboreto:ital,wght@0,400&family=Arapey:ital,wght@0,400;1,400&family=Questrial:ital,wght@0,400&family=Marcellus:ital,wght@0,400&family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&family=Red+Hat+Text:ital,wght@0,300..700;1,300..700&amp;subset=latin-ext&amp;display=swap"  />

<link type="text/css" rel="stylesheet" href="https://irp.cdn-website.com/fonts/css2?family=Quattrocento+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Hedvig+Letters+Serif:ital,wght@0,400&amp;subset=latin-ext&amp;display=swap"  />





<!-- RT CSS Include d-css-runtime-desktop-one-package-structured-global-->
<link rel="stylesheet" type="text/css" href="https://static.cdn-website.com/mnlt/production/6404/_dm/s/rt/dist/css/d-css-runtime-desktop-one-package-structured-global.min.css" />

<!-- End of RT CSS Include -->

<link type="text/css" rel="stylesheet" href="https://irp.cdn-website.com/WIDGET_CSS/6002bb7ef2012b1fafa8f952e742fea7.css" id="widgetCSS" />

<!-- Support `img` size attributes -->
<style>img[width][height] {
  height: auto;
}</style>

<!-- Support showing sticky element on page only -->
<style>
  body[data-page-alias="blog"] #dm [data-show-on-page-only="blog"] {
    display: block !important;
  }
</style>

<!-- This is populated in Ajax navigation -->
<style id="pageAdditionalWidgetsCss" type="text/css">
</style>




<!-- Site CSS -->
<link type="text/css" rel="stylesheet" href="https://irp.cdn-website.com/2d849614/files/2d849614_header_1.min.css?v=7a9914c94d70999c162d99d487be1912" id="siteGlobalCss" />



<style id="customWidgetStyle" type="text/css">
    
</style>
<style id="innerPagesStyle" type="text/css">
    
</style>


<style
        id="additionalGlobalCss" type="text/css"
>
</style>

<style id="pagestyle" type="text/css">
    *#dm *.dmBody div.u_1813569211{
background-image:url(https://lirp.cdn-website.com/2d849614/dms3rep/multi/opt/5+star-2880w.png) !important}
*#dm *.dmBody div.u_1786611370 ul.listWidgetContainer{
background-color:rgba(247,247,247,1) !important}
*#dm *.dmBody div.u_1786611370{
background-color:rgba(247,247,247,1) !important;
border-color:rgba(247,247,247,1) !important;
border-width:2px !important;
border-style:solid !important}
*#dm *.dmBody div.u_1922879198.dmRssLine *.dmPostDescriptionDiv{
height:63px !important;
font-weight:normal !important}
*#dm *.dmBody div.u_1922879198.dmRssBox *.dmPostDescriptionDiv{
height:63px !important;
font-weight:normal !important}
*#dm *.dmBody div.u_1922879198.dmRssMatrix *.dmPostDescriptionDiv{
height:63px !important;
font-weight:normal !important}
*#dm *.dmBody div.u_1922879198 div.dmPostTitle{
color:rgba(53,125,169,1) !important;
font-weight:normal !important;
direction:ltr !important}
*#dm *.dmBody *.u_1922879198 div.dmPostTitle{
text-align:LEFT !important}
*#dm *.dmBody div.u_1985899609{
}
*#dm *.dmBody div.u_1418984309{
}
*#dm *.dmBody div.u_1663670954{
}
*#dm *.dmBody div.u_1290619516{
}
*#dm *.dmBody div.u_1436259139{
}
</style>

<style id="pagestyleDevice" type="text/css">
    *#dm *.dmBody div.u_1786611370
{
	margin-left:0 !important;
	padding-top:0 !important;
	padding-left:0 !important;
	padding-bottom:0 !important;
	margin-top:0 !important;
	margin-bottom:0 !important;
	padding-right:0 !important;
	margin-right:0 !important;
}
*#dm *.dmBody div.u_1546662215
{
	padding-top:30px !important;
	padding-bottom:15px !important;
}
*#dm *.dmBody div.u_1187787767
{
	float:none !important;
	top:0 !important;
	left:0 !important;
	width:100% !important;
	position:relative !important;
	height:auto !important;
	padding-top:197.5px !important;
	padding-left:40px !important;
	padding-bottom:197.5px !important;
	margin-right:auto !important;
	margin-left:auto !important;
	max-width:none !important;
	margin-top:0 !important;
	margin-bottom:0 !important;
	padding-right:40px !important;
	min-width:0 !important;
	text-align:center !important;
}
*#dm *.dmBody *.u_1922879198 div.dmRssItem
{
	margin-bottom:2px !important;
}
*#dm *.dmBody div.u_1922879198.dmRssLine *.dmPostDescriptionDiv
{
	font-size:16px !important;
}
*#dm *.dmBody div.u_1922879198.dmRssBox *.dmPostDescriptionDiv
{
	font-size:16px !important;
}
*#dm *.dmBody div.u_1922879198.dmRssMatrix *.dmPostDescriptionDiv
{
	font-size:16px !important;
}
*#dm *.dmBody div.u_1922879198 div.dmPostTitle
{
	font-size:18px !important;
}
*#dm *.dmBody div.u_1985899609
{
	float:none !important;
	top:0 !important;
	left:0 !important;
	width:902px !important;
	position:relative !important;
	height:816px !important;
	padding-top:0 !important;
	padding-left:0 !important;
	padding-bottom:0 !important;
	max-width:calc(100% - 29px) !important;
	padding-right:0 !important;
	min-width:25px !important;
	text-align:center !important;
}
*#dm *.dmBody div.u_1680927230
{
	top:auto !important;
	left:0 !important;
	width:306px !important;
	position:relative !important;
	height:auto !important;
	padding-top:0 !important;
	padding-left:0 !important;
	padding-bottom:0 !important;
	margin-right:0 !important;
	margin-left:0 !important;
	max-width:calc(100% - 0px) !important;
	margin-top:10px !important;
	margin-bottom:0 !important;
	padding-right:0 !important;
	min-width:25px !important;
	text-align:center !important;
}
*#dm *.dmBody div.u_1418984309
{
}
*#dm *.dmBody div.u_1663670954
{
}
*#dm *.dmBody div.u_1290619516
{
}
*#dm *.dmBody div.u_1436259139
{
}

</style>

<!-- Flex Sections CSS -->







<style id="globalFontSizeStyle" type="text/css">
    .font-size-16, .size-16, .size-16 > font { font-size: 16px !important; }.font-size-18, .size-18, .size-18 > font { font-size: 18px !important; }.font-size-30, .size-30, .size-30 > font { font-size: 30px !important; }
</style>
<style id="pageFontSizeStyle" type="text/css">
</style>




<style id="hideAnimFix">
  .dmDesktopBody:not(.editGrid) [data-anim-desktop]:not([data-anim-desktop='none']), .dmDesktopBody:not(.editGrid) [data-anim-extended] {
    visibility: hidden;
  }

  .dmDesktopBody:not(.editGrid) .dmNewParagraph[data-anim-desktop]:not([data-anim-desktop='none']), .dmDesktopBody:not(.editGrid) .dmNewParagraph[data-anim-extended] {
    visibility: hidden !important;
  }

  #dmRoot:not(.editGrid) .flex-element [data-anim-extended] {
    visibility: hidden;
  }

</style>






<!-- End render the required css and JS in the head section -->




<link rel="alternate" hreflang="en" href="https://www.belaray.com/blog" />

<link rel="alternate" hreflang="x-default" href="https://www.belaray.com/blog" />

<link rel="alternate" hreflang="es-mx" href="https://www.belaray.com/es-mx/blog" />




  <link type="application/rss+xml" rel="alternate" href="https://www.belaray.com/feed/rss2"/>
  <link type="application/atom+xml" rel="alternate" href="https://www.belaray.com/feed/atom"/>
  <meta name="robots" content="noindex"/>
  <meta property="og:type" content="website"/>
  <meta property="og:url" content="https://www.belaray.com/blog"/>
  <!--Start of Tawk.to Script-->  <script type="text/javascript">







var Tawk_API=Tawk_API||{}, Tawk_LoadStart=new Date();
(function(){
var s1=document.createElement("script"),s0=document.getElementsByTagName("script")[0];
s1.async=true;
s1.src='https://embed.tawk.to/5dddc87ad96992700fc9651f/default';
s1.charset='UTF-8';
s1.setAttribute('crossorigin','*');
s0.parentNode.insertBefore(s1,s0);
})();

  

  

  

  </script>
  <!--End of Tawk.to Script-->  <title>
    
    Belaray Dermatology, Hicksville New York
  
  </title>
  <meta name="keywords" content="belaray, dermatology, dermatologist, long island, nassau, suffolk, hicksville, syosset, plainview, woodbury, cortisone shot, cortisone shots, dermatology group, acne, warts, hpv, genital warts, std, eczema, basal cell, squamous cell, melanoma, mohs surgery, skin cancer surgery, board certified,"/>
  <meta name="description" content="The board certified providers at Belaray Dermatology specialize in treating all skin conditions including Acne, Warts (HPV), Melanoma, Basal Cell &amp; Squamous Cell Cancer, Eczema, Psoriasis, Rosacea, Vitiligo etc.  We offer a full range of medical, cosmetic, and surgical services including Mohs Skin Cancer Surgery."/>
  <!-- Google tag (gtag.js) -->  <script async="" src="https://www.googletagmanager.com/gtag/js?id=AW-1068140737">









  

  

  

  

  

  </script>
  <script>









  window.dataLayer = window.dataLayer || [];
  function gtag(){dataLayer.push(arguments);}
  gtag('js', new Date());
  gtag('config', 'AW-1068140737');
  

  

  

  

  

  </script>
  <!-- Google Tag Manager -->  <script>







(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-TM6N5PKR');

  

  

  

  </script>
  <!-- End Google Tag Manager -->
  <meta name="twitter:card" content="summary"/>
  <meta name="twitter:title" content="Belaray Dermatology, Hicksville New York"/>
  <meta name="twitter:description" content="The board certified providers at Belaray Dermatology specialize in treating all skin conditions including Acne, Warts (HPV), Melanoma, Basal Cell &amp; Squamous Cell Cancer, Eczema, Psoriasis, Rosacea, Vitiligo etc.  We offer a full range of medical, cosmetic, and surgical services including Mohs Skin Cancer Surgery."/>
  <meta name="twitter:image" content="https://lirp.cdn-website.com/2d849614/dms3rep/multi/opt/icon_512x512-1920w.png"/>
  <meta property="og:description" content="The board certified providers at Belaray Dermatology specialize in treating all skin conditions including Acne, Warts (HPV), Melanoma, Basal Cell &amp; Squamous Cell Cancer, Eczema, Psoriasis, Rosacea, Vitiligo etc.  We offer a full range of medical, cosmetic, and surgical services including Mohs Skin Cancer Surgery."/>
  <meta property="og:title" content="Belaray Dermatology, Hicksville New York"/>
  <meta property="og:image" content="https://lirp.cdn-website.com/2d849614/dms3rep/multi/opt/icon_512x512-1920w.png"/>




<!-- SYS- VVNfRElSRUNUX1BST0RVQ1RJT04= -->
</head>





















<body id="dmRoot" data-page-alias="blog"  class="dmRoot dmDesktopBody fix-mobile-scrolling addCanvasBorder 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="1958302062"> <div dmtemplateid="StandardLayoutMultiD" class="standardHeaderLayout dm-bfs dm-layout-sec hasAnimations hasStickyHeader dmPageBody d-page-1834384069 inputs-css-clean dmFreeHeader" id="dm-outer-wrapper" data-page-class="1834384069" 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"> <div dm:templateorder="85" class="dmHeaderResp dmHeaderStack noSwitch" id="1709005236"> <div class="u_1571063569 dmRespRow dmHeaderContent freeHeaderRow1" id="1571063569"> <div class="dmRespColsWrapper clearfix" id="1618005341"> <div class="u_1780181932 dmRespCol small-12 large-3 medium-3" id="1780181932"> <span id="1520082955"></span> 
 <div class="u_1796151409 imageWidget align-center" data-element-type="image" data-widget-type="image" id="1796151409"><img src="https://lirp.cdn-website.com/2d849614/dms3rep/multi/opt/icon_512x512-1920w.png" id="1042419147" class="" data-dm-image-path="https://irp-cdn.multiscreensite.com/2d849614/dms3rep/multi/icon_512x512.png" onerror="handleImageLoadError(this)"/></div> 
</div> 
 <div class="u_1681455978 dmRespCol small-12 large-9 medium-9" id="1681455978"> <span id="1316669090"></span> 
 <div class="dmNewParagraph" id="1259405692" style="text-align: right; transition: opacity 1s ease-in-out;"><span style="font-weight: 400;" class="font-size-16 lh-1"><a href="https://www.google.com/maps/place/Belaray+Dermatology/@40.78788,-73.5061717,17z/data=!3m1!4b1!4m5!3m4!1s0x89c281990fa48211:0xab76b402130187ba!8m2!3d40.78788!4d-73.503983?shorturl=1" runtime_url="https://www.google.com/maps/place/Belaray+Dermatology/@40.78788,-73.5061717,17z/data=!3m1!4b1!4m5!3m4!1s0x89c281990fa48211:0xab76b402130187ba!8m2!3d40.78788!4d-73.503983?shorturl=1" target="_blank">Hicksville</a> 
* <a href="https://maps.app.goo.gl/Jn1zE6d4TAxCwFrP6" runtime_url="https://maps.app.goo.gl/Jn1zE6d4TAxCwFrP6" target="_blank">Stony Brook</a>&nbsp; &nbsp;&nbsp;</span><a href="https://goo.gl/maps/THKbSnSXFkt" runtime_url="https://goo.gl/maps/THKbSnSXFkt" target="_blank"></a></div> <nav class="u_1284501632 effect-bottom main-navigation unifiednav dmLinksMenu" role="navigation" layout-main="horizontal_nav_layout_4" layout-sub="submenu_horizontal_1" data-show-vertical-sub-items="HOVER" data-divider="DOT" id="1284501632" dmle_extension="onelinksmenu" data-element-type="onelinksmenu" data-nav-structure="HORIZONTAL" wr="false" icon="true" surround="false" adwords="" navigation-id="unifiedNav"> <ul role="menubar" class="unifiednav__container unav-top  " data-auto="navigation-pages"> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="0"> <a href="/" class="unifiednav__item unav-item unav-top-item  dmUDNavigationItem_00  " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text="
         Home
        " data-auto="page-text-style">Home<span class="icon icon-angle-down"></span> 
</span> 
</a> 
</li> 
 <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="0"> <a href="/about" class="unifiednav__item unav-item unav-top-item  dmUDNavigationItem_010101661768  " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text="
         About
        " data-auto="page-text-style">About<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="/resources" class="unifiednav__item unav-item unav-top-item  dmUDNavigationItem_010101375669  " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text="
         Patient Resources
        " data-auto="page-text-style">Patient Resources<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="https://shop.belaray.com" class="unifiednav__item unav-item unav-top-item  dmUDNavigationItem_010101868843  " target="_blank" data-target-page-alias=""> <span class="nav-item-text " data-link-text="
         Shop
        " data-auto="page-text-style">Shop<span class="icon icon-angle-down"></span> 
</span> 
</a> 
</li> 
 <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="0" data-hidden-on-mobile=""> <a href="/news" class="unifiednav__item unav-item unav-top-item  dmUDNavigationItem_010101735700  " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text="
         News
        " data-auto="page-text-style">News<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="/schedule-a-visit" class="unifiednav__item unav-item unav-top-item  dmUDNavigationItem_010101712225  " 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 class="innerPageTitle">sandbox</div> 
</div> 
 <div class="titleLine display_None"><hr/></div> 
</div> 
</div> 
</div> 
</div> 
 <div dmwrapped="true" id="dmFirstContainer" class="dmBody u_dmStyle_template_blog"> <div id="allWrapper" class="allWrapper"> <div id="dm_content" class="dmContent" role="main"> <div dm:templateorder="1" class="dmDefaultRespTmpl" id="1834384069"> <div class="innerPageTmplBox dmDefaultPage  dmRespRowsWrapper" id="1243139086"> <div class="dmRespRow" id="1886175336"> <div class="dmRespColsWrapper" id="1842416131"> <div class="dmRespCol large-6 medium-6 small-12" id="1393464622"> <div class="imageWidget align-center u_1215216932" data-element-type="image" data-widget-type="image" id="1215216932"> <a id="1193387790"><img src="https://lirp.cdn-website.com/2d849614/dms3rep/multi/opt/1-1920w.jpg" alt="" id="1248173129" class="" data-dm-image-path="https://irp-cdn.multiscreensite.com/2d849614/dms3rep/multi/1.jpg" onerror="handleImageLoadError(this)"/></a> 
</div> 
</div> 
 <div class="dmRespCol empty-column small-12 large-6 medium-6" id="1340014503"></div> 
</div> 
</div> 
 <div class="dmRespRow" id="1982713105"> <div class="dmRespColsWrapper" id="1734113733"> <div class="dmRespCol large-12 medium-12 small-12" id="1580417612"> <div class="widget-5bd886 dmCustomWidget" data-lazy-load="" data-title="" id="1233347084" dmle_extension="custom_extension" data-element-type="custom_extension" icon="false" surround="false" data-widget-id="5bd886efb15a44fd98f083f461519ec8" data-widget-version="232" data-widget-config="eyJ3YU51bWJlciI6IisxNTE2NDMzNzU0NiIsImJ0blRleHQiOiIgV2hhdHNBcHAgdXMiLCJkZWZhdWx0TWVzc2FnZSI6InRlc3QiLCJhbHQiOiJNZXNzYWdlIHVzIG9uIFdoYXRzQXBwIiwid2FMYXlvdXQiOiJpY29uT25seSJ9"> <a class="align-center full" target="_blank" data-display-type="block"> <span class="full iconBg"> <span class="full icon"><img class="full" src="https://dd-cdn.multiscreensite.com/editor/whatsApp/whatsapp_layout_5.svg" alt="Message us on WhatsApp" onerror="handleImageLoadError(this)"/></span> 
</span> 
</a> 
</div> 
 <div class="default dmDefaultGradient dmStore emptyStore" id="1529914804" dmle_extension="ec_store" data-element-type="ec_store" wr="true" loadscript="true" icon="true" surround="true" adwords=""></div> 
</div> 
</div> 
</div> 
 <div class="u_1410741434 dmRespRow" style="text-align: center;" id="1410741434"> <div class="dmRespColsWrapper" id="1691774852"> <div class="dmRespCol small-12 medium-4 large-4" id="1123480835"> <span id="1507358567"></span> 
 <div class="u_1987394130 align-center text-align-center dmSocialHub gapSpacing" id="1987394130" 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://facebook.com/belaray" target="_blank" dm_dont_rewrite_url="true" aria-label="facebook" onclick="dm_gaq_push_event &amp;&amp; dm_gaq_push_event(&apos;socialLink&apos;, &apos;click&apos;, &apos;Facebook&apos;)"> <span class="dmSocialFacebook dm-social-icons-facebook oneIcon socialHubIcon style1" aria-hidden="true" data-hover-effect=""></span> 
</a> 
 <a href="https://twitter.com/belaray" target="_blank" dm_dont_rewrite_url="true" aria-label="twitter" onclick="dm_gaq_push_event &amp;&amp; dm_gaq_push_event(&apos;socialLink&apos;, &apos;click&apos;, &apos;Twitter&apos;)"> <span class="dmSocialTwitter dm-social-icons-twitter oneIcon socialHubIcon style1" aria-hidden="true" data-hover-effect=""></span> 
</a> 
 <a href="http://instagram.com/belaraydermatology" target="_blank" dm_dont_rewrite_url="true" aria-label="instagram" onclick="dm_gaq_push_event &amp;&amp; dm_gaq_push_event(&apos;socialLink&apos;, &apos;click&apos;, &apos;Instagram&apos;)"> <span class="dmSocialInstagram dm-social-icons-instagram oneIcon socialHubIcon style1" aria-hidden="true" data-hover-effect=""></span> 
</a> 
</div> 
</div> 
</div> 
</div> 
 <div class="u_1643174041 dmRespCol small-12 large-6 medium-6" id="1643174041"> <span id="1329030705"></span> 
 <a class="u_1116012719 default dmDefaultGradient align-center dmCall voipReplacement dmWidget dmNoMark dmWwr" href="tel:516-822-7546" contenteditable="false" onclick=";return dm_gaq_push_event('ClickToCall', 'Call',null,'2d849614', this);" id="1116012719" dmle_extension="clicktocall" data-element-type="clicktocall" wr="true" data-display-type="block" localization_key_description="googleTranslate.0" icon="true" surround="true" description="Call Us" adwords="" icon-name="icon-phone" phone="516-822-7546" text="" image=""> <span class="iconBg" aria-hidden="true"> <span class="icon hasFontIcon icon-phone"></span> 
</span> 
 <span class="text">Call Us</span> 
</a> 
</div> 
 <div class="u_1223206217 dmRespCol small-12 large-2 medium-2" id="1223206217"> <div class="dmNewParagraph" id="1060653355" style="transition: opacity 1s ease-in-out;"><div style="text-align: right;">358 S. Oyster Bay Rd</div><div style="text-align: right;">Hicksville NY 11801</div></div></div> 
</div> 
</div> 
 <div class="dmRespRow" style="text-align: center;" id="1857310623"> <div class="dmRespColsWrapper" id="1645100903"> <div class="dmRespCol large-6 medium-6 small-12" id="1413367133"> <div data-element-type="html" class="dmCustomHtml" id="1290619516"> <a href="sms:+15162262123&body=Hi%2520there%252C%2520I%2527d%2520like%2520to%2520make%2520an%2520appointment%2520for...">Click here to text us an Appointment Request!</a> 
</div> 
 <a data-display-type="block" class="align-center dmButtonLink dmWidget dmWwr default dmOnlyButton dmDefaultGradient" file="true" href="https://irp-cdn.multiscreensite.com/2d849614/files/uploaded/Intake%20Paperwork%20Rev%203.20.pdf" data-element-type="dButtonLinkId" id="1201712429" target="_blank"> <span class="iconBg" id="1461897131"> <span class="icon hasFontIcon icon-star" id="1919159535"></span> 
</span> 
 <span class="text" id="1563946144">paperwork</span> 
</a> 
</div> 
 <div class="dmRespCol small-12 large-6 medium-6" id="1392623409"> <div class="imageWidget align-center u_1128500402" data-element-type="image" data-widget-type="image" id="1128500402"><img src="https://lirp.cdn-website.com/2d849614/dms3rep/multi/opt/Mom+Vintage-1920w.jpg" id="1459731343" class="" data-dm-image-path="https://irp-cdn.multiscreensite.com/2d849614/dms3rep/multi/Mom+Vintage.jpg" onerror="handleImageLoadError(this)"/></div> 
 <div class="imageWidget align-center u_1989658332" data-element-type="image" data-widget-type="image" id="1989658332"><img src="https://lirp.cdn-website.com/2d849614/dms3rep/multi/opt/ladies-1920w.jpg" id="1838136596" class="" data-dm-image-path="https://irp-cdn.multiscreensite.com/2d849614/dms3rep/multi/ladies.jpg" onerror="handleImageLoadError(this)"/></div> 
 <div class="u_1680927230 default dmHoursOfOperation" id="1680927230" dmle_extension="open_hours" data-element-type="open_hours" time_format="12" wr="true" displaytitle="true" lang="" forcedisplay="false" localization_key_title="googleTranslate.7" icon="true" surround="true" adwords=""> <h3 class="dmwidget-title ">Business Hours</h3> 
 <dl class="open-hours-data"> <div class="open-hours-item"> <dt day="0">Mon - Fri</dt> 
 <dd> <time>9:00 am</time> 
- <time>5:00 pm</time> 
</dd> 
</div> 
 <div class="open-hours-item"> <dt day="5">Sat - Sun</dt> 
 <dd>Closed</dd> 
</div> 
</dl> 
</div> 
</div> 
</div> 
</div> 
 <div class="u_1187787767 dmRespRow" style="text-align: center;" id="1187787767"> <div class="dmRespColsWrapper" id="1562643830"> <div class="dmRespCol small-12 medium-12 large-12" id="1380089611"> <div id="1922879198" class="default u_1922879198 dmRssContainer wpRssContainer dmRssLine" dmle_extension="blogposts" data-element-type="blogposts" postsmargin="3" showdividers="false" numlistrows="3" closetext="" showtitle="false" showcontentinsteaddesc="false" showarrows="false" wr="false" usergenerated="false" showcontent="false" readmore="" icon="false" surround="false" src="https://zapier.com/engine/rss/2922502/BelarayRateAndReview/" visibleitems="10" listtype="list" displaythumbnails="false" displaycarouselcontent="false" collspasecontent="false" showposttitle="true" hidereadmore="false" hidemoreposts="false" morepoststitle="More Posts"> <title></title> 
 <div class="dmNoContent">Sorry, no content is available.</div> 
<!-- <div class="clearBoth"></div> --> <div class="more-posts-wrapper"> <a id="dmMorePostsButton" class="dmMorePostsButton displayNone" href="https://zapier.com/engine/rss/2922502/BelarayRateAndReview/?paged=1&paged=2" onclick="fetchMoreBlogItems('https://zapier.com/engine/rss/2922502/BelarayRateAndReview/?paged=1&paged=2');return false;"> <div class="dmMorePostsButtonClass">More Posts <span class="dm-icon-button-arrow oneIcon" data-hide-read-more="false"></span> 
</div> 
 <div style="height: 10px;"></div> 
</a> 
</div> 
 <div class="clearBoth"></div> 
</div> 
 <div class="dmTwitterFeedWrapper" data-element-type="dTwitterId" id="1904940149"> <div class="dmTwitterFeed dmWwr dmTwitterNoScroll" twitterusername="belaray" numberoftweets="3" twittertype="Profile" hideheaderfooter="false" lang="en" id="1145781005"></div> 
</div> 
</div> 
</div> 
</div> 
 <div class="dmRespRow" style="text-align: center;" id="1424026262"> <div class="dmRespColsWrapper" id="1105857724"> <div class="dmRespCol small-12 medium-12 large-12" id="1291502220"> <div data-element-type="html" class="u_1985899609 dmCustomHtml hide-for-medium hide-for-small" id="1985899609"> <iframe src="https://www.surveymonkey.com/results/SM-M7RV2XMT8/" height="800" width="900" title="Embedded content"></iframe> 
</div> 
 <span id="1343729080"></span> 
 <div class="default dmPayPalButton dmNoMark" id="1750564317" dmle_extension="paypal" data-element-type="paypal" wr="false" type="Buy" business="" itemname="" itemnumber="" price="" message="Add special instructions to the seller" currency="USD" shipping="" tax="" handling="" buttonsize="_LG" lang="English" returnurl="" bn="Dinc_SP" new_window="false" icon="false" surround="false"> <form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_blank"><input type="hidden" name="cmd" value="_xclick"/><input type="hidden" name="business" value=""/><input type="hidden" name="lc" value="US" touse="en_US"/><input type="hidden" name="item_name" value=""/><input type="hidden" name="item_number" value=""/><input type="hidden" name="amount" value=""/><input type="hidden" name="currency_code" value="USD"/><input type="hidden" name="button_subtype" value="services"/><input type="hidden" name="no_note" value="0"/><input type="hidden" name="cn" value="Add special instructions to the seller"/><input type="hidden" name="no_shipping" value="2"/><input type="hidden" name="tax_rate" value=""/><input type="hidden" name="shipping" value=""/><input type="hidden" name="handling" value=""/><input type="hidden" name="RETURNURL" value=""/><input type="hidden" name="CANCELURL" value=""/><input type="hidden" name="bn" value="Dinc_SP"/><input type="hidden" name="charset" value="utf-8"/><input type="image" src="https://www.paypalobjects.com/en_US/i/btn/btn_buynow_LG.gif" border="0" name="submit"/><img alt="" border="0" src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif" width="1" height="1" onerror="handleImageLoadError(this)"/></form> 
</div> 
 <div class="default dmPayPalButton dmNoMark" id="1277335843" dmle_extension="paypal" data-element-type="paypal" wr="false" type="Buy" business="" itemname="" itemnumber="" price="" message="Add special instructions to the seller" currency="USD" shipping="" tax="" handling="" buttonsize="_LG" lang="English" returnurl="" bn="Dinc_SP" new_window="false" icon="false" surround="false"> <form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_blank"><input type="hidden" name="cmd" value="_xclick"/><input type="hidden" name="business" value=""/><input type="hidden" name="lc" value="US" touse="en_US"/><input type="hidden" name="item_name" value=""/><input type="hidden" name="item_number" value=""/><input type="hidden" name="amount" value=""/><input type="hidden" name="currency_code" value="USD"/><input type="hidden" name="button_subtype" value="services"/><input type="hidden" name="no_note" value="0"/><input type="hidden" name="cn" value="Add special instructions to the seller"/><input type="hidden" name="no_shipping" value="2"/><input type="hidden" name="tax_rate" value=""/><input type="hidden" name="shipping" value=""/><input type="hidden" name="handling" value=""/><input type="hidden" name="RETURNURL" value=""/><input type="hidden" name="CANCELURL" value=""/><input type="hidden" name="bn" value="Dinc_SP"/><input type="hidden" name="charset" value="utf-8"/><input type="image" src="https://www.paypalobjects.com/en_US/i/btn/btn_buynow_LG.gif" border="0" name="submit"/><img alt="" border="0" src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif" width="1" height="1" onerror="handleImageLoadError(this)"/></form> 
</div> 
</div> 
</div> 
</div> 
 <div class="u_1299395111 dmRespRow dmTopContentRow" id="1299395111"> <div class="dmRespColsWrapper" id="1684579111"> <div class="u_1701329904 large-6 medium-6 small-12 dmRespCol dmAboutTopFirstSection" id="1701329904"> <span id="1765388300"></span> 
 <h3 class="dmDefaultH3 u_1124390747" id="1124390747" style="display: block;">Cosmetic Dermatology</h3> <div class="u_1418697460 imageWidget dmDefaultImg" id="1418697460" data-element-type="image"><img src="https://lirp.cdn-website.com/2d849614/dms3rep/multi/opt/84031495_X-5760x3840-1920w.jpg" id="1462913102" dm_changed="true" class="u_1462913102" onerror="handleImageLoadError(this)"/></div> 
</div> 
 <div class="large-6 medium-6 small-12 dmRespCol dmAboutTopSecondSection" id="1279744455"><!-- <dm:List dm:model="list" dm:layout="layoutD" class="roomsList"/> --> <div class="u_1778359264 dmNewParagraph" id="1778359264">We offer a wide variety of cosmetic dermatological procedures in the office including<div><ul class="innerList defaultList"><li>Botox &amp; Xeomin</li><li>Fillers (ie: Juvaderm, etc.)</li><li>Laser Hair Removal</li><li>Laser Micro-Laser Peels</li><li>Photofacials to remove red and brown areas</li><li>Fractionated Laser Resurfacing</li><li>Laser removal of red blood vessels and spots&nbsp;</li><li>Sclerotherapy</li><li>Keloid and Scar treatments</li><li>Earlobe repairs and Gauge Reversals</li></ul></div></div> <a data-display-type="block" class="u_1175897970 align-center dmButtonLink dmWidget dmWwr default dmOnlyButton dmDefaultGradient" file="false" href="/schedule-a-visit" data-element-type="dButtonLinkId" id="1175897970"> <span class="iconBg" id="1585927904"> <span class="icon hasFontIcon icon-star" id="1768246154"></span> 
</span> 
 <span class="text" id="1553077498">Schedule A Visit</span> 
</a> 
</div> 
</div> 
</div> 
 <div class="u_1172263976 dmRespRow dmTopContentRow" id="1172263976"> <div class="dmRespColsWrapper" id="1403829249"> <div class="u_1152762591 large-6 medium-6 small-12 dmRespCol dmAboutTopFirstSection" id="1152762591"> <span id="1142499547"></span> 
 <h3 class="dmDefaultH3 u_1994100032" id="1994100032" style="display: block;">Surgical and Skin Cancer</h3> <div class="u_1924236810 imageWidget dmDefaultImg" id="1924236810" data-element-type="image"><img src="https://lirp.cdn-website.com/2d849614/dms3rep/multi/opt/Skin+Cancer-1920w.jpg" id="1878178543" dm_changed="true" class="u_1878178543" data-dm-image-path="https://irp-cdn.multiscreensite.com/2d849614/dms3rep/multi/Skin+Cancer.jpg" onerror="handleImageLoadError(this)"/></div> 
</div> 
 <div class="large-6 medium-6 small-12 dmRespCol dmAboutTopSecondSection" id="1207259982"><!-- <dm:List dm:model="list" dm:layout="layoutD" class="roomsList"/> --> <div class="u_1108923128 dmNewParagraph" id="1108923128">All of our providers specialize in the screening, diagnosis, and treatment of skin cancer.&nbsp;&nbsp;<div><br/></div><div>We offer several options for treating skin cancers including Mohs skin cancer surgery.&nbsp; Mohs surgery at Belaray Dermatology is unique in that&nbsp;<span style="background-color: transparent;">we are one of the only practices in New York that offers a team approach for skin cancer on the head and neck with a Mohs Surgeon working closely with an</span><span style="background-color: transparent;">&nbsp;Ophthalmic Facial Plastic Reconstructive Surgeon.&nbsp; Due to this unique partnership, our practice treats a high percentage of skin cancer on or around the eyelids, one of the most delicate areas of the body.</span></div><div><div><br/></div></div></div> <a data-display-type="block" class="u_1437821712 align-center dmButtonLink dmWidget dmWwr default dmOnlyButton dmDefaultGradient" file="false" href="/schedule-a-visit" data-element-type="dButtonLinkId" id="1437821712"> <span class="iconBg" id="1955658567"> <span class="icon hasFontIcon icon-star" id="1880640866"></span> 
</span> 
 <span class="text" id="1112760255">Schedule A Visit</span> 
</a> 
</div> 
</div> 
</div> 
 <div class="dmRespRow" style="text-align: center;" id="1081179084"> <div class="dmRespColsWrapper" id="1325425178"> <div class="dmRespCol small-12 medium-12 large-12 empty-column" id="1025980970"></div> 
</div> 
</div> 
 <div class="u_1826062781 dmRespRow dmTopContentRow" id="1826062781"> <div class="dmRespColsWrapper" id="1601327066"> <div class="u_1562428413 large-6 medium-6 small-12 dmRespCol dmAboutTopFirstSection" id="1562428413"> <span id="1848003852"></span> 
 <h3 class="dmDefaultH3 u_1627612116" id="1627612116" style="display: block;">Medical Dermatology</h3> <div class="u_1399986087 imageWidget dmDefaultImg" id="1399986087" data-element-type="image"><img src="https://lirp.cdn-website.com/2d849614/dms3rep/multi/opt/acne-1920w.jpg" id="1413210693" dm_changed="true" class="u_1413210693" data-dm-image-path="https://irp-cdn.multiscreensite.com/2d849614/dms3rep/multi/acne.jpg" onerror="handleImageLoadError(this)"/></div> 
</div> 
 <div class="large-6 medium-6 small-12 dmRespCol dmAboutTopSecondSection" id="1205501450"><!-- <dm:List dm:model="list" dm:layout="layoutD" class="roomsList"/> --> <div class="u_1721122975 dmNewParagraph" id="1721122975">Our practice has expertise in treating all medical dermatological conditions.&nbsp; Acne, rosacea, psoriasis, eczema, cysts, warts, skin cancer management and screening are some examples of the conditions we specialize in treating.&nbsp;&nbsp;<div><br/></div><div>On your visit, we will help to educate you on your condition, and establish a treatment plan that fits into your lifestyle.&nbsp;&nbsp;</div></div> <a data-display-type="block" class="u_1615911701 align-center dmButtonLink dmWidget dmWwr default dmOnlyButton dmDefaultGradient" file="false" href="/schedule-a-visit" data-element-type="dButtonLinkId" id="1615911701"> <span class="iconBg" id="1721177906"> <span class="icon hasFontIcon icon-star" id="1704162802"></span> 
</span> 
 <span class="text" id="1778457119">Schedule A Visit</span> 
</a> 
</div> 
</div> 
</div> 
 <div class="u_1546662215 dmRespRow dmTopContentRow" id="1546662215"> <div class="dmRespColsWrapper" id="1923224874"> <div class="u_1923457676 large-6 medium-6 small-12 dmRespCol dmAboutTopFirstSection" id="1923457676"> <span id="1136632469"></span> 
 <h3 class="dmDefaultH3 u_1000776032" id="1000776032" style="display: block;">Pediatric Dermatology</h3> <div class="u_1884959870 imageWidget dmDefaultImg" id="1884959870" data-element-type="image"><img src="https://lirp.cdn-website.com/2d849614/dms3rep/multi/opt/pediatric-1920w.jpeg" id="1676201762" dm_changed="true" class="u_1676201762" data-dm-image-path="https://irp-cdn.multiscreensite.com/2d849614/dms3rep/multi/pediatric.jpeg" onerror="handleImageLoadError(this)"/></div> 
</div> 
 <div class="large-6 medium-6 small-12 dmRespCol dmAboutTopSecondSection" id="1305496002"><!-- <dm:List dm:model="list" dm:layout="layoutD" class="roomsList"/> --> <div class="u_1521662489 dmNewParagraph" id="1521662489" style="">All of our providers have training and expertise in helping children with routine dermatological concerns.&nbsp; &nbsp;Childhood eczema, acne, warts, molluscum, dry skin, cradle cap, and birth marks are some examples of the conditions we can help your family with.<div><br/></div><div>We work hard to make our younger patients feel as comfortable as possible for their visit.</div></div> <a data-display-type="block" class="u_1588581893 align-center dmButtonLink dmWidget dmWwr default dmOnlyButton dmDefaultGradient" file="false" href="/schedule-a-visit" data-element-type="dButtonLinkId" id="1588581893"> <span class="iconBg" id="1907660099"> <span class="icon hasFontIcon icon-star" id="1494296086"></span> 
</span> 
 <span class="text" id="1994670493">Schedule A Visit</span> 
</a> 
</div> 
</div> 
</div> 
 <div class="dmRespRow" style="text-align: center;" id="1029349164"> <div class="dmRespColsWrapper" id="1420703587"> <div class="dmRespCol small-12 medium-12 large-12" id="1287515612"> <div class="imageWidget align-center u_1716192191" data-element-type="image" data-widget-type="image" id="1716192191"><img src="https://lirp.cdn-website.com/2d849614/dms3rep/multi/opt/icon_512x512-1920w.png" id="1188521141" class="" data-dm-image-path="https://irp-cdn.multiscreensite.com/2d849614/dms3rep/multi/icon_512x512.png" onerror="handleImageLoadError(this)"/></div> 
</div> 
</div> 
</div> 
 <div class="dmRespRow" style="text-align: center;" id="1453124747"> <div class="dmRespColsWrapper" id="1152752246"> <div class="dmRespCol small-12 medium-4 large-4" id="1435741977"> <div class="imageWidget align-center u_1361485949" data-element-type="image" data-widget-type="image" id="1361485949"> <a id="1602447696" file="false" class=""><img src="https://lirp.cdn-website.com/2d849614/dms3rep/multi/opt/d37691f6-44b5-47c9-abdb-572aa3c9c232-1920w.jpg" id="1521808504" class="" data-dm-image-path="https://irp-cdn.multiscreensite.com/2d849614/dms3rep/multi/d37691f6-44b5-47c9-abdb-572aa3c9c232.jpg" title="Dr. Amy Slear, Dermatology" data-hover-effect="reverse-grayscale" onerror="handleImageLoadError(this)"/></a> 
</div> 
 <div class="u_1066184904 imageWidget align-center" data-element-type="image" data-widget-type="image" id="1066184904"> <a id="1933091451" file="false" class=""><img src="https://lirp.cdn-website.com/2d849614/dms3rep/multi/opt/2edc499a-6e6f-4444-9210-6a1c7e108044-1920w.jpg" id="1070892841" class="" data-dm-image-path="https://irp-cdn.multiscreensite.com/2d849614/dms3rep/multi/2edc499a-6e6f-4444-9210-6a1c7e108044.jpg" title="Amrit Kumar, PA, Dermatology" data-hover-effect="reverse-grayscale" onerror="handleImageLoadError(this)"/></a> 
</div> 
</div> 
 <div class="dmRespCol small-12 medium-4 large-4" id="1158006602"> <div class="u_1612073832 imageWidget align-center" data-element-type="image" data-widget-type="image" id="1612073832"> <a id="1463059252" file="false" class=""><img src="https://lirp.cdn-website.com/2d849614/dms3rep/multi/opt/120cd025-5e4c-402b-9d39-c7bd39028f01-1920w.jpg" id="1385820637" class="" data-dm-image-path="https://irp-cdn.multiscreensite.com/2d849614/dms3rep/multi/120cd025-5e4c-402b-9d39-c7bd39028f01.jpg" title="Dr. Jeffrey Ellis, Procedural Dermatology & Mohs Surgery" data-hover-effect="reverse-grayscale" onerror="handleImageLoadError(this)"/></a> 
</div> 
 <div class="u_1208358410 imageWidget align-center" data-element-type="image" data-widget-type="image" id="1208358410"> <a href="/our-team" id="1315101996" file="false"><img src="https://lirp.cdn-website.com/2d849614/dms3rep/multi/opt/70417439-b65a-4c7f-90b9-16bf3b4f8642-1920w.jpg" id="1567321651" class="" data-dm-image-path="https://irp-cdn.multiscreensite.com/2d849614/dms3rep/multi/70417439-b65a-4c7f-90b9-16bf3b4f8642.jpg" title="Dr. Rachel Ellis, Ophthalmic Plastic Facial Reconstructive Surgery" data-hover-effect="reverse-grayscale" onerror="handleImageLoadError(this)"/></a> 
</div> 
</div> 
 <div class="dmRespCol small-12 medium-4 large-4" id="1952931801"> <span id="1272092317"></span> 
 <div class="u_1836115610 imageWidget align-center" data-element-type="image" data-widget-type="image" id="1836115610"> <a id="1810689152" file="false" class=""><img src="https://lirp.cdn-website.com/2d849614/dms3rep/multi/opt/e76e0805-b0be-417e-bf74-70d7e8bdfa54-1920w.jpg" id="1950460056" class="" data-dm-image-path="https://irp-cdn.multiscreensite.com/2d849614/dms3rep/multi/e76e0805-b0be-417e-bf74-70d7e8bdfa54.jpg" title="Dr. Charisse McCall, Cosmetic Dermatology" data-hover-effect="reverse-grayscale" onerror="handleImageLoadError(this)"/></a> 
</div> 
 <div class="u_1200675942 imageWidget align-center" data-element-type="image" data-widget-type="image" id="1200675942"> <a id="1538119889" file="false" class=""><img src="https://lirp.cdn-website.com/2d849614/dms3rep/multi/opt/bee8fa32-9ab3-4446-b4cd-1e3ee4e93df8-1920w.jpg" id="1030048263" class="" data-dm-image-path="https://irp-cdn.multiscreensite.com/2d849614/dms3rep/multi/bee8fa32-9ab3-4446-b4cd-1e3ee4e93df8.jpg" title="Dr. Luis Berrutti, Dermatopathology" data-hover-effect="reverse-grayscale" onerror="handleImageLoadError(this)"/></a> 
</div> 
</div> 
</div> 
</div> 
 <div class="u_1922927103 dmRespRow desktop-no-padding fullBleedChanged" style="text-align: center;" id="1922927103"> <div class="dmRespColsWrapper" id="1688077285"> <div class="u_1103664384 dmRespCol small-12 medium-6 large-6" id="1103664384"> <span id="1961768814"></span> 
 <div data-element-type="html" class="dmCustomHtml u_1575241784" id="1575241784"> <div class="embed-container"> <iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3020.823960636185!2d-73.50617664845268!3d40.78788414080395!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x89c281990fa48211%3A0xd72f3337c6c7aba3!2s358+S+Oyster+Bay+Rd%2C+Hicksville%2C+NY+11801!5e0!3m2!1sen!2sus!4v1512791027881" width="600" height="450" frameborder="0" style="border:0" allowfullscreen="" title="Google Maps"></iframe> 
frameborder=&quot;0&quot; allowfullscreen&gt;</div> 
</div> 
</div> 
 <div class="u_1552819441 dmRespCol small-12 medium-6 large-6" id="1552819441"> <span id="1178959182"></span> 
 <div class="imageWidget align-center u_1385178323" data-element-type="image" data-widget-type="image" id="1385178323"><img src="https://lirp.cdn-website.com/2d849614/dms3rep/multi/opt/Screen+Shot+2017-12-09+at+9.05.42+AM-1920w.png" id="1909041051" class="" data-dm-image-path="https://irp-cdn.multiscreensite.com/2d849614/dms3rep/multi/Screen+Shot+2017-12-09+at+9.05.42+AM.png" onerror="handleImageLoadError(this)"/></div> 
</div> 
</div> 
</div> 
 <div class="u_1261562907 dmRespRow dmSectionParallaxNew" style="text-align: center;" id="1261562907"> <div class="dmRespColsWrapper" id="1674332801"> <div class="u_1114816468 dmRespCol small-12 large-5 medium-5" id="1114816468" data-anim-desktop="fadeInLeft"> <span id="1464685645"></span> 
 <h3 class="u_1181138187 dmNewParagraph" id="1181138187" style="transition: none; display: block;" data-element-type="paragraph"><div><span style="font-weight: 600;">Get In Touch</span></div></h3> <div class="u_1182035638 dmNewParagraph" id="1182035638" style="transition: opacity 1s ease-in-out; display: block;"><div><span style=""><b></b></span></div><span style="font-weight: 700;"><div><span style="font-weight: inherit;"><b>516-822-7546</b></span></div></span></div> <div class="u_1601343401 dmNewParagraph" id="1601343401" style="transition: none; display: block;"><div>358 S Oyster Bay Road</div><div>Hicksville NY 11801</div></div> <div class="u_1093557286 default dmHoursOfOperation" id="1093557286" dmle_extension="open_hours" data-element-type="open_hours" time_format="12" wr="true" displaytitle="false" forcedisplay="false" localization_key_title="googleTranslate.7" icon="false" surround="false"> <dl class="open-hours-data"> <div class="open-hours-item"> <dt day="0">Mon - Sat</dt> 
 <dd>Appointment Only</dd> 
</div> 
 <div class="open-hours-item"> <dt day="6">Sunday</dt> 
 <dd>Closed</dd> 
</div> 
</dl> 
</div> 
 <div class="u_1734878810 align-center text-align-center dmSocialHub gapSpacing" id="1734878810" 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://facebook.com/belaray" target="_blank" dm_dont_rewrite_url="true" aria-label="facebook" onclick="dm_gaq_push_event &amp;&amp; dm_gaq_push_event(&apos;socialLink&apos;, &apos;click&apos;, &apos;Facebook&apos;)"> <span class="dmSocialFacebook dm-social-icons-facebook oneIcon socialHubIcon style3" aria-hidden="true" data-hover-effect=""></span> 
</a> 
 <a href="https://twitter.com/belaray" target="_blank" dm_dont_rewrite_url="true" aria-label="twitter" onclick="dm_gaq_push_event &amp;&amp; dm_gaq_push_event(&apos;socialLink&apos;, &apos;click&apos;, &apos;Twitter&apos;)"> <span class="dmSocialTwitter dm-social-icons-twitter oneIcon socialHubIcon style3" aria-hidden="true" data-hover-effect=""></span> 
</a> 
 <a href="http://instagram.com/belaraydermatology" target="_blank" dm_dont_rewrite_url="true" aria-label="instagram" onclick="dm_gaq_push_event &amp;&amp; dm_gaq_push_event(&apos;socialLink&apos;, &apos;click&apos;, &apos;Instagram&apos;)"> <span class="dmSocialInstagram dm-social-icons-instagram oneIcon socialHubIcon style3" aria-hidden="true" data-hover-effect=""></span> 
</a> 
</div> 
</div> 
</div> 
</div> 
 <div class="u_1178753990 dmRespCol small-12 large-7 medium-7" id="1178753990"> <span id="1261239265"></span> 
 <div class="u_1132772747 dmform default native-inputs" data-element-type="dContactUsRespId" id="1132772747" data-layout="layout-3"> <h3 class="dmform-title dmwidget-title" id="1263705881">Join our mailing list</h3> 
 <div class="dmform-wrapper" id="1996639624" captcha-lang="en"> <form method="post" class="dmRespDesignRow" locale="ENGLISH" id="1620578782"> <div class="dmforminput required  small-12 dmRespDesignCol medium-12 large-12" id="1874045236" localization_key_label="googleTranslate.23"> <label for="1078270293" id="1364494011" data-dm-for="dmform-0">First Name:</label> 
<input type="text" class="" name="dmform-0" id="1078270293"/><input type="hidden" name="label-dmform-0" value="First Name:" id="1900701921" class=""/></div> 
 <div class="dmforminput small-12 dmRespDesignCol required medium-12 large-12" id="1970422548" localization_key_label="googleTranslate.24"> <label for="1832193449" id="1144357819" data-dm-for="dmform-4">Last Name:</label> 
<input type="text" name="dmform-4" id="1832193449"/><input type="hidden" name="label-dmform-4" value="Last Name:" id="1071233151" class=""/></div> 
 <div class="dmforminput required  small-12 dmRespDesignCol medium-12 large-12" id="1382979619" localization_key_label="googleTranslate.25"> <label for="1805795049" id="1263983039" data-dm-for="dmform-1">Email:</label> 
<input type="email" class="" name="dmform-1" id="1805795049"/><input type="hidden" name="label-dmform-1" value="Email" id="1456504486"/></div> 
 <div class="dmforminput required  small-12 dmRespDesignCol medium-12 large-12" id="1069177977" localization_key_label="googleTranslate.87"> <label for="1455759893" id="1229458404" data-dm-for="dmform-2">Cell Phone:</label> 
<input type="tel" class="" name="dmform-2" id="1455759893"/><input type="hidden" name="label-dmform-2" value="Cell Phone:" id="1480416462" class=""/></div> 
 <div class="dmformsubmit dmWidget R" id="1582785367"><input class="" name="submit" type="submit" value="Submit" id="1562918956" localization_key_value="googleTranslate.26"/></div> 
<input name="dmformsendto" type="hidden" value="O0wrseIfFLt3OvcyEBRuzrn65PxKWaEMQqWXif7Q18/lXyvbW6WpwCQP9ckA0CDlszcPJNDNtVY=" id="1926404246" data-dec="true"/><input class="dmActionInput" type="hidden" name="action" value="/_dm/s/rt/widgets/dmform.submit.jsp" id="1963541461"/><input name="dmformsubject" type="hidden" value="Form Message" id="1283137018" localization_key_value="googleTranslate.27"/><input type="hidden" name="mailChimpIntegrationUUID" value="a18ff6bc03154d55acd8cdb7d1a26c4b" id="1196794490"/><input type="hidden" name="mailChimpLists" value="39df9e8dbe" id="1834685383" class=""/><input type="hidden" name="mailChimp_email" value="dmform-1" class="fieldMapper" id="1376798846"/><input type="hidden" name="mailChimp_firstName" value="dmform-0" class="fieldMapper" id="1232182259"/><input type="hidden" name="mailChimp_lastName" value="dmform-4" class="fieldMapper" id="1148140467"/><input name="dmformsubmitparams" type="hidden" value="8mpKnCSiNQXK/d9M7IDrSyY1rakgua3cJ8IbYz7Sy2rnhS7b/3KgEXf7yo5f2w3EmJM4Uu2ykLPP0ai9TtNQjeo7goEAGNXqqBvYcbBUbn4ngdOJaBGsqOOk+vW/FB5M2l7bbXKB8NkHwkP6o+SaUKuVfRAFKg6DI/WcTry9sHJx+8goeq/f9t21rE+fdr6pltmLfunpTfo3iWsgd+GKkQ==" data-dec="true"/><input type="hidden" name="page_uuid" value="3b010c212c964ebaa7d258262b59d3d6"/></form> 
</div> 
 <div class="dmform-success" style="display:none" id="1026389022"><p class="rteBlock">Thank you for subscribing to our Cosmetic Specials mailing list!</p></div> <div class="dmform-error" style="display:none" id="1770204587">Oops, there was an error sending your message.<br id="1884090481"/>Please try again later</div> 
</div> 
</div> 
</div> 
</div> 
 <div class="u_1071183124 dmRespRow" style="text-align: center;" id="1071183124" mode="1"> <div class="dmRespColsWrapper" id="1737043167"> <div class="dmRespCol u_1356379789 medium-6 large-6 small-12" id="1356379789"> <span id="1367597934"></span> 
 <h2 class="u_1847433584 dmNewParagraph" id="1847433584" style="transition: opacity 1s ease-in-out;" data-element-type="paragraph"><div style="text-align: left;"><font style="color: rgb(44, 44, 44);">Join our newsletter</font></div></h2> <div class="u_1671081924 dmform default native-inputs" id="1671081924" data-layout="layout-3" data-element-type="dContactUsRespId"> <h3 class="dmform-title dmwidget-title" id="1788041804" hide="true">Contact Us</h3> 
 <div class="dmform-wrapper" id="1035038615" captcha-lang="en"> <form method="post" class="dmRespDesignRow" locale="ENGLISH" id="1092215507"> <div class="dmforminput required  small-12 dmRespDesignCol medium-12 large-12" id="1768716537" localization_key_label="googleTranslate.91"> <label for="1092657597" id="1275480667" data-dm-for="dmform-0">Name</label> 
<input type="text" class="" name="dmform-0" id="1092657597"/><input type="hidden" name="label-dmform-0" value="Name" id="1788180481" class=""/></div> 
 <div class="dmforminput required  small-12 dmRespDesignCol medium-12 large-12" id="1516314458" localization_key_label="googleTranslate.25"> <label for="1536319466" id="1235986941" data-dm-for="dmform-1">Email</label> 
<input type="email" class="" name="dmform-1" id="1536319466"/><input type="hidden" name="label-dmform-1" value="Email" id="1636125990" class=""/></div> 
 <div class="dmformsubmit dmWidget R" id="1767695814"><input class="" name="submit" type="submit" value="Submit" id="1705643418" localization_key_value="googleTranslate.26"/></div> 
<input name="dmformsendto" type="hidden" value="O0wrseIfFLt3OvcyEBRuzrn65PxKWaEMQqWXif7Q18/lXyvbW6WpwCQP9ckA0CDlszcPJNDNtVY=" id="1832866085" data-dec="true"/><input class="dmActionInput" type="hidden" name="action" value="/_dm/s/rt/widgets/dmform.submit.jsp" id="1779892475"/><input name="dmformsubject" type="hidden" value="Form Message" id="1972527133" localization_key_value="googleTranslate.27"/><input type="hidden" name="mailChimpIntegrationUUID" value="cbca0f1694e14278a45582d45024f914" id="1444923838"/><input type="hidden" name="mailChimpLists" value="39df9e8dbe" id="1289502760"/><input type="hidden" name="mailChimp_email" value="dmform-1" class="fieldMapper" id="1194844383"/><input type="hidden" name="mailChimp_firstName" value="dmform-0" class="fieldMapper" id="1363112710"/><input type="hidden" name="mailChimp_lastName" value="-1" class="fieldMapper" id="1543704962"/><input name="dmformsubmitparams" type="hidden" value="8mpKnCSiNQXK/d9M7IDrSyY1rakgua3cJ8IbYz7Sy2rnhS7b/3KgEXf7yo5f2w3EmJM4Uu2ykLPP0ai9TtNQjeo7goEAGNXqqBvYcbBUbn4ngdOJaBGsqOOk+vW/FB5M2l7bbXKB8NkHwkP6o+SaUKuVfRAFKg6DI/WcTry9sHJx+8goeq/f9t21rE+fdr6pltmLfunpTfo3iWsgd+GKkQ==" data-dec="true"/><input type="hidden" name="page_uuid" value="3b010c212c964ebaa7d258262b59d3d6"/></form> 
</div> 
 <div class="dmform-success" style="display:none" id="1732884915">Thank you for contacting us.<br id="1835767401"/>We will get back to you as soon as possible</div> 
 <div class="dmform-error" style="display:none" id="1796198136">Oops, there was an error sending your message.<br id="1401441909"/>Please try again later</div> 
</div> 
 <div class="u_1009392468 default dmDefaultGradient align-center inlineMap" data-type="inlineMap" data-lat="40.7879" data-lng="-73.50404" data-address="358 S Oyster Bay Rd, Oyster Bay, NY 11791, United States" data-height="" data-msid="" data-mapurl="" data-lang="en" data-color-scheme="" data-zoom="" data-layout="layout3" data-popup-display="" data-popup-show="false" data-popup-title="" data-popup-title-visible="false" data-popup-description="" data-popup-description-visible="false" id="1009392468" dmle_extension="mapextension" data-element-type="mapextension" modedesktop="map" localization_key_addresstodisplay="googleTranslate.95" modemobile="map" addresstodisplay="358 S Oyster Bay Rd, Oyster Bay, NY 11791, United States" localization_key_geocompleteaddress="googleTranslate.95" geocompleteaddress="358 S Oyster Bay Rd, Oyster Bay, NY 11791, United States" data-popup-display-desktop="" zoom="" data-popup-display-mobile="" data-display-type="block" localization_key_description="googleTranslate.94" layout="layout3" localization_key_country_full="googleTranslate.97" modetablet="map" wr="true" localization_key_country="googleTranslate.96" icon="true" surround="true" description="Find Us" adwords="" icon-name="icon-map-marker" street="" city="" country="US" country_full="United States" state="" zip="" provider="mapbox" lon="-73.50404" lat="40.7879"> <div class="mapContainer" style="height: 100%; width: 100%; overflow: hidden; z-index: 0;"></div> 
</div> 
</div> 
 <div class="dmRespCol medium-6 large-6 u_1675752098 small-12" id="1675752098"> <h2 class="u_1989832929 dmNewParagraph" id="1989832929" style="transition: opacity 1s ease-in-out; display: block;" data-element-type="paragraph"><font style="color: rgb(44, 44, 44);">Contact us</font></h2> <div class="u_1192866494 dmNewParagraph" id="1192866494" style="transition: opacity 1s ease-in-out;"><div><span class="font-size-18 lh-1"><font style="color: rgb(0, 0, 0);"><span style="font-weight: 600;">Address</span></font></span></div></div> <div class="u_1663995526 dmNewParagraph" id="1663995526" style="transition: opacity 1s ease-in-out;"><font color="#000000">Belaray Dermatology</font><div><font color="#000000">358 S. Oyster Bay Road</font><div><font color="#000000">Hicksville NY, 11801</font></div></div></div> <div class="dmNewParagraph" id="1138244399" style="transition: opacity 1s ease-in-out;"><div><span class="font-size-18 lh-1"><font style="color: rgb(0, 0, 0);"><span style="font-weight: 600;">Phone</span></font></span></div></div> <div class="u_1616115560 dmNewParagraph" id="1616115560" style="transition: opacity 1s ease-in-out;"><font color="#000000"><a href="tel:516-822-7546" runtime_url="tel:516-822-7546">(516) 822-7546</a></font></div> <div class="u_1018712057 align-center text-align-center dmSocialHub gapSpacing" id="1018712057" 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://facebook.com/belaray" target="_blank" dm_dont_rewrite_url="true" aria-label="facebook" onclick="dm_gaq_push_event &amp;&amp; dm_gaq_push_event(&apos;socialLink&apos;, &apos;click&apos;, &apos;Facebook&apos;)"> <span class="dmSocialFacebook dm-social-icons-facebook oneIcon socialHubIcon style8" aria-hidden="true" data-hover-effect=""></span> 
</a> 
 <a href="https://twitter.com/belaray" target="_blank" dm_dont_rewrite_url="true" aria-label="twitter" onclick="dm_gaq_push_event &amp;&amp; dm_gaq_push_event(&apos;socialLink&apos;, &apos;click&apos;, &apos;Twitter&apos;)"> <span class="dmSocialTwitter dm-social-icons-twitter oneIcon socialHubIcon style8" aria-hidden="true" data-hover-effect=""></span> 
</a> 
</div> 
</div> 
</div> 
</div> 
</div> 
</div> 
 <div class="u_1545797186 dmRespRow dmMiddleContentRow desktop-no-padding" id="1545797186" data-anim-desktop="fadeIn"> <div class="dmRespColsWrapper" id="1084651449"> <div class="u_1380319922 small-12 dmRespCol dmAboutBottomFirstSection medium-4 large-4" id="1380319922" data-anim-desktop="fadeInUp"> <div class="u_1008160163 imageWidget dmDefaultImg" id="1008160163" data-element-type="image"><img src="https://lirp.cdn-website.com/2d849614/dms3rep/multi/opt/32bdaa77-14ea-491d-adac-6a7c40c1b979-1920w.jpg" id="1748412884" dm_changed="true" class="u_1748412884" data-dm-image-path="https://irp-cdn.multiscreensite.com/2d849614/dms3rep/multi/32bdaa77-14ea-491d-adac-6a7c40c1b979.jpg" onerror="handleImageLoadError(this)"/></div> 
 <div class="u_1622671332 dmNewParagraph" id="1622671332">Dr. Jeffrey Ellis<div>Board Certified&nbsp;</div><div>Mohs Skin Cancer Surgery</div></div></div> 
 <div class="u_1557115810 small-12 dmRespCol dmAboutBottomSecondSection medium-4 large-4" id="1557115810" data-anim-desktop="fadeInUp"> <div class="u_1078190601 imageWidget dmDefaultImg" id="1078190601" data-element-type="image"><img src="https://lirp.cdn-website.com/2d849614/dms3rep/multi/opt/c52e0a6c-4271-4c62-b4ae-81bb770d74f2-1920w.jpg" id="1786498785" dm_changed="true" class="u_1786498785" data-dm-image-path="https://irp-cdn.multiscreensite.com/2d849614/dms3rep/multi/c52e0a6c-4271-4c62-b4ae-81bb770d74f2.jpg" onerror="handleImageLoadError(this)"/></div> 
 <div class="u_1470143894 dmNewParagraph" id="1470143894">Dr. Amy Slear<div>Board Certified</div><div>Pediatric and General Dermatology</div></div></div> 
 <div class="u_1268057037 dmRespCol small-12 medium-4 large-4" id="1268057037" data-anim-desktop="fadeInUp"> <div class="u_1241888238 imageWidget dmDefaultImg" id="1241888238" data-element-type="image"><img src="https://lirp.cdn-website.com/2d849614/dms3rep/multi/opt/82eb89fa-a8d2-4423-816b-e508fe38467a-1920w.jpg" id="1113780853" dm_changed="true" class="u_1113780853" data-dm-image-path="https://irp-cdn.multiscreensite.com/2d849614/dms3rep/multi/82eb89fa-a8d2-4423-816b-e508fe38467a.jpg" onerror="handleImageLoadError(this)"/></div> 
 <div class="u_1771718980 dmNewParagraph" id="1771718980">Dr. Rachel Ellis<div>Board Certified</div><div>Ophthalmic Plastic Facial Reconstruction</div></div></div> 
</div> 
</div> 
 <div class="u_1205422614 dmRespRow dmMiddleContentRow desktop-no-padding" id="1205422614" data-anim-desktop="fadeIn"> <div class="dmRespColsWrapper" id="1306733858"> <div class="u_1258726234 small-12 dmRespCol dmAboutBottomFirstSection medium-4 large-4" id="1258726234" data-anim-desktop="fadeInUp"> <div class="u_1705433863 imageWidget dmDefaultImg" id="1705433863" data-element-type="image"><img src="https://lirp.cdn-website.com/2d849614/dms3rep/multi/opt/ff4006b7-e858-427e-921b-56b349bbbdb5-1920w.jpg" id="1156971549" dm_changed="true" class="u_1156971549" data-dm-image-path="https://irp-cdn.multiscreensite.com/2d849614/dms3rep/multi/ff4006b7-e858-427e-921b-56b349bbbdb5.jpg" onerror="handleImageLoadError(this)"/></div> 
 <div class="u_1699168593 dmNewParagraph" id="1699168593" style="">Dr. Charisse McCall<div>Board Certified</div><div>General &amp; Cosmetic Dermatology</div></div></div> 
 <div class="u_1330221022 small-12 dmRespCol dmAboutBottomSecondSection medium-4 large-4" id="1330221022" data-anim-desktop="fadeInUp"> <div class="u_1894194816 imageWidget dmDefaultImg" id="1894194816" data-element-type="image"><img src="https://lirp.cdn-website.com/2d849614/dms3rep/multi/opt/6085c4b1-3614-4911-a3f5-86c601614cf6-1920w.jpg" id="1734535159" dm_changed="true" class="u_1734535159" data-dm-image-path="https://irp-cdn.multiscreensite.com/2d849614/dms3rep/multi/6085c4b1-3614-4911-a3f5-86c601614cf6.jpg" onerror="handleImageLoadError(this)"/></div> 
 <div class="u_1137093464 dmNewParagraph" id="1137093464">Amrit Kumar, PA<div>Dermatological Physicians Assistant</div><div>Pediatric &amp; General Dermatology</div></div></div> 
 <div class="u_1145895288 dmRespCol small-12 medium-4 large-4" id="1145895288" data-anim-desktop="fadeInUp"> <div class="u_1183364297 imageWidget dmDefaultImg" id="1183364297" data-element-type="image"><img src="https://lirp.cdn-website.com/2d849614/dms3rep/multi/opt/POTRAIT+PICTURE-1920w.jpg" id="1434796911" dm_changed="true" class="u_1434796911" data-dm-image-path="https://irp-cdn.multiscreensite.com/2d849614/dms3rep/multi/POTRAIT+PICTURE.jpg" onerror="handleImageLoadError(this)"/></div> 
 <div class="u_1426615516 dmNewParagraph" id="1426615516">Dr. Luis Berrutti<div>Dermatopathology</div></div></div> 
</div> 
</div> 
 <div class="u_1877317796 dmRespRow desktop-no-padding" style="text-align: center;" id="1877317796"> <div class="dmRespColsWrapper" id="1716596486"> <div class="dmRespCol small-12 medium-12 large-12" id="1511759123"> <h3 class="dmNewParagraph u_1821480278" id="1821480278" style="" data-element-type="paragraph"><span class="size-30 lh-1" style="font-weight: 400;">Services</span></h3> <div class="u_1827776407 dmPhotoGallery dmPhotoGalleryResp newPhotoGallery photo-gallery-done text-layout-bottom captionAlignment-center_center photoGallery" id="1827776407" data-link-gallery="true" data-caption-padding="15px" data-image-hover-effect="zoomout" data-image-animation="fadeIn" data-desktop-layout="asymetric2" data-desktop-columns="2" data-mobile-columns="1" data-rows-to-show="100" data-desktop-text-layout="bottom" data-tablet-layout="square" data-mobile-layout="square" data-element-type="dPhotoGalleryId" data-placeholder="false"> <div class="dmPhotoGalleryHolder clearfix gallery shadowEffectToChildren gallery4inArow" id="1362986591"></div> 
 <div class="layout-container asymetric2"> <div class="photogallery-row " data-index=""> <div class="photogallery-column row-direction column-2" data-index="0" style="width: 30%;"> <div index="0" class="photoGalleryThumbs animated  flex column width-50" data-index="0"> <div class="thumbnailInnerWrapper" style="opacity: 1;"> <div class="image-container revealed"> <a data-dm-multisize-attr="temp" aria-labelledby="1930635866" data-dm-force-device="mobile" class="u_1647766587" data-image-url="https://irp-cdn.multiscreensite.com/2d849614/dms3rep/multi/pediatric.jpeg" style="background-image: url('https://lirp.cdn-website.com/2d849614/dms3rep/multi/opt/pediatric-640w.jpeg');"><img id="1715538911" data-src="https://lirp.cdn-website.com/2d849614/dms3rep/multi/opt/pediatric-1920w.jpeg" alt="" aria-labelledby="1930635866" onerror="handleImageLoadError(this)"/></a> 
</div> 
 <div id="1259463193" class="caption-container u_1259463193" style="display:none"> <span class="caption-inner"> <h3 id="1930635866" class="caption-title u_1930635866">Pediatric</h3> 
 <div id="1580111254" class="caption-text u_1580111254"><p class="rteBlock">Dermatology</p></div> 
 <a id="1803101712" class="caption-button dmWidget  clearfix u_1803101712" href="/pediatric-dermatology" style=""> <span class="iconBg"> <span class="icon hasFontIcon "></span> 
</span> 
 <span class="text">Learn More</span> 
</a> 
</span> 
</div> 
</div> 
</div> 
 <div index="1" class="photoGalleryThumbs animated  flex column width-50" data-index="1"> <div class="thumbnailInnerWrapper" style="opacity: 1;"> <div class="image-container revealed"> <a data-dm-multisize-attr="temp" aria-labelledby="1308715555" data-dm-force-device="mobile" class="u_1265043483" data-image-url="https://irp-cdn.multiscreensite.com/2d849614/dms3rep/multi/acne.jpg" style="background-image: url('https://lirp.cdn-website.com/2d849614/dms3rep/multi/opt/acne-640w.jpg');"><img id="1955484712" data-src="https://lirp.cdn-website.com/2d849614/dms3rep/multi/opt/acne-1920w.jpg" alt="" aria-labelledby="1308715555" onerror="handleImageLoadError(this)"/></a> 
</div> 
 <div id="1815195440" class="caption-container u_1815195440" style="display:none"> <span class="caption-inner"> <h3 id="1308715555" class="caption-title u_1308715555">Medical</h3> 
 <div id="1525934068" class="caption-text u_1525934068"><p class="rteBlock">&nbsp;Dermatology</p></div> 
 <a id="1417440048" class="caption-button dmWidget  clearfix u_1417440048" href="/medical-dermatology" style=""> <span class="iconBg"> <span class="icon hasFontIcon "></span> 
</span> 
 <span class="text">Learn More</span> 
</a> 
</span> 
</div> 
</div> 
</div> 
 <div index="2" class="photoGalleryThumbs animated  flex column width-50" data-index="2"> <div class="thumbnailInnerWrapper" style="opacity: 1;"> <div class="image-container revealed"> <a data-dm-multisize-attr="temp" aria-labelledby="1263682919" data-dm-force-device="mobile" class="u_1607707363" data-image-url="https://irp-cdn.multiscreensite.com/2d849614/dms3rep/multi/Skin+Cancer.jpg" style="background-image: url('https://lirp.cdn-website.com/2d849614/dms3rep/multi/opt/Skin+Cancer-640w.jpg');"><img id="1320002623" data-src="https://lirp.cdn-website.com/2d849614/dms3rep/multi/opt/Skin+Cancer-1920w.jpg" alt="" aria-labelledby="1263682919" onerror="handleImageLoadError(this)"/></a> 
</div> 
 <div id="1349825637" class="caption-container u_1349825637" style="display:none"> <span class="caption-inner"> <h3 id="1263682919" class="caption-title u_1263682919">Surgical</h3> 
 <div id="1791986266" class="caption-text u_1791986266"><p class="rteBlock">Dermatology</p></div> 
 <a id="1046507238" class="caption-button dmWidget  clearfix u_1046507238" href="/surgical-services" style=""> <span class="iconBg"> <span class="icon hasFontIcon "></span> 
</span> 
 <span class="text">Learn More</span> 
</a> 
</span> 
</div> 
</div> 
</div> 
 <div index="3" class="photoGalleryThumbs animated  flex column width-50" data-index="3"> <div class="thumbnailInnerWrapper" style="opacity: 1;"> <div class="image-container revealed"> <a data-dm-multisize-attr="temp" aria-labelledby="1383835056" data-dm-force-device="mobile" class="u_1256957847" data-image-url="https://irp-cdn.multiscreensite.com/2d849614/dms3rep/multi/Eye.jpg" style="background-image: url('https://lirp.cdn-website.com/2d849614/dms3rep/multi/opt/Eye-640w.jpg');"><img id="1651677241" data-src="https://lirp.cdn-website.com/2d849614/dms3rep/multi/opt/Eye-1920w.jpg" alt="" aria-labelledby="1383835056" onerror="handleImageLoadError(this)"/></a> 
</div> 
 <div id="1447332755" class="caption-container u_1447332755" style="display:none"> <span class="caption-inner"> <h3 id="1383835056" class="caption-title u_1383835056">Plastic</h3> 
 <div id="1733975104" class="caption-text u_1733975104"><p class="rteBlock">Surgery</p></div> 
 <a id="1404473209" class="caption-button dmWidget  clearfix u_1404473209" href="/ophthalmic-plastic-facial-reconstruct" style=""> <span class="iconBg"> <span class="icon hasFontIcon "></span> 
</span> 
 <span class="text">Learn More</span> 
</a> 
</span> 
</div> 
</div> 
</div> 
</div> 
 <div class="photogallery-column column-2" data-index="1"> <div index="4" class="photoGalleryThumbs animated  asymetric-big-image" data-index="4"> <div class="thumbnailInnerWrapper" style="opacity: 1;"> <div class="image-container revealed"> <a data-dm-multisize-attr="temp" aria-labelledby="1812089075" data-dm-force-device="mobile" class="u_1683461596 has-link" href="/services" data-image-url="https://irp-cdn.multiscreensite.com/2d849614/dms3rep/multi/a_fashion_magazine_tablet_1600_1067_d-598x533.dm.edit_4vE3Yy.jpg" style="background-image: url('https://lirp.cdn-website.com/2d849614/dms3rep/multi/opt/a_fashion_magazine_tablet_1600_1067_d-598x533.dm.edit_4vE3Yy-640w.jpg');"><img id="1660195500" data-src="https://lirp.cdn-website.com/2d849614/dms3rep/multi/opt/a_fashion_magazine_tablet_1600_1067_d-598x533.dm.edit_4vE3Yy-1920w.jpg" alt="" aria-labelledby="1812089075" onerror="handleImageLoadError(this)"/></a> 
</div> 
 <div id="1144196250" class="caption-container u_1144196250" style=""> <span class="caption-inner"> <h3 id="1812089075" class="caption-title u_1812089075">Cosmetic</h3> 
 <div id="1217428391" class="caption-text u_1217428391"><p class="rteBlock">Services</p></div> 
 <a id="1216683106" class="caption-button dmWidget  clearfix u_1216683106" href="/cosmetic-services" style=""> <span class="iconBg"> <span class="icon hasFontIcon "></span> 
</span> 
 <span class="text">Learn More</span> 
</a> 
</span> 
</div> 
</div> 
</div> 
</div> 
</div> 
</div> 
</div> 
</div> 
</div> 
</div> 
 <div class="dmRespRow dmDefaultListContentRow" style="text-align:center" id="1345650634"> <div class="dmRespColsWrapper" id="1810763555"> <div class="large-12 medium-12 small-12 dmRespCol" id="1206775184"> <span id="1880352182"></span> 
 <div id="1822295925" class="default dmFacebookComments" dmle_comments="true" dmle_extension="facebook_comments" data-element-type="facebook_comments" wr="true" url="" color="light" icon="true" surround="true" adwords=""> <div class="fb-comments" data-href="https://www.belaray.com/blog" data-mobile="false" data-num-posts="10" data-colorscheme="light"></div> 
</div> 
 <div class="imageWidget align-center u_1632753296" data-element-type="image" data-widget-type="image" id="1632753296"><img src="https://lirp.cdn-website.com/2d849614/dms3rep/multi/opt/IMG_1078-1920w.JPG" id="1561316487" class="" data-dm-image-path="https://irp-cdn.multiscreensite.com/2d849614/dms3rep/multi/IMG_1078.JPG" onerror="handleImageLoadError(this)"/></div> 
 <div class="imageWidget align-center u_1339550350" data-element-type="image" data-widget-type="image" id="1339550350"><img src="https://lirp.cdn-website.com/2d849614/dms3rep/multi/opt/IMG_6765-1920w.JPG" id="1476630190" class="" data-dm-image-path="https://irp-cdn.multiscreensite.com/2d849614/dms3rep/multi/IMG_6765.JPG" onerror="handleImageLoadError(this)"/></div> 
</div> 
</div> 
</div> 
 <div class="dmRespRow" style="text-align: center;" id="1468426646"> <div class="dmRespColsWrapper" id="1235808645"> <div class="dmRespCol small-12 medium-12 large-12" id="1479044643"> <span id="1301602822"></span> 
 <div class="dmPrettyList ed-version u_1786611370" data-element-type="dListId" layout="layoutC" id="1786611370" link-element="none" image-element="none" saved-layout="layoutD"> <h3 class="dmwidget-title" hide="false" id="1328161862">Recent Reviews</h3> 
 <ul class="listWidgetContainer clearfix" id="1409547411"> <li class="listItem" id="1791796346"> <a class="biglink clearfix" href="" id="1194555592"> <div class="listImage u_1813569211" id="1813569211"></div> 
 <div class="listText" id="1889362648"> <span class="itemName u_1591681108" id="1591681108">Dec 8 2017</span> 
 <div class="itemText" id="1970676018" style=""><p class="rteBlock">Best care all the time !!!</p></div></div> 
 <span class="link" id="1485204935"> <span class="buttonText" id="1419661510">Item Link</span> 
 <span class="itemName" id="1764593551">List Item  1</span> 
</span> 
</a> 
</li> 
 <li class="listItem" id="1126911745"> <a class="biglink clearfix" href="" id="1438771041"> <div class="listImage" id="1546015570"></div> 
 <div class="listText" id="1125290264"> <span class="itemName" id="1035397183" style="">Dec 8 2017</span> 
 <div class="itemText" id="1169599265" style=""><p class="rteBlock">Very capable office staff- Margarita today was very warm and efficient. Doctor Ellis is extremely professional and most attentive to his patients. It is always a pleasure to be seen at Belaray Dermatology! Thank you!&nbsp;</p></div></div> 
 <span class="link" id="1256714485"> <span class="buttonText" id="1777778423">Item Link</span> 
 <span class="itemName" id="1774661608">List Item  2</span> 
</span> 
</a> 
</li> 
 <li class="listItem" id="1180309901"> <a class="biglink clearfix" href="" id="1678374350"> <div class="listImage" id="1298983437"></div> 
 <div class="listText" id="1004631532"> <span class="itemName" id="1192301525" style="">Dec 8 2017</span> 
 <div class="itemText" id="1142509454" style=""><p class="rteBlock">&nbsp;My entire experience was positive from reception through my procedure and upon my return visit.&nbsp;</p></div> 
</div> 
 <span class="link" id="1493266069"> <span class="buttonText" id="1287194695">Item Link</span> 
 <span class="itemName" id="1235312726">List Item  3</span> 
</span> 
</a> 
</li> 
 <li class="listItem" id="1630036108"> <a class="biglink clearfix" href="" id="1424011268"> <div class="listImage" id="1836722732"></div> 
 <div class="listText" id="1842686572"> <span class="itemName" id="1238959131" style="">Dec 8 2017</span> 
 <div class="itemText" id="1032696076" style=""><p class="rteBlock">&nbsp;Thank you for making me feel comfortable.&nbsp;</p></div></div> 
 <span class="link" id="1489233735"> <span class="buttonText" id="1129347866">Item Link</span> 
 <span class="itemName" id="1059068473">List Item  4</span> 
</span> 
</a> 
</li> 
</ul> 
</div> 
</div> 
</div> 
</div> 
 <div class="dmRespRow" style="text-align: center;" id="1636355389"> <div class="dmRespColsWrapper" id="1307984317"> <div class="dmRespCol small-12 medium-12 large-12" id="1533478533"> <span id="1564030370"></span> 
 <span dmle_extension="yelp" wr="false" icon="false" surround="false" class="default" title="Reviews" displaytitle="true" forcedisplay="false" layout="list" yelpid="belaray-dermatology-pc-hicksville-2" reviewphotos="true" business="Belaray Dermatology PC" requiredrating="3" maxreviews="5" id="1821830749" searchfailed="false" shouldshowsearch="false" yelpurl="http://www.yelp.com/biz/belaray-dermatology-pc-hicksville-2" ext_ajax_load="true" ext_site_alias="2d849614" ext_page_alias="blog" ext_el_id="1821830749" data-element-type="yelp"></span> 
</div> 
</div> 
</div> 
</div> 
</div> 
</div> 
</div> 
</div> 
 <div class="sticky-widgets-container-global" id="1194185240"></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_1912192834 dmRespRow dmFooterContent hide-for-small" id="1912192834"> <div class="dmRespColsWrapper" id="1101766035"> <div class="u_1151159257 dmRespCol dmFooterCol medium-4 large-4 small-12" id="1151159257"> <div class="u_1970226610 dmNewParagraph hide-for-small" id="1970226610"><span><span><font style="color: rgb(17, 65, 75);"><span style="font-weight: 400;">Call or</span> 
 <span style=""><b>Text</b></span><span style="font-weight: 400;">:&nbsp;&nbsp;<a href="tel:516-822-7546" runtime_url="tel:516-822-7546">(516) 822-7546</a>&nbsp; &nbsp;<i>(516)822-SKIN</i></span></font></span></span><div><div><span><span><font style="color: rgb(17, 65, 75);"><span style="font-weight: 400;">Fax:&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;(516) 937-7546</span></font></span></span></div><div><font color="#000000">What3Words <a href="https://w3w.co/trim.nurse.happy" runtime_url="https://w3w.co/trim.nurse.happy" target="_blank">///trim.nurse.happy&nbsp;</a></font></div></div></div></div> 
 <div class="dmRespCol medium-4 large-4 small-12" id="1898685629"> <span id="1004442608"></span> 
 <div class="dmNewParagraph u_1709423228" id="1709423228" style="display: block;"><div style="text-align: center;"><a href="https://goo.gl/maps/THKbSnSXFkt" runtime_url="https://goo.gl/maps/THKbSnSXFkt" target="_blank">Belaray Dermatology</a></div><div><div style="text-align: center;"><a href="https://goo.gl/maps/THKbSnSXFkt" runtime_url="https://goo.gl/maps/THKbSnSXFkt" target="_blank" style="">358 S Oyster Bay Road</a></div><div style="text-align: center;"><font style="color: rgb(17, 65, 75);"><a href="https://goo.gl/maps/THKbSnSXFkt" runtime_url="https://goo.gl/maps/THKbSnSXFkt" target="_blank">Hicksville, NY 11801</a></font></div></div></div> <div class="u_1787744677 default dmSocialHub gapSpacing" id="1787744677" dmle_extension="social_hub" data-element-type="social_hub" extractelementdata="true" wr="false" networks="" icon="false" surround="false"> <div class="socialHubWrapper"> <div class="socialHubInnerDiv vertical"> <a href="https://www.waze.com/ul?ll=40.7879,-73.50404" target="_blank" dm_dont_rewrite_url="true" aria-label="waze" onclick="dm_gaq_push_event &amp;&amp; dm_gaq_push_event(&apos;socialLink&apos;, &apos;click&apos;, &apos;Waze&apos;)"> <span class="dmSocialWaze dm-social-icons-waze oneIcon socialHubIcon style2" aria-hidden="true" data-hover-effect=""></span> 
</a> 
</div> 
</div> 
</div> 
 <div class="dmNewParagraph u_1333456326" id="1333456326" style="display: block;"><div style="text-align: center;"><a href="https://goo.gl/maps/ueZ3XrKjHTkpsHtN7" runtime_url="https://goo.gl/maps/ueZ3XrKjHTkpsHtN7" target="_blank" style="font-size: 1em;">2500 Nesconset Hwy #20B</a><br/></div><div><div style="text-align: center;"><a href="https://goo.gl/maps/ueZ3XrKjHTkpsHtN7" runtime_url="https://goo.gl/maps/ueZ3XrKjHTkpsHtN7" target="_blank">Stony Brook NY 11790</a></div></div></div> <div class="u_1972640825 default dmSocialHub gapSpacing" id="1972640825" dmle_extension="social_hub" data-element-type="social_hub" extractelementdata="true" wr="false" networks="" icon="false" surround="false"> <div class="socialHubWrapper"> <div class="socialHubInnerDiv vertical"> <a href="https://www.waze.com/ul?ll=40.87916,-73.1154" target="_blank" dm_dont_rewrite_url="true" aria-label="waze" onclick="dm_gaq_push_event &amp;&amp; dm_gaq_push_event(&apos;socialLink&apos;, &apos;click&apos;, &apos;Waze&apos;)"> <span class="dmSocialWaze dm-social-icons-waze oneIcon socialHubIcon style2" aria-hidden="true" data-hover-effect=""></span> 
</a> 
</div> 
</div> 
</div> 
</div> 
 <div class="u_1195780814 dmRespCol medium-4 large-4 small-12" id="1195780814"> <span id="1645458957"></span> 
 <div class="u_1829791674 default dmSocialHub gapSpacing" id="1829791674" dmle_extension="social_hub" data-element-type="social_hub" extractelementdata="true" wr="false" networks="" icon="false" surround="false"> <div class="socialHubWrapper"> <div class="socialHubInnerDiv vertical"> <a href="https://www.facebook.com/belaray" target="_blank" dm_dont_rewrite_url="true" aria-label="facebook" onclick="dm_gaq_push_event &amp;&amp; dm_gaq_push_event(&apos;socialLink&apos;, &apos;click&apos;, &apos;Facebook&apos;)"> <span class="dmSocialFacebook dm-social-icons-facebook oneIcon socialHubIcon style2" aria-hidden="true" data-hover-effect=""></span> 
</a> 
 <a href="https://twitter.com/belaray" target="_blank" dm_dont_rewrite_url="true" aria-label="twitter" onclick="dm_gaq_push_event &amp;&amp; dm_gaq_push_event(&apos;socialLink&apos;, &apos;click&apos;, &apos;Twitter&apos;)"> <span class="dmSocialTwitter dm-social-icons-twitter oneIcon socialHubIcon style2" aria-hidden="true" data-hover-effect=""></span> 
</a> 
 <a href="http://instagram.com/belaraydermatology" target="_blank" dm_dont_rewrite_url="true" aria-label="instagram" onclick="dm_gaq_push_event &amp;&amp; dm_gaq_push_event(&apos;socialLink&apos;, &apos;click&apos;, &apos;Instagram&apos;)"> <span class="dmSocialInstagram dm-social-icons-instagram oneIcon socialHubIcon style2" aria-hidden="true" data-hover-effect=""></span> 
</a> 
 <a href="https://belaraydermatology.blogspot.com/" target="_blank" dm_dont_rewrite_url="true" aria-label="Social network" onclick="dm_gaq_push_event &amp;&amp; dm_gaq_push_event(&apos;socialLink&apos;, &apos;click&apos;, &apos;Custom2&apos;)"> <span class="dmSocialCustom2 oneIcon socialHubIcon style2" aria-hidden="true" data-hover-effect=""> <svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewbox="0 0 122.88 95.51"> <defs> <style>.cls-1-undefined{fill-rule:evenodd;}</style> 
</defs> 
 <title>blog</title> 
 <path class="cls-1-undefined" d="M12.6,26.42h96.77V70.15H12.6V26.42Zm9.55,32.23V36.86h11.3q3.13,0,4.47,1.23a4.53,4.53,0,0,1,1.35,3.55,6.44,6.44,0,0,1-.86,3.61,3.9,3.9,0,0,1-2.28,1.65v.21q4.21.73,4.22,5.75a6.14,6.14,0,0,1-1.4,4.2,5.4,5.4,0,0,1-4.28,1.59ZM31.84,50H29.12v3.55h2.69c1,0,1.46-.59,1.46-1.77S32.79,50,31.84,50Zm-.52-8.33h-2.2v3.24h2.17q1.32,0,1.32-1.62t-1.29-1.62Zm26.19,17H43.57V36.86h7V53.07h7v5.58Zm1.66-10.88q0-6,2.23-8.69c1.48-1.83,4.17-2.74,8.05-2.74s6.56.91,8,2.74,2.23,4.72,2.23,8.69a22.66,22.66,0,0,1-.47,5,9.33,9.33,0,0,1-1.62,3.52,6.58,6.58,0,0,1-3.17,2.19,15.46,15.46,0,0,1-5,.7,15.41,15.41,0,0,1-5-.7,6.49,6.49,0,0,1-3.17-2.19,9,9,0,0,1-1.62-3.52,22.07,22.07,0,0,1-.47-5Zm7.49-3.62v9.06h2.89a4.86,4.86,0,0,0,2.08-.33c.43-.22.64-.73.64-1.52V42.3H69.34a4.72,4.72,0,0,0-2,.33c-.43.22-.64.73-.64,1.52ZM94.1,52.23v-.94H92.33V46h8.4V57.6a24,24,0,0,1-8.58,1.57q-6,0-8.19-2.89a9,9,0,0,1-1.6-3.52,23.52,23.52,0,0,1-.45-5,22,22,0,0,1,.47-5,8.47,8.47,0,0,1,1.69-3.5q2.3-2.93,8.88-2.93a28.26,28.26,0,0,1,3.54.28,18,18,0,0,1,3.19.63l-1.05,5.33a30.75,30.75,0,0,0-5.1-.49,10.29,10.29,0,0,0-3.21.35,1.36,1.36,0,0,0-.92,1.4V53.7h2.3a4.78,4.78,0,0,0,1.83-.26c.38-.18.57-.58.57-1.21ZM8.32,0H114.56a8.34,8.34,0,0,1,8.32,8.32V87.19a8.35,8.35,0,0,1-8.32,8.32H8.32A8.34,8.34,0,0,1,0,87.19V8.32A8.34,8.34,0,0,1,8.32,0ZM118,20.1H5.29V88a2.29,2.29,0,0,0,2.3,2.3h108a2.29,2.29,0,0,0,2.3-2.3V20.1ZM106.64,7.22a4.11,4.11,0,1,1-4.11,4.11,4.11,4.11,0,0,1,4.11-4.11Zm-27.84,0a4.11,4.11,0,1,1-4.11,4.11A4.11,4.11,0,0,1,78.8,7.22Zm13.92,0a4.11,4.11,0,1,1-4.11,4.11,4.11,4.11,0,0,1,4.11-4.11ZM66.87,84.74a3.51,3.51,0,0,1,0-7h39.65a3.51,3.51,0,0,1,0,7ZM15,84.74a3.52,3.52,0,0,1,0-7H51.72a3.52,3.52,0,0,1,0,7Z"></path> 
</svg> 
</span> 
</a> 
</div> 
</div> 
</div> 
 <div class="u_1350416988 dmNewParagraph" data-element-type="paragraph" id="1350416988" style="transition: opacity 1s ease-in-out 0s;" spellcheck="false"><font style="color: rgb(75, 176, 219);"><a href="/newpage" runtime_url="/newpage">Terms of Use &amp; Privacy</a></font> <div><a href="/educational-resources" runtime_url="/educational-resources">Education</a></div> 
</div></div> 
</div> 
</div> 
 <div class="u_1524304528 dmRespRow" style="text-align: center;" id="1524304528"> <div class="dmRespColsWrapper" id="1293234467"> <div class="dmRespCol small-12 medium-12 large-12" id="1589374135"> <div class="dmNewParagraph" id="1476264694" style="text-align: center;"><div><div><b style="font-size: 1em;">Navigation to Belaray Dermatology</b><br/></div><div><b>Hicksville: What3Words <a href="https://w3w.co/trim.nurse.happy" runtime_url="https://w3w.co/trim.nurse.happy" target="_blank">/// trim.nurse.happy</a></b></div><div><b>Stony Brook: What3Words</b> 
 <a href="https://w3w.co/private.faced.premium" runtime_url="https://w3w.co/private.faced.premium" target="_blank"><b>///private.faced.premium</b></a></div></div></div> <div data-element-type="html" class="dmCustomHtml" id="1554332715"></div> 
</div> 
</div> 
 <script type="text/javascript">


!function(){var b=function(){window.__AudioEyeSiteHash = "4a2e81c8cb6ed3452870abb277a8bf0b"; var a=document.createElement("script");a.src="https://wsmcdn.audioeye.com/aem.js";a.type="text/javascript";a.setAttribute("async","");document.getElementsByTagName("body")[0].appendChild(a)};"complete"!==document.readyState?window.addEventListener?window.addEventListener("load",b):window.attachEvent&&window.attachEvent("onload",b):b()}();                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

      </script> 
</div> 
 <div class="u_1833910788 dmRespRow hide-for-small" id="1833910788"> <div class="dmRespColsWrapper" id="1398042259"> <div class="dmRespCol large-12 medium-12 small-12" id="1011130892"> <div data-element-type="html" class="dmCustomHtml" id="1309456113"><!-- Missive Chat --> <script>


      (function(d, w) {
    w.MissiveChatConfig = {
      "id": "4105bc04-d109-4f4a-bf2f-554d40f5a6d5"
    };
    var s = d.createElement('script');
    s.async = true;
    s.src = 'https://webchat.missiveapp.com/' + w.MissiveChatConfig.id + '/missive.js';
    if (d.head) d.head.appendChild(s);
  })(document, window);
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             

            </script> 
<!-- /Missive Chat --></div> 
</div> 
</div> 
</div> 
 <div class="u_1811195104 dmRespRow hide-for-medium hide-for-large" id="1811195104"> <div class="dmRespColsWrapper" id="1542264562"> <div class="dmRespCol large-12 medium-12 small-12" id="1749204513"> <div data-element-type="html" class="dmCustomHtml" id="1219527541"> <script>


var ctaData;
(function (d, l, i, h, s) {
h = d.getElementsByTagName('head')[0];
s = d.createElement('script');
s.async = 1;
s.src = l;
ctaData = i;
h.appendChild(s);
}(document, 'https://tools.simpletexting.com/assets/ctaviewer.js?v=1.0', 'eyJkYXRhIjp7ImlzUG93ZXJlZCI6ZmFsc2UsImZvbGRlciI6Imh0dHBzOi8vdG9vbHMuc2ltcGxldGV4dGluZy5jb20vIiwic2l6ZSI6MjEsImNvbG9yIjoiIzIzOTlGMCIsImZvbnQiOiJPcGVuIFNhbnMiLCJyZWFzb24iOiJUZXh0IERFTU8gdG8gNTU1ODg4IiwicmVhc29uQWxpZ24iOiJjZW50ZXIiLCJyZWFzb25XZWlnaHQiOiJib2xkIiwicmVhc29uSXRhbGljIjoiIiwic2Vjb25kYXJ5U2l6ZSI6MTUsInNlY29uZGFyeUZvbnQiOiJSdWJpayIsInNlY29uZGFyeUNvbG9yIjoiIzc1ODQ5QyIsInNlY29uZGFyeVJlYXNvbiI6Ildl4oCZbGwgc2VuZCB5b3UgYSBxdWljayB2aWRlbyB0aGF0IHNob3dzIHlvdSBob3cgdG8gdXNlIHRoaXMgdG9vbCB0byBncm93IHlvdXIgc3Vic2NyaWJlciBsaXN0LiIsInNlY29uZGFyeVJlYXNvbkFsaWduIjoiY2VudGVyIiwic2Vjb25kYXJ5UmVhc29uV2VpZ2h0IjoiIiwic2Vjb25kYXJ5UmVhc29uSXRhbGljIjoiIiwiY29tcGFueSI6IllvdXIgQ29tcGFueSBOYW1lIiwiZXN0aW1hdGVkIjo0LCJlbWFpbCI6ImVtYWlsQGRvbWFpbi5jb20iLCJjdXN0b21Qcml2YWN5IjpmYWxzZSwidGVybXMiOiIiLCJwcml2YWN5IjoiIiwiY29tcGxpYW5jZUZvbnQiOiJSdWJpayIsImNvbXBsaWFuY2VTaXplIjo5LCJjb21wbGlhbmNlQ29sb3IiOiIjNzU4NDljIiwiY29tcGxpYW5jZUFsaWduIjoiY2VudGVyIiwiY29tcGxpYW5jZVdlaWdodCI6IiIsImNvbXBsaWFuY2VJdGFsaWMiOiIiLCJsb2dvIjoiaHR0cHM6Ly90b29scy5zaW1wbGV0ZXh0aW5nLmNvbS9hc3NldHMvdGVtcGxhdGVzL0NUQS1TaW1wbGVUZXh0aW5nX2xvZ28ucG5nIiwibG9nb1N0eWxlIjoiYm94ZWQiLCJsb2dvQWxpZ24iOiJjZW50ZXIiLCJsb2dvTWF4V2lkdGgiOjEzMCwiaHlwZXJsaW5rIjoiIiwiaW1hZ2UiOiJodHRwczovL3Rvb2xzLnNpbXBsZXRleHRpbmcuY29tL2Fzc2V0cy90ZW1wbGF0ZXMvQ1RBLVNpbXBsZVRleHRpbmdfaGVyby5wbmciLCJpbWFnZVdpZHRoIjozNTAsImltYWdlQWxpZ24iOiJjZW50ZXIiLCJpbWFnZVN0eWxlIjoiYm94ZWQiLCJwb3NpdGlvbiI6ImN0YS1ib3hlZCIsImNvbG9yQSI6IiM3NTg0OUMiLCJzdHJva2UiOiIjZmZmZmZmIiwiYmFja2dyb3VuZCI6IiNGRkZGRkYiLCJjb3JuZXIiOjgsInNoYWRvdyI6IjBweCAxNnB4IDY0cHggcmdiYSgwLDAsMCwwLjA4KSIsImZvbnRBIjoiUnViaWsiLCJzaXplQSI6MTYsIndpZHRoIjo0NTAsImNsb3NlUG9zaXRpb24iOiJjdGEtY2xvc2UtdHIiLCJrZXl3b3JkIjoiIiwicGhvbmUiOiI1NTU4ODgiLCJzaG9ydFRlcm1zIjoiIiwic2hvcnRUZXJtc1ByaXZhY3kiOiIiLCJzaG9ydFByaXZhY3kiOiIiLCJtYWluQnV0dG9uRm9udCI6IlJ1YmlrIiwibWFpbkJ1dHRvbkZvbnRDb2xvciI6IiNmZmZmZmYiLCJtYWluQnV0dG9uRm9udFNpemUiOjE2LCJtYWluQnV0dG9uQWxpZ24iOiJjZW50ZXIiLCJtYWluQnV0dG9uV2VpZ2h0IjoiIiwibWFpbkJ1dHRvbkl0YWxpYyI6IiIsIm1haW5CdXR0b25TaGFkb3ciOiIwcHggMHB4IDBweCByZ2JhKDAsMCwwLDAuMCkiLCJtYWluQnV0dG9uQ29ybmVyIjo4LCJtYWluQnV0dG9uU3Ryb2tlIjoiIzIzOTlGMCIsIm1haW5CdXR0b25CYWNrZ3JvdW5kIjoiIzIzOTlGMCIsIm1haW5CdXR0b25MYWJlbCI6IldhdGNoIGEgZGVtbyIsIm1haW5CdXR0b25UeXBlIjoiY3RhLWxhYmVsLXRleHRpY29ubCIsIm1haW5CdXR0b25JY29uIjoicGFjay1tZXNzYWdlLWNpcmNsZSIsInRyaWdnZXJCdXR0b25Gb250IjoiUnViaWsiLCJ0cmlnZ2VyQnV0dG9uRm9udENvbG9yIjoiI2ZmZmZmZiIsInRyaWdnZXJCdXR0b25Gb250U2l6ZSI6MTYsInRyaWdnZXJCdXR0b25BbGlnbiI6InJpZ2h0IiwidHJpZ2dlckJ1dHRvbldlaWdodCI6IiIsInRyaWdnZXJCdXR0b25JdGFsaWMiOiIiLCJ0cmlnZ2VyQnV0dG9uU2hhZG93IjoiMHB4IDE2cHggNjRweCByZ2JhKDAsMCwwLDAuMDgpIiwidHJpZ2dlckJ1dHRvbkNvcm5lciI6OCwidHJpZ2dlckJ1dHRvblN0cm9rZSI6IiMyMzk5RjAiLCJ0cmlnZ2VyQnV0dG9uQmFja2dyb3VuZCI6IiMyMzk5RjAiLCJ0cmlnZ2VyQnV0dG9uTGFiZWwiOiJXYXRjaCBhIGRlbW8iLCJ0cmlnZ2VyQnV0dG9uVHlwZSI6ImN0YS1sYWJlbC10ZXh0aWNvbmwiLCJ0cmlnZ2VyQnV0dG9uSWNvbiI6InBhY2stbWVzc2FnZS1jaXJjbGUiLCJ0ZXh0VXNCdXR0b25OdW1iZXIiOiI1MTY4MjI3NTQ2IiwidGV4dFVzQnV0dG9uVGV4dCI6IkhpIEJlbGFyYXkgRGVybS4gIENhbiB5b3UgaGVscCBtZSB3aXRoOiAiLCJ0ZXh0VXNCdXR0b25Gb250IjoiUnViaWsiLCJ0ZXh0VXNCdXR0b25Gb250Q29sb3IiOiIjZmZmZmZmIiwidGV4dFVzQnV0dG9uRm9udFNpemUiOjE2LCJ0ZXh0VXNCdXR0b25BbGlnbiI6InJpZ2h0IiwidGV4dFVzQnV0dG9uV2VpZ2h0IjoiIiwidGV4dFVzQnV0dG9uSXRhbGljIjoiIiwidGV4dFVzQnV0dG9uU2hhZG93IjoiMHB4IDE2cHggNjRweCByZ2JhKDAsMCwwLDAuMDgpIiwidGV4dFVzQnV0dG9uQ29ybmVyIjo4LCJ0ZXh0VXNCdXR0b25TdHJva2UiOiIjMjM5OUYwIiwidGV4dFVzQnV0dG9uQmFja2dyb3VuZCI6IiMyMzk5RjAiLCJ0ZXh0VXNCdXR0b25MYWJlbCI6IlRleHQgVXMiLCJ0ZXh0VXNCdXR0b25UeXBlIjoiY3RhLWxhYmVsLXRleHRpY29ubCIsInRleHRVc0J1dHRvbkljb24iOiJwYWNrLW1lc3NhZ2UtY2lyY2xlIn0sImJlaGF2aW9yIjp7ImRpc3BsYXlPbkRlc2t0b3AiOnRydWUsImRpc3BsYXlPbk1vYmlsZSI6dHJ1ZSwicG9zaXRpb24iOiJjdGEtcG9zaXRpb24tYnIiLCJib3R0b20iOjMyLCJsZWZ0IjozMiwicmlnaHQiOjMyLCJhdXRvT3BlbiI6ZmFsc2UsImRlbGF5IjoxMDAwfSwibGF5b3V0TmFtZSI6IkNsaWNrLXRvLVRleHQgQnV0dG9uIn0='));
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        

            </script> 
</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 id="swh-c30f95b8d16a488f8791f6b48afb9f5f"> <div data-wrapper-source="appstore"> <script>    if (window.location.search.match(/[?,&]preview=true/) && window.top !== window) {      window.__AudioEyePreviewMode=true;    }  </script> 
 <script type="text/javascript">!function(){    var b=function(){      window.__AudioEyeSiteHash = "3ec751361e5ca56378a5f763fa7e0e96";      window.__AudioEyeInstallSource = "duda";      var a=document.createElement("script");      a.src="https://wsmcdn.audioeye.com/aem.js";      a.type="text/javascript";      a.setAttribute("async","");      document.getElementsByTagName("body")[0].appendChild(a)};      "complete"!==document.readyState?window.addEventListener?window.addEventListener("load",b):window.attachEvent&&window.attachEvent("onload",b):b()}();    </script> 
</div> 
</div> 
</div> 
</div> 
</div> 
</div> 
</div> 
</div> 
</div> 
</div> 

    </div>
</div>
<!--  Add full CSS and Javascript before the close tag of the body if needed -->
<!-- ========= JS Section ========= -->
<script>
    var isWLR = false;

    window.customWidgetsFunctions = {};
    window.customWidgetsStrings = {};
    window.collections = {};
    window.currentLanguage = "ENGLISH"
    window.isSitePreview = false;
</script>
<script>
    window.customWidgetsFunctions["5bd886efb15a44fd98f083f461519ec8~232"] = function (element, data, api) {
        
$(element).find('a').each(function() {
    var href = buildNewHref(cleanPhoneText(data.config.waNumber), cleanAndEncodeText(data.config.defaultMessage));
    $(this).attr('href', href);
    
    function handleClick(){
        dm_gaq_push_event && dm_gaq_push_event('Whatsapp', 'click')
        window.dmsnowplow && window.snowplow('trackStructEvent', 'Whatsapp-share','click')
    }
    
    element.addEventListener("click", handleClick)

})

function cleanPhoneText(phone) {
    return phone ? phone.replace(/[^0-9]/g, '') : "";
}

function cleanAndEncodeText(text) {
    var returnString="";
    if (text) {
        returnString = text.replace(/<br>/g, '\n');
        returnString = encodeURIComponent(returnString);
    }
    return returnString;
}

function buildNewHref (phone, text) {
    return "https://wa.me/" + ( phone ? ( phone + '?' ) : '?' ) + "text=" + text;
}

    };
</script>
<script type="text/javascript">

    var d_version = "production_6404";
    var build = "2026-04-29T10_48_40";
    window['v' + 'ersion'] = d_version;

    function buildEditorParent() {
        window.isMultiScreen = true;
        window.editorParent = {};
        window.previewParent = {};
        window.assetsCacheQueryParam = "?version=2026-04-29T10_48_40";
        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["common.resources.dist.cdn"] =true;
    rtCommonProps["common.build.dist.folder"] = 'production/6404';
    rtCommonProps["common.resources.cdn.host"] = 'https://static.cdn-website.com';
    rtCommonProps["common.resources.folder"] = 'https://static.cdn-website.com/mnlt/production/6404';
    rtCommonProps["feature.flag.runtime.backgroundSlider.preload.slowly"] =true;
    rtCommonProps["feature.flag.runtime.newAnimation.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["booking.cal.api.domain"] = 'api.cal.com';

    
    rtCommonProps['common.mapsProvider'] = 'mapbox';
    
    rtCommonProps['common.mapsProvider.version'] = '0.52.0';
    rtCommonProps['common.geocodeProvider'] = 'mapbox';
    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"] =false;
    rtCommonProps["site.widget.form.captcha.type"] = 'g_recaptcha';
    rtCommonProps["friendly.captcha.site.key"] = 'FCMGSQG9GVNMFS8K';
    rtCommonProps["cookiebot.mapbox.consent.category"] = 'marketing';
    rtCommonProps["termly.mapbox.consent.category"] = 'performance';
    // 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["fnb.animations.tracking.enabled"] =true;
    rtFlags["ecom.ecwidNewUrlStructure.enabled"] = false;
    rtFlags["ecom.ecwid.accountPage.emptyBaseUrl.enabled"] = true;
    rtFlags["ecom.ecwid.pages.links.disable.listeners"] = true;
    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["runtime.lottieOverflow"] =false;
    rtFlags["runtime.monitoring.sentry.ignoreErrors"] = "";
    rtFlags["streamline.monolith.personalization.supportMultipleConditions.enabled"] =false;
    rtFlags["flex.animation.design.panel.layout"] =true;
    rtFlags["runtime.cwv.report.cls.enabled"] =false;
    rtFlags["runtime.cwv.report.lcp.enabled"] =false;
    rtFlags["contact.form.useActiveForm"] =true;
    rtFlags["contact.form.custom.errors.enabled"] =false;
    rtFlags["runtime.ssr.productStore.internal.observer"] =true;
    rtFlags["runtime.ssr.productCustomizations"] =true;
    rtFlags["runtime.ssr.runtime.filter-sort.newFilterSortWidgetWithOptions.enabled"] =true;
    rtFlags["runtime.ssr.ssrSlider.jumpThreshold.enabled"] =true;
</script>
<script src="https://static.cdn-website.com/mnlt/production/6404/_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/6404/_dm/s/rt/dist/scripts/d-js-jquery-migrate.min.js" ></script>
<script>
    
    $(window).bind("orientationchange", function (e) {
        $.layoutManager.initLayout();
        
    });
    $(document).resize(function () {
        
    });
</script>












<script type="text/javascript" id="d_track_campaign">
    (function() {
        if (!window.location.search) {
            return;
        }
        const cleanParams = window.location.search.substring(1); // Strip ?
        const queryParams = cleanParams.split('&');

        const expires = 'expires=' + new Date().getTime() + 24 * 60 * 60 * 1000;
        const domain = 'domain=' + window.location.hostname;
        const path = "path=/";

        queryParams.forEach((param) => {
            const [key, value = ''] = param.split('=');
            if (key.startsWith('utm_')) {
                const cookieName = "_dm_rt_" + key.substring(4);
                const cookie = cookieName + "=" + value;
                const joined = [cookie, expires, domain, path].join(";");
                document.cookie = joined;
            }
        });
    }());
</script>
<script type="text/javascript" >
    var _dm_gaq = {};
    var _gaq = _gaq || [];
    var _dm_insite = [];
</script>




<script async src="https://www.googletagmanager.com/gtag/js?id=UA-110992159-1"></script>

<script type="text/javascript" id="d_track_ga">
    window.dataLayer = window.dataLayer || [];
    _dm_gaq.siteAlias = '2d849614';
    _dm_gaq.externalGaqID = 'non-empty';

    function gtag() { dataLayer.push(arguments); }

    function pushInsiteImpressions(id) {
        _dm_insite.forEach((rule) => {
            _dm_gaq.pushEvent(id, 'insite_impression', 'insite', rule.ruleType + '__' + rule.ruleId);
        });
    }

    _dm_gaq.pushEvent = function(trackingId, event, category, label, value, additionalParams = {}) {
        const eventProps = {
            event_category: category,
            event_label: label,
            value,
            ...additionalParams
        };
        gtag('event', event, eventProps);
    }

    gtag('js', new Date())

    
gtag('set', 'developer_id.dMDU5Nj', true);
gtag('config', 'UA-110992159-1', {
    'send_page_view': false,
    'linker': {
        'domains': ['www.belaray.com']
    }
});

    _dm_gaq.pushEvent('', 'page_view');

    pushInsiteImpressions(_dm_gaq.externalGaqID);
</script>


<script type="text/javascript" id="d_track_sp">
    ;(function(p,l,o,w,i,n,g){if(!p[i]){p.GlobalSnowplowNamespace=p.GlobalSnowplowNamespace||[];
        p.GlobalSnowplowNamespace.push(i);p[i]=function(){(p[i].q=p[i].q||[]).push(arguments)
        };p[i].q=p[i].q||[];n=l.createElement(o);g=l.getElementsByTagName(o)[0];n.async=1;
        n.src=w;g.parentNode.insertBefore(n,g)}}(window,document,"script","//d32hwlnfiv2gyn.cloudfront.net/sp-2.0.0-dm-0.1.min.js","snowplow"));
    window.dmsnowplow  = window.snowplow;

    dmsnowplow('newTracker', 'cf', 'd32hwlnfiv2gyn.cloudfront.net', { // Initialise a tracker
        appId: '2d849614'
    });

    // 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: 2d849614 -->
<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 -->
<!--  Site Wide Html Markup -->
<!--  Site Wide Html Markup -->
</body>
</html>
