<!doctype html>
<html data-show-bordered-box="false" data-gigya-api="3_62bCG7m365_saJ8Lqsbplm9rZDEABeZ5N18YlC-M7J1-rezFDzd1unK59uH2NAjB" data-captcha-api="6Ldh_hQUAAAAAHEVWPm5Zws143EljE-U5bPELrW9" class="theme-bg-page theme-bg-main no-js " lang="en-US" >
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>The Coca-Cola Foundation Donates $1 Million to American Red Cross for Hurricane Harvey Relief : The Coca-Cola Company</title>
<meta name="keywords" content="community,sustainability,brands,#cocacolarenew,texas,louisiana,coca-cola southwest">
<meta name="description" content="Consumers also can visit Coke.com/give and enter codes found under the caps of Coca-Cola beverages – and inside multi-packs – and convert them into donations to the Red Cross.">


<script type="text/javascript" src="https://s3.amazonaws.com/journey-shared/adobeTarget.js">
  // Javascript needed for Adobe Target
</script> 
<script type="application/ld+json"> "ParentOrganization":{"@type" :"Corporation" ,"name" :"The <nobr>Coca-Cola</nobr> Company","url":"http://www.coca-colacompany.com"}</script>
	<meta name="viewport"
		content="user-scalable=no, width=device-width, initial-scale=1.0, maximum-scale=1.0" />
<meta name="last-published-date" content="2017-08-27">
<meta property="fb:app_id" content="878613815623821">
<meta property="og:type" content="article">
<meta property="og:site_name" content="The Coca-Cola Company">
<meta property="og:title" content="The Coca-Cola Foundation Donates $1 Million to American Red Cross for Hurricane Harvey Relief ">
		<meta property="og:description" content="Consumers also can visit Coke.com/give and enter codes found under the caps of Coca-Cola beverages – and inside multi-packs – and convert them into donations to the Red Cross.">
		<meta property="og:image" content="http://www.coca-colacompany.com/content/dam/journey/us/en/private/2017/08/12253008.jpg">
<meta property="og:url" content="http://www.coca-colacompany.com/coca-cola-unbottled/how-to-use-coca-cola-beverage-codes-to-support-hurricane-harvey-">
<meta property="twitter:card" content="summary_large_image">
	<meta property="twitter:site" content="@COCACOLACO">
	<meta property="twitter:title" content="The Coca-Cola Foundation Donates $1 Million to American Red Cross for Hurricane Harvey Relief ">
			<meta property="twitter:description" content="Consumers also can visit Coke.com/give and enter codes found under the caps of Coca-Cola beverages – and inside multi-packs – and convert them into donations to the Red Cross.">
			<meta property="twitter:image" content="http://www.coca-colacompany.com/content/dam/journey/us/en/private/2017/08/12253008.jpg">
		<meta property="twitter:image:alt" content="dasani ARC Harvey">
	<link rel="canonical" href="http://www.coca-colacompany.com/coca-cola-unbottled/how-to-use-coca-cola-beverage-codes-to-support-hurricane-harvey-">
<link rel="shortcut icon" href="http://www.coca-colacompany.com/content/dam/journey/us/en/private/icons/coke-favicon.png">
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="/content/dam/journey/us/en/private/icons/coke-apple-touch-icon.png"/>
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="/content/dam/journey/us/en/private/icons/coke-apple-touch-icon.rendition.72.72.png"/>
<link rel="apple-touch-icon-precomposed" sizes="57x57" href="/content/dam/journey/us/en/private/icons/coke-apple-touch-icon.rendition.57.57.png"/>
<meta name="apple-mobile-web-app-title" content="Journey">

<link rel="stylesheet" href="/etc/designs/journey/main.css" type="text/css">
<link rel="stylesheet" href="/etc/designs/journey/libs/components/all.css" type="text/css">
<link rel="stylesheet" href="/etc/designs/journey/libs/components/extra.css" type="text/css">
<link rel="stylesheet" href="/etc/designs/journey/theme/default.css" type="text/css">
<link rel="stylesheet" href="/etc/designs/journey/i18n/en_US.css" type="text/css">
<link rel="stylesheet" type="text/css" href="/etc/designs/journey/theme/unbottled.css"/>
<link rel="stylesheet" type="text/css" href="/themes/coca-cola-renew.css"/>
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Roboto+Condensed:400,300" type="text/css">

    <script type="text/javascript" src="//use.typekit.net/hep8iqb.js"></script>
        <script type="text/javascript">try{Typekit.load();}catch(e){}</script>
<script src="https://www.google.com/recaptcha/api.js" async defer></script>

<script>
    // This block fixes granite.js bug with IE
    // prevents IE "Access is Denied" CORS issue
    // Code is copied from granite.js with 1 change
    (function (window, undefined) {
        var FIELD_NAME = ':cq_csrf_token',
            HEADER_NAME = 'CSRF-Token',
            TOKEN_SERVLET = '/libs/granite/csrf/token.json';
            
        function addField(form) {
            if (form.action && !verifySameOrigin(form.getAttribute("action"))) {
                return;
            }

            var input = form.querySelector('input[name="' + FIELD_NAME +'"]');
        
            if (!input) {
                input = document.createElement('input');
                input.setAttribute('type', 'hidden');
                input.setAttribute('name', FIELD_NAME);
                form.appendChild(input);
            }

            input.setAttribute('value', globalToken);
        }

        function handleForm(document) {
            var handler = function(ev) {
                var t = ev.target;
                
                if (t.nodeName.toLowerCase() === 'form' && globalToken) {
                    addField(t);
                }
            };
            
            if (document.addEventListener) {
                document.addEventListener('submit', handler, true);
            } else if (document.attachEvent) {
                document.attachEvent('submit', handler);
            }
        }

        if (window.Node) {
            var ac = Node.prototype.appendChild;
            Node.prototype.appendChild = function() {
                var result = ac.apply(this, arguments);
                if (result.nodeName === 'IFRAME') {
                    if (result.contentWindow && !result._csrf) {
                        result._csrf = true;
                        
                        // prevent IE "Access is Denied" CORS issue
                        // contentWindow.document is type "unknown" in IE when there's a CORS problem
                        if (typeof result.contentWindow.document !== "unknown") {
                            handleForm(result.contentWindow.document);
                        }
                    }
                }
                return result;
            };
        }
    })(this);      
</script>

<script type="text/javascript" src="/etc/clientlibs/granite/jquery.js"></script>
<script type="text/javascript" src="/etc/clientlibs/granite/utils.js"></script>
<script type="text/javascript" src="/etc/clientlibs/granite/jquery/granite.js"></script>
<script type="text/javascript" src="/etc/clientlibs/foundation/jquery.js"></script>
<script type="text/javascript" src="/etc/designs/journey/libs/modernizr.js"></script>

<meta property="fb:pages" content="542678889114683" />
<script>
function copyToClipboard() {
    try {
      selectElementText(document.getElementById("copyToClipboard"));
        var successful = document.execCommand('copy');
        var msg = successful ? 'successful' : 'unsuccessful';
        console.log('Copying text command was ' + msg);
    } catch (err) {
        console.log('Oops, unable to copy');
    }
}

function selectElementText(el) {
    var win = window;
    var doc = win.document, sel, range;
    if (win.getSelection && doc.createRange) {
        sel = win.getSelection();
        range = doc.createRange();
        range.selectNodeContents(el);
        sel.removeAllRanges();
        sel.addRange(range);
    } else if (doc.body.createTextRange) {
        range = doc.body.createTextRange();
        range.moveToElementText(el);
        range.select();
    }
}
</script>
</head>
<!--
         __                              ___   __        .ama     ,
      ,d888a                          ,d88888888888ba.  ,88"I)   d
     a88']8i                         a88".8"8)   `"8888:88  " _a8'
   .d8P' PP                        .d8P'.8  d)      "8:88:baad8P'
  ,d8P' ,ama,   .aa,  .ama.g ,mmm  d8P' 8  .8'        88):888P'
 ,d88' d8[ "8..a8"88 ,8I"88[ I88' d88   ]IaI"        d8[
 a88' ]P "bm8mP8'(8'.8I  8[      d88'    `"         .88
,88I ]P[  .I'.8     88' ,8' I[  ,88P ,ama    ,ama,  d8[  .ama.g
[88' I8, .I' ]8,  ,88B ,d8 aI   (88',88"8)  d8[ "8. 88 ,8I"88[
]88  `8888"  '8888" "88P"8m"    I88 88[ 8[ ]P "bm8m88[.8I  8[
]88,          _,,aaaaaa,_       I88 8"  8 ]P[  .I' 88 88' ,8' I[
`888a,.  ,aadd88888888888bma.   )88,  ,]I I8, .I' )88a8B ,d8 aI
  "888888PP"'        `8""""""8   "888PP'  `8888"  `88P"88P"8m"

Normand Veillieux

-->
<!-- Platform Version: 4.1.1 -->
<!-- Vanity Map Version: 4.1.1 -->
<!-- CloudSearch Version: 4.1.1 -->
<!-- Crosslinker Version:  -->
<!-- Video Ingestion Version:  -->
<!-- Journey Version: 4.1.1 -->

<body itemscope itemtype="http://schema.org/WebPage" data-date-format="MMM d, yyyy" data-vanity-paths='' data-vanity-url="" data-lambda-endpoint="" data-locale="us_en" data-lambda-endpoint-cloudsearchrecords="https://uc8sgmjzag.execute-api.us-east-1.amazonaws.com/prod/getCloudSearchRecords" data-author-mode="false" data-current-page-path="" data-awscloudendpoint="https://rif2f39i2m.execute-api.us-east-1.amazonaws.com" data-awsregion="us-east-1" data-awsversion="beta">
 
       <!-- Google Tag Manager --> <noscript><iframe src="//www.googletagmanager.com/ns.html?id=GTM-NP7TH9" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript> <script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src= '//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f); })(window,document,'script','dataLayer','GTM-NP7TH9');</script> <!-- End Google Tag Manager -->
<div id="wrapper" data-role="page">
       <div class="authorWarning">
             <p class="warningIcon">
                    <i class="fa fa-exclamation-triangle" aria-hidden="true"></i>
             </p>
             <div class="vanityPathsList"></div>
       </div>
 
       <div class="RegionPulldown"><!--googleoff: all-->
<header id="global-header" class="has-packages ">
	<section id="global-hat" class="clearfix">
		<a id="mobile-menu"><i class="icon-reorder" aria-hidden="true"></i></a>
		<div class="vertically-centered">
			<a href="/content/journey/us/en/coca-cola-unbottled" id="mobile-logo">
					<img data-src='{"desktop":"/content/dam/journey/us/en/private/icons/coca-cola-unbottled-logo.jpg","tablet":"/content/dam/journey/us/en/private/icons/coca-cola-logo_554x96.jpg","mobile":"/content/dam/journey/us/en/private/icons/coca-cola-logo_320x76.jpg"}' data-dimensions='{"desktop":"767_96","tablet":"554_96","mobile":"320_76"}' src="/content/dam/journey/us/en/private/icons/coca-cola-unbottled-logo.jpg" alt="coca-cola-unbottled-logo.jpg" title="Coca-Cola Unbottled" class="hidden horizontally-centered"/>
				</a>
			</div>
  	</section>

	<section id="global-menu-items">
		<div id="header-container" role="navigation" aria-label="global_menu">
			<div class="trail RegionalCountrySelector parbase">



    <div id="regional-country-selector" class="sub-nav col col2 not-selectable">
        <ul class="link-list">
            <li class="showMap link-list-item vertically-centered sub-menu-wrapper">
                <a class="sub-menu-link">Locations <span class="region-selected"></span><i class="icon-caret-down" aria-hidden="true"></i><span class="sr-only">Locations</span></a>
            </li>
        </ul>
        <input type="hidden" id="isfrontPageTemplate" value="false" />
        <input type="hidden" id="isunbottledTemplate" value="false" />
    </div>
    <div class="country-sel-map hide">
        <div class="regions-container">
            <ul class="regions">
            
              <li class="regionLabel"><a data-region-name="africa">Africa</a>
                <ul class="sites">
                  
                  <li data-regional-country-code="">
                      	
							<a class="sitelink" data-region-name="africa" href="http://www.coca-colaafrica.com/" target="_blank">Africa</a>
						
						
                  </li>
                  
                  <li data-regional-country-code="">
                      	
							<a class="sitelink" data-region-name="africa" href="http://fr.coca-colamaroc.ma" target="_blank">Morocco</a>
						
						
                  </li>
                  
                </ul>
              </li>
            
              <li class="regionLabel"><a data-region-name="asia-pacific">Asia Pacific</a>
                <ul class="sites">
                  
                  <li data-regional-country-code="">
                      	
							<a class="sitelink" data-region-name="asia-pacific" href="http://www.coca-colajourney.com.au/" target="_blank">Australia</a>
						
						
                  </li>
                  
                  <li data-regional-country-code="">
                      	
							<a class="sitelink" data-region-name="asia-pacific" href="http://www.coca-cola.com.cn/" target="_blank">China</a>
						
						
                  </li>
                  
                  <li data-regional-country-code="">
                      	
							<a class="sitelink" data-region-name="asia-pacific" href="http://www.coca-cola.hk/" target="_blank">Hong Kong</a>
						
						
                  </li>
                  
                  <li data-regional-country-code="">
                      	
							<a class="sitelink" data-region-name="asia-pacific" href="http://www.coca-colaindia.com/" target="_blank">India</a>
						
						
                  </li>
                  
                  <li data-regional-country-code="">
                      	
							<a class="sitelink" data-region-name="asia-pacific" href="http://www.cocacola.co.jp" target="_blank">Japan</a>
						
						
                  </li>
                  
                  <li data-regional-country-code="">
                      	
							<a class="sitelink" data-region-name="asia-pacific" href="http://www.coca-colajourney.co.nz/" target="_blank">New Zealand</a>
						
						
                  </li>
                  
                  <li data-regional-country-code="">
                      	
							<a class="sitelink" data-region-name="asia-pacific" href="http://www.coca-cola.com.sg/" target="_blank">Singapore</a>
						
						
                  </li>
                  
                  <li data-regional-country-code="">
                      	
							<a class="sitelink" data-region-name="asia-pacific" href="http://www.coca-colajourney.co.kr" target="_blank">South Korea</a>
						
						
                  </li>
                  
                  <li data-regional-country-code="">
                      	
							<a class="sitelink" data-region-name="asia-pacific" href="http://en.cocacolavietnam.com/" target="_blank">Vietnam (English)</a>
						
						
                  </li>
                  
                  <li data-regional-country-code="">
                      	
							<a class="sitelink" data-region-name="asia-pacific" href="http://www.cocacolavietnam.com/" target="_blank">Vietnam (Vietnamese)</a>
						
						
                  </li>
                  
                </ul>
              </li>
            
              <li class="regionLabel"><a data-region-name="eurasia">Eurasia</a>
                <ul class="sites">
                  
                  <li data-regional-country-code="">
                      	
							<a class="sitelink" data-region-name="eurasia" href="http://ar.coca-colaarabia.com/" target="_blank">Middle East (Arabic)</a>
						
						
                  </li>
                  
                  <li data-regional-country-code="">
                      	
							<a class="sitelink" data-region-name="eurasia" href="http://en.coca-colaarabia.com/" target="_blank">Middle East (English)</a>
						
						
                  </li>
                  
                  <li data-regional-country-code="">
                      	
							<a class="sitelink" data-region-name="eurasia" href="http://www.coca-colajourney.com.pk/" target="_blank">Pakistan (English)</a>
						
						
                  </li>
                  
                  <li data-regional-country-code="">
                      	
							<a class="sitelink" data-region-name="eurasia" href="http://ur.coca-colajourney.com.pk/" target="_blank">Pakistan (Urdu)</a>
						
						
                  </li>
                  
                </ul>
              </li>
            
              <li class="regionLabel"><a data-region-name="europe">Europe</a>
                <ul class="sites">
                  
                  <li data-regional-country-code="">
                      	
							<a class="sitelink" data-region-name="europe" href="http://www.coca-cola-oesterreich.at/" target="_blank">Austria</a>
						
						
                  </li>
                  
                  <li data-regional-country-code="">
                      	
							<a class="sitelink" data-region-name="europe" href="http://nl.cocacolabelgium.be/" target="_blank">Belgium (Dutch)</a>
						
						
                  </li>
                  
                  <li data-regional-country-code="">
                      	
							<a class="sitelink" data-region-name="europe" href="http://fr.cocacolabelgium.be/" target="_blank">Belgium (French)</a>
						
						
                  </li>
                  
                  <li data-regional-country-code="">
                      	
							<a class="sitelink" data-region-name="europe" href="http://www.coca-cola.dk/" target="_blank">Denmark</a>
						
						
                  </li>
                  
                  <li data-regional-country-code="">
                      	
							<a class="sitelink" data-region-name="europe" href="http://www.coca-cola.fi/" target="_blank">Finland</a>
						
						
                  </li>
                  
                  <li data-regional-country-code="">
                      	
							<a class="sitelink" data-region-name="europe" href="http://www.coca-cola-france.fr/" target="_blank">France</a>
						
						
                  </li>
                  
                  <li data-regional-country-code="">
                      	
							<a class="sitelink" data-region-name="europe" href="http://www.coca-cola-deutschland.de/" target="_blank">Germany</a>
						
						
                  </li>
                  
                  <li data-regional-country-code="">
                      	
							<a class="sitelink" data-region-name="europe" href="http://www.coca-cola.co.uk" target="_blank">Great Britain</a>
						
						
                  </li>
                  
                  <li data-regional-country-code="">
                      	
							<a class="sitelink" data-region-name="europe" href="https://www.coca-cola.hu/" target="_blank">Hungary</a>
						
						
                  </li>
                  
                  <li data-regional-country-code="">
                      	
							<a class="sitelink" data-region-name="europe" href="http://www.coca-cola.ie/" target="_blank">Ireland</a>
						
						
                  </li>
                  
                  <li data-regional-country-code="">
                      	
							<a class="sitelink" data-region-name="europe" href="http://www.coca-colaitalia.it/" target="_blank">Italy</a>
						
						
                  </li>
                  
                  <li data-regional-country-code="">
                      	
							<a class="sitelink" data-region-name="europe" href="http://www.cocacolanederland.nl/" target="_blank">Netherlands</a>
						
						
                  </li>
                  
                  <li data-regional-country-code="">
                      	
							<a class="sitelink" data-region-name="europe" href="http://www.coca-cola.no/" target="_blank">Norway</a>
						
						
                  </li>
                  
                  <li data-regional-country-code="">
                      	
							<a class="sitelink" data-region-name="europe" href="http://www.cocacolaportugal.pt/" target="_blank">Portugal</a>
						
						
                  </li>
                  
                  <li data-regional-country-code="">
                      	
							<a class="sitelink" data-region-name="europe" href="http://www.cocacola.com.pl/" target="_blank">Poland</a>
						
						
                  </li>
                  
                  <li data-regional-country-code="">
                      	
							<a class="sitelink" data-region-name="europe" href="http://www.coca-colarussia.ru" target="_blank">Russia</a>
						
						
                  </li>
                  
                  <li data-regional-country-code="">
                      	
							<a class="sitelink" data-region-name="europe" href="http://www.cocacolaespana.es/" target="_blank">Spain</a>
						
						
                  </li>
                  
                  <li data-regional-country-code="">
                      	
							<a class="sitelink" data-region-name="europe" href="http://www.coca-cola.se/" target="_blank">Sweden</a>
						
						
                  </li>
                  
                  <li data-regional-country-code="">
                      	
							<a class="sitelink" data-region-name="europe" href="https://www.coca-cola.ch" target="_blank">Switzerland</a>
						
						
                  </li>
                  
                  <li data-regional-country-code="">
                      	
							<a class="sitelink" data-region-name="europe" href="http://www.coca-colaukraine.com/" target="_blank">Ukraine</a>
						
						
                  </li>
                  
                </ul>
              </li>
            
              <li class="regionLabel"><a data-region-name="latin-america">Latin America</a>
                <ul class="sites">
                  
                  <li data-regional-country-code="">
                      	
							<a class="sitelink" data-region-name="latin-america" href="http://www.cocacoladeargentina.com.ar" target="_blank">Argentina</a>
						
						
                  </li>
                  
                  <li data-regional-country-code="">
                      	
							<a class="sitelink" data-region-name="latin-america" href="http://www.coca-coladebolivia.com.bo" target="_blank">Bolivia</a>
						
						
                  </li>
                  
                  <li data-regional-country-code="">
                      	
							<a class="sitelink" data-region-name="latin-america" href="http://www.cocacolabrasil.com.br/" target="_blank">Brazil</a>
						
						
                  </li>
                  
                  <li data-regional-country-code="">
                      	
							<a class="sitelink" data-region-name="latin-america" href="http://www.cocacoladechile.cl/" target="_blank">Chile</a>
						
						
                  </li>
                  
                  <li data-regional-country-code="co">
                      	
							<a class="sitelink" data-region-name="latin-america" href="http://journey.coca-cola.com/homepage.co.html" target="_blank">Colombia</a>
						
						
                  </li>
                  
                  <li data-regional-country-code="cr">
                      	
							<a class="sitelink" data-region-name="latin-america" href="http://journey.coca-cola.com/homepage.cr.html" target="_blank">Costa Rica</a>
						
						
                  </li>
                  
                  <li data-regional-country-code="do">
                      	
							<a class="sitelink" data-region-name="latin-america" href="http://journey.coca-cola.com/homepage.do.html" target="_blank">Dominican Republic</a>
						
						
                  </li>
                  
                  <li data-regional-country-code="ec">
                      	
							<a class="sitelink" data-region-name="latin-america" href="http://journey.coca-cola.com/homepage.ec.html" target="_blank">Ecuador</a>
						
						
                  </li>
                  
                  <li data-regional-country-code="sv">
                      	
							<a class="sitelink" data-region-name="latin-america" href="http://journey.coca-cola.com/homepage.sv.html" target="_blank">El Salvador</a>
						
						
                  </li>
                  
                  <li data-regional-country-code="gt">
                      	
							<a class="sitelink" data-region-name="latin-america" href="http://journey.coca-cola.com/homepage.gt.html" target="_blank">Guatemala</a>
						
						
                  </li>
                  
                  <li data-regional-country-code="hn">
                      	
							<a class="sitelink" data-region-name="latin-america" href="http://journey.coca-cola.com/homepage.hn.html" target="_blank">Honduras</a>
						
						
                  </li>
                  
                  <li data-regional-country-code="">
                      	
							<a class="sitelink" data-region-name="latin-america" href="http://www.coca-colamexico.com.mx/" target="_blank">Mexico</a>
						
						
                  </li>
                  
                  <li data-regional-country-code="ni">
                      	
							<a class="sitelink" data-region-name="latin-america" href="http://journey.coca-cola.com/homepage.ni.html" target="_blank">Nicaragua</a>
						
						
                  </li>
                  
                  <li data-regional-country-code="pa">
                      	
							<a class="sitelink" data-region-name="latin-america" href="http://journey.coca-cola.com/homepage.pa.html" target="_blank">Panama</a>
						
						
                  </li>
                  
                  <li data-regional-country-code="">
                      	
							<a class="sitelink" data-region-name="latin-america" href="http://www.coca-coladeparaguay.com.py/" target="_blank">Paraguay</a>
						
						
                  </li>
                  
                  <li data-regional-country-code="">
                      	
							<a class="sitelink" data-region-name="latin-america" href="http://www.cocacoladeperu.com.pe" target="_blank">Peru</a>
						
						
                  </li>
                  
                  <li data-regional-country-code="">
                      	
							<a class="sitelink" data-region-name="latin-america" href="http://www.coca-coladeuruguay.com.uy/" target="_blank">Uruguay</a>
						
						
                  </li>
                  
                  <li data-regional-country-code="ve">
                      	
							<a class="sitelink" data-region-name="latin-america" href="http://journey.coca-cola.com/homepage.ve.html" target="_blank">Venezuela</a>
						
						
                  </li>
                  
                </ul>
              </li>
            
              <li class="regionLabel"><a data-region-name="north-america">North America</a>
                <ul class="sites">
                  
                  <li data-regional-country-code="">
                      	
						
							<a class="sitelink" data-region-name="north-america" href="http://www.coca-colacompany.com">Global</a>
						
                  </li>
                  
                  <li data-regional-country-code="">
                      	
							<a class="sitelink" data-region-name="north-america" href="http://www.coca-cola.ca" target="_blank">Canada (English)</a>
						
						
                  </li>
                  
                  <li data-regional-country-code="">
                      	
							<a class="sitelink" data-region-name="north-america" href="http://fr.coca-cola.ca" target="_blank">Canada (French)</a>
						
						
                  </li>
                  
                </ul>
              </li>
            
            </ul>            
        </div>
        <div class="map-container">
                   <img data-src='{
           "desktop":"../../../../../../etc/designs/journey/main/images/regional-map-desktop1.png",
           "tablet":"../../../../../../etc/designs/journey/main/images/regional-map-desktop.png"}' src="../../../../../../etc/designs/journey/main/images/regional-map-desktop1.png" alt="World map">
             <div class="overlay" data-class-region=""></div>
        </div>           
    </div>  
    <div class="desktop-tablet-sub-menu" id="js-regional-country-menu">
        <div class="content-bounds">
            <ul class="section-column">
                <li class="primary">
                    <a>Locations <span class="region-selected"></span></a>
                </li>
            </ul>
        </div>
    </div>    


</div>
<div class="flyout parbase CorporateFlyout"><div class="sub-nav col col1 not-selectable">
    <ul class="link-list">
      <div class="Nav"><li class="link-list-item vertically-centered">
    <a href="/investors" id="investors-link">
	<span itemprop="name" data-title='{"desktop":"Investors","tablet":"Investors","mobile":"Investors"}'>Investors</span>
    </a>
</li>
    </div>
<li class="link-list-item our-company vertically-centered sub-menu-wrapper" data-linked-menu-id="js-company-menu">
            <span class="bar">|</span>
            <a class="sub-menu-link">
                <span itemprop="name" data-override-size="" data-title='{"desktop":"<nobr>The <nobr>Coca-Cola</nobr> Company</nobr> <strong class=\"theme-secondary knockout-bgcolor\"></strong>","tablet":"<nobr>The <nobr>Coca-Cola</nobr> Company</nobr> <strong class=\"theme-secondary knockout-bgcolor\"></strong>","mobile":"<nobr></nobr> <strong class=\"theme-secondary knockout-bgcolor\"></strong>"}' class="">
                    <nobr>The <nobr>Coca-Cola</nobr> Company</nobr> <strong class="theme-secondary knockout-bgcolor"></strong></span>
                <i class="icon-caret-down" aria-hidden="true"></i>
            </a>
        </li>
	  </ul>
</div>
<div class="desktop-tablet-sub-menu" id="js-company-menu">
    <div class="content-bounds">
        <ul class=" section-column ">   
            <li class="primary">
    	<a href="http://www.coca-colacompany.com/our-company/"><span itemprop="name" data-override-size="" data-title='{"desktop":"Our Company","tablet":"Our Company","mobile":"Our Company"}' class="">Our Company</span>
                </a>
            </li>
            <li>
			       	    <a href="/our-company">
			                <span itemprop="name" data-override-size="" data-title='{"desktop":"Our Company Main","tablet":"Our Company Main","mobile":"Our Company Main"}' class="">Our Company Main</span>
                             </a>
                        </li>
                     <li>
	                        <a href="/our-company/about-coca-cola-journey">
	                            <span itemprop="name" data-override-size="" data-title='{"desktop":"About <nobr>Coca-Cola</nobr> Journey","tablet":"About <nobr>Coca-Cola</nobr> Journey","mobile":"About <nobr>Coca-Cola</nobr> Journey"}' class="">About <nobr>Coca-Cola</nobr> Journey</span>
	                        </a>
	                    </li>
	               <li>
	                        <a href="/our-company/mission-vision-values">
	                            <span itemprop="name" data-override-size="" data-title='{"desktop":"Mission, Vision & Values","tablet":"Mission, Vision & Values","mobile":"Mission, Vision & Values"}' class="">Mission, Vision & Values</span>
	                        </a>
	                    </li>
	               <li>
	                        <a href="/our-company/diversity">
	                            <span itemprop="name" data-override-size="" data-title='{"desktop":"Diversity & Inclusion","tablet":"Diversity & Inclusion","mobile":"Diversity & Inclusion"}' class="">Diversity & Inclusion</span>
	                        </a>
	                    </li>
	               <li>
	                        <a href="/our-company/human-and-workplace-rights">
	                            <span itemprop="name" data-override-size="" data-title='{"desktop":"Human and Workplace Rights","tablet":"Human and Workplace Rights","mobile":"Human and Workplace Rights"}' class="">Human and Workplace Rights</span>
	                        </a>
	                    </li>
	               <li>
	                        <a href="/our-company/workplace-overview">
	                            <span itemprop="name" data-override-size="" data-title='{"desktop":"Workplace Overview","tablet":"Workplace Overview","mobile":"Workplace Overview"}' class="">Workplace Overview</span>
	                        </a>
	                    </li>
	               <li>
	                        <a href="/our-company/suppler-diversity">
	                            <span itemprop="name" data-override-size="" data-title='{"desktop":"Supplier Diversity","tablet":"Supplier Diversity","mobile":"Supplier Diversity"}' class="">Supplier Diversity</span>
	                        </a>
	                    </li>
	               <li>
	                        <a href="/our-company/leadership">
	                            <span itemprop="name" data-override-size="" data-title='{"desktop":"Coca-Cola Leaders","tablet":"Coca-Cola Leaders","mobile":"Coca-Cola Leaders"}' class="">Coca-Cola Leaders</span>
	                        </a>
	                    </li>
	               <li>
	                        <a href="/our-company/the-coca-cola-system">
	                            <span itemprop="name" data-override-size="" data-title='{"desktop":"The <nobr>Coca-Cola</nobr> System","tablet":"The <nobr>Coca-Cola</nobr> System","mobile":"The <nobr>Coca-Cola</nobr> System"}' class="">The <nobr>Coca-Cola</nobr> System</span>
	                        </a>
	                    </li>
	               <li>
	                        <a href="/our-company/company-history">
	                            <span itemprop="name" data-override-size="" data-title='{"desktop":"Company History","tablet":"Company History","mobile":"Company History"}' class="">Company History</span>
	                        </a>
	                    </li>
	               <li>
	                        <a href="/our-company/company-reports">
	                            <span itemprop="name" data-override-size="" data-title='{"desktop":"Company Reports","tablet":"Company Reports","mobile":"Company Reports"}' class="">Company Reports</span>
	                        </a>
	                    </li>
	               <li>
	                        <a href="/our-company/sustainability-report">
	                            <span itemprop="name" data-override-size="" data-title='{"desktop":"Sustainability Report","tablet":"Sustainability Report","mobile":"Sustainability Report"}' class="">Sustainability Report</span>
	                        </a>
	                    </li>
	               <li>
	                        <a href="/our-company/coca-cola-product-facts">
	                            <span itemprop="name" data-override-size="" data-title='{"desktop":"Coca-Cola Product Facts (U.S.)","tablet":"Coca-Cola Product Facts (U.S.)","mobile":"Coca-Cola Product Facts (U.S.)"}' class="">Coca-Cola Product Facts (U.S.)</span>
	                        </a>
	                    </li>
	               <li>
	                        <a href="/our-company/the-coca-cola-foundation-giving-back">
	                            <span itemprop="name" data-override-size="" data-title='{"desktop":"The <nobr>Coca-Cola</nobr> Foundation","tablet":"The <nobr>Coca-Cola</nobr> Foundation","mobile":"The <nobr>Coca-Cola</nobr> Foundation"}' class="">The <nobr>Coca-Cola</nobr> Foundation</span>
	                        </a>
	                    </li>
	               <li>
	                        <a href="/our-company/world-of-coca-cola">
	                            <span itemprop="name" data-override-size="" data-title='{"desktop":"World of <nobr>Coca-Cola</nobr>","tablet":"World of <nobr>Coca-Cola</nobr>","mobile":"World of <nobr>Coca-Cola</nobr>"}' class="">World of <nobr>Coca-Cola</nobr></span>
	                        </a>
	                    </li>
	               <li>
	                        <a href="/our-company/coca-cola-store">
	                            <span itemprop="name" data-override-size="" data-title='{"desktop":"Coca-Cola Store","tablet":"Coca-Cola Store","mobile":"Coca-Cola Store"}' class="">Coca-Cola Store</span>
	                        </a>
	                    </li>
	               </ul>
           <ul class=" section-column ">   
            <li class="primary">
    	<a href="http://www.coca-colacompany.com/our-company/"><span itemprop="name" data-override-size="" data-title='{"desktop":"Investors","tablet":"Investors","mobile":"Investors"}' class="">Investors</span>
                </a>
            </li>
            <li>
			       	    <a href="/investors">
			                <span itemprop="name" data-override-size="" data-title='{"desktop":"Investors Main","tablet":"Investors Main","mobile":"Investors Main"}' class="">Investors Main</span>
                             </a>
                        </li>
                     <li>
	                        <a href="/investors/year-in-review">
	                            <span itemprop="name" data-override-size="" data-title='{"desktop":"2016 Year in Review","tablet":"2016 Year in Review","mobile":"2016 Year in Review"}' class="">2016 Year in Review</span>
	                        </a>
	                    </li>
	               <li>
	                        <a href="/investors/investors-info-reports-and-financial-information">
	                            <span itemprop="name" data-override-size="" data-title='{"desktop":"Investors Info: Financial Reports and Information","tablet":"Investors Info: Financial Reports and Information","mobile":"Financial Reports and Information"}' class="">Investors Info: Financial Reports and Information</span>
	                        </a>
	                    </li>
	               <li>
	                        <a href="/investors/investors-info-stock-information">
	                            <span itemprop="name" data-override-size="" data-title='{"desktop":"Investors Info: Stock Information","tablet":"Investors Info: Stock Information","mobile":"Stock Information"}' class="">Investors Info: Stock Information</span>
	                        </a>
	                    </li>
	               <li>
	                        <a href="/investors/investors-info-investor-webcasts-and-events">
	                            <span itemprop="name" data-override-size="" data-title='{"desktop":"Investors Info: Investor Webcasts and Events","tablet":"Investors Info: Investor Webcasts and Events","mobile":"Investor Webcasts and Events"}' class="">Investors Info: Investor Webcasts and Events</span>
	                        </a>
	                    </li>
	               <li>
	                        <a href="/investors/shareowner-information">
	                            <span itemprop="name" data-override-size="" data-title='{"desktop":"Shareowner Information","tablet":"Shareowner Information","mobile":"Shareowner Information"}' class="">Shareowner Information</span>
	                        </a>
	                    </li>
	               <li>
	                        <a href="/investors/corporate-governance">
	                            <span itemprop="name" data-override-size="" data-title='{"desktop":"Corporate Governance","tablet":"Corporate Governance","mobile":"Corporate Governance"}' class="">Corporate Governance</span>
	                        </a>
	                    </li>
	               <li>
	                        <a href="/investors/investors-info-sec-filings">
	                            <span itemprop="name" data-override-size="" data-title='{"desktop":"Investors Info: SEC Filings","tablet":"Investors Info: SEC Filings","mobile":"Investors Info: SEC Filings"}' class="">Investors Info: SEC Filings</span>
	                        </a>
	                    </li>
	               </ul>
           <ul class=" section-column ">   
            <li class="primary">
    	<a href="http://www.coca-colacompany.com/our-company/"><span itemprop="name" data-override-size="" data-title='{"desktop":"Press Center","tablet":"Press Center","mobile":"Press Center"}' class="">Press Center</span>
                </a>
            </li>
            <li>
			       	    <a href="/press-center">
			                <span itemprop="name" data-override-size="" data-title='{"desktop":"Press Center Main","tablet":"Press Center Main","mobile":"Press Center Main"}' class="">Press Center Main</span>
                             </a>
                        </li>
                     <li>
	                        <a href="/press-center/press-releases">
	                            <span itemprop="name" data-override-size="" data-title='{"desktop":"Press Releases","tablet":"Press Releases","mobile":"Press Releases"}' class="">Press Releases</span>
	                        </a>
	                    </li>
	               <li>
	                        <a href="/press-center/company-statements">
	                            <span itemprop="name" data-override-size="" data-title='{"desktop":"Company Statements","tablet":"Company Statements","mobile":"Company Statements"}' class="">Company Statements</span>
	                        </a>
	                    </li>
	               <li>
	                        <a href="/press-center/leadership">
	                            <span itemprop="name" data-override-size="" data-title='{"desktop":"Leadership","tablet":"Leadership","mobile":"Leadership"}' class="">Leadership</span>
	                        </a>
	                    </li>
	               <li>
	                        <a href="/press-center/a-v-library">
	                            <span itemprop="name" data-override-size="" data-title='{"desktop":"Video Library","tablet":"Video Library","mobile":"Video Library"}' class="">Video Library</span>
	                        </a>
	                    </li>
	               <li>
	                        <a href="/press-center/image-library">
	                            <span itemprop="name" data-override-size="" data-title='{"desktop":"Image Library","tablet":"Image Library","mobile":"Image Library"}' class="">Image Library</span>
	                        </a>
	                    </li>
	               <li>
	                        <a href="/press-center/press-contacts">
	                            <span itemprop="name" data-override-size="" data-title='{"desktop":"Press Contacts","tablet":"Press Contacts","mobile":"Press Contacts"}' class="">Press Contacts</span>
	                        </a>
	                    </li>
	               </ul>
           <ul class=" section-column ">   
            <li class="primary">
    	<a href="http://www.coca-colacompany.com/our-company/"><span itemprop="name" data-override-size="" data-title='{"desktop":"Careers","tablet":"Careers","mobile":"Careers"}' class="">Careers</span>
                </a>
            </li>
            <li>
			       	    <a href="/careers">
			                <span itemprop="name" data-override-size="" data-title='{"desktop":"Careers Main","tablet":"Careers Main","mobile":"Careers Main"}' class="">Careers Main</span>
                             </a>
                        </li>
                     </ul>
           <ul class=" section-column ">   
            <li class="primary">
    	<a href="http://www.coca-colacompany.com/our-company/"><span itemprop="name" data-override-size="" data-title='{"desktop":"Contact Us","tablet":"Contact Us","mobile":"Contact Us"}' class="">Contact Us</span>
                </a>
            </li>
            <li>
			       	    <a href="/contact-us">
			                <span itemprop="name" data-override-size="" data-title='{"desktop":"Contact Us Main","tablet":"Contact Us Main","mobile":"Contact Us Main"}' class="">Contact Us Main</span>
                             </a>
                        </li>
                     <li>
	                        <a href="/contact-us/faqs">
	                            <span itemprop="name" data-override-size="" data-title='{"desktop":"FAQs","tablet":"FAQs","mobile":"FAQs"}' class="">FAQs</span>
	                        </a>
	                    </li>
	               </ul>
           </div>
</div></div>
<div class="sub-nav col col0">
				<div class="CloudSearchBox cloudSearch"><div class="search-box" role="search" aria-labelledby="search">
    <div id="search">
    	<form action="/search" id="cloudsearch" accept-charset="UTF-8">
        	<input type="text" name="q" id="q" value="" placeholder="Search" class="search-query-field" autocomplete="off" aria-label="Search">
        	<div class="icon-container"><i class="icon-search" aria-hidden="true"></i> <span class="sr-only">Search</span></div>
        </form>
    </div>
</div></div>
</div>
		</div>

		<section id="global-banner" class="hidden-phone">
			<div class="container">
				<div class="vertically-centered">
						<a href="/homepage"> <!-- end anchor tag -->

						
							<img data-src='{"desktop":"/content/dam/journey/us/en/private/icons/journey-logo_253x96.jpg","tablet":"/content/dam/journey/us/en/private/icons/journey-logo_253x96.rendition.206.96.jpg","mobile":"/content/dam/journey/us/en/private/icons/journey-logo_253x96.rendition.206.76.jpg"}' data-dimensions='{"desktop":"253_96","tablet":"206_96","mobile":"206_76"}' src="/content/dam/journey/us/en/private/icons/journey-logo_253x96.jpg" alt="journey-logo_253x96.jpg" title="" class="slice"/>
						</a>
					   	<a href="/content/journey/us/en/coca-cola-unbottled">
							<img data-src='{"desktop":"/content/dam/journey/us/en/private/icons/coca-cola-unbottled-logo.jpg","tablet":"/content/dam/journey/us/en/private/icons/coca-cola-logo_554x96.jpg","mobile":"/content/dam/journey/us/en/private/icons/coca-cola-logo_320x76.jpg"}' data-dimensions='{"desktop":"767_96","tablet":"554_96","mobile":"320_76"}' src="/content/dam/journey/us/en/private/icons/coca-cola-unbottled-logo.jpg" alt="coca-cola-unbottled-logo.jpg" title="" class="hidden slice horizontally-centered"/>
						</a>
					</div>
			  	</div>
		</section>

		<div class="TopNavigation parbase topNav"><section id="global-section-nav" role="navigation" aria-label="top_menu">
    <nav class="container clearfix">
    <ul class="sections" data-total-sections="7">
    <li class="section">
       	    <a tabindex="1" href="/homepage" class=" section-link first">
					<div class="section-link-text">
					<span itemprop="name" data-override-size="" data-title='{
						"desktop":"Front Page<strong class=\"theme-secondary\"></strong>",
						"tablet":"Front Page<strong class=\"theme-secondary\"></strong>",
						"mobile":"Front Page<strong class=\"theme-secondary\"></strong>"}'>
							
						Front Page<strong class="theme-secondary"></strong></span>
                </div>
            </a>
        </li>
        <li class="section">
       	    <a tabindex="2" href="/brands" class=" section-link ">
					<div class="section-link-text">
					<span itemprop="name" data-override-size="" data-title='{
						"desktop":"BRANDS<strong class=\"theme-secondary\"></strong>",
						"tablet":"BRANDS<strong class=\"theme-secondary\"></strong>",
						"mobile":"BRANDS<strong class=\"theme-secondary\"></strong>"}'>
							
						BRANDS<strong class="theme-secondary"></strong></span>
                </div>
            </a>
        </li>
        <li class="section">
       	    <a tabindex="3" href="/our-way-forward" class=" section-link ">
					<div class="section-link-text">
					<span itemprop="name" data-override-size="" data-title='{
						"desktop":"OUR WAY FORWARD<strong class=\"theme-secondary\"></strong>",
						"tablet":"OUR WAY FORWARD<strong class=\"theme-secondary\"></strong>",
						"mobile":"OUR WAY FORWARD<strong class=\"theme-secondary\"></strong>"}'>
							
						OUR WAY FORWARD<strong class="theme-secondary"></strong></span>
                </div>
            </a>
        </li>
        <li class="section">
       	    <a tabindex="4" href="/sustainability" class=" section-link ">
					<div class="section-link-text">
					<span itemprop="name" data-override-size="" data-title='{
						"desktop":"SUSTAINABILITY<strong class=\"theme-secondary\"></strong>",
						"tablet":"SUSTAINABILITY<strong class=\"theme-secondary\"></strong>",
						"mobile":"SUSTAINABILITY<strong class=\"theme-secondary\"></strong>"}'>
							
						SUSTAINABILITY<strong class="theme-secondary"></strong></span>
                </div>
            </a>
        </li>
        <li class="section">
       	    <a tabindex="5" href="/innovation" class=" section-link ">
					<div class="section-link-text">
					<span itemprop="name" data-override-size="" data-title='{
						"desktop":"INNOVATION<strong class=\"theme-secondary\"></strong>",
						"tablet":"INNOVATION<strong class=\"theme-secondary\"></strong>",
						"mobile":"INNOVATION<strong class=\"theme-secondary\"></strong>"}'>
							
						INNOVATION<strong class="theme-secondary"></strong></span>
                </div>
            </a>
        </li>
        <li class="section">
       	    <a tabindex="6" href="/history" class=" section-link ">
					<div class="section-link-text">
					<span itemprop="name" data-override-size="" data-title='{
						"desktop":"HISTORY<strong class=\"theme-secondary\"></strong>",
						"tablet":"HISTORY<strong class=\"theme-secondary\"></strong>",
						"mobile":"HISTORY<strong class=\"theme-secondary\"></strong>"}'>
							
						HISTORY<strong class="theme-secondary"></strong></span>
                </div>
            </a>
        </li>
        <li class="section">
       	    <a tabindex="7" href="/coca-cola-unbottled" class="active section-link ">
					<div class="section-link-text">
					<span itemprop="name" data-override-size="" data-title='{
						"desktop":"UNBOTTLED<strong class=\"theme-secondary\"></strong>",
						"tablet":"UNBOTTLED<strong class=\"theme-secondary\"></strong>",
						"mobile":"UNBOTTLED<strong class=\"theme-secondary\"></strong>"}'>
							
						UNBOTTLED<strong class="theme-secondary"></strong></span>
                </div>
            </a>
        </li>
        </ul>
	</nav>
</section>
</div>
<div class="Nav"><section id="global-package-nav" class="collapsed">
        <div class="container">
            <ul class="packages" data-total-packages="6">
                <li class="package first" data-package-id="#"> <!-- keep </li><li> together -->
                    <a href="/fifa-world-cup" class="package-link " data-has-tooltip="false">
                        <div class="package-link-text">
                            <span itemprop="name" data-override-size=""
                                    data-title='{"desktop":"2018 FIFA World Cup Russia","tablet":"2018 FIFA World Cup Russia","mobile":"2018 FIFA World Cup Russia"}'
                                    class="">2018 FIFA World Cup Russia</span>
                                </div>
                    </a>
                </li><li class="package " data-package-id="#"> <!-- keep </li><li> together -->
                    <a href="/commitment" class="package-link " data-has-tooltip="false">
                        <i class="package-link-separator icon-circle" aria-hidden="true"></i>
                        <div class="package-link-text">
                            <span itemprop="name" data-override-size=""
                                    data-title='{"desktop":"#CocaColaRenew","tablet":"#CocaColaRenew","mobile":"#CocaColaRenew"}'
                                    class="">#CocaColaRenew</span>
                                </div>
                    </a>
                </li><li class="package " data-package-id="#"> <!-- keep </li><li> together -->
                    <a href="/5by20" class="package-link " data-has-tooltip="false">
                        <i class="package-link-separator icon-circle" aria-hidden="true"></i>
                        <div class="package-link-text">
                            <span itemprop="name" data-override-size=""
                                    data-title='{"desktop":"5by20","tablet":"5by20","mobile":"5by20"}'
                                    class="">5by20</span>
                                </div>
                    </a>
                </li><li class="package " data-package-id="#"> <!-- keep </li><li> together -->
                    <a href="/cokestyle" class="package-link " data-has-tooltip="false">
                        <i class="package-link-separator icon-circle" aria-hidden="true"></i>
                        <div class="package-link-text">
                            <span itemprop="name" data-override-size=""
                                    data-title='{"desktop":"#cokestyle","tablet":"#cokestyle","mobile":"#cokestyle"}'
                                    class="">#cokestyle</span>
                                </div>
                    </a>
                </li><li class="package " data-package-id="#"> <!-- keep </li><li> together -->
                    <a href="/2016-sustainability-report" class="package-link " data-has-tooltip="false">
                        <i class="package-link-separator icon-circle" aria-hidden="true"></i>
                        <div class="package-link-text">
                            <span itemprop="name" data-override-size=""
                                    data-title='{"desktop":"2016 Sustainability Report","tablet":"2016 Sustainability Report","mobile":"2016 Sustainability Report"}'
                                    class="">2016 Sustainability Report</span>
                                </div>
                    </a>
                </li><li class="package " data-package-id="#"> <!-- keep </li><li> together -->
                    <a href="/our-company/transparency" class="package-link " data-has-tooltip="false">
                        <i class="package-link-separator icon-circle" aria-hidden="true"></i>
                        <div class="package-link-text">
                            <span itemprop="name" data-override-size=""
                                    data-title='{"desktop":"Our Commitment to Transparency","tablet":"Our Commitment to Transparency","mobile":"Our Commitment to Transparency"}'
                                    class="">Our Commitment to Transparency</span>
                                </div>
                    </a>
                </li><!-- keep </li><li> together -->
            </ul>
        </div>
    </section>
    <div class="fold fold-left"></div>
    <div class="fold fold-right"></div>
</div>
</section>
</header>
<!--googleon: all--></div>
<div class="wrapper">
		<div class="theme-bg-banner"> 
                <div class="Breadcrumbs breadcrumbs"><div id="bc_container">
        <nav class="breadcrumb" role="navigation" aria-label="breadCrumbs">
            <ol id="breadcrumb" itemscope itemtype="http://data-vocabulary.org/BreadcrumbList">
                <li itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem" class="">
                            <span itemprop="name">
                                        <a href="/homepage" itemprop="url" rel="home" title="FRONT PAGE" class="theme-contrast">FRONT PAGE</a>
                        	                </span>
                                </li>
                    <font>&gt;</font>
                        <li itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem" class="">
                            <span itemprop="name">
                                        <a href="/commitment" itemprop="url" rel="home" title="Coca-Cola Renew" class="theme-contrast"><nobr>Coca-Cola</nobr> Renew</a>
                        	                </span>
                                </li>
                    <font>&gt;</font>
                        <li itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem" class="active">
                            <span itemprop="name" class="shorten-breadcrumb theme-contrast">The <nobr>Coca-Cola</nobr> Foundation Donates $1 Million to American Red Cross for Hurricane Harvey Relief </span>
                                </li>
                    </ol>
        </nav>
    </div>
</div>
</div>
         <div class="article-nav">
        <div class="SubNavigation subNavigations"><div class="sub-navigations"  >
	 	<div class="subNavWrapper" role="navigation" aria-label="subNav">
					<div class="subNavTop subNav" id="subNavTop">
						<div class="subNavTop_inner subNav_inner">
							<ul class="subNavTopLevel">
								</ul>
						</div>
					</div>

					<a href="javascript:;" class="top_prev"></a>
					<a href="javascript:;" class="top_next"></a>
					</div>
		</div>
</div>
</div>
    <div class="article-blog-template ">
    <div class="ArticleTitle"><h1 class="theme-main-title heading-xlarge">
            <span itemprop="name" data-title='{
                "desktop":"<strong class=\"theme-secondary\">The <nobr>Coca-Cola</nobr> Foundation Donates $1 Million</strong> to American Red Cross for Hurricane Harvey Relief ",
                "tablet":"<strong class=\"theme-secondary\">The <nobr>Coca-Cola</nobr> Foundation Donates $1 Million</strong> to American Red Cross for Hurricane Harvey Relief ",
                "mobile":"<strong class=\"theme-secondary\">The <nobr>Coca-Cola</nobr> Foundation Donates $1 Million</strong> to American Red Cross for Hurricane Harvey Relief "}'>
                <strong class="theme-secondary">The <nobr>Coca-Cola</nobr> Foundation Donates $1 Million</strong> to American Red Cross for Hurricane Harvey Relief </span>
        </h1>
    </div>
<div class="articleby AuthorByLine"><p class="byline-asset">
By: <span class="theme-secondary-link"><a href="/profiles/journey-staff">Journey Staff</a></span>
    
     | <span itemprop="datePublished">Aug 27, 2017</span>
    </p>
</div>
<div class="share-container" intent in-tablet-after=".articleby" in-mobile-prepend=".lead-container" in-desktop-after=".articleby" in-bigdesktop-after=".articleby">
        <!--googleoff: all-->
        	<div class="FacebookLikeButton like-container"><div class="facebook-like-button"></div>
</div>
<!--googleon: all-->
        <div class="Sharebar sharebar-component"><!--googleoff: all-->
    <div class="sharebar" data-content-url="/etc/designs/journey/ajax/share/"
        data-enable-gigya-plus-button=""
        data-plus-button-social-network=""
        data-twitter-global-text="" 
		data-content-usefullurl=""
		data-short-Title="Unbottled"
		data-kakao-key=""
		data-sharebar-label="Share"
	/>

	   <span class="shareBar-title">Share:</span>
    <ul class="shareBar-list" data-contentid="">
    <li class="social-share facebook" 
		            data-display-type="all"
		            data-provider="facebook" data-with-count="true">
		            <a class="icon" href="#"></a>
		            <span class="count"></span>
		        </li>
	        <li class="social-share twitter" 
		            data-display-type="all"
		            data-provider="twitter" data-with-count="true">
		            <a class="icon" href="#"></a>
		            <span class="count"></span>
		        </li>
	        <li class="social-share linkedin" 
		            data-display-type="all"
		            data-provider="linkedin" data-with-count="true">
		            <a class="icon" href="#"></a>
		            <span class="count"></span>
		        </li>
	        <li class="social-share pinterest" 
		            data-display-type="all"
		            data-provider="pinterest" data-with-count="true">
		            <a class="icon" href="#"></a>
		            <span class="count"></span>
		        </li>
	        <li class="social-share reddit" 
		            data-display-type="all"
		            data-provider="reddit" data-with-count="true">
		            <a class="icon" href="#"></a>
		            <span class="count"></span>
		        </li>
	        <li class="social-share tumblr" 
		            data-display-type="all"
		            data-provider="tumblr" data-with-count="true">
		            <a class="icon" href="#"></a>
		            <span class="count"></span>
		        </li>
	        <li class="urlshareWrapper"
				data-urlsharetooltip="Copy Page URL to Clipboard"
				data-urlshareconfirmation="Page URL Copied to Clipboard"> 
				<div class="urlshare icon">
                    <span class="tooltiptext">Copy Page URL to Clipboard</span>
                    <span class="confirmationText">Page URL Copied to Clipboard</span>
                    <input type="hidden" id ="linktoBeshared">
                </div>
			</li>
		<li class="social-share special">
                    <a class="comment icon" href='#'></a>
                   </li>
            <li class="social-share special rss">
            <a class="rss icon" href="/content/journey/us/en/feeds/coca-cola-unbottled.xml"></a>
        </li>
        <li class="social-share last">
            <a class="print icon" href="#"></a>
        </li>
		
			</ul>
</div>
<!--googleon: all-->
</div>
</div>
    <!-- Article Content Starts Here  content jsp-->
    <div class="lead-container full-width" intent in-tablet-after=".share-container" in-mobile-after=".byline-asset" in-desktop-after=".share-container" in-bigdesktop-after=".share-container">
                    <div class="LeadMedia lead"><div class="lead-media">
    <div class="media-container" data-view-caption-label="View Caption" data-hide-caption-label="Hide Caption">
        <ul class="royalSlider rsDefault lead-carousel" itemscope itemtype="http://schema.org/ImageObject">
                <li class="item item-1" data-credit="American Red Cross" data-credit-mobile="" data-credit-url="" data-credit-open-in-new-window="_self">
                        <div class="crop-wrapper">
                            <img itemprop="contentURL" class="rsImg" data-src='{"desktop":"/content/dam/journey/us/en/private/2017/08/12253008.rendition.940.456.jpg","tablet":"/content/dam/journey/us/en/private/2017/08/12253008.rendition.702.309.jpg","mobile":"/content/dam/journey/us/en/private/2017/08/12253008.rendition.320.179.jpg"}' data-dimensions='{"desktop":"940_456","tablet":"702_309","mobile":"320_179"}' src="/content/dam/journey/us/en/private/2017/08/12253008.rendition.940.456.jpg" alt="dasani ARC Harvey" title="dasani ARC Harvey"/>
                        </div>

                        <div class="overlay-left-ie8"></div>
                        <div class="overlay-right-ie8"></div>
                        <div itemprop="description" class="media-caption">The American Red Cross prepares to deliver a shipment of DASANI to shelters in San Antonio, Texas.<p class="media-credit">(Photo Credit: &nbsp;<a href="#" target="_blank" class="credit-url theme-secondary"><span itemprop="author"></span></a>)
								    </p>
							    </div>
						</li>
                    </ul>
        </div>
</div></div>
</div>
            <section class="grid grid-2-col two-columns-quiz">
<div class="column-left">
            

            
            <article class="article-content">
            <div intent in-tablet-prepend=".article-content" in-mobile-prepend=".article-content" in-desktop-prepend=".article-content" in-bigdesktop-prepend=".article-content">
                <div class="articleBody Article"><div id="article">
    <p>The <nobr>Coca-Cola</nobr> Foundation has donated $1 million to the American Red Cross to support relief efforts in the wake of Hurricane Harvey, which has caused record flooding in southeast Texas and parts of Louisiana since making landfall on Friday.&nbsp;</p>
<p>These funds will help provide immediate resources for food and shelter, and aid in long-term rebuilding efforts along the storm's path.</p>
<p>&quot;As the heartbreaking situation continues to unfold along the Gulf Coast, we are reminded of the importance of coming together and supporting each other,&quot; said Sandy Douglas, president, <nobr>Coca-Cola</nobr>&nbsp;North America, and board member of The <nobr>Coca-Cola</nobr> Foundation. “Our system has been mobilized to help in any way we can. We're working with our local bottlers, authorities and relief agencies, donating beverages and funds to help the community.&quot;</p>
<p>Coca-Cola Southwest Beverages, <nobr>Coca-Cola</nobr> Bottling Company UNITED, <nobr>Coca-Cola</nobr> North America and fairlife have donated more than 820,000 bottles of water, milk, sports drinks and other beverages to people affected by the storm so far, with more expected in the coming days.&nbsp;</p>
<p>The <nobr>Coca-Cola</nobr> Company also is matching employee contributions made to the <nobr>Coca-Cola</nobr> Employee Disaster Relief Fund, up to $100,000. Proceeds will go to help <nobr>Coca-Cola</nobr> employees who are impacted by the storm.</p>
<p>Coca-Cola Southwest Beverages employs around 2,000 people in southeast Texas at&nbsp;12 distribution centers and two production facilities. Nearly 200 employees work at The&nbsp;Coca-Cola&nbsp;Company's Minute Maid offices in Sugar Land, Texas.</p>
<p>&quot;Our <nobr>Coca-Cola</nobr> family lives and works in the areas impacted by this unprecedented storm and they know just how important it is to help our neighbors when they need it the most,&quot; said Mark Schortman, president and CEO, <nobr>Coca-Cola</nobr>&nbsp;Southwest Beverages. &quot;Our local team is helping get water and milk to those needing assistance. Our team knows how to come together and do what is needed to help offer relief to the people hurting during these tough times.&quot;</p>
<p><div ""><div class="par1 parsys"><div class="section Image"><div id="cq-image-jsp-/content/journey/us/en/coca-cola-unbottled/community/2017/the-coca-cola-foundation-pledges-1-million-dollars-to-american-red-cross-for-hurricane-harvey-relief/jcr:content/articleBody/par1/image" style="width: 584px;" class="img-inside-article">
    <img data-src='{
                "desktop":"/content/dam/journey/us/en/private/2017/08/Caps2.rendition.584.326.png",
                "tablet":"/content/dam/journey/us/en/private/2017/08/Caps2.rendition.445.248.png",
                "mobile":"/content/dam/journey/us/en/private/2017/08/Caps2.rendition.295.165.png"}' src="/content/dam/journey/us/en/private/2017/08/Caps2.rendition.295.165.png" alt="Coke Give Caps 2" title="Coke Give Caps 2" q>    	
    	</div></div>

</div>
</div>
            </p>
<p>Coca-Cola is giving consumers the chance to support communities impacted by Hurricane Harvey, too, through its online charitable giving platform. People can visit&nbsp;<a href="https://us.coca-cola.com/give/">Coke.com/give</a>&nbsp;and enter codes found under the caps of&nbsp;Coca-Cola&nbsp;beverages – and inside multi-packs – and convert them into donations to the Red Cross.</p>
</div></div>
</div>
            <!-- Tags and Topics  -->
            <div class="tagsTopics-container">
                <div class="topic-container CategoryTags"><div class="tags category-tags">
    <div class="tagsTopic-title"> Related Items</div>
    <ul>
        <li>
                    <a href="/topics/community.html" title="Community" style="color:#3abdde;border:1px solid #3abdde;background:#FFFFFF">Community</a>
                </li>
            <li>
                    <a href="/topics/sustainability.html" title="Sustainability" style="color:#338428;border:1px solid #338428;background:#FFFFFF">Sustainability</a>
                </li>
            <li>
                    <a href="/topics/brands.html" title="Brands" style="color:#BA2979;border:1px solid #BA2979;background:#FFFFFF">Brands</a>
                </li>
            <li>
                    <a href="/topics/coca-cola-renew.html" title="#CocaColaRenew" style="color:#F40000;border:1px solid #F40000;background:#FFFFFF">#CocaColaRenew</a>
                </li>
            </ul>
    <ul> 
        <li>
                    <a href="/tags/texas.html" title="Texas" class="article_Tags" style="color:;border:1px solid ;background:#FFFFFF">Texas</a>
                </li>
            <li>
                    <a href="/tags/louisiana.html" title="Louisiana" class="article_Tags" style="color:;border:1px solid ;background:#FFFFFF">Louisiana</a>
                </li>
            <li>
                    <a href="/tags/coca-cola-southwest.html" title="Coca-Cola Southwest" class="article_Tags" style="color:;border:1px solid ;background:#FFFFFF"><nobr>Coca-Cola</nobr> Southwest</a>
                </li>
            </ul>
</div>
</div>
</div>
            <!-- More on Journey should be part of bottom rail and should be inherited by child pages if any-->
            <div class="more-content clearfix">
                    <div class="moreRail parsys iparsys"><div class="iparys_inherited"><!--googleoff: index--><div class="moreRail parsys iparsys">



<div class="MoreOnJourney section"><div class="more-on-journey">
    <h2  class="headline">
        <span itemprop="name" class="" data-title='{
            "desktop":"More #CocaColaRenew Stories<strong ></strong>",
            "tablet":"More #CocaColaRenew Stories<strong ></strong>",
            "mobile":"More #CocaColaRenew Stories<strong ></strong>"}'>
            More #CocaColaRenew Stories<strong ></strong></span>
    </h2>
    <div class="thumb-container">
        <ul>
    <li><a href="/stories/coca-cola-usa-a-total-beverage-company-with-local-roots">
					<span itemprop="name" data-title='{"desktop":"<strong class=\"theme-secondary\">Coca-Cola USA:</strong> A Total Beverage Company With Local Roots",
													   "tablet":"<strong class=\"theme-secondary\">Coca-Cola USA:</strong> A Total Beverage Company With Local Roots",
													   "mobile":"<strong class=\"theme-secondary\">Coca-Cola USA:</strong> A Total Beverage Company With Local Roots"}'>
								 <strong class="theme-secondary">Coca-Cola USA:</strong> A Total Beverage Company With Local Roots</span>
				</a>
				</li>
			<li><a href="/stories/investing-in-america-coca-cola-and-its-us-bottler-partners">
					<span itemprop="name" data-title='{"desktop":"<strong class=\"theme-secondary\">Investing In America:</strong> <nobr>Coca-Cola</nobr> And Its U.S. Bottler Partners",
													   "tablet":"<strong class=\"theme-secondary\">Investing In America:</strong> <nobr>Coca-Cola</nobr> And Its U.S. Bottler Partners",
													   "mobile":"<strong class=\"theme-secondary\">Investing In America:</strong> <nobr>Coca-Cola</nobr> And Its U.S. Bottler Partners"}'>
								 <strong class="theme-secondary">Investing In America:</strong> <nobr>Coca-Cola</nobr> And Its U.S. Bottler Partners</span>
				</a>
				</li>
			<li><a href="/stories/from-hilltop-to-america-is-beautiful-cokes-enduring-legacy-of-inclusive-advertising">
					<span itemprop="name" data-title='{"desktop":"Coke’s Enduring Legacy of Inclusive Advertising<strong class=\"theme-secondary\"></strong>",
													   "tablet":"Coke’s Enduring Legacy of Inclusive Advertising<strong class=\"theme-secondary\"></strong>",
													   "mobile":"Coke’s Enduring Legacy of Inclusive Advertising<strong class=\"theme-secondary\"></strong>"}'>
								 Coke’s Enduring Legacy of Inclusive Advertising<strong class="theme-secondary"></strong></span>
				</a>
				</li>
			<li><a href="/faces-of-coca-cola">
					<span itemprop="name" data-title='{"desktop":"Gallery: The Faces of <strong class=\"theme-secondary\">Coca-Cola USA</strong>",
													   "tablet":"Gallery: The Faces of <strong class=\"theme-secondary\">Coca-Cola USA</strong>",
													   "mobile":"Gallery: The Faces of <strong class=\"theme-secondary\">Coca-Cola USA</strong>"}'>
								 Gallery: The Faces of <strong class="theme-secondary">Coca-Cola USA</strong></span>
				</a>
				</li>
			<li><a href="/commitment">
					<span itemprop="name" data-title='{"desktop":"Learn more about #CocaColaRenew<strong class=\"theme-secondary\"></strong>",
													   "tablet":"Learn more about #CocaColaRenew<strong class=\"theme-secondary\"></strong>",
													   "mobile":"Learn more about #CocaColaRenew<strong class=\"theme-secondary\"></strong>"}'>
								 Learn more about #CocaColaRenew<strong class="theme-secondary"></strong></span>
				</a>
				</li>
			</ul>
    </div>    
</div></div>
<div class="section TwitterFeed"><article class="twitter-feed">
    <a class="twitter-timeline" data-widget-id="525243581443743744" height="450"></a>
</article>
</div>

</div>
<!--googleon: index--></div>
</div>
</div>
            </article>
        </div>
        <div class="asides">
            <!--Newsletter appear on the top of the rightrail and is hidden when Right rail is hidden -->
                <div class="right-rail-content" intent in-tablet-append=".asides" in-mobile-after=".article-content" in-desktop-append=".asides" in-bigdesktop-append=".asides">
                    <div class="rightRail parsys iparsys"><div class="iparys_inherited"><!--googleoff: index--><div class="rightRail parsys iparsys">



<div class="section RelatedContent"><form>
 <input id="downloadableTemplateType" type="hidden" value='false'/>
</form>

<div class="skyscraper-list related-content">
	<div class="banner"> 
        <span itemprop="name" data-title='{
           "desktop":"<strong class=\"theme-secondary\">Related Stories</strong>",
           "tablet":"<strong class=\"theme-secondary\">Related Stories</strong>",
           "mobile":"<strong class=\"theme-secondary\">Related Stories</strong>"}'
           class="theme-font-main"><strong class="theme-secondary">Related Stories</strong><span>
      </div>
    <div class="content-wrapper">
  <ul>
    <li class="list-item">
            <a href="/press-center/press-releases/coca-cola-supports-disaster-relief-and-recovery-in-wake-of-hurricane-sandy" class="title">
              <p class="provider theme-secondary">North America</p> 
              <span itemprop="name" data-title='{"desktop":"<strong class=\"theme-secondary\">Coca-Cola Supports</strong> Disaster Relief and Recovery in Wake of Hurricane Sandy",
                "tablet":"<strong class=\"theme-secondary\">Coca-Cola Supports</strong> Disaster Relief and Recovery in Wake of Hurricane Sandy",
                "mobile":"<strong class=\"theme-secondary\">Coca-Cola Supports</strong> Disaster Relief and Recovery in Wake of Hurricane Sandy"}'>
                <strong class="theme-secondary">Coca-Cola Supports</strong> Disaster Relief and Recovery in Wake of Hurricane Sandy</span>
            </a>
          </li>
        <li class="list-item">
          <a href="/coca-cola-unbottled/within-6-hours-24-000-bottles-of-clean-water-were-delivered" class="title">
            <p class="provider theme-secondary">Journey Staff</p> 
            <span itemprop="name" data-title='{"desktop":"Coca-Cola China Delivers 24,000 Bottles of Water in 6 Hours to <strong class=\"theme-secondary\">Earthquake-Affected Area in Sichuan</strong>",
            "tablet":"Coca-Cola China Delivers 24,000 Bottles of Water in 6 Hours to <strong class=\"theme-secondary\">Earthquake-Affected Area in Sichuan</strong>",
            "mobile":"Coca-Cola China Delivers 24,000 Bottles of Water in 6 Hours to <strong class=\"theme-secondary\">Earthquake-Affected Area in Sichuan</strong>"}'>
            <nobr>Coca-Cola</nobr> China Delivers 24,000 Bottles of Water in 6 Hours to <strong class="theme-secondary">Earthquake-Affected Area in Sichuan</strong></span>
          </a>
        </li>
      <li class="list-item">
          <a href="/press-center/company-statements/foundation-donates-1-million-to-assist-with-haiti-earthquake-relief-efforts" class="title">
            <p class="provider theme-secondary">Journey Staff</p> 
            <span itemprop="name" data-title='{"desktop":"<strong class=\"theme-secondary\">Foundation Donates $1 Million</strong> to Assist With Haiti Earthquake Relief Efforts",
            "tablet":"<strong class=\"theme-secondary\">Foundation Donates $1 Million</strong> to Assist With Haiti Earthquake Relief Efforts",
            "mobile":"<strong class=\"theme-secondary\">Foundation Donates $1 Million</strong> to Assist With Haiti Earthquake Relief Efforts"}'>
            <strong class="theme-secondary">Foundation Donates $1 Million</strong> to Assist With Haiti Earthquake Relief Efforts</span>
          </a>
        </li>
      </ul>
    </div>
</div>

</div>
<div class="SubPagePromo section"><div class="skyscraper-list sub-page-promo">
     <a href="/commitment">
                 <img data-src='{
                     "desktop":"/content/dam/journey/us/en/private/themes/coca-cola-renew/Sidebar-Promo-Renew.jpg",
                     "tablet":"/content/dam/journey/us/en/private/themes/coca-cola-renew/Sidebar-Promo-Renew.rendition.263.263.jpg",
                     "mobile":"/content/dam/journey/us/en/private/themes/coca-cola-renew/Sidebar-Promo-Renew.jpg"}' src="/content/dam/journey/us/en/private/themes/coca-cola-renew/Sidebar-Promo-Renew.jpg" alt="Sidebar-Promo-Renew.jpg" title="Sidebar-Promo-Renew.jpg"/>
             </a>
         </div>
</div>
<div class="SimpleList section"><input id="simplelist_minCount" type="hidden" value='2'/> 
<input id="simplelist_maxCount" type="hidden" value='10'/> 

<div class="skyscraper-list simple-list">
    <div class="banner theme-contrast">
         <span itemprop="name" data-title='{
             "desktop":"<strong class=\"theme-secondary\">#COCACOLARENEW</strong>",
             "tablet":"<strong class=\"theme-secondary\">#COCACOLARENEW</strong>",
             "mobile":"<strong class=\"theme-secondary\">#COCACOLARENEW</strong>"}' class="theme-font-main">
             <strong class="theme-secondary">#COCACOLARENEW</strong></span>
    </div>
    <div class="content-wrapper">
        <ul class="list-item">
            <li>
                <a href="/commitment/economic-opportunity" class="title"><i class="icon-double-angle-right" aria-hidden="true"></i><span class="sr-only">Renew Jobs</span><span>Renew Jobs<strong class="theme-secondary"></strong></span></a>
            </li>
            <li>
                <a href="/commitment/water-conservation" class="title"><i class="icon-double-angle-right" aria-hidden="true"></i><span class="sr-only">Renew Water</span><span>Renew Water<strong class="theme-secondary"></strong></span></a>
            </li>
            <li>
                <a href="/commitment/product-development" class="title"><i class="icon-double-angle-right" aria-hidden="true"></i><span class="sr-only">Renew our Products</span><span>Renew our Products<strong class="theme-secondary"></strong></span></a>
            </li>
            <li>
                <a href="/commitment/developing-leaders" class="title"><i class="icon-double-angle-right" aria-hidden="true"></i><span class="sr-only">Renew Opportunity</span><span>Renew Opportunity<strong class="theme-secondary"></strong></span></a>
            </li>
            <li>
                <a href="/commitment/diversity-and-inclusion" class="title"><i class="icon-double-angle-right" aria-hidden="true"></i><span class="sr-only">Renew Understanding</span><span>Renew Understanding<strong class="theme-secondary"></strong></span></a>
            </li>
            <li>
                <a href="/commitment/women-empowerment" class="title"><i class="icon-double-angle-right" aria-hidden="true"></i><span class="sr-only">Renew Empowerment</span><span>Renew Empowerment<strong class="theme-secondary"></strong></span></a>
            </li>
            </ul>
    </div>
</div></div>

</div>
<!--googleon: index--></div>
</div>
</div>
            </div>
    </section>
    <section class="grid grid-1-col botton-content clearall">
            <div class="parsys bottomRail iparsys"><div class="iparys_inherited"><!--googleoff: index--><div class="parsys bottomRail iparsys">




</div>
<!--googleon: index--></div>
</div>
</section>
    </div><div class="TwoWide"><!--  Add c:if tag around all this div based on the property from dictionary -->

<div id="social-stats" class="no-count">
    <div class="shadow"></div>
    <h4 class="headline-section theme-main-subtitle ">
        <span itemprop="name" data-title='{"desktop":"<span class="nobr">COCA-COLA ON SOCIAL</span> <strong class=\"theme-secondary\"></strong>","tablet":"<span class="nobr">COCA-COLA ON SOCIAL</span> <strong class=\"theme-secondary\"></strong>","mobile":"<span class="nobr">COCA-COLA ON SOCIAL</span> <strong class=\"theme-secondary\"></strong>"}'>
            <span class="nobr">COCA-COLA ON SOCIAL</span> <strong class="theme-secondary knockout-bgcolor"></strong></span>
    </h4>
    <div class="container" data-network-count="5" 
    	 data-social-count-service-url="https://uc8sgmjzag.execute-api.us-east-1.amazonaws.com/prod/getSocialCounts"
    	 data-social-count-request='{"site":"US_EN","trueCache":"true","socialNetworks":[{"networkName":"FACEBOOK","accountName":"TheCocaColaCo"},{"networkName":"TWITTER","accountName":"COCACOLACO"},{"networkName":"LINKEDIN","accountName":"1694"},{"networkName":"YOUTUBE","accountName":"CocaColaCo"},{"networkName":"INSTAGRAM","accountName":"1701604123"}]}'>
        <div data-order="1" class="statistic">
                <div class="icon">
                    <a href="https://www.facebook.com/TheCocaColaCo" target="_blank" title="">
                        <img src="/content/dam/journey/gl/gl/icons/facebook-icon.png" width="35" height="35" alt="facebook-icon.png"/>
                    </a>
                </div>
                <div class="text-wrapper FACEBOOK &nbsp; TheCocaColaCo">
                    <div class="value"></div>
                    <div class="term">LIKES</div>
                </div>
            </div>
        <div data-order="2" class="statistic">
                <div class="icon">
                    <a href="https://twitter.com/COCACOLACO" target="_blank" title="">
                        <img src="/content/dam/journey/gl/gl/icons/socialicon-twit.png" width="35" height="35" alt="socialicon-twit.png"/>
                    </a>
                </div>
                <div class="text-wrapper TWITTER &nbsp; COCACOLACO">
                    <div class="value"></div>
                    <div class="term">FOLLOWERS</div>
                </div>
            </div>
        <div data-order="3" class="statistic">
                <div class="icon">
                    <a href="https://www.linkedin.com/company/the-coca-cola-company" target="_blank" title="">
                        <img src="/content/dam/journey/gl/gl/icons/linkedin-icon.png" width="35" height="35" alt="linkedin-icon.png"/>
                    </a>
                </div>
                <div class="text-wrapper LINKEDIN &nbsp; 1694">
                    <div class="value"></div>
                    <div class="term">FOLLOWERS</div>
                </div>
            </div>
        <div data-order="4" class="statistic">
                <div class="icon">
                    <a href="https://www.youtube.com/user/CocaColaCo" target="_blank" title="">
                        <img src="/content/dam/journey/gl/gl/icons/youtube-icon.png" width="35" height="35" alt="youtube-icon.png"/>
                    </a>
                </div>
                <div class="text-wrapper YOUTUBE &nbsp; CocaColaCo">
                    <div class="value"></div>
                    <div class="term">VIEWS</div>
                </div>
            </div>
        <div data-order="5" class="statistic">
                <div class="icon">
                    <a href="https://instagram.com/TheCocaColaCo" target="_blank" title="">
                        <img src="/content/dam/journey/gl/gl/icons/instagram-icon.png" width="35" height="35" alt="instagram-icon.png"/>
                    </a>
                </div>
                <div class="text-wrapper INSTAGRAM &nbsp; 1701604123">
                    <div class="value"></div>
                    <div class="term">FOLLOWERS</div>
                </div>
            </div>
        </div>
</div>
</div>
<div class="Flash"><!--googleoff: all-->
<footer
    data-masthead-url="/content/journey/us/en/_jcr_content.mastheadauthors.json/content/journey/us/en/coca-cola-unbottled/community/2017/the-coca-cola-foundation-pledges-1-million-dollars-to-american-red-cross-for-hurricane-harvey-relief.json"
    data-notifications-ui="/content/journey/us/en/_jcr_content.newsLetterFlyOut.html/content/journey/us/en/coca-cola-unbottled/community/2017/the-coca-cola-foundation-pledges-1-million-dollars-to-american-red-cross-for-hurricane-harvey-relief.html"
    data-subscribe="/content/journey/us/en/coca-cola-unbottled/community/2017/the-coca-cola-foundation-pledges-1-million-dollars-to-american-red-cross-for-hurricane-harvey-relief/_jcr_content/footer.subscribe.json"
    data-search-url="http://www.coca-colacompany.com/search" 
    data-newsletter-visit="true" 
    >
    
    <nav class="top-level antialiased" role="navigation" aria-label="footer_TopMenu">
        <ul>
        <li class="first">
	      <a href="/homepage" class="">
          <span itemprop="name" data-override-size="" data-title='{
						"desktop":"Front Page<strong class=\"theme-secondary\"></strong>",
						"tablet":"Front Page<strong class=\"theme-secondary\"></strong>",
						"mobile":"Front Page<strong class=\"theme-secondary\"></strong>"}'>
							
						Front Page<strong class="theme-secondary"></strong></span>
                </a>
            </li>
            <li class="">
	      <a href="/brands" class="">
          <span itemprop="name" data-override-size="" data-title='{
						"desktop":"BRANDS<strong class=\"theme-secondary\"></strong>",
						"tablet":"BRANDS<strong class=\"theme-secondary\"></strong>",
						"mobile":"BRANDS<strong class=\"theme-secondary\"></strong>"}'>
							
						BRANDS<strong class="theme-secondary"></strong></span>
                </a>
            </li>
            <li class="">
	      <a href="/our-way-forward" class="">
          <span itemprop="name" data-override-size="" data-title='{
						"desktop":"OUR WAY FORWARD<strong class=\"theme-secondary\"></strong>",
						"tablet":"OUR WAY FORWARD<strong class=\"theme-secondary\"></strong>",
						"mobile":"OUR WAY FORWARD<strong class=\"theme-secondary\"></strong>"}'>
							
						OUR WAY FORWARD<strong class="theme-secondary"></strong></span>
                </a>
            </li>
            <li class="">
	      <a href="/sustainability" class="">
          <span itemprop="name" data-override-size="" data-title='{
						"desktop":"SUSTAINABILITY<strong class=\"theme-secondary\"></strong>",
						"tablet":"SUSTAINABILITY<strong class=\"theme-secondary\"></strong>",
						"mobile":"SUSTAINABILITY<strong class=\"theme-secondary\"></strong>"}'>
							
						SUSTAINABILITY<strong class="theme-secondary"></strong></span>
                </a>
            </li>
            <li class="">
	      <a href="/innovation" class="">
          <span itemprop="name" data-override-size="" data-title='{
						"desktop":"INNOVATION<strong class=\"theme-secondary\"></strong>",
						"tablet":"INNOVATION<strong class=\"theme-secondary\"></strong>",
						"mobile":"INNOVATION<strong class=\"theme-secondary\"></strong>"}'>
							
						INNOVATION<strong class="theme-secondary"></strong></span>
                </a>
            </li>
            <li class="">
	      <a href="/history" class="">
          <span itemprop="name" data-override-size="" data-title='{
						"desktop":"HISTORY<strong class=\"theme-secondary\"></strong>",
						"tablet":"HISTORY<strong class=\"theme-secondary\"></strong>",
						"mobile":"HISTORY<strong class=\"theme-secondary\"></strong>"}'>
							
						HISTORY<strong class="theme-secondary"></strong></span>
                </a>
            </li>
            <li class="">
	      <a href="/coca-cola-unbottled" class="">
          <span itemprop="name" data-override-size="" data-title='{
						"desktop":"UNBOTTLED<strong class=\"theme-secondary\"></strong>",
						"tablet":"UNBOTTLED<strong class=\"theme-secondary\"></strong>",
						"mobile":"UNBOTTLED<strong class=\"theme-secondary\"></strong>"}'>
							
						UNBOTTLED<strong class="theme-secondary"></strong></span>
                </a>
            </li>
            </ul>
    </nav>
	<nav class="secondary antialiased" role="navigation" aria-label="footer_SecondaryMenu">		
        <ul>
        <li class="first">
		<a href="/our-company">
          <span itemprop="name" data-override-size="" data-title='{"desktop":"Our Company","tablet":"Our Company","mobile":"Our Company"}' class="">Our Company</span>
            </a>
         </li>
        <li class="">
		<a href="http://www.coca-colaproductfacts.com/">
          <span itemprop="name" data-override-size="" data-title='{"desktop":"Product Facts (U.S.)","tablet":"Product Facts (U.S.)","mobile":"Product Facts (U.S.)"}' class="">Product Facts (U.S.)</span>
            </a>
         </li>
        <li class="">
		<a href="/investors">
          <span itemprop="name" data-override-size="" data-title='{"desktop":"Investors","tablet":"Investors","mobile":"Investors"}' class="">Investors</span>
            </a>
         </li>
        <li class="">
		<a href="/press-center">
          <span itemprop="name" data-override-size="" data-title='{"desktop":"Press Center","tablet":"Press Center","mobile":"Press Center"}' class="">Press Center</span>
            </a>
         </li>
        <li class="">
		<a href="/careers">
          <span itemprop="name" data-override-size="" data-title='{"desktop":"Careers","tablet":"Careers","mobile":"Careers"}' class="">Careers</span>
            </a>
         </li>
        <li class="">
		<a href="/contact-us">
          <span itemprop="name" data-override-size="" data-title='{"desktop":"Contact Us","tablet":"Contact Us","mobile":"Contact Us"}' class="">Contact Us</span>
            </a>
         </li>
        <li class="">
		<a href="/newsletter-sign-up">
          <span itemprop="name" data-override-size="" data-title='{"desktop":"Newsletter","tablet":"Newsletter","mobile":"Newsletter"}' class="">Newsletter</span>
            </a>
         </li>
        <li><a href="javascript:;" id="masthead_link"><span class="open"></span>Masthead</a></li>
            </ul>		
        <div id="masthead">
            <h4 class="heading-small"></h4>
            <a href="javascript:;" id="masthead_close_link">Close<span></span></a>
            <ul class="authors"></ul>
            <div class="author-social-links"></div>
        </div>
    </nav>
	<div id="footer_notifications" data-loaded="false">
	    <span class='loading'>Loading...</span>
	</div>
	<div class="footer-wedge-1"></div>
	<div id="link-lists" class="antialiased" role="navigation" aria-label="LinkList">
			<div class="column column-first">
				<section>
					<h5>The Opener</h5>
					<ul>
			<li class="">
			<a href="http://www.adventures-in-cooking.com/" target="_blank">
				<span itemprop="name" data-override-size="" data-title='{"desktop":"Adventures in Cooking","tablet":"Adventures in Cooking","mobile":"Adventures in Cooking"}' class="">Adventures in Cooking</span>
				</a>
			  </li>
			<li class="">
			<a href="http://www.climbinggriermountain.com/">
				<span itemprop="name" data-override-size="" data-title='{"desktop":"Climbing Grier Mountain","tablet":"Climbing Grier Mountain","mobile":"Climbing Grier Mountain"}' class="">Climbing Grier Mountain</span>
				</a>
			  </li>
			<li class="">
			<a href="http://fortheloveofthesouth.com/" target="_blank">
				<span itemprop="name" data-override-size="" data-title='{"desktop":"For the Love of the South","tablet":"For the Love of the South","mobile":"For the Love of the South"}' class="">For the Love of the South</span>
				</a>
			  </li>
			<li class="">
			<a href="http://www.insidetheboxinnovation.com/" target="_blank">
				<span itemprop="name" data-override-size="" data-title='{"desktop":"Inside the Box Innovation","tablet":"Inside the Box Innovation","mobile":"Inside the Box Innovation"}' class="">Inside the Box Innovation</span>
				</a>
			  </li>
			<li class="">
			<a href="http://www.marcusnilsson.com/" target="_blank">
				<span itemprop="name" data-override-size="" data-title='{"desktop":"Marcus Nillsson","tablet":"Marcus Nillsson","mobile":"Marcus Nillsson"}' class="">Marcus Nillsson</span>
				</a>
			  </li>
			<li class="">
			<a href="http://www.ohbiteit.com/" target="_blank">
				<span itemprop="name" data-override-size="" data-title='{"desktop":"Oh, Bite It!","tablet":"Oh, Bite It!","mobile":"Oh, Bite It!"}' class="">Oh, Bite It!</span>
				</a>
			  </li>
			<li class="">
			<a href="http://scottkelby.com/" target="_blank">
				<span itemprop="name" data-override-size="" data-title='{"desktop":"Scott Kelby&apos;s Photoshop Insider","tablet":"Scott Kelby&apos;s Photoshop Insider","mobile":"Scott Kelby&apos;s Photoshop Insider"}' class="">Scott Kelby&apos;s Photoshop Insider</span>
				</a>
			  </li>
			<li class="">
			<a href="http://www.madalynne.com/" target="_blank">
				<span itemprop="name" data-override-size="" data-title='{"desktop":"Madalynne","tablet":"Madalynne","mobile":"Madalynne"}' class="">Madalynne</span>
				</a>
			  </li>
			<li class="">
			<a href="http://thekittchen.com/" target="_blank">
				<span itemprop="name" data-override-size="" data-title='{"desktop":"The Kittchen","tablet":"The Kittchen","mobile":"The Kittchen"}' class="">The Kittchen</span>
				</a>
			  </li>
			<li class="">
			<a href="http://mystilettolife.com/" target="_blank">
				<span itemprop="name" data-override-size="" data-title='{"desktop":"My Stiletto Life","tablet":"My Stiletto Life","mobile":"My Stiletto Life"}' class="">My Stiletto Life</span>
				</a>
			  </li>
			<li class="">
			<a href="http://1000threadsblog.com/" target="_blank">
				<span itemprop="name" data-override-size="" data-title='{"desktop":"A Thousand Threads","tablet":"A Thousand Threads","mobile":"A Thousand Threads"}' class="">A Thousand Threads</span>
				</a>
			  </li>
			<li class="">
			<a href="http://www.happyfuel.me/" target="_blank">
				<span itemprop="name" data-override-size="" data-title='{"desktop":"Happy Fuel","tablet":"Happy Fuel","mobile":"Happy Fuel"}' class="">Happy Fuel</span>
				</a>
			  </li>
			<li class="">
			<a href="http://www.socialnerdia.com/" target="_blank">
				<span itemprop="name" data-override-size="" data-title='{"desktop":"Social Nerdia","tablet":"Social Nerdia","mobile":"Social Nerdia"}' class="">Social Nerdia</span>
				</a>
			  </li>
			<li class="">
			<a href="http://www.viewfrom5ft2.com/" target="_blank">
				<span itemprop="name" data-override-size="" data-title='{"desktop":"The View From 5 ft. 2","tablet":"The View From 5 ft. 2","mobile":"The View From 5 ft. 2"}' class="">The View From 5 ft. 2</span>
				</a>
			  </li>
			<li class="">
			<a href="http://cookingwithamy.blogspot.com/" target="_blank">
				<span itemprop="name" data-override-size="" data-title='{"desktop":"Cooking With Amy","tablet":"Cooking With Amy","mobile":"Cooking With Amy"}' class="">Cooking With Amy</span>
				</a>
			  </li>
			<li class="">
			<a href="http://girlloveslife.com/" target="_blank">
				<span itemprop="name" data-override-size="" data-title='{"desktop":"girlloveslife","tablet":"girlloveslife","mobile":"girlloveslife"}' class="">girlloveslife</span>
				</a>
			  </li>
			<li class="">
			<a href="http://mymannersandmoxie.com/" target="_blank">
				<span itemprop="name" data-override-size="" data-title='{"desktop":"Manners and Moxie","tablet":"Manners and Moxie","mobile":"Manners and Moxie"}' class="">Manners and Moxie</span>
				</a>
			  </li>
			<li class="last">
			<a href="http://www.nytrendymoms.com/" target="_blank">
				<span itemprop="name" data-override-size="" data-title='{"desktop":"NY Trendy Moms","tablet":"NY Trendy Moms","mobile":"NY Trendy Moms"}' class="">NY Trendy Moms</span>
				</a>
			  </li>
			</ul>
				</section>
			</div>
			<div class="column column-second">
				<section>
					<h5>Topics</h5>
					<ul>
				<li class="">
						<a href="/topics/coca-cola-renew">
						<span itemprop="name" data-override-size="" data-title='{"desktop":"#CocaColaRenew","tablet":"#CocaColaRenew","mobile":"#CocaColaRenew"}' class="">#CocaColaRenew</span>
						</a>
					</li>
				<li class="">
						<a href="/topics/brands">
						<span itemprop="name" data-override-size="" data-title='{"desktop":"Brands","tablet":"Brands","mobile":"Brands"}' class="">Brands</span>
						</a>
					</li>
				<li class="">
						<a href="/topics/business">
						<span itemprop="name" data-override-size="" data-title='{"desktop":"Business","tablet":"Business","mobile":"Business"}' class="">Business</span>
						</a>
					</li>
				<li class="">
						<a href="/topics/food">
						<span itemprop="name" data-override-size="" data-title='{"desktop":"Food","tablet":"Food","mobile":"Food"}' class="">Food</span>
						</a>
					</li>
				<li class="">
						<a href="/topics/heritage">
						<span itemprop="name" data-override-size="" data-title='{"desktop":"History","tablet":"History","mobile":"History"}' class="">History</span>
						</a>
					</li>
				<li class="">
						<a href="/topics/innovation">
						<span itemprop="name" data-override-size="" data-title='{"desktop":"Innovation","tablet":"Innovation","mobile":"Innovation"}' class="">Innovation</span>
						</a>
					</li>
				<li class="">
						<a href="/topics/jobs">
						<span itemprop="name" data-override-size="" data-title='{"desktop":"Jobs","tablet":"Jobs","mobile":"Jobs"}' class="">Jobs</span>
						</a>
					</li>
				<li class="">
						<a href="/topics/lifestyle">
						<span itemprop="name" data-override-size="" data-title='{"desktop":"Culture","tablet":"Culture","mobile":"Culture"}' class="">Culture</span>
						</a>
					</li>
				<li class="">
						<a href="/topics/sports">
						<span itemprop="name" data-override-size="" data-title='{"desktop":"Sports","tablet":"Sports","mobile":"Sports"}' class="">Sports</span>
						</a>
					</li>
				<li class="last">
						<a href="/topics/sustainability">
						<span itemprop="name" data-override-size="" data-title='{"desktop":"Sustainability","tablet":"Sustainability","mobile":"Sustainability"}' class="">Sustainability</span>
						</a>
					</li>
				</ul>
				</section>
			</div>
			<div class="column column-third">
				<section>
					<h5>Brands</h5>
					<ul>
					<li class="">							
							<a href="/brands/coca-cola">
								<span itemprop="name" data-override-size="" data-title='{"desktop":"Coca-Cola","tablet":"Coca-Cola","mobile":"Coca-Cola"}' class="">Coca-Cola</span>
							</a>
						</li>
					<li class="">							
							<a href="/brands/coca-cola-zero">
								<span itemprop="name" data-override-size="" data-title='{"desktop":"Coca-Cola zero","tablet":"Coca-Cola zero","mobile":"Coca-Cola zero"}' class="">Coca-Cola zero</span>
							</a>
						</li>
					<li class="">							
							<a href="/brands/dasani">
								<span itemprop="name" data-override-size="" data-title='{"desktop":"DASANI","tablet":"DASANI","mobile":"DASANI"}' class="">DASANI</span>
							</a>
						</li>
					<li class="">							
							<a href="/brands/diet-coke">
								<span itemprop="name" data-override-size="" data-title='{"desktop":"Diet Coke","tablet":"Diet Coke","mobile":"Diet Coke"}' class="">Diet Coke</span>
							</a>
						</li>
					<li class="">							
							<a href="/brands/fanta">
								<span itemprop="name" data-override-size="" data-title='{"desktop":"Fanta","tablet":"Fanta","mobile":"Fanta"}' class="">Fanta</span>
							</a>
						</li>
					<li class="">							
							<a href="/brands/glaceau-vitaminwater">
								<span itemprop="name" data-override-size="" data-title='{"desktop":"glacéau vitaminwater","tablet":"glacéau vitaminwater","mobile":"glacéau vitaminwater"}' class="">glacéau vitaminwater</span>
							</a>
						</li>
					<li class="">							
							<a href="/brands/minute-maid">
								<span itemprop="name" data-override-size="" data-title='{"desktop":"Minute Maid","tablet":"Minute Maid","mobile":"Minute Maid"}' class="">Minute Maid</span>
							</a>
						</li>
					<li class="">							
							<a href="/brands/odwalla">
								<span itemprop="name" data-override-size="" data-title='{"desktop":"Odwalla","tablet":"Odwalla","mobile":"Odwalla"}' class="">Odwalla</span>
							</a>
						</li>
					<li class="">							
							<a href="/brands/powerade">
								<span itemprop="name" data-override-size="" data-title='{"desktop":"POWERADE","tablet":"POWERADE","mobile":"POWERADE"}' class="">POWERADE</span>
							</a>
						</li>
					<li class="">							
							<a href="/brands/sprite">
								<span itemprop="name" data-override-size="" data-title='{"desktop":"Sprite","tablet":"Sprite","mobile":"Sprite"}' class="">Sprite</span>
							</a>
						</li>
					<li class="last">
						<a href="/brands">
							<span itemprop="name" data-override-size="" data-title='{"desktop":"View All Brands &raquo;","tablet":"View All Brands &raquo;","mobile":"View All Brands &raquo;"}' class="">View All Brands &raquo;</span>
							</a>
						</li>
					</ul>
				</section>
			</div>
			<div class="column column-fourth">
				<section class="about-col">
					<h5 class="gray title hidden-phone">The <nobr>Coca-Cola</nobr> Company</h5>
					<h5 class="gray">
				<a href="/our-company/about-coca-cola-journey" class="normal">
					<span itemprop="name" data-title='{"desktop":"About <nobr>Coca-Cola</nobr> Journey","tablet":"About <nobr>Coca-Cola</nobr> Journey","mobile":"About <nobr>Coca-Cola</nobr> Journey"}'>About <nobr>Coca-Cola</nobr> Journey</span>
					  </a>
					</h5>
					 <h5 class="gray">
				<a href="/content/journey/us/en/our-company/privacy-policy#advertising" class="normal">
					<span itemprop="name" data-title='{"desktop":"About our Ads","tablet":"About our Ads","mobile":"About our Ads"}'>About our Ads</span>
					  </a>
					</h5>
					 <h5 class="gray">
				<a href="/our-company/ca-transparency-in-supply-chain-act" class="normal">
					<span itemprop="name" data-title='{"desktop":"California Transparency in Supply Chain Act","tablet":"California Transparency in Supply Chain Act","mobile":"California Transparency in Supply Chain Act"}'>California Transparency in Supply Chain Act</span>
					  </a>
					</h5>
					 <h5 class="gray">
				<a href="/careers" class="normal">
					<span itemprop="name" data-title='{"desktop":"Careers","tablet":"Careers","mobile":"Careers"}'>Careers</span>
					  </a>
					</h5>
					 <h5 class="gray">
				<a href="http://www.coca-colaproductfacts.com/en/homepage/" target="_blank" class="normal">
					<span itemprop="name" data-title='{"desktop":"Coca-Cola Product Facts (U.S.)","tablet":"Coca-Cola Product Facts (U.S.)","mobile":"Coca-Cola Product Facts (U.S.)"}'>Coca-Cola Product Facts (U.S.)</span>
					  </a>
					</h5>
					 <h5 class="gray">
				<a href="/2016-sustainability-report" class="normal">
					<span itemprop="name" data-title='{"desktop":"2016 Sustainability Report","tablet":"2016 Sustainability Report","mobile":"2016 Sustainability Report"}'>2016 Sustainability Report</span>
					  </a>
					</h5>
					 <h5 class="gray">
				<a href="/contact-us" class="normal">
					<span itemprop="name" data-title='{"desktop":"Contact Us","tablet":"Contact Us","mobile":"Contact Us"}'>Contact Us</span>
					  </a>
					</h5>
					 <h5 class="gray">
				<a href="/our-company/cookie-policy" class="normal">
					<span itemprop="name" data-title='{"desktop":"Cookie Policy","tablet":"Cookie Policy","mobile":"Cookie Policy"}'>Cookie Policy</span>
					  </a>
					</h5>
					 <h5 class="gray">
				<a href="/our-company/dmca-policy" class="normal">
					<span itemprop="name" data-title='{"desktop":"DMCA Policy","tablet":"DMCA Policy","mobile":"DMCA Policy"}'>DMCA Policy</span>
					  </a>
					</h5>
					 <h5 class="gray">
				<a href="/our-company/coca-cola-journey-and-coca-cola-unbottled-house-rules" class="normal">
					<span itemprop="name" data-title='{"desktop":"House Rules","tablet":"House Rules","mobile":"House Rules"}'>House Rules</span>
					  </a>
					</h5>
					 <h5 class="gray">
				<a href="/diversity-and-inclusion" class="normal">
					<span itemprop="name" data-title='{"desktop":"Diversity & Inclusion","tablet":"Diversity & Inclusion","mobile":"Diversity & Inclusion"}'>Diversity & Inclusion</span>
					  </a>
					</h5>
					 <h5 class="gray">
				<a href="/our-company/human-workplace-rights" class="normal">
					<span itemprop="name" data-title='{"desktop":"Human & Workplace Rights","tablet":"Human & Workplace Rights","mobile":"Human & Workplace Rights"}'>Human & Workplace Rights</span>
					  </a>
					</h5>
					 <h5 class="gray">
				<a href="http://www.coca-colacompany.com/feeds/articles.xml" target="_blank" class="normal">
					<span itemprop="name" data-title='{"desktop":"Journey RSS Feed","tablet":"Journey RSS Feed","mobile":"Journey RSS Feed"}'>Journey RSS Feed</span>
					  </a>
					</h5>
					 <h5 class="gray">
				<a href="/investors" class="normal">
					<span itemprop="name" data-title='{"desktop":"Investors","tablet":"Investors","mobile":"Investors"}'>Investors</span>
					  </a>
					</h5>
					 <h5 class="gray">
				<a href="/our-company" class="normal">
					<span itemprop="name" data-title='{"desktop":"Our Company","tablet":"Our Company","mobile":"Our Company"}'>Our Company</span>
					  </a>
					</h5>
					 <h5 class="gray">
				<a href="/press-center" class="normal">
					<span itemprop="name" data-title='{"desktop":"Press Center","tablet":"Press Center","mobile":"Press Center"}'>Press Center</span>
					  </a>
					</h5>
					 <h5 class="gray">
				<a href="http://www.coca-colacompany.com/feeds/coca-cola-unbottled.xml" target="_blank" class="normal">
					<span itemprop="name" data-title='{"desktop":"Unbottled RSS Feed","tablet":"Unbottled RSS Feed","mobile":"Unbottled RSS Feed"}'>Unbottled RSS Feed</span>
					  </a>
					</h5>
					 <h5 class="gray">
				<a href="/our-company/privacy-policy" class="normal">
					<span itemprop="name" data-title='{"desktop":"Privacy Policy","tablet":"Privacy Policy","mobile":"Privacy Policy"}'>Privacy Policy</span>
					  </a>
					</h5>
					 <h5 class="gray">
				<a href="/our-company/the-coca-cola-company-terms-of-use" class="normal">
					<span itemprop="name" data-title='{"desktop":"Terms of Use","tablet":"Terms of Use","mobile":"Terms of Use"}'>Terms of Use</span>
					  </a>
					</h5>
					 </section>
			</div>
			<div class="clearfix"></div>
		</div>	
    <div class="footer-wedge-2"></div>
	<div class="hidden-phone corporate-footer-text antialiased">
        <p>The <nobr>Coca-Cola</nobr> Company (NYSE: KO) is the world’s largest beverage company, offering over 500 brands to people in more than 200 countries. Of our 21 billion-dollar brands, 19 are available in lower- or no-sugar options to help people moderate their consumption of added sugar. In addition to our namesake <nobr>Coca-Cola</nobr> drinks, some of our leading brands around the world include: AdeS soy-based beverages, Ayataka green tea, Dasani waters, Del Valle juices and nectars, Fanta, Georgia coffee, Gold Peak teas and coffees, Honest Tea, Minute Maid juices, Powerade sports drinks, Simply juices, smartwater, Sprite, vitaminwater, and Zico coconut water. At <nobr>Coca-Cola</nobr>, we’re serious about making positive contributions to the world. That starts with reducing sugar in our drinks and continuing to introduce new ones with added benefits. It also means continuously working to reduce our environmental impact, creating rewarding careers for our associates and bringing economic opportunity wherever we operate. Together with our bottling partners, we employ more than 700,000 people around the world.&nbsp;</p>
</div>
    <p class="copyright gray antialiased">© 2018 THE <nobr>COCA-COLA</nobr> COMPANY</p>
    <div class="clearfix"></div>
     
</footer>
 <!--googleon: all--></div>
</div><script src="https://cdn.livefyre.com/Livefyre.js"></script>
<script src="https://sp.zalo.me/plugins/sdk.js"></script>
<!--  prevent it is reloaded under author mode -->
<script type="text/javascript" src="/etc/clientlibs/granite/lodash/modern.js"></script>
<script type="text/javascript" src="/etc/designs/journey/main.js"></script>
<script type="text/javascript" src="/etc/designs/journey/libs/globalize/en_US.js"></script>
<script type="text/javascript" src="/etc/designs/journey/libs/components/all.js"></script>
<script type="text/javascript" src="/etc/designs/journey/libs/components/extra.js"></script>

</div>
       

<script>
// adding code to stop alert happening in Prod version on virtuOz
                $(function(){
                                stopAlert();
                });
 
                function stopAlert(){
                                window.alert = function() {};
                }
</script>


<script id="twitter-wjs" src="https://platform.twitter.com/widgets.js"></script>

<script src="http://s.tpctrust.com/2/981983/analytics.js?di=coca-cola.com&dt=9819831478785915443000" async="true"></script>

<script>tccc.initComponent('.sharebar', ['jqSmoothScroll', 'loadGigya'], function(instances, tccc, smoothScroll, loadGigya) {
    instances.each(function() {
        var $shareBar = $(this),
            $shareList = $shareBar.find('.shareBar-list'),
            $shareItems = $shareList.find('.social-share'),
            shortURL = $shareBar.data('content-url'),
            contentID = $shareList.data("contentid"),
            ua = null,
            gigya_share_params,
            params,
            socialNetworks = {'withShareCountAPI': [], 'withoutShareCountAPI': []};

        // Return an early `null` when the sharebar is not allowed to be enabled
        if (tccc.global.disable_sharebar) {
            return null;
        }

        instances.find('li a.print').click(function (e) {
            window.print();
            return false;
        });

        /*
         * Get the social networks acording the markup,
         * and determine it they have a counter
         * 
         * original code:
         * 
         * var providers = <%=ObjectUtils.toJson(request.getAttribute("shareBarSocialNetworks"))%>;
         * var providersWithShareCountAvailable = <%=ObjectUtils.toJson(pageContext.getAttribute("providersWithShareCount"))%>;
         * 
         */
        $.each($shareItems, function () {
            if($(this).data('with-count')) {
                if($(this).data('provider')) {
                    socialNetworks.withShareCountAPI.push($(this).data('provider'));
                }
            } else {
                if($(this).data('provider')) {
                    socialNetworks.withoutShareCountAPI.push($(this).data('provider'));
                }
            }
        });

        /*
         * Get permalink
         */
        function getAbsolutePath() {
            var loc = window.location;
            var pathName = loc.pathname.substring(0, loc.pathname.length + 1);
            return loc.href.substring(0, loc.href.length - ((loc.pathname + loc.search + loc.hash).length - pathName.length));
        }

        /*
         * Draws the counter for each item 
         */
        function displayCounts (response) {
            _.each(socialNetworks.withoutShareCountAPI, function (provider){
                $shareList.find('.'+provider+' .count').addClass('no-share-count');
            });

            if (response.errorCode === 0) {
                _.each(socialNetworks.withShareCountAPI, function (provider){
                    var count = tccc.util.humanize_number(response.shareCounts[provider], 0) || 0;
                    $shareList.find('.'+provider+' .count').html(count);
                });
            }
            else {
                // If there was an error returning the count, then hide the counts
                $shareList.find('.count').addClass('no-share-count');
            }
        }
        
        
        function init_gigya_sharebar_widget () {
            ua = new gigya.socialize.UserAction();
            ua.setTitle(params.title);
            ua.setDescription(params.description);
            ua.setLinkBack(params.url);

            gigya_share_params.userAction = ua;
            jQuery.extend(gigya_share_params, params);
            gigya.socialize.showShareBarUI(gigya_share_params);
        }
        
        function updateParams () {
            params = {
                url: getAbsolutePath(),
                title: $('meta[property=og\\:title]').attr('content'),
                description: $('meta[property=og\\:description]').attr('content'),
                thumbnailURL: $('meta[property=og\\:image]').attr('content'),
                shortURLs: 'never'
            };
        }

        function share (evt, $link){
            if (window.dinamicLoad) {
                updateParams();
                init_gigya_sharebar_widget();
            }
            var curProvider = $link.data('provider');

            if (curProvider !== undefined) {
                if (contentID !== undefined && contentID.length > 0) {
                    $.ajax({
                        url: shortURL + contentID,
                        async: false,
                        // type: "json",
                        success: function(response) {
                            // type: json above produced a 500, so:
                            response = $.parseJSON(response);
                            params.url = response.url;
                            console.log(params.url);
                            console.log(response.url);
                        }
                    });
                }

                if (curProvider !== 'email') {
                    evt.preventDefault(); 
                    var p = { provider: curProvider };
                    $.extend(p, params);
                    gigya.socialize.postBookmark(p);
                }
            } else {
                if ($link.find('.comment')) {
                    $.smoothScroll({
                        easing: 'swing',
                        speed: 700,
                        scrollTarget: $.find('.comment-box')
                    });
                }
            }
        }

        function on_ready () {
            updateParams();
            // Make social-provider buttons clickable and trackable via custom GoogleAnalytic events
            $shareList.find('.social-share[data-provider!="newsletter"]').each(function (){
                $(this).on('click', function(e) {
                    share(e, $(this));
                    try {
                        ga('send','event', 'Sharing Events', 'Shared', 'Sharing-With-'+this.attributes["data-provider"].value);
                    } catch (ex){}
                });
            });

            gigya.socialize.getProviderShareCounts({
                enabledProviders: socialNetworks.withShareCountAPI.toString(),
                callback: displayCounts
            });

            init_gigya_sharebar_widget();
            window.dinamicLoad = false;
        }

        /*
         * Generic gigya params
         * 
         */
        gigya_share_params = {
            userAction: null,
            containerID: 'gigya-sharebar',
            shareButtons: [
                {
                    provider: "email",
                    iconOnly: false
                },
                {
                    provider: "share",
                    iconOnly: true,
                    iconImgUp: '/img/social/transparent-pixels.png',
                    emailBody: "Hi,<br /><br />$userMsglt;br /><br />I thought you'd like this:<br />$URLlt;br /><br /><br /><br />"
                }
            ],
            buttonTemplate: '<a class="gigya-sharebar-button" data-provider="$text" href="#" onclick="$onClick"></a>'
        };

        /*
         * In case global api gigya key is not set, get it from the data html
         * and try to load the api
         * 
         * */
        if (tccc.global.gigya_api_key === null) {
            tccc.global.gigya_api_key = $('html').data('gigya-api');
        }

        loadGigya.init(tccc.global.gigya_api_key, function () {
            on_ready();
        });
    });
});
setTimeout(function()
{ $("div.packages-and-verticals-template .packages-content .EditorialPackage .layout-1x3 .grid-1-3-0 .TwoWide .promo-space .media-container a.slide-link").height(360); }

, 1000);

function getParameterByName(name, url)
            { if (!url) url = window.location.href; name = name.replace(/[\[\]]/g, "\\$&"); var regex = new RegExp("[?&]" + name + "(=([^&#]*)|&|#|$)"), results = regex.exec(url); if (!results) return null; if (!results[2]) return ''; return decodeURIComponent(decodeURIComponent(results[2].replace(/\+/g, " "))); }
            var cpUrl = getParameterByName('cpUrl'); $(".full-width .IFrame").css("width", 820);if(cpUrl) {$('.IFrame iframe').prop('src',cpUrl); $("iframe").attr("scrolling", "yes"); setTimeout(function()
            { $(".IFrame iframe").css("height", 600);}
            , 500);}</script>

<script>$('#social-stats').css('display','inline-block');$('#social-stats').css('width','100%');</script>

<script src="http://cdn.gigya.com/js/gigya.js?apiKey=3_62bCG7m365_saJ8Lqsbplm9rZDEABeZ5N18YlC-M7J1-rezFDzd1unK59uH2NAjB&amp;cid=journey" class="lazyload" charset="utf-8"></script>

<script>

// Careers iframe from Workday, enabling no initial scroll bar on different devices.
// Written 2017-10-10

$(function(){
	setTimeout(function(){
		if ( $("#career_opportunities_iframe").length) {
		    if (tccc.global.current_size === "desktop" || tccc.global.current_size === 	"big_desktop") {
		        $("#career_opportunities_iframe").attr("height","560");
		    }
		    else if (tccc.global.current_size === "tablet") {
		        $("#career_opportunities_iframe").attr("height","850");
		    }
		    else if (tccc.global.current_size === "mobile") {
		        $("#career_opportunities_iframe").attr("height","660");
		    }
		}
	}, 4000);
});
</script>


<script>
// Removes red overlay from country map
$('#regional-country-selector > ul.link-list > li > a.sub-menu-link').click(function() {
      setTimeout(function() 
      {
        $('#global-regional-map > div > div > div.map-container > div.overlay').remove();
      }, 500);
});
</script>

<script>
$('.kiala-container').hide();
 
</script>

<script>
$(".lead-media .item").css("background-color","#FFFFFF");
$(".lead-media .item .media-caption").css("background-color","#f4f4f4")
</script>

</body>
</html>
