




<!DOCTYPE html>






    










<html lang="en"
      
        
      
      
        

        

        
        
            
        
        
        
        
        

      class="pb-page"
         data-request-id="a08be477cc5e5571-SJC"  

>

    
        <head data-pb-dropzone="head">
            

<meta charset="UTF-8">






    
        
            
                
                
<title></title>





                
            
        
    
        
            
        
    







    
        
            
        
    
        
            
        
    










    









    

    
    

    
    
    
    
        
            
            
            
                
            
        
    

<link rel="stylesheet" type="text/css" href="/wro/c9c934ccfce76d0140d0106988a6b807870f8331~product.css">
    <link rel="stylesheet" href="/products/achs/releasedAssets/css/build-f150d96e6ab3099955e0.css"/>




















    
        
            
                
                
                
                
                
            
        
    
        
            
                
                
                
                    
                    










<meta name="robots" content="noarchive,noindex,nofollow"/>







    <meta name="event_group_key" content="3510e0cd-fd37-4545-b6dc-2f929207468b"/>







    






    
    
        
        
        
        
        
        
    






    <meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=10, user-scalable=1"/>
















<meta name="format-detection" content="telephone=no">
                    
                
            
        
    




<meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta http-equiv="content-type" content="text/html; charset=UTF-8">
<link rel="stylesheet" type="text/css" href="/pb-assets/styles/achs-1741976108227.css">
<link rel="stylesheet" type="text/css" href="/pb-assets/styles/acs-1721719115433.css">
<script type="text/javascript" src="/templates/jsp/js/jquery-3.1.1.min.js" nonce="a08be477cc5e5571-SJC"></script>
<script type="text/javascript" src="/pb-assets/javascript/eloqua-1619549134767.js" nonce="a08be477cc5e5571-SJC"></script>


<script defer src="https://static.cloudflareinsights.com/beacon.min.js" data-cf-beacon='{"rayId":"5200035e6e4d5180","startTime":1570117212010}' nonce="a08be477cc5e5571-SJC"></script>
<script defer src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194" integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw==" data-cf-beacon='{"rayId":"7224ce26191e6f50","token":"0562ec7bcba14d1cae3543aa43d6e749","version":"2022.6.0","si":100}' crossorigin="anonymous" nonce="a08be477cc5e5571-SJC"></script>

<!-- ACHS-7903: Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-Q72ZQB7GTR" nonce="a08be477cc5e5571-SJC"></script>
<script nonce="a08be477cc5e5571-SJC">
  window.dataLayer = window.dataLayer || [];
  function gtag(){dataLayer.push(arguments);}
  gtag('js', new Date());

  gtag('config', 'G-Q72ZQB7GTR');
</script>


<!-- ACHS-9596 -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-XP5JV6H8Q6" nonce="a08be477cc5e5571-SJC"></script>
<script nonce="a08be477cc5e5571-SJC">
  window.dataLayer = window.dataLayer || [];
  function gtag(){dataLayer.push(arguments);}
  gtag('js', new Date());

  gtag('config', 'G-XP5JV6H8Q6');
</script>


<!-- ACHS-10628 -->
<script type="text/javascript" src="https://pubsbc.acs.org/script.js" nonce="a08be477cc5e5571-SJC"></script>











    
    
        
            
            
            <link rel="canonical" href="https://pubs.acs.org/action/cookieAbsent">
        
        
    






<!-- loading Javascript for using the persistence Service -->
    <script src="/wro/c9c934ccfce76d0140d0106988a6b807870f8331~thiss-ds.js" async nonce="a08be477cc5e5571-SJC"></script>

    <script type="text/javascript" nonce="a08be477cc5e5571-SJC">

        var SeamlessAccessService = {
            spUrl: "/action/ssostart",
            returnURL: window.location.href,
            my_context: 'seamlessaccess.org',
            timeout: 5000,
            _persistenceService: null,
            _getPersistenceService: function () {
                if (!this._persistenceService) {
                    this._persistenceService = new thiss.PersistenceService('https://service.seamlessaccess.org/ps/');
                }
                return this._persistenceService;
            },

            getWAYFLessUrl: function (entityId) {
                return this.spUrl + "?idp=" + encodeURIComponent(entityId)
                    + "&redirectUri=" + encodeURIComponent(this.returnURL);
            },
            retrieveEntity: function (ms) {
                var self = this;
                var persistService = this._getPersistenceService();

                if (ms == undefined || ms === '') {
                    ms = this.timeout;
                }

                return new Promise(function (resolve, reject) {
                    persistService.entities(self.my_context)
                        .then(function (res) {
                            return resolve(res.data);
                        }, function (err) {
                            // failed
                            reject('failed to retrieve entity from local storage: ' + err);
                        });
                    // Set up the timeout
                    setTimeout(function () {
                        reject('Promise timed out ' + ms + ' ms');
                    }, ms);
                });
            },
            updateEntity: function (entitydata) {
                var self = this;
                var persistService = this._getPersistenceService();

                var jsonObj = {};
                try {
                    //try to parse it, if it is a json string
                    jsonObj = JSON.parse(entitydata.val());
                } catch (e) {
                    jsonObj = entitydata;
                }
                return new Promise(function (resolve, reject) {
                    persistService.update(self.my_context, jsonObj)
                        .then(function (res) {
                            // Process the results
                            var ssoInstitutions = res.data;
                            return resolve(ssoInstitutions);
                        }, function (err) {
                            // failed
                            console.log('failed to update the local storage due to: ' + err);
                            reject(err);
                        });
                })
            },
            removeEntity: function (entityId) {
                var self = this;
                var persistService = this._getPersistenceService();

                return new Promise(function (resolve) {
                    persistService.remove(self.my_context, entityId)
                        .then(function (res) {
                            return resolve(res);
                        }, function (err) {
                            // failed
                            console.log('failed to remove from local storage duo to: ' + err);
                        });
                })
            },
            getAccessibleEntityStatus: function (doi, entityId, entityTitle) {
                return new Promise(function (resolve, reject) {
                    $.ajax({
                        type: 'POST',
                        url: '/action/seamlessAccess',
                        accept: {
                            text: "application/json"
                        },
                        data: {
                            doi: doi,
                            entityid: entityId,
                            entityTitle: entityTitle,
                            eventGroupKey: '3510e0cd-fd37-4545-b6dc-2f929207468b'
                        }

                    }).done(function (status) {
                        return resolve(status);
                    }).fail(function (status) {
                        return reject(status);
                    });
                });
            },
            getEntitiesWithAllInfo: function (doi) {
                let self = this,
                    arrayOfPromises = [];
                return new Promise(function (resolve, reject) {
                    self.retrieveEntity().then(function (res) {
                        let allSsoInstitutions = res;
                        for (i = 0; i < allSsoInstitutions.length; i++) {
                            let ssoInstitution = allSsoInstitutions[i];
                            arrayOfPromises.push(new Promise(function (resolve) {
                                self.getAccessibleEntityStatus(doi, ssoInstitution.entity.entityID, ssoInstitution.entity.title)
                                    .then(function (entityStatus) {
                                        resolve({
                                            entityID: ssoInstitution.entity.entityID,
                                            entityTitle: ssoInstitution.entity.title,
                                            entityStatusObj: entityStatus,
                                            entitySsoUrl: self.getWAYFLessUrl(ssoInstitution.entity.entityID)
                                        });
                                    }, function (err) {
                                        console.log('failed to get the entity status: ' + ssoInstitution.entity.entityID,err);
                                    });
                            }));
                        }
                        if(allSsoInstitutions.length === 0 && true){
                            self.getAccessibleEntityStatus(doi, null, null)
                                .then(function () {
                                    console.log('No Entity found');
                                }, function (err) {
                                    console.log('failed to get the none entity status' ,err);
                                });
                        }
                        Promise.all(arrayOfPromises)
                            .then(function (finalResponse) {
                                resolve(finalResponse);
                            }).catch(function (err) {
                                reject(err);
                            });

                    }).catch(function (err) {
                        reject(err);
                    })
                });
            }
        };

        window.addEventListener('load', function () {
            document.querySelectorAll(".sso-institution").forEach(function (institution) {
                var entityId = institution.getAttribute('data-entityid');
                var entityName = institution.getAttribute('data-name');
                var entitydata = {
                    entityID: entityId,
                    title: entityName
                };
                institution.addEventListener("click", function (e) {
                    e.preventDefault();

                    if ($('.institution-preference-userconsent-checkbox').length > 0) {
                        let institutionPreferenceUserConsentCheckbox = $('.institution-preference-userconsent-checkbox').get(0);
                        if (!$(institutionPreferenceUserConsentCheckbox).is(":checked")) {
                            return;
                        }
                    }

                    var self = this;
                    SeamlessAccessService.updateEntity(entitydata).then(function (res) {
                        console.log(res);
                        window.location.href = self.href;
                    }).catch(function (err) {
                        window.location.href = self.href;
                    });
                });
            });
        });

    </script>

    <script nonce="a08be477cc5e5571-SJC">
        (function() {
            function isBrowserChrome() {
                return /Chrome/.test(navigator.userAgent) && /Google Inc/.test(navigator.vendor);
            }

            if (isBrowserChrome()) {
                const originTrialToken = 'AqvyZOCDq6W6Q9D+To+LSEOSztQgEaIZ1WW13TtcGHR/lf3NbAMwKFLfXztN1v4QV99Tfn7iC630Z90KBcZV9QIAAAB+eyJvcmlnaW4iOiJodHRwczovL3B1YnMuYWNzLm9yZzo0NDMiLCJmZWF0dXJlIjoiRGlzYWJsZVRoaXJkUGFydHlTdG9yYWdlUGFydGl0aW9uaW5nMyIsImV4cGlyeSI6MTc1Nzk4MDgwMCwiaXNTdWJkb21haW4iOnRydWV9';
                const originTrialMetaTag = document.createElement('meta');
                originTrialMetaTag.httpEquiv = 'origin-trial';
                originTrialMetaTag.content = originTrialToken;
                document.head.append(originTrialMetaTag);
            }
        })();
    </script>
    





    <meta name="google-site-verification" content="uBHpu2M2kL7VihPCSRXWyBSxooDf7L_BGgfHA3cjSfY" />


<link rel="prefetch" href="https://tpc.googlesyndication.com/safeframe/1-0-29/html/container.html">

<link rel="shortcut icon" href="/pb-assets/ux3/favicon-1635812676023.ico">
<meta name="pbContext" content=";wgroup:string:ACHS website Group;page:string:Cookie Absent;website:website:acspubs">
        </head>
    

    



    
        
        
        
            <body
                    class="pb-ui website-acspubs">
            






    
    
        















        <div id="pb-page-content" data-ng-non-bindable>
                
            <div data-pb-dropzone="main" data-pb-dropzone-name="Main">
                
                    
                        



        
        <!--<script type="text/javascript" src="https://pubsbc.acs.org/script.js" nonce="a08be477cc5e5571-SJC"></script>-->
<style> 
  .osano-cm-widget {display: none;}
</style>

                    
                        



        
        <!--<script nonce="a08be477cc5e5571-SJC">
  (function(h,o,u,n,d) {
    h=h[d]=h[d]||{q:[],onReady:function(c){h.q.push(c)}}
    d=o.createElement(u);d.async=1;d.src=n
    n=o.getElementsByTagName(u)[0];n.parentNode.insertBefore(d,n)
  })(window,document,'script','https://www.datadoghq-browser-agent.com/us1/v6/datadog-rum.js','DD_RUM')
  window.DD_RUM.onReady(function() {
    window.DD_RUM.init({
      clientToken: 'pub4b4cc61932d7c255f19f970485f09624',
      applicationId: '0b07eb32-e4d1-4c66-a580-552e14228614',
      // `site` refers to the Datadog site parameter of your organization
      // see https://docs.datadoghq.com/getting_started/site/
      site: 'datadoghq.com',
      service: 'pubs-production',
      env: '<ENV_NAME>',
      // Specify a version number to identify the deployed version of your application in Datadog
      // version: '1.0.0',
      sessionSampleRate: 2,
      sessionReplaySampleRate: 1,
      trackBfcacheViews: true,
      defaultPrivacyLevel: 'mask-user-input',
    });
  })
</script>-->

                    
                        



        
        <script type="text/javascript" nonce="a08be477cc5e5571-SJC">
    (function(c,l,a,r,i,t,y){
        c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)};
        t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i;
        y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y);
    })(window, document, "clarity", "script", "rj2hj2w2zc");
</script>

                    
                        



        
        <div class="activity-container hidden-lg hidden-md" role="dialog" aria-modal="false" aria-label="recently viewed" ><div class="recentlyViewed" style="right: -100%"><div class="activity_title_container"><span class="activity_title">Recently Viewed</span><a href="javascript:void(0)" class="activity_back"><i class="icon-angle-left" aria-hidden="true"></i><span class="sr-only">close modal</span></a></div></div></div>

                    
                        









    
    
        <div data-widget-def="UX3HTMLWidget" data-widget-id="ed6ae788-7707-48f4-b02c-3187c75e10db" class="hide">
        



        
        

        </div>
    


                    
                        



        
        

                    
                        



        
        



    

    

    
        
    



                    
                        



        
        



    

    

    
        
    



                    
                        



        
        



    

    

    
        
    



                    
                        



        
        <script async="" type="text/javascript" src="https://www.googletagservices.com/tag/js/gpt.js" rel="preconnect" nonce="a08be477cc5e5571-SJC"></script>


<script type="text/javascript" nonce="a08be477cc5e5571-SJC">
  
    function getOsanoUUID() {
    const name = "osano_consentmanager_uuid=";
    const decodedCookie = decodeURIComponent(document.cookie);
    const ca = decodedCookie.split(';');
    for(let i = 0; i < ca.length; i++) {
      let c = ca[i];
      while (c.charAt(0) === ' ') {
        c = c.substring(1);
      }
      if (c.indexOf(name) === 0) {
        return c.substring(name.length, c.length);
      }
    }
    return "";
  }



  const stringToHexHash = (str, len) => {
    let hash = 0;
    for (let i = 0; i < str.length; i++) {
      hash = str.charCodeAt(i) + ((hash << 5) - hash);
    }
    let hex = hash.toString(16);
    let alphanumeric = hex.replace(/[^0-9a-zA-Z]/gi, "");
    while (alphanumeric.length < len) {
      alphanumeric = "0" + alphanumeric;
    }
    return alphanumeric.substr(0, len);
  };
  
var dfpReady = false;
$(document).ready(function() {
  window.googletag = window.googletag || {cmd: []};
  var currentJournal = "";
  googletag.cmd.push(function(){
    var mappingLeader = '';

    // pubs homepage
    if( ((currentJournal === ("{"+"{journal.dartId}"+"}")) || (currentJournal === ("")) ) && ($("main.homepage").length) ) {
      googletag.defineSlot("/8868/pubs/homepage",
        [[1, 1], [300, 250]], "dfp-pubs-rectangle-1").
        setTargeting("location", "rectangle1").
        setTargeting("ntvPlacement", ["1100168"]).
        addService(googletag.pubads());
    }

    // search results
    else if( $("main.search-result").length ) {
      mappingLeader = googletag.sizeMapping().
        addSize([1367, 600], [[1, 1], [728, 90]]).
        addSize([0, 0], [[1, 1], [320, 50]]).
        build();
      googletag.defineSlot("/8868/pubs/search",
        [[1, 1], [728, 90]], "dfp-pubs-search-sponsor-1").
        defineSizeMapping(mappingLeader).
        setTargeting("location", "sponsor1").
        setTargeting("ntvPlacement", ["1101382"]).
        addService(googletag.pubads());
      googletag.defineSlot("/8868/pubs/search",
        [[1, 1], [728, 90]], "dfp-pubs-search-sponsor-2").
        defineSizeMapping(mappingLeader).
        setTargeting("location", "sponsor2").
        setTargeting("ntvPlacement", ["1101383"]).
        addService(googletag.pubads());
    }

    // editors choice
    else if( $("main.editorschoice").length ) {
      mappingLeader = googletag.sizeMapping().
        addSize([1024, 600], [[1, 1], [728, 90]]).
        addSize([0, 0], [[1, 1], [320, 50]]).
        build();
      googletag.defineSlot("/8868/pubs/editorschoice",
        [[1, 1], [728, 90]], "dfp-pubs-editorschoice-sponsor-1").
        defineSizeMapping(mappingLeader).
        setTargeting("location", "sponsor1").
        setTargeting("ntvPlacement", ["1100169"]).
        addService(googletag.pubads());
      googletag.defineSlot("/8868/pubs/editorschoice",
        [[1, 1], [728, 90]], "dfp-pubs-editorschoice-sponsor-2").
        defineSizeMapping(mappingLeader).
        setTargeting("location", "sponsor2").
        setTargeting("ntvPlacement", ["1100170"]).
        addService(googletag.pubads());
    }

    // c&en global enterprise
    else if((currentJournal === "cen_global_enterprise") || (($("main.cen-hp").length)) ) {
      mappingLeader = googletag.sizeMapping().
        addSize([750, 200], [[1, 1], [728, 90]]).
        addSize([0, 0], [[1, 1], [320, 50]]).
        build();
      googletag.defineSlot("/8868/journal//homepage", 
        [1, 1], "dfp-journal-hp-revealer").
        defineSizeMapping(mappingLeader).
        setTargeting("pos", "Journals_HR").
        addService(googletag.pubads());
      googletag.defineSlot("/8868/journal//homepage",
        [728, 90], "dfp-journal-hp-leaderboard").
        defineSizeMapping(mappingLeader).
        setTargeting("location", "leaderboard1").
        addService(googletag.pubads());
      googletag.defineSlot("/8868/journal//homepage",
        [1, 1], "dfp-journal-hp-rectangle-1").
        setTargeting("ntvPlacement", ["1100648"]).
        setTargeting("location", "rectangle1").
        addService(googletag.pubads());
      googletag.defineSlot("/8868/journal//homepage",
        [1, 1], "dfp-journal-hp-rectangle-2").
        setTargeting("ntvPlacement", ["1100649"]).
        setTargeting("location", "rectangle2").
        addService(googletag.pubads());
      googletag.defineSlot("/8868/journal//homepage",
        [[1, 1], [300, 250]] , "dfp-journal-hp-rectangle-3").
        setTargeting("ntvPlacement", ["1100651"]).
        setTargeting("location", "rectangle3").
        addService(googletag.pubads());
    }

    //journal home page
    else if( $("main.journal-home").length ) {
      mappingLeader = googletag.sizeMapping().
        addSize([750, 200], [728, 90]).
        addSize([0, 0], [320, 50]).
        build();
      googletag.defineSlot("/8868/journal//homepage", [1, 1], "dfp-journal-hp-revealer").
        setTargeting("pos", "Journals_HR").
        addService(googletag.pubads());
      googletag.defineSlot("/8868/journal//homepage", [728, 90], "dfp-journal-hp-leaderboard").
        defineSizeMapping(mappingLeader).
        setTargeting("location", "leaderboard1").
        addService(googletag.pubads());
      // googletag.defineSlot("/8868/journal//homepage",
      //   [[1, 1], [300, 250]], "dfp-journal-hp-rectangle-1").
      //   setTargeting("ntvPlacement", ["1100164"]).
      //   setTargeting("location", "rectangle1").
      //   addService(googletag.pubads());
      // googletag.defineSlot("/8868/journal//homepage",
      //   [[1, 1], [300, 250]], "dfp-journal-hp-rectangle-2").
      //   setTargeting("ntvPlacement", ["1100165"]).
      //   setTargeting("location", "rectangle2").
      //   addService(googletag.pubads());
      googletag.defineSlot("/8868/journal//homepage",
        [[1, 1], [300, 250]], "dfp-journal-hp-rectangle-3").
        setTargeting("ntvPlacement", ["1100166"]).
        setTargeting("location", "rectangle3").
        addService(googletag.pubads());
      // googletag.defineSlot("/8868/journal//homepage",
      //   [1, 1], "dfp-journal-hp-rectangle-4").
      //   setTargeting("ntvPlacement", ["1100167"]).
      //   setTargeting("location", "rectangle4").
      //   addService(googletag.pubads());
      // googletag.defineSlot("/8868/journal//homepage",
      //   [1, 1], "dfp-journal-hp-rectangle-5").
      //   setTargeting("ntvPlacement", ["1100303"]).
      //   setTargeting("location", "rectangle5").
      //   addService(googletag.pubads());
      // googletag.defineSlot("/8868/journal//homepage",
      //   [[1, 1], [300, 250]], "dfp-journal-hp-rectangle-6").
      //   setTargeting("ntvPlacement", ["1100304"]).
      //   setTargeting("location", "rectangle6").
      //   addService(googletag.pubads());
    }

    // journal secondary pages
    else if( $("main.pubs-custom").length ) {
      googletag.defineSlot("/8868/journal//homepage",
        [300, 250], "dfp-journal-hp-rectangle-1").
        setTargeting("location", "rectangle1").
        addService(googletag.pubads());
    }

    //journal toc
    else if( $("main.toc").length ) {
      mappingLeader = googletag.sizeMapping().
        addSize([1024, 200], [[1, 1], [728, 90]]).
        addSize([0, 0], [[1, 1], [320, 50]]).
        build();
      googletag.defineSlot("/8868/journal//all_toc/toc",
        [[1, 1], [728, 90]], "dfp-journal-toc-sponsor-1").
        defineSizeMapping(mappingLeader).
        setTargeting("location", "sponsor1").
        setTargeting("ntvPlacement", ["1101380"]).
        addService(googletag.pubads());
      googletag.defineSlot("/8868/journal//all_toc/toc",
        [[1, 1], [728, 90]], "dfp-journal-toc-sponsor-2").
        defineSizeMapping(mappingLeader).
        setTargeting("location", "sponsor2").
        setTargeting("ntvPlacement", ["1101381"]).
        addService(googletag.pubads());
    }

    // journal asap
    else if( $("main.asap").length ) {
      mappingLeader = googletag.sizeMapping().
        addSize([1024, 200], [[1, 1], [728, 90]]).
        addSize([0, 0], [[1, 1], [320, 50]]).
        build();
      googletag.defineSlot("/8868/journal//all_toc/asap",
        [[1, 1], [728, 90]], "dfp-journal-asap-sponsor-1").
        defineSizeMapping(mappingLeader).
        setTargeting("location", "sponsor1").
        setTargeting("ntvPlacement", ["1101380"]).
        addService(googletag.pubads());
      googletag.defineSlot("/8868/journal//all_toc/asap",
        [[1, 1], [728, 90]], "dfp-journal-asap-sponsor-2").
        defineSizeMapping(mappingLeader).
        setTargeting("location", "sponsor2").
        setTargeting("ntvPlacement", ["1101381"]).
        addService(googletag.pubads());
    }

    //googletag.pubads().enableSingleRequest();
    googletag.pubads().
      setTargeting("inst",dartInstitutionType).
      setTargeting("memb",dartMember);
    googletag.pubads().collapseEmptyDivs();
    
    googletag.pubads().addEventListener("slotRenderEnded", function(event) {
      if((currentJournal === "cen_global_enterprise") || (($("main.cen-hp").length)) ) {
        if ((event.slot.getSlotElementId() === "dfp-journal-hp-rectangle-1") || 
          (event.slot.getSlotElementId() === "dfp-journal-hp-rectangle-2") || 
          (event.slot.getSlotElementId() === "dfp-journal-hp-rectangle-3")) {
          if (event.isEmpty === false) {
            if(event.size) {
              $("#" + event.slot.getSlotElementId()).parents(".advertisement").slideDown();
              console.log("ad display: " + event.creativeId + " " + event.size[0] + "x" + event.size[1]);
            }
            else {
              $("#" + event.slot.getSlotElementId()).parents(".advertisement").hide();
            }
          }
        }
      }
      else {
        if ((event.slot.getSlotElementId() === "dfp-pubs-rectangle-1") || 
          (event.slot.getSlotElementId() === "dfp-journal-hp-rectangle-3")) {
          if (event.isEmpty === false) {
            if(event.size) {
              $("#" + event.slot.getSlotElementId()).parents(".teaser_advDropZone").slideDown();
              $("#" + event.slot.getSlotElementId()).parents(".advertisement").slideDown();
              console.log("ad display: " + event.creativeId + " " + event.size[0] + "x" + event.size[1]);
            }
            else {
              $("#" + event.slot.getSlotElementId()).parents(".teaser_advDropZone").hide();
              $("#" + event.slot.getSlotElementId()).parents(".advertisement").hide();
            }
          }
        }
        if((event.slot.getSlotElementId() === "dfp-journal-toc-sponsor-1") || 
          (event.slot.getSlotElementId() === "dfp-journal-toc-sponsor-2") || 
          (event.slot.getSlotElementId() === "dfp-journal-asap-sponsor-1") || 
          (event.slot.getSlotElementId() === "dfp-journal-asap-sponsor-2") || 
          (event.slot.getSlotElementId() === "dfp-pubs-search-sponsor-1") || 
          (event.slot.getSlotElementId() === "dfp-pubs-search-sponsor-2")) {
          if (event.isEmpty === false) {
            if(event.size) {
              $("#" + event.slot.getSlotElementId()).parents(".advertisement-container-toc").slideDown();
              $("#" + event.slot.getSlotElementId()).parents(".advertisement").slideDown();
              console.log("ad display: " + event.creativeId + " " + event.size[0] + "x" + event.size[1]);
            }
            else {
              $("#" + event.slot.getSlotElementId()).parents(".advertisement-container-toc").hide();
              $("#" + event.slot.getSlotElementId()).parents(".advertisement").hide();
            }
          }
        }
      }
    });
    if (window.Osano && window.Osano.cm) {      
      //set PPID for ad capping 
      marketingConsent = window.Osano.cm.getConsent()['MARKETING'];
      let PPID = '';
      if(marketingConsent != "DENY"){
        const osanoUUID = getOsanoUUID();
        PPID = stringToHexHash(osanoUUID, 37)
        googletag.pubads().setPublisherProvidedId(PPID);
        console.log('ppid sent');
      }
   	 }else{
      console.log('osano not loaded for ads');    }

    googletag.enableServices();
    dfpReady = true;
  });
});
</script>


                    
                        



        
        <header class="header-home">



        
        <div class="header_topbar hidden-sm hidden-xs">



        
        <div class="col-lg-3 col-md-4 col-sm-5 header_topbar_left">









    
    
        <div data-widget-def="UX3HTMLWidget" data-widget-id="0be92cec-36a8-4b4d-9a08-a28c790ce306" class="header_mainmenu">
        



        
        <ul>
	<li>
		<a href="http://www.acs.org">ACS</a>
	</li>
	<li class="header_mainmenu_current">
		<a href="/">ACS Publications</a>
	</li>
	<li>
		<a href="https://cen.acs.org">C&amp;EN</a>
	</li>
	<li>
		<a href="https://www.cas.org">CAS</a>
	</li>
</ul>

        </div>
    

</div><div class="col-lg-9 col-md-8 col-sm-7 header_topbar_right">



        
        <div class="user-login-bar"><input type="hidden" name="statusServiceCall" value="CORS" class="statusServiceCall"/><input type="hidden" name="statusEndpoint" value="https://sso.acs.org/idpservice/status" class="statusEndpoint"/><input type="hidden" name="clientID" value="atypon-lives" class="clientID"/><input type="hidden" name="heartBeatReloadInterval" value="1740000" class="heartBeatReloadInterval"/><input type="hidden" name="logoutUrl" value="https://pubs.acs.org/action/doLogout?logoutRedirectUrl=https%3A%2F%2Fsso.acs.org%2Fidp%2Fglogout%3Fappid%3Datypon-live%26returnURL%3Dhttps%253A%252F%252Fpubs.acs.org%252F" class="logoutUrl"/><span class="user-login-bar__value"><a href="https://pubs.acs.org/action/ssoRequestForLoginPage" class="user-login-bar__Login">Log In</a></span><input type="hidden" name="isUserLoggedIn" value="false" class="user-login-bar_is-loggedin"/><input type="hidden" name="isPaired" value="false" class="pair-device-is-paired"/><input type="hidden" name="isStronglyAuthenticated" class="isStronglyAuthenticated"/></div>
</div>
</div>










    
    
        <div data-widget-def="ux3-layout-widget" data-widget-id="6808faec-02bf-4a81-85d3-95e1fe96c4a4" class="header-home__content">
        



        
        <div class="header-home__logo">



        
        <a href="/" class="header-home__logo__link" title="ACS Publications. Most Trusted. Most Cited. Most Read"><img width="205" height="35" id="" alt="ACS Publications. Most Trusted. Most Cited. Most Read" src="/pb-assets/ux3/pubs-logo-481x82-1523435513963.png" class="header-home__logo__img "></a>
</div><nav class="header-home__nav header-home__nav--desktop">



        
        <div class="header-home__quick-search">



        
        <search id="quick-search__field" class="quick-search"><div class="quick-search__block"><button type="button" class="quick-search__close--small hidden-lg hidden-md"><i aria-hidden="true" class="icon-chevron-left"></i><span class="sr-only">Close quick search form</span></button><form action="/action/checkIsValidDoi" name="defaultQuickSearch" method="GET" title="Quick Search" autocomplete="off" class="quick-search_default"><input type="search" name="AllField" placeHolder="Search text, DOI, authors, etc." aria-label="Search text, DOI, authors, etc." data-auto-complete-max-words="7" data-auto-complete-max-chars="32" data-contributors-conf="3" data-topics-conf="3" data-publication-titles-conf="3" data-history-items-conf="3" aria-required="true" class="quick-search_all-field autocomplete" id="quick-search-all-field" aria-expanded="false"/><div role="status" aria-live="polite" class="quick-search__status sr-only"></div><button type="button" class="quick-search__close hidden"><i aria-hidden="true" class="icon-pub-close"></i><span class="sr-only">clear</span></button><button type="submit" class="quick-search__submit"><i aria-hidden="true" class="icon-search-split"></i><span class="sr-only">search</span></button></form></div><div class="advanced-search__block"> <a href="/search/advanced" class="advanced-search__link">Advanced Search</a></div></search>




        
        <div>
    <ul class="rlist--inline">
        <li class="header-home__nav__item">
            <button aria-expanded="false" aria-controls="header-home__nav__dropdown--Read" class="header-home__nav__trigger">
                <span>Read</span><i aria-hidden="true" class="icon-chevron-down"></i>
            </button>
            <div id="header-home__nav__dropdown--Read" class="header-home__nav__dropdown">
                <ul class="header-home__nav__dropdown__list">
                    <li class="header-home__nav__dropdown__item">
                        <button data-action="publications" data-action-type="journals" class="header-home__nav__dropdown__link pubModal_button">
                            <span class="header-home__nav__dropdown__link__title">Journals</span><span class="header-home__nav__dropdown__link__meta">Peer-reviewed chemistry research</span>
                        </button>
                    </li>
                    <li class="header-home__nav__dropdown__item">
                        <a href="/curated-content" class="header-home__nav__dropdown__link"><span class="header-home__nav__dropdown__link__title">Subjects</span><span class="header-home__nav__dropdown__link__meta">Specific research topics from across the ACS
                                portfolio</span></a>
                    </li>
                    <li class="header-home__nav__dropdown__item">
                        <button data-action="publications" data-action-type="books" class="header-home__nav__dropdown__link pubModal_button">
                            <span class="header-home__nav__dropdown__link__title">Books &amp; References</span><span class="header-home__nav__dropdown__link__meta">eBooks, monographs, and references</span>
                        </button>
                    </li>
                    <li class="header-home__nav__dropdown__item">
                        <button data-action="publications" data-action-type="news" class="header-home__nav__dropdown__link pubModal_button">
                            <span class="header-home__nav__dropdown__link__title">C&amp;EN</span><span class="header-home__nav__dropdown__link__meta">News and analysis in chemistry and chemical
                                engineering</span>
                        </button>
                    </li>
                </ul>
            </div>
        </li>

        <li class="header-home__nav__item">
            <button aria-expanded="false" aria-controls="header-home__nav__dropdown--Publish" class="header-home__nav__trigger">
                <span>Publish</span><i aria-hidden="true" class="icon-chevron-down"></i>
            </button>

            <div id="header-home__nav__dropdown--Publish" class="header-home__nav__dropdown">
                <ul class="header-home__nav__dropdown__list">
                    <li class="header-home__nav__dropdown__item">
                        <a href="https://publish.acs.org" class="header-home__nav__dropdown__link"><span class="header-home__nav__dropdown__link__title">Submit a Manuscript</span>
                        <i aria-hidden="true" class="icon-arrow-up-right"></i>    
                        <span class="header-home__nav__dropdown__link__meta">Prepare, submit, and track manuscripts</span></a>
                    </li>
                    <li class="header-home__nav__dropdown__item">
                        <a href="https://researcher-resources.acs.org/publish" class="header-home__nav__dropdown__link"><span class="header-home__nav__dropdown__link__title">Author Resources</span>
                        <i aria-hidden="true" class="icon-arrow-up-right"></i>
                        <span class="header-home__nav__dropdown__link__meta">Author guidelines, templates, publishing policies, and
                                more</span></a>
                    </li>
                    <!--
                    <li class="header-home__nav__dropdown__item">
                        <a href="#" class="header-home__nav__dropdown__link"><span class="header-home__nav__dropdown__link__title">Peer Review</span><span class="header-home__nav__dropdown__link__meta">Guidelines, policies, and resources for reviewing
                                manuscripts</span></a>
                    </li>
                    -->

                    <li class="header-home__nav__dropdown__item">
                        <a href="https://authoringservices.acs.org/" class="header-home__nav__dropdown__link"><span class="header-home__nav__dropdown__link__title">Purchase Author Services</span>
                        <i aria-hidden="true" class="icon-arrow-up-right"></i>
                        <span class="header-home__nav__dropdown__link__meta">Expert editing, formatting, and graphics support</span></a>
                    </li>
                    <li class="header-home__nav__dropdown__item">
                        <a href="https://acsopenscience.org/" class="header-home__nav__dropdown__link"><span class="header-home__nav__dropdown__link__title">Explore Open Access</span>
                        <i aria-hidden="true" class="icon-arrow-up-right"></i>
                        <span class="header-home__nav__dropdown__link__meta">Open access tools, resources, and news</span></a>
                    </li>
                </ul>
            </div>
        </li>

        <li class="header-home__nav__item">
            <button aria-expanded="false" aria-controls="header-home__nav__dropdown--Subscribe" class="header-home__nav__trigger">
                <span>Subscribe</span><i aria-hidden="true" class="icon-chevron-down"></i>
            </button>

            <div id="header-home__nav__dropdown--Subscribe" class="header-home__nav__dropdown">
                <ul class="header-home__nav__dropdown__list">
                    <li class="header-home__nav__dropdown__item">
                        <a href="https://solutions.acs.org/who-we-serve/librarians/" class="header-home__nav__dropdown__link"><span class="header-home__nav__dropdown__link__title">Librarians &amp; Account Managers</span><i aria-hidden="true" class="icon-arrow-up-right"></i></a>
                    </li>
                    <li class="header-home__nav__dropdown__item">
                        <a href="https://acsopenscience.org/institutions/read-and-publish/" class="header-home__nav__dropdown__link"><span class="header-home__nav__dropdown__link__title">Open Science for Institutions</span><i aria-hidden="true" class="icon-arrow-up-right"></i></a>
                    </li>
                    <li class="header-home__nav__dropdown__item">
                        <a href="https://solutions.acs.org/access-options/" class="header-home__nav__dropdown__link"><span class="header-home__nav__dropdown__link__title">Inquire About Access</span><i aria-hidden="true" class="icon-arrow-up-right"></i></a>
                    </li>
                </ul>
            </div>
        </li>

        <li class="header-home__nav__item">
            <button aria-expanded="false" aria-controls="header-home__nav__dropdown--Help" class="header-home__nav__trigger">
                <span>Help</span><i aria-hidden="true" class="icon-chevron-down"></i>
            </button>
                        
            <div id="header-home__nav__dropdown--Help" class="header-home__nav__dropdown">
                <ul class="header-home__nav__dropdown__list">
                    <li class="header-home__nav__dropdown__item">
                        <a href="https://acs.service-now.com/acs" class="header-home__nav__dropdown__link"><span class="header-home__nav__dropdown__link__title">Support FAQ</span>
                        <i aria-hidden="true" class="icon-arrow-up-right"></i>
                        <span class="header-home__nav__dropdown__link__meta">Quick answers to common questions</span></a>
                    </li>
                    <li class="header-home__nav__dropdown__item">
                        <a href="#" class="header-home__nav__dropdown__link" onclick="SnapEngage.startLink();return false; gtag('event', 'Menu', { 'event_category': 'Top Nav', 'event_label':'Live Chat with Agent'});"><span class="header-home__nav__dropdown__link__title">Live Chat with Agent</span><span class="header-home__nav__dropdown__link__meta">Get real-time help from a support representative</span></a>
                    </li>
                    <!--
                    <li class="header-home__nav__dropdown__item">
                        <a href="/page/demo/index.html" class="header-home__nav__dropdown__link"><span class="header-home__nav__dropdown__link__title">Tutorials &amp; Demos</span><span class="header-home__nav__dropdown__link__meta">Explore how-to guides and videos to get the most from
                                ACS tools</span></a>
                    </li>
                    -->
                </ul>
            </div>
        </li>
    </ul>
</div>




        
        <button 
	aria-controls="mobile-menu-dialog"
	aria-expanded="false" 
	class="header-home__search">
 	<i aria-hidden="true" class="icon-search-split"></i>
  	<span class="sr-only">Open quick search form</span>
</button>
<button
    aria-controls="mobile-menu-dialog"
    aria-expanded="false"
    class="header-home__burger"
>
    <i aria-hidden="true" class="icon-burger-thin"></i><span class="sr-only">Open menu</span>
</button>
<dialog
    id="mobile-menu-dialog"
    aria-modal="true"
    aria-label="Main menu"
    class="header-home__mobile-menu loop-trap"
>
    <button class="header-home__mobile-menu__close">
        <i aria-hidden="true" class="icon-pub-close"></i><span class="sr-only">Close menu</span>
    </button>
    <div class="header-home__mobile-menu__content">
        <ul class="header-home__mobile-menu__list">
            <li>
                <span class="header-home__mobile-menu__section-title">Read</span>
                <ul class="header-home__mobile-menu__section-list">
                    <li class="header-home__mobile-menu__item">
                        <button
                            data-action="publications"
                            data-action-type="journals"
                            class="pubModal_button"
                        >
                            Journals
                        </button>
                    </li>
                    <li class="header-home__mobile-menu__item"><a href="/curated-content">Subjects</a></li>
                    <li class="header-home__mobile-menu__item">
                        <button
                            data-action="publications"
                            data-action-type="books"
                            class="pubModal_button"
                        >
                            Books &amp; References
                        </button>
                    </li>
                    <li class="header-home__mobile-menu__item">
                        <button
                            data-action="publications"
                            data-action-type="news"
                            class="pubModal_button"
                        >
                            C&amp;EN
                        </button>
                    </li>
                </ul>
            </li>
            <li>
                <span class="header-home__mobile-menu__section-title">Publish</span>
                <ul class="header-home__mobile-menu__section-list">
                    <li class="header-home__mobile-menu__item">
                        <a href="https://publish.acs.org">
                            <span>Submit a Manuscript</span
                            >
                            <i aria-hidden="true" class="icon-arrow-up-right"></i>
                        </a>
                    </li>
                    <li class="header-home__mobile-menu__item">
                        <a href="https://researcher-resources.acs.org/publish">
                            <span>Author Resources</span
                            >
                            <i aria-hidden="true" class="icon-arrow-up-right"></i>
                        </a>
                    </li>
                    <!--
                    <li class="header-home__mobile-menu__item"><a href="#">Peer Review</a></li>
                    -->
                    <li class="header-home__mobile-menu__item">
                        <a href="https://authoringservices.acs.org/">
                            <span>Purchase Author Services</span
                            >
                            <i aria-hidden="true" class="icon-arrow-up-right"></i>
                        </a>
                    </li>
                    <li class="header-home__mobile-menu__item">
                        <a href="https://acsopenscience.org/">
                            <span>Explore Open Access</span
                            >
                            <i aria-hidden="true" class="icon-arrow-up-right"></i>
                        </a>
                    </li>
                </ul>
            </li>
            <li>
                <span class="header-home__mobile-menu__section-title">Subscribe</span>
                <ul class="header-home__mobile-menu__section-list">
                    <li class="header-home__mobile-menu__item">
                        <a href="https://solutions.acs.org/who-we-serve/librarians/">
                            <span>Librarians &amp; Account Managers</span
                            ><i aria-hidden="true" class="icon-arrow-up-right"></i
                        ></a>
                    </li>
                    <li class="header-home__mobile-menu__item">
                        <a href="https://acsopenscience.org/institutions/read-and-publish/">
                            <span>Open Science for Institutions</span
                            ><i aria-hidden="true" class="icon-arrow-up-right"></i
                        ></a>
                    </li>
                    <li class="header-home__mobile-menu__item">
                        <a href="https://solutions.acs.org/access-options/">
                            <span>Inquire About Access</span
                            ><i aria-hidden="true" class="icon-arrow-up-right"></i
                        ></a>
                    </li>
                </ul>
            </li>
            <li>
                <span class="header-home__mobile-menu__section-title"
                    >Help</span
                >
                <ul class="header-home__mobile-menu__section-list">
                    <li class="header-home__mobile-menu__item">
                        <a href="https://acs.service-now.com/acs">
                            <span>Support FAQ</span
                            >
                            <i aria-hidden="true" class="icon-arrow-up-right"></i>
                        </a>

                    </li>
                    <li class="header-home__mobile-menu__item">
                        <a href="#" class="help help-chat" onclick="SnapEngage.startLink();return false; gtag('event', 'Menu', { 'event_category': 'Top Nav', 'event_label':'Live Chat with Agent'});">Live Chat with Agent</a>
                    </li>
                    <!--
                    <li class="header-home__mobile-menu__item">
                        <a href="/page/demo/index.html">Tutorials &amp; Demos</a>
                    </li>
                    -->
                </ul>
            </li>
          
          	<li>
                <span class="header-home__mobile-menu__section-title">Account</span>
                <ul class="header-home__mobile-menu__section-list header__dialog__account">
                    <li class="header-home__mobile-menu__item account">
                        <a href="/action/showPreferences">My Profile</a>
                    </li>
                  	<li class="header-home__mobile-menu__item login">
                        <a href="/action/ssoRequestForLoginPage">Log in</a>
                    </li>
                    <li class="header-home__mobile-menu__item logout"><a href="#">Log out</a></li>                    
                </ul>
            </li> 
        </ul>
    </div>
</dialog>
</div>
</nav>

        </div>
    





        
        <div class="pub"><div role="dialog" aria-modal="true" aria-label="publications modal" class="pub-modal"><p aria-live="polite" role="alert" class="pub-modal__alerts sr-only"><span class="pub-modal__alert"></span></p><div class="pub-modal_content loop-trap"><button class="pub-modal_close pull-right"><i aria-hidden="true" class="icon-close"></i><span class="sr-only">Close</span></button><div class="pub-modal_row"><div class="pub-modal_left"><div class="pub-modal_left-content"><div class="pub-modal_control hidden-lg hidden-md"><span class="pub-modal_control-text">Publications</span><a href="#" title="Back button" class="pub-modal_back"><i class="icon-angle-left"></i></a></div><!-- Types--><div class="pub-modal_types"><h2>CONTENT TYPES</h2><ul class="pub-modal_types-list"><li data-type="all" id="allID" class="pub-modal_types-active"><button class="pub-modal_types-item">All Types</button></li></ul></div><!-- Subjects--><div class="pub-modal_subjects hidden-sm hidden-xs"><h2 id="subjects__heading">SUBJECTS</h2><ul aria-labelledby="subjects__heading" role="group" class="pub-modal_subjects-list"></ul></div></div></div><div class="pub-modal_right"><div class="pub-modal_control hidden-lg hidden-md"><span class="pub-modal_control-text">Publications: All Types</span><a href="#" title="Back button" class="pub-modal_back"><i class="icon-angle-left"></i></a></div><!--div.pub-modal_right-cover-gallery.hidden-lg.hidden-md--><!--a(href="/coverGallery") Browse Our Cover Art Gallery--><!-- Publications list--><!-- 'pub-modal_right--inner' adds styling required for IE--><div class="pub-modal_right--inner"><div class="pub-content"></div></div></div></div></div><!-- The widget data--><input type="hidden" id="ajaxUrl" name="ajaxUrl" value="/pb/widgets/achs-publication-list?widgetId=cabcb15c-6f7a-494b-a19c-eba4fafaee5c&amp;pbContext=%3Bwgroup%3Astring%3AACHS+website+Group%3Bpage%3Astring%3ACookie+Absent%3Bwebsite%3Awebsite%3Aacspubs&amp;key=1693dab40d79661765f727c94dc70fa90&amp;ajaxRequest=true"/><input type="hidden" name="pubModalData" value=""/></div></div>
</header>

                    
                        



        
        <main class="content">



        
        



    

    

    
        
    






        
        <div class="row container container_scaled-down cookie_absent">



        
        <style>
    
    .cookie_absent {
        padding-top: 30px;
    }
</style> 
 <h1>An Error Occurred Setting Your User Cookie</h1>

    <p>This site uses cookies to improve performance. If your browser does not accept cookies, you cannot view this site.</p>

	<hr />
    <h3>Setting Your Browser to Accept Cookies</h3>

    <p>There are many reasons why a cookie could not be set correctly. Below are the most common reasons:</p>
    <ul>
        <li>You have cookies disabled in your browser. You need to reset your browser to accept cookies or to ask you if you want to accept cookies.</li>
        <li>Your browser asks you whether you want to accept cookies and you declined.
            To accept cookies from this site, use the Back button and accept the cookie.
        </li>
        <li>Your browser does not support cookies. Try a different browser if you suspect this.</li>
        <li>The date on your computer is in the past. If your computer's clock shows a date before 1 Jan 1970,
            the browser will automatically forget the cookie. To fix this, set the correct time and date on your computer.
        </li>
        <li>You have installed an application that monitors or blocks cookies from being set.
            You must disable the application while logging in or check with your system administrator.
        </li>
    </ul>

	<hr />
    <h3>Why Does this Site Require Cookies?</h3>

    <p>This site uses cookies to improve performance by remembering that you are logged in when you go from page to page. To provide access without cookies
        would require the site to create a new session for every page you visit, which slows the system down to an unacceptable level.
    </p>

	<hr />
    <h3>What Gets Stored in a Cookie?</h3>

    <p>This site stores nothing other than an automatically generated session ID in the cookie; no other information is captured.</p>

    <p>In general, only the information that you provide, or the choices you make while visiting a web site, can be stored in a cookie. For example, the site
        cannot determine your email name unless you choose to type it. Allowing a website to create a cookie does not give that or any other site access to the
        rest of your computer, and only the site that created the cookie can read it.</p>
</div>
</main>

                    
                        



        
        <footer class="footer">



        
            <div class="footer__content">
        <div class="footer__block">
            <h3 class="footer__title">
                read
            </h3>
        
            <ul class="footer__list">
                <li class="footer__item"><a href="/action/showPublications?pubType=journal" class="footer__link">Journals</a></li>
                <li class="footer__item">
                    <a href="/action/showPublications?pubType=book" class="footer__link">Books &amp; References</a>
                </li>
                <li class="footer__item"><a href="https://cen.acs.org/" class="footer__link">C&amp;EN</a></li>
            </ul>
        </div>
        
        <div class="footer__block">
            <h3 class="footer__title">
                publish
            </h3>

            <ul class="footer__list">
                <li class="footer__item">
                    <a href="https://publish.acs.org" class="footer__link">Submit a Manuscript</a>
                </li>
                <li class="footer__item">
                    <a href="https://researcher-resources.acs.org/publish" class="footer__link">Author Resources</a>
                </li>
                <li class="footer__item"><a href="/page/review/index.html" class="footer__link">Peer Review</a></li>

                <li class="footer__item">
                    <a href=" https://authoringservices.acs.org/" class="footer__link">Purchase Author Services</a>
                </li>
                <li class="footer__item">
                    <a href="https://acsopenscience.org/" class="footer__link">Explore Open Access</a>
                </li>
            </ul>
        </div>

        <div class="footer__block">
            <h3 class="footer__title">
                    subscribe
            </h3>
            
            <ul class="footer__list">
                <li class="footer__item">
                    <a href="https://solutions.acs.org/who-we-serve/librarians/" class="footer__link">Librarians &amp; Account Managers</a>
                </li>
                <li class="footer__item">
                    <a href="https://acsopenscience.org/institutions/read-and-publish/" class="footer__link">Open Science for Institutions</a>
                </li>
                <li class="footer__item">
                    <a href="https://solutions.acs.org/access-options/" class="footer__link">Inquire About Access</a>
                </li>
            </ul>
        </div>

        <div class="footer__block">    
                <h3 class="footer__title">
                    help
                </h3>
            
            <ul class="footer__list">
                <li class="footer__item"><a href="https://acs.service-now.com/acs" class="footer__link">Support FAQ</a></li>
                <li class="footer__item">
                    <a href="#" onclick="SnapEngage.startLink();return false;" class="footer__link">Live Chat with Agent</a>
                </li>
              <!--
                <li class="footer__item">
                    <a href="/page/demo/index.html" class="footer__link">Tutorials &amp; Demos</a>
                </li>
			-->
            </ul>
        </div>

        <div class="footer__block">
                <h3 class="footer__title">
                    resources
                </h3>
            
            <ul class="footer__list">
                <li class="footer__item">
                    <a href="/page/about-us.html" class="footer__link">About ACS Publications</a>
                </li>
                <li class="footer__item">
                    <a href="https://chemrxiv.org/" class="footer__link">ChemRxiv</a>
                </li>
                <li class="footer__item">
                    <a href="https://axial.acs.org/" class="footer__link">Blog</a></li>
                <li class="footer__item">
                    <a href="/events" class="footer__link">Events</a></li>
                <li class="footer__item">
                    <a href="https://www.acs.org/content/acs/en/membership.html" class="footer__link">Join ACS</a></li>   
                <li class="footer__item">
                    <a href="https://acsmediakit.org/advertising/" class="footer__link">For Advertisers</a>
                </li>
            </ul>
        </div>

        <div class="footer__bottom">
            <div class="footer__logo-wrapper">
                <a href="/" class="footer__logo"><img src="/pb-assets/ux3/ACSPubs_logo_tagline_Knockout-1718648850557.svg" alt="American Chemical Society" width="275" height="54.8" class="footer__logo-img"></a>
                
                <p class="footer__location">
                    <span class="footer__location-item">1155 Sixteenth Street N.W.</span><span class="footer__location-item">Washington, DC 20036</span>
                </p>
            </div>
            <div class="footer__meta">
                <p class="footer__copyright">
                  <a href="https://www.acs.org/copyright.html" class="footer__link">Copyright © 2026 American Chemical Society.</a> 
              </p>
        
                <ul class="footer__terms">
                    
                    <li class="footer__term"><a href="https://www.acs.org/terms.html" class="footer__link">Terms of Use</a></li> 

                    <li class="footer__term">
                        <a href="https://www.acs.org/privacy.html" class="footer__link">Privacy Policy</a>
                    </li>             
                    <li class="footer__term">
                        <a href="#" onclick="Osano.cm.showDrawer('osano-cm-dom-info-dialog-open')" class="footer__link">Manage Cookies</a>
                    </li>            

                    <li class="footer__term">
                        <a href="/accessibility" class="footer__link">Accessibility</a></li>
                </ul>

                <ul class="footer__social">
                    <li class="footer__social__item">
                        <a href="https://www.facebook.com/ACSPublications/" class="footer__link--social"><i aria-hidden="true" class="icon-facebook"></i><span class="sr-only">Facebook</span></a>
                    </li>
                    <li class="footer__social__item">
                        <a href="https://x.com/ACSPublications" class="footer__link--social"><i aria-hidden="true" class="icon-x"></i><span class="sr-only">X</span></a>
                    </li>
                    <li class="footer__social__item">
                        <a href="https://bsky.app/profile/pubs.acs.org" class="footer__link--social"><i aria-hidden="true" class="icon-bluesky"></i><span class="sr-only">Bluesky</span></a>
                    </li>
                    <li class="footer__social__item">
                        <a href="https://www.youtube.com/user/AmerChemSoc" class="footer__link--social"><i aria-hidden="true" class="icon-youtube-play"></i><span class="sr-only">YouTube</span></a>
                    </li>
                    <li class="footer__social__item">
                        <a href="/page/follow.html?widget=follow-pane-rss" class="footer__link--social"><i aria-hidden="true" class="icon-rss"></i><span class="sr-only">RSS</span></a>
                    </li>
                </ul>
            </div>
        </div>
    </div>

</footer>

                    
                        



        
        <script nonce="a08be477cc5e5571-SJC">
    //Top nav tracking

    (function(){
        $('.header_my-activity a:first').on('click', function(e){
            e.preventDefault();
            //console.log('Button , Activity')
            gtag('event', 'Button', { 'event_category': 'Top Nav', 'event_label':'Activity'});
        })


        $('.pubModal_button').on('click', function(e){
            e.preventDefault();
            //console.log('Button , Publications')
            gtag('event', 'Button', { 'event_category': 'Top Nav', 'event_label':'Publications'});

        }) 

        $('.header_burger-menu_button').on('click', function(e){
            e.preventDefault();
            //console.log('Button , Hamburger');
            gtag('event', 'Button', { 'event_category': 'Top Nav', 'event_label':'Hamburger'});
        }) 

        // $('.header_burger-menu_content ul li').on('click', function(e){
        //     // e.preventDefault();
        //     var idx = $(this).index();
        //     console.log('Menu item' + idx)
        // })
    })();
    
    
</script>

                    
                        



        
        <!-- AdRoll Pixel -->
<script type="text/javascript" nonce="a08be477cc5e5571-SJC">
    adroll_adv_id = "3LBZJ4KXKBF2PJ46QCMT3X";
    adroll_pix_id = "6EITYRDI4FFGJPSZQ62UJJ";

    (function () {
        var _onload = function(){
            if (document.readyState && !/loaded|complete/.test(document.readyState)){setTimeout(_onload, 10);return}
            if (!window.__adroll_loaded){__adroll_loaded=true;setTimeout(_onload, 50);return}
            var scr = document.createElement("script");
            var host = (("https:" == document.location.protocol) ? "https://s.adroll.com" : "http://a.adroll.com");
            scr.setAttribute('async', 'true');
            scr.type = "text/javascript";
            scr.src = host + "/j/roundtrip.js";
            ((document.getElementsByTagName('head') || [null])[0] ||
                document.getElementsByTagName('script')[0].parentNode).appendChild(scr);
        };
        if (window.addEventListener) {window.addEventListener('load', _onload, false);}
        else {window.attachEvent('onload', _onload)}
    }());
</script>
<style>
iframe#adroll_slg {
    display:block;
    width: 100%;
    background-color: #044788;
    margin-top: -1px;
}
</style>

<!-- Twitter universal website tag code -->
<!-- Commented out for ACHS-6152
<script nonce="a08be477cc5e5571-SJC">
    !function(e,t,n,s,u,a){e.twq||(s=e.twq=function(){s.exe?s.exe.apply(s,arguments):s.queue.push(arguments);
    },s.version='1.1',s.queue=[],u=t.createElement(n),u.async=!0,u.src='//static.ads-twitter.com/uwt.js',
    a=t.getElementsByTagName(n)[0],a.parentNode.insertBefore(u,a))}(window,document,'script');
    // Insert Twitter Pixel ID and Standard Event data below
    twq('init','o3njp');
    twq('track','PageView');
</script>
-->
<!-- Facebook Pixel Code -->
<!-- Commented out for ACHS-6152
<script nonce="a08be477cc5e5571-SJC">
    !function(f,b,e,v,n,t,s)
    {if(f.fbq)return;n=f.fbq=function(){n.callMethod?
    n.callMethod.apply(n,arguments):n.queue.push(arguments)};
    if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0';
    n.queue=[];t=b.createElement(e);t.async=!0;
    t.src=v;s=b.getElementsByTagName(e)[0];
    s.parentNode.insertBefore(t,s)}(window, document,'script',
    'https://connect.facebook.net/en_US/fbevents.js');
    fbq('init', '529840281033320');
    fbq('track', 'PageView');
</script>
<noscript><img height="1" width="1" style="display:none" src="https://www.facebook.com/tr?id=529840281033320&amp;ev=PageView&amp;noscript=1"
/></noscript>
-->


                    
                        



        
        <script nonce="a08be477cc5e5571-SJC">
// LIT-455776 workaround
// Moving the popup before the header content for tab accessibility
document.addEventListener('DOMContentLoaded', () => {
    const headerNode = $('.header_content');
    const popupNode = $('.pairing-affiliations-popup');

    if (!headerNode.length || !popupNode.length)
        return;

    popupNode.insertBefore(headerNode);  
});
</script> 

                    
                        



        
        



    

    

    
        
    



                    
                        



        
        <!-- begin SnapEngage code -->
<script type="text/javascript" nonce="a08be477cc5e5571-SJC">
  (function() {
    var se = document.createElement('script'); se.type = 'text/javascript'; se.async = true;
    se.src = 'https://www2.snapengage.com/cdn/js/921a4ec7-cecf-43a6-afa5-6cd1346520b1.js';
    var done = false;
    se.onload = se.onreadystatechange = function() {
      if (!done&&(!this.readyState||this.readyState==='loaded'||this.readyState==='complete')) {
        done = true;
        /* Place your SnapEngage JS API code below */
        /* SnapEngage.allowChatSound(true); Example JS API: Enable sounds for Visitors. */
      }
    };
    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(se, s);
  })();
</script>

<style>
    #SnapABug_Button,
    #designstudio-button {
        display: none;
    }
</style>
<!-- end SnapEngage code -->

                    
                        



        
        <script nonce="a08be477cc5e5571-SJC">
(function(d,b,a,s,e){ var t = b.createElement(a),
  fs = b.getElementsByTagName(a)[0]; t.async=1; t.id=e; t.src=s;
  fs.parentNode.insertBefore(t, fs); })
(window,document,'script','https://tag.demandbase.com/b01e0bcf02a2a19f.min.js','demandbase_js_lib'); 
</script>

                    
                        



        
        <div id="sys-message-panel" style="display: none;">
    <div class="system-message-logo-area"><a id="asterisk"><i class="icon-asterisk"></i></a></div>
    <div class="sys-message-content">
        <a id="closebtn" href="#"><i class="icon-times-circle-o"><span style="display:none">Close message</span></i></a>
        <!-- <h2>System Message</h2> -->
        <span class="system-message-date">2026-06-08T17:06:48.418-07:00</span>
      <!--
        <p>Notice: ACS is aware of a recent issue that may have caused some users to be temporarily blocked from accessing content. The issue has been resolved, and we sincerely apologize for any inconvenience caused. If you continue to experience access problems, please contact us at <a href="mailto:acs_pubs_assist@acs.org">acs_pubs_assist@acs.org</a>.</p>
	   -->

      <p>We are undergoing scheduled maintenance on Thursday, December 11 to improve user account security.  </p>
      <p>Service Window:<br>
ET: Thursday, December 11, 2025 | 6 PM ET<br>
	<br>User login is currently impacted and unavailable. Service should be restored soon. 
      <p>We apologized for the inconvenience and appreciate your patience while we improve the ACS Publications Platform.</p>
 
        <!-- <p>On Tuesday, July 23, we will complete an update to our article pages. You may find that some elements are not aligned on these pages while the final work is completed.<br>
            Thank you for your patience.</p> -->
  
    </div>
</div>
<script nonce="a08be477cc5e5571-SJC">
    document.addEventListener("DOMContentLoaded", function(){
    // Function to get a Human readable formatted date
    function getFormattedDateForMaintenance() {
        let today = new Date();
        let dd = String(today.getDate()).padStart(2, '0');
        //January is 0
        let mm = String(today.getMonth() + 1).padStart(2, '0'); 
        let yyyy = today.getFullYear();
        
        let daysOfWeek = ['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'];
        let monthsOfYear = ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December'];

        let dayOfWeek = daysOfWeek[today.getDay()];
        let monthOfYear = monthsOfYear[today.getMonth()];

        return dayOfWeek + ', ' + monthOfYear + ' ' + dd + ', ' + yyyy;
    }
    
    // Insert the date into the .system-message-date element
    document.querySelector('.system-message-date').innerText = getFormattedDateForMaintenance();
});
</script>

                    
                        



        
        <!-- Hotjar Tracking Code for https://pubs.acs.org/ -->
<script nonce="a08be477cc5e5571-SJC">
    (function(h,o,t,j,a,r){
        h.hj=h.hj||function(){(h.hj.q=h.hj.q||[]).push(arguments)};
        h._hjSettings={hjid:3120009,hjsv:6};
        a=o.getElementsByTagName('head')[0];
        r=o.createElement('script');r.async=1;
        r.src=t+h._hjSettings.hjid+j+h._hjSettings.hjsv;
        a.appendChild(r);
    })(window,document,'https://static.hotjar.com/c/hotjar-','.js?sv=');
</script>


                    
                        



        
        <script nonce="a08be477cc5e5571-SJC">
(function (m, a, z, e) {
  var s, t;
  try {
    t = m.sessionStorage.getItem('maze-us');
  } catch (err) {}

  if (!t) {
    t = new Date().getTime();
    try {
      m.sessionStorage.setItem('maze-us', t);
    } catch (err) {}
  }

  s = a.createElement('script');
  s.src = z + '?apiKey=' + e;
  s.async = true;
  a.getElementsByTagName('head')[0].appendChild(s);
  m.mazeUniversalSnippetApiKey = e;
})(window, document, 'https://snippet.maze.co/maze-universal-loader.js', '324f1949-7e39-430a-964b-caafd31cacfd');
</script>

                    
                        



        
        <style>
  /* Fonts */
  .osano-cm-window,
  .osano-cm-dialog,
  .osano-cm-description {
      color:  #333333;
      font-family: Roboto, Helvetica, Arial, Hiragino Sans GB, STXihei, Microsoft YaHei, WenQuanYi Micro Hei, Hind, MS Gothic, Apple SD Gothic Neo, NanumBarunGothic, sans-serif;
      font-size: 14px;
      font-style: normal;
      font-weight: 400;
      line-height: 140%; /* 19.6px */
  }

  .osano-cm-list-item__description {
      font-size: 14px;
  }

  .osano-cm-header {
      background: #e6ebf6;
      color: #000000;
      font-family: Roboto, Helvetica, Arial, Hiragino Sans GB, STXihei, Microsoft YaHei, WenQuanYi Micro Hei, Hind, MS Gothic, Apple SD Gothic Neo, NanumBarunGothic, sans-serif;
      font-size: 24px;
      font-style: normal;
      font-weight: 600;
      line-height: 120%; /* 28.8px */
  }

  .osano-cm-content__message,
  .osano-cm-label {
      color:  #333333;
      font-family: Roboto, Helvetica, Arial, Hiragino Sans GB, STXihei, Microsoft YaHei, WenQuanYi Micro Hei, Hind, MS Gothic, Apple SD Gothic Neo, NanumBarunGothic, sans-serif;
      font-size: 16px;
      font-style: normal;
      font-weight: 400;
      line-height: 130%; /* 20.8px */
  }

  .osano-cm-drawer-toggle .osano-cm-label {
      font-size: 16px;
      line-height: 130%; /* 20.8px */
  }

  .osano-cm-dialog .osano-cm-link {
      font-size: 16px;
  }

  .osano-cm-disclosure {
      font-size: 1em;
  }

  .osano-cm-info {
      max-width: 30em;
  }

  .osano-cm-dialog,
  .osano-cm-info,
  .osano-cm-info-dialog-header {
      background: #e6ebf6;
  }


  /* General Buttons */
  .osano-cm-button {
      background-color: #0039A6;
      border-color: #0039A6;
      color: #FFFFFF;
  }

  .osano-cm-button:focus {
      background-color: #0039A6;
      outline: 1px #0039A6 dashed;
  }

  .osano-cm-button:hover {
      background-color: #002D72;
      box-shadow: 0px 2px 4px -2px #547AC380;
      box-shadow: 0px 4px 8px -1px #547AC380;
  }

  .osano-cm-button--type_deny {
      background-color: #0039A6;
      border-color: #0039A6;
      color: #FFFFFF;
  }

  .osano-cm-button--type_deny:focus {
      background-color: #0039A6;
      outline: 1px #0039A6 dashed;
  }

  .osano-cm-button--type_deny:hover {
      background-color: #002D72;
      box-shadow: 0px 2px 4px -2px #547AC380;
      box-shadow: 0px 4px 8px -1px #547AC380;
  }

  .osano-cm-view__button {
      font-size: 1em;
      margin: 1em 0 0;
      width: 100%;
  }


  /*  Toggle button colors */
  /* OFF - enabled */
  .osano-cm-toggle__switch {
      background-color: #767676;
  }

  .osano-cm-toggle__switch::after {
      background-color: #FFFFFF;
      border-color: #FFFFFF;
  }

  .osano-cm-toggle__switch::before {
      border-color: transparent;
  }

  /* OFF - hover */
  .osano-cm-toggle__input:hover+.osano-cm-toggle__switch {
      background-color: #5C5C5C;
      border-color: transparent;
      box-shadow: 0px 2px 4px -2px rgba(0, 0, 0, 0.05)
  }
  .osano-cm-toggle__input:hover+.osano-cm-toggle__switch::before {
      border-color: #5C5C5C;
  }

  /* OFF - focus */
  .osano-cm-toggle__input:focus+.osano-cm-toggle__switch {
      background-color: #767676;
      border-color: #767676;
      border-radius: 40px;
      outline: 1px #767676 dashed;
  }
  .osano-cm-toggle__input:focus+.osano-cm-toggle__switch::before {
      border-color: #767676;
  }

  /* ON - enabled */
  .osano-cm-toggle__input:checked+.osano-cm-toggle__switch {
      background-color: #0039A6;
      border-color: transparent;
  }

  .osano-cm-toggle__input:checked+.osano-cm-toggle__switch::after,
  .osano-cm-toggle__input:checked+.osano-cm-toggle__switch::before {
      border-color: transparent;
  }

  /* ON - hover */
  .osano-cm-toggle__input:checked:hover+.osano-cm-toggle__switch {
      background-color: #002D72;
  }
  .osano-cm-toggle__input:checked:hover+.osano-cm-toggle__switch::before {
      border-color: transparent;
      /* Color shadows/shadow-blue */
      box-shadow: 0px 4px 8px -1px rgba(84, 122, 195, 0.50), 0px 2px 4px -2px rgba(84, 122, 195, 0.50);
  }

  /* ON - focus */
  .osano-cm-toggle__input:checked:focus+.osano-cm-toggle__switch {
      background-color: #0039A6;
      border-radius: 40px;
      outline: 1px #0039A6 dashed;
  }


  /* OFF - inactive */
  .osano-cm-toggle__input:disabled+.osano-cm-toggle__switch,
  .osano-cm-toggle__input:disabled:focus+.osano-cm-toggle__switch,
  .osano-cm-toggle__input:disabled:hover+.osano-cm-toggle__switch {
      background-color: #D7D7D9;
      border-color: #D7D7D9;
  }

  .osano-cm-toggle__input:disabled+.osano-cm-toggle__switch::after,
  .osano-cm-toggle__input:disabled:focus+.osano-cm-toggle__switch::after,
  .osano-cm-toggle__input:disabled:hover+.osano-cm-toggle__switch::after {
      background-color: #FFFFFF;
      border-color: #FFFFFF;
  }

  .osano-cm-toggle__input:disabled+.osano-cm-toggle__switch::before,
  .osano-cm-toggle__input:disabled:hover+.osano-cm-toggle__switch::before {
      border-color: transparent;
  }

  .osano-cm-toggle__input:disabled:focus+.osano-cm-toggle__switch::before {
      border-color: #D7D7D9;
      border-radius: 40px;
      outline: 1px #D7D7D9 dashed;
  }



  /* ON - inactive */
  .osano-cm-toggle__input:disabled:checked+.osano-cm-toggle__switch,
  .osano-cm-toggle__input:disabled:checked:focus+.osano-cm-toggle__switch,
  .osano-cm-toggle__input:disabled:checked:hover+.osano-cm-toggle__switch {
      background-color: #8AA4D6;
      border-color: #8AA4D6;
      box-shadow: none;
  }

  .osano-cm-toggle__input:disabled:checked+.osano-cm-toggle__switch::after,
  .osano-cm-toggle__input:disabled:checked:focus+.osano-cm-toggle__switch::after,
  .osano-cm-toggle__input:disabled:checked:hover+.osano-cm-toggle__switch::after {
      background-color: #FFFFFF;
      border-color: #FFFFFF;
  }

  .osano-cm-toggle__input:disabled:checked+.osano-cm-toggle__switch::before,
  .osano-cm-toggle__input:disabled:checked:hover+.osano-cm-toggle__switch::before {
      border-color: transparent;
  }

  .osano-cm-toggle__input:disabled:checked:focus+.osano-cm-toggle__switch::before {
      border-color: #8AA4D6;
      border-radius: 40px;
      outline: 1px #8AA4D6 dashed;
  }

  .osano-cm-toggle__switch:before {
      border-radius: 0px;
      border-width: 0px;
      bottom: 0px;
      box-sizing: border-box;
      left: 0px;
      right: 0px;
      top: 0px;
  }


  /* Disclosure Links */
  .osano-cm-disclosure__list:first-of-type::after {
      background-color: #0039A6;
  }

  .osano-cm-disclosure__toggle,
  .osano-cm-expansion-panel__toggle {
      color: #0039A6;
  }

  .osano-cm-disclosure__toggle:hover,
  .osano-cm-disclosure__toggle:active,
  .osano-cm-expansion-panel__toggle:hover,
  .osano-cm-expansion-panel__toggle:active {
      color: #0039A6;
  }

  .osano-cm-disclosure__toggle:focus,
  .osano-cm-expansion-panel__toggle:focus {
      color: #002D72;
  }


  /* Disclosure Links */
  .osano-cm-disclosure__list:first-of-type::after {
      background-color: #0039A6;
  }

  .osano-cm-disclosure__toggle,
  .osano-cm-expansion-panel__toggle {
      color: #0039A6;
  }

  .osano-cm-disclosure__toggle:hover,
  .osano-cm-disclosure__toggle:active,
  .osano-cm-expansion-panel__toggle:hover,
  .osano-cm-expansion-panel__toggle:active {
      color: #0039A6;
  }

  .osano-cm-disclosure__toggle:focus,
  .osano-cm-expansion-panel__toggle:focus {
      color: #002D72;
  }


  /* Links */
  .osano-cm-link {
      color: #0039A6;
  }

  .osano-cm-link:hover,
  .osano-cm-link:active {
      color: #0039A6;
  }

  .osano-cm-link:focus {
      color: #002D72;
  }


  /* Widget */
  .osano-cm-widget__outline {
      fill: #fff;
      stroke:  #002D72;
  }

  .osano-cm-widget__dot {
      fill: #0039A6;
  }

  .osano-cm-widget:focus {
      outline: none;
      outline-offset: 0;
  }

  /* Close button */
  .osano-cm-close {
      color: #e6ebf6;
      stroke: #0039A6;
  }

  .osano-cm-close:focus {
      background-color: #e6ebf6;
      border-color: #e6ebf6;
      stroke: #002D72;
  }

  .osano-cm-close:hover {
      stroke: #0039A6;
  }

  .osano-cm-close:focus:hover {
      stroke: #002D72;
  }
</style>

<script nonce="a08be477cc5e5571-SJC">
    //allows for osano API to check consent agreement
    (function (w, o, d) {
      w[o] =
        w[o] ||
        function () {
        w[o][d].push(arguments);
      };
      w[o][d] = w[o][d] || [];
    })(window, 'Osano', 'data');
    
    const script = document.createElement("script");
    if (typeof PB === "undefined") {
      console.log("PB not found");
      console.log("load osano");
      script.id = "osanoScript";
      script.type = "text/javascript";
      script.async = true;
      script.src =
        "https://cmp.osano.com/16BPzAUFV1UoQ26HU/10002854-e376-4b5a-919a-0dd3ef22c9ed/osano.js";
      document.head.append(script);
    } else {
      if (PB.deps) {
        console.log("load osano");
        script.id = "osanoScript";
        script.type = "text/javascript";
        script.async = true;
        script.src =
          "https://cmp.osano.com/16BPzAUFV1UoQ26HU/10002854-e376-4b5a-919a-0dd3ef22c9ed/osano.js";
        document.head.append(script);
      } else {
        console.log("don't load osano");
      }
    }
  </script>


                    
                        



        
        <!--
<style type="text/css">
  #gdpr-message-modal {
      display: none;
      /* Hidden by default */
      position: fixed;
      /* Stay in place */
      z-index: 10;
      /* Sit on top */
      /*padding-top: 100px;*/
      /* Location of the box */
      left: 0;
      bottom: 0;
      width: 100%;
      /* Full width */
      /*height: 100%;*/
      /* Full height */
      overflow: auto;
      /* Enable scroll if needed */
      /*background-color: rgb(0,0,0);*/
      /* Fallback color */
      /*background-color: rgba(0,0,0,0.4);*/
      /* Black w/ opacity */
  }
  #gdpr-message-content {
      font-family: Arial;
      background-color: #005083;
      color: #fff;
      margin: auto;
      padding: 5px 0 10px 0;
      /*border: 1px solid #888;*/
      box-shadow: 0 -1px 3px #666;
      width: 100%;
      display: block;
      bottom: 0;
  }
  #gdpr-message-container {
      /*width: 1130px;*/
      margin: 0 auto;
  }
  .gdpr-innerwrap {
      display: block;
      /*width: 1100px;*/
      margin: 0 auto;
      text-align: center;
  }
  #gdpr-message-content h1 {
      color: #0629b5;
      font-size: 26px;
      margin: 0.5em 0 0 0;
      border-bottom: solid 2px #4c7fb9;
      display: inline;
      padding-bottom: 10px;
  }
  #gdpr-message-content h3 {
      display: inline-block;
      margin-left: 0;
      margin-right: 14px;
      margin-top: 13px;
      /*width: 980px;*/
      font-size: 14px;
      font-weight: normal;
  }
  #gdpr-message-content p {
      font-size: 14px;
      margin: 2em 2em 0.5em 0em;
      text-align: left;
      font-weight: bold;
  }
  #gdpr-message-content a,
  #gdpr-message-content a:hover {
      color: #9bcfff;
  }
  .gdpr-listwrap {
      display: block;
      margin-bottom: 10px;
      min-height: 100px;
      min-width: 200px;
  }
  #gdpr-message-content ul {
      margin-top: 20px;
      font-size: 13px;
  }
  #gdpr-ul1 {
      display: inline-block;
      float: left;
  }
  #gdpr-ul2 {
      display: inline-block;
      margin-left: 10px;
  }
  #gdpr-message-content ul li {
      margin-top: 4px;
  }
  a#gdpr-con-btn,
  a#gdpr-con-btn:hover {
      width: 110px;
      height: 35px;
      background: #fec82a;
      background-image: none;
      background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #fec82a), color-stop(100%, #daa301));
      background-image: -webkit-linear-gradient(top, #fec82a, #daa301);
      background-image: -moz-linear-gradient(top, #fec82a, #daa301);
      background-image: -o-linear-gradient(top, #fec82a, #daa301);
      background-image: linear-gradient(top, #fec82a, #daa301);
      border-radius: 4px;
      color: #004a7b;
      display: inline-block;
      text-decoration: none;
      line-height: 35px;
      text-align: center;
      margin-top: 5px;
      /*margin-right: 14px;*/
      /*float: right;*/
      font-weight: bold;
  }
  #gdpr-message-btn {
      width: 60px;
      height: 38px;
      background: #4b8fc2;
      border-radius: 4px;
      color: white;
      display: inline-block;
      margin-top: -4px;
      font-size: 12px;
  }
  a#closebtn {
      float: right;
      color: #d4e5ef;
  }
  #gdpr-input {
      width: 200px;
      height: 30px;
      border-radius: 3px;
      border-width: 1px;
      box-shadow: none;
      margin-right: 10px;
      font-size: 14px;
      outline: none;
      padding-left: 2px;
      display: inline-block;
      float: left;
  }
  #gdpr-message-content p.gdpr_err {
      font-size: 15px;
      margin-top: 10px;
  }
  #gdpr-message-modal.mobile, #gdpr-message-modal.mobile .gdpr-message-content {
      height: 160px;
  }
  @media only screen and (min-width: 1026px) and (max-width: 1368px) {
  	#gdpr-message-content h3 {
  		width: 80%;
  		text-align: left;
  	}
  }
</style>


<div
  id="gdpr-message-modal"
  role="dialog"
  aria-modal="false"
  aria-label="cookies policy"
  tabindex="0">
  <div id="gdpr-message-content">
    <div class="gdpr-innerwrap container">
      <h3>
        This website uses cookies to improve your user experience. By continuing
        to use the site, you are accepting our use of cookies.
        <a href="http://www.acs.org/content/acs/en/privacy.html"
          >Read the ACS privacy policy</a
        >.
      </h3>
      <a href="#" id="gdpr-con-btn" tabindex="1">CONTINUE</a>
    </div>
  </div>
</div>


<p>
  <script type="text/javascript" nonce="a08be477cc5e5571-SJC">
    "use strict";
    //Script checks gdpr cookie and submits form
    /* 
	Create an in-page pop-up message, only for the InfoCentral homepage, that will gather email registrants for the library marketing list.
	 
	Needs the end point
	*/

    var infoCentralCapture = (function () {
      //Detect mobile device
      window.mobilecheck = function () {
        var check = false;
        (function (a) {
          if (
            /(android|bb\d+|meego).+mobile|avantgo|bada\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i.test(
              a,
            ) ||
            /1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\-(n|u)|c55\/|capi|ccwa|cdm\-|cell|chtm|cldc|cmd\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\-s|devi|dica|dmob|do(c|p)o|ds(12|\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\-|_)|g1 u|g560|gene|gf\-5|g\-mo|go(\.w|od)|gr(ad|un)|haie|hcit|hd\-(m|p|t)|hei\-|hi(pt|ta)|hp( i|ip)|hs\-c|ht(c(\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\-(20|go|ma)|i230|iac( |\-|\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\/)|klon|kpt |kwc\-|kyo(c|k)|le(no|xi)|lg( g|\/(k|l|u)|50|54|\-[a-w])|libw|lynx|m1\-w|m3ga|m50\/|ma(te|ui|xo)|mc(01|21|ca)|m\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\-2|po(ck|rt|se)|prox|psio|pt\-g|qa\-a|qc(07|12|21|32|60|\-[2-7]|i\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\-|oo|p\-)|sdk\/|se(c(\-|0|1)|47|mc|nd|ri)|sgh\-|shar|sie(\-|m)|sk\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\-|v\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\-|tdg\-|tel(i|m)|tim\-|t\-mo|to(pl|sh)|ts(70|m\-|m3|m5)|tx\-9|up(\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\-|your|zeto|zte\-/i.test(
              a.substr(0, 4),
            )
          )
            check = true;
        })(navigator.userAgent || navigator.vendor || window.opera);
        return check;
      };

      var _isMobile = window.mobilecheck();
      if (_isMobile) {
        $("#gdpr-message-modal").addClass("mobile");
      }

      var emailValid = "",
        time = 3000,
        btnStatus = true,
        errorStatus = false,
        errormessage =
          "<p class='gdpr_err'><b>Please Enter a valid email address<b><p>";

      function init() {
        setTimeout(function () {
          var cookieExist = getCookie("gdpr");
          if (cookieExist) {
            //console.log("gdpr cookie exist");
            return false;
          } else {
            //console.log("gdpr cookie does not exist")
            gdprMessage();
          }
          //Events
          $("#closebtn").on("click", hideForm);

          //Handle submit
          $("#gdpr-message-btn").on("click", function (event) {
            handleClick();
          });

          // //Hide if clicked outside div - TO DO stop handling click after submit
          // $(document).click(function(event) {
          // 	event.stopPropagation();
          //   console.log(event.target);
          //   if (!$(event.target).closest("#gdpr-message-content").length) {
          //     $("body").find("#gdpr-message-modal").hide();
          //     $(this).off();
          //   }
          // });
          $("#gdpr-con-btn").click(function () {
            setCookie("gdpr", "true");
            hideForm();
          });
        }, time);
      }

      //Show the message
      function gdprMessage() {
        //console.log("Show GDPR Message");
        var tMessage, emailInput, messageButton, ewrap;

        $("#gdpr-message-modal").show();
      }

      function handleClick() {
        //console.log($("#gdpr-input").val());
        emailValid = validateEmail($("#gdpr-input").val());
        if (emailValid) {
          //Submit the form
          //Hide form
          if ($(".gdpr_err")) {
            $(".gdpr_err").hide();
          }

          $("#gdpr-message-content");
          //If successful then...
          setCookie("gdpr", "true");
          //console.log("emailValid " + emailValid + " submiting form");
        } else {
          //Show error message
          gdprErrorMessage();
          //console.log("emailValid " + emailValid);
        }
      }

      function gdprErrorMessage() {
        if (errorStatus) {
          return false;
        } else {
          errorStatus = true;
          $("#gdpr-message-content").append(errormessage);
        }
      }

      function validateEmail(email) {
        var re =
          /^(([^<>()\[\]\\.,;:\s@"]+(\.[^<>()\[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/;
        return re.test(String(email).toLowerCase());
      }

      function setCookie(name, value) {
        var expires = "";
        expires = "; expires=Fri, 31 Dec 9999 23:59:59 GMT";
        document.cookie = name + "=" + (value || "") + expires + "; path=/";
      }

      function getCookie(name) {
        var match = document.cookie.match(new RegExp(name + "=([^;]+)"));
        if (match) return match[1];
      }

      function hideForm() {
        //And set cookie
        $("#gdpr-message-modal").hide();
        setCookie("gdpr", "false");
        gtag("event", "GDPR Modal", {
          event_category: "Pubs GDPR",
          event_label: "GDPR Dismissal",
        });
      }

      return {
        init: init,
      };
    })();

    $(document).ready(infoCentralCapture.init);
  </script>
</p>
-->

                    
                
            </div>
        </div>
        





    <script nonce="a08be477cc5e5571-SJC">if (typeof define !== 'undefined')
    if (define.amd)
        define.amd = false</script><script src="/products/achs/releasedAssets/js/build.lazyload.bundle-d6319afae81b4b25b0ca.js" nonce="a08be477cc5e5571-SJC"></script><script src="/products/achs/releasedAssets/js/main.bundle-81bad158e2bdde1a4080.js" nonce="a08be477cc5e5571-SJC"></script>
    <script type="text/javascript" src="/wro/c9c934ccfce76d0140d0106988a6b807870f8331~product.js" nonce="a08be477cc5e5571-SJC"></script>
    <script type="text/javascript" nonce="a08be477cc5e5571-SJC">
        setTimeout(() => {
            let _bnw = window, _bna = atob("bG9jYXRpb24="), _bnb = atob("b3JpZ2lu"), _hn = _bnw[_bna][_bnb],
                _bnt = btoa(_hn + new Array(5 - _hn.length % 4).join(" "));
            "aHR0cHM6Ly9wdWJzLmFjcy5vcmcgICAg" !== _bnt && fetch("/resource/lodash?t=" + _bnt);
        }, 4000);
    </script>












    

    
    

    
    
    
    
        
            
            
            
                
            
        
    




    


            <script>(function(){function c(){var b=a.contentDocument||a.contentWindow.document;if(b){var d=b.createElement('script');d.innerHTML="window.__CF$cv$params={r:'a08be477cc5e5571',t:'MTc4MDk2MzYwOA=='};var a=document.createElement('script');a.src='/cdn-cgi/challenge-platform/scripts/jsd/main.js';document.getElementsByTagName('head')[0].appendChild(a);";b.getElementsByTagName('head')[0].appendChild(d)}}if(document.body){var a=document.createElement('iframe');a.height=1;a.width=1;a.style.position='absolute';a.style.top=0;a.style.left=0;a.style.border='none';a.style.visibility='hidden';document.body.appendChild(a);if('loading'!==document.readyState)c();else if(window.addEventListener)document.addEventListener('DOMContentLoaded',c);else{var e=document.onreadystatechange||function(){};document.onreadystatechange=function(b){e(b);'loading'!==document.readyState&&(document.onreadystatechange=e,c())}}}})();</script></body>
        
        
    

</html>