<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.1//EN' 'http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd'><html xmlns='http://www.w3.org/1999/xhtml'>
<html prefix="og: http://ogp.me/ns/fb#">
<head>
<!--this is the head-->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1"> <!-- Forcing initial-scale shouldn't be necessary -->
<meta http-equiv="X-UA-Compatible" content="IE=edge"> <!-- Use the latest (edge) version of IE rendering engine -->
<meta name="x-apple-disable-message-reformatting" /> <!-- Disable auto-scale in iOS 10 Mail entirely -->
<title></title> <!-- The title tag shows in email notifications, like Android 4.4. -->
<!-- Web Font / @font-face : BEGIN -->
<!-- NOTE: If web fonts are not required, lines 10 - 27 can be safely removed. -->
<!-- Desktop Outlook chokes on web font references and defaults to Times New Roman, so we force a safe fallback font. -->
<!-- All other clients get the webfont reference; some will render the font and others will silently fail to the fallbacks. More on that here: http://stylecampaign.com/blog/2015/02/webfont-support-in-email/ -->
<!--[if !mso]><!-->
<!-- insert web font reference, eg: <link href='https://fonts.googleapis.com/css?family=Roboto:400,700' rel='stylesheet' type='text/css'> -->
<!--<![endif]-->
<!-- Web Font / @font-face : END -->
<!-- CSS Reset -->
<style>
/* What it does: Remove spaces around the email design added by some email clients. */
/* Beware: It can remove the padding / margin and add a background color to the compose a reply window. */
html,
body {
margin: 0 auto !important;
padding: 0 !important;
height: 100% !important;
width: 100% !important;
line-height: 1.4 !important;
}
/* What it does: Stops email clients resizing small text. */
* {
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
}
/* What it does: Centers email on Android 4.4 */
div[style*="margin: 16px 0"] {
margin: 0 !important;
}
/* What it does: Stops Outlook from adding extra spacing to tables. */
table,
td {
mso-table-lspace: 0pt !important;
mso-table-rspace: 0pt !important;
}
/* What it does: Fixes webkit padding issue. Fix for Yahoo mail table alignment bug. Applies table-layout to the first 2 tables then removes for anything nested deeper. */
table {
border-spacing: 0 !important;
border-collapse: collapse !important;
table-layout: fixed !important;
margin: 0 auto !important;
}
table table table {
table-layout: auto;
}
/* What it does: Uses a better rendering method when resizing images in IE. */
img {
-ms-interpolation-mode: bicubic;
}
/* What it does: A work-around for iOS meddling in triggered links. */
*[x-apple-data-detectors] {
color: inherit !important;
text-decoration: none !important;
}
/* What it does: A work-around for Gmail meddling in triggered links. */
.x-gmail-data-detectors,
.x-gmail-data-detectors *,
.aBn {
border-bottom: 0 !important;
cursor: default !important;
}
/* What it does: Prevents Gmail from displaying an download button on large, non-linked images. */
.a6S {
display: none !important;
opacity: 0.01 !important;
}
/* If the above doesn't work, add a .g-img class to any image in question. */
img.g-img + div {
display: none !important;
}
/* What it does: Prevents underlining the button text in Windows 10 */
.button-link {
text-decoration: none !important;
}
.button-text{text-align: center!important;}
/* What it does: Removes right gutter in Gmail iOS app: https://github.com/TedGoas/Cerberus/issues/89 */
/* Create one of these media queries for each additional viewport size you'd like to fix */
/* Thanks to Eric Lepetit @ericlepetitsf) for help troubleshooting */
@media only screen and (min-device-width: 375px) and (max-device-width: 413px) { /* iPhone 6 and 6+ */
.email-container {
min-width: 375px !important;
}
}
</style>
<!-- Progressive Enhancements -->
<style id="media-query-style-element">
/* Media Queries */
@media screen yahoo and (min-width: 768px){
.email-container img.cd-image.image-0159a19a1f61 {
width: 100%;
height: auto !important;
}
.email-container img.cd-image.image-8c9973c9bc4c {
width: 100%;
height: auto !important;
}
.email-container img.cd-image.image-6199f7ca7755 {
width: 100%;
height: auto !important;
}
.email-container img.cd-image.image-85d57bbbabd8 {
width: 100%;
height: auto !important;
}
.email-container img.cd-image.image-deb91e7db682 {
width: 100%;
height: auto !important;
}
}
@media screen and (max-width: 768px) {
.email-container img.cd-image.image-0159a19a1f61 {
width: 100%;
height: auto !important;
}
.email-container img.cd-image.image-8c9973c9bc4c {
width: 100%;
height: auto !important;
}
.email-container img.cd-image.image-6199f7ca7755 {
width: 100%;
height: auto !important;
}
.email-container img.cd-image.image-85d57bbbabd8 {
width: 100%;
height: auto !important;
}
.email-container img.cd-image.image-deb91e7db682 {
width: 100%;
height: auto !important;
}
.email-container img.no-img-edit {
width: 100% !important;
height: auto !important;
}
table, td{
width: 100% !important;
}
div{
width: 100% !important;
min-width:100%!important;
}
.social-block-container{
padding-left: 0 !important;
padding-right: 0 !important;
}
/* What it does: Forces elements to resize to the full width of their container. Useful for resizing images beyond their max-width. */
.fluid {
width: 100% !important;
max-width: 100% !important;
height: auto !important;
margin-left: auto !important;
margin-right: auto !important;
}
/* What it does: Forces table cells into full-width rows. */
.stack-column,
.stack-column-center {
display: block;
width: 100% !important;
max-width: 100% !important;
direction: ltr !important;
}
/* What it does: Generic utility class for centering. Useful for images, buttons, and nested tables. */
.center-on-narrow {
text-align: center !important;
margin-left: auto !important;
margin-right: auto !important;
float: none !important;
}
table.center-on-narrow {
display: inline-block !important;
}
.button-text{ max-width:100%!important; box-sizing: border-box!important;}
}
</style>
<!-- What it does: Makes background images in 72ppi Outlook render at correct size. -->
<!--[if gte mso 9]>
<xml>
<o:OfficeDocumentSettings>
<o:AllowPNG/>
<o:PixelsPerInch>96</o:PixelsPerInch>
</o:OfficeDocumentSettings>
</xml>
<![endif]-->
<!--Replace with relevant script for different preview behavior -->
</head>
<body><img src="http://link.sfwater.org/o/3/T1RNMU1UWXlNRE06TURJdFlqSXdNVFl6TFRRMk1EazJZVE5sWTJFeE9UUTNPRFk1TkRCaE16RTNZVFl5WVRBME56a3g6YUc5MWMyVkFaR2xuYVhSaGJHdHBibWRrYjIwdWIzSm46WTI5dWRHRmpkQzAzWVdaa09UQTFObUV6WXpWbE5URXhPVFF6TVRBd05UQTFOamcxTldWbE9DMWtNek01TkdRNU0yVTNPR0kwWVRoa09XWmlaRGhoWlRRNU1HRTNOMlZpTkE/yZ7fRui8T2lfoCdV3aSVwQ" width="1" height="1" />
<!--this is the body-->
<center style="width: 100%;">
<div dir="ltr" style="max-width: 100%; margin: auto; direction: ltr;" class="email-container">
<table role="presentation" cellspacing="0" cellpadding="0" border="0" align="center" width="100%" style="width: 100%; border-width: 1px; border-style: none; border-radius: 0px; background-origin: border-box; background-color: #f2f0f0; border-collapse: separate!important;" class="email-container">
<tbody>
<tr>
<td style="width: 100%;">
<!--[if mso]>
<table role="presentation" border="0" cellspacing="0" cellpadding="0" align="center" width="608" style="border-width: 10px; border-color: #ffffff; border-style: solid; width: 608px; max-width: 608px; border-collapse: separate!important;" class="email-page-container">
<![endif]-->
<!--[if !mso]><!-- -->
<table role="presentation" cellspacing="0" cellpadding="0" border="0" align="center" width="620" style="border-width: 10px; border-color: #ffffff; border-style: solid; width: 620px; max-width: 620px; border-collapse: separate!important;" class="email-page-container">
<!--<![endif]-->
<tbody>
<tr class="section-block">
<td align="center" height="100%" valign="top" width="100%" style=" ">
<!-- Email Section : BEGIN -->
<!--[if mso]>
<table role="presentation" border="0" cellspacing="0" cellpadding="0" align="center" width="600">
<tr>
<td align="center" valign="top" width="600">
<![endif]-->
<table id="40" role="presentation" border="0" cellpadding="0" cellspacing="0" align="center" width="100%" style="max-width:600px;">
<tbody>
<tr>
<td valign="top" width="100%" style="padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; background-color: #ffffff;; font-size: 0;">
<!--[if mso]>
<table role="presentation" border="0" cellspacing="0" cellpadding="0" align="center" width="600px" style="table-layout:fixed; border-collapse: collapse; mso-table-lspace:0; mso-table-rspace:0;" cellpadding="0" cellspacing="0" >
<tr>
<![endif]-->
<!--[if mso]><td align="left" valign="top" width="600px"><![endif]--><div style="overflow: visible!important; display: inline-block; width:600px; max-width:600px; min-width:600px; vertical-align:top;" class="stack-column">
<table role="presentation" cellspacing="0" cellpadding="0" border="0" width="100%">
<tbody>
<tr>
<td style="padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px;">
<table role="presentation" cellspacing="0" cellpadding="0" border="0" width="600px" style="table-layout: fixed; width: 600px;" >
<tbody>
<tr>
<td width="560" class="text-block-container" style="box-sizing: border-box;white-space: normal;font-family:Arial,Helvetica,sans-serif;font-size:12px;line-height:1.4;color:#000; word-wrap: break-word !important; white-space: normal; background-color: #f2f0f0; padding-top: 16px; padding-bottom: 16px; padding-left: 20px; padding-right: 20px;"><p style="text-align:center;font-family:Calibri;font-size:16px;color:#686868;letter-spacing:0px;line-height:1.5;margin:0;word-wrap:break-word !important;font-weight:normal;font-style:normal;text-decoration: none"><span style="font-size:12px">Click <a cd-link-manager-tab="6" href="http://link.sfwater.org/m/1/93516203/02-b20163-46096a3eca194786940a317a62a04791/181/590/26c7393b-e2d8-458e-b405-079cb217ef83" target="_blank" style="color: #1cbeca; text-decoration: underline;">here</a> if you are having trouble viewing this message.</span></p>
</td>
</tr><!--[if mso]>
<tr>
<td width="600" class="stack-column-center image-block-container" style="vertical-align: top; text-align: center; padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px;">
<a href="http://link.sfwater.org/c/6/?T=OTM1MTYyMDM%3AMDItYjIwMTYzLTQ2MDk2YTNlY2ExOTQ3ODY5NDBhMzE3YTYyYTA0Nzkx%3AaG91c2VAZGlnaXRhbGtpbmdkb20ub3Jn%3AY29udGFjdC03YWZkOTA1NmEzYzVlNTExOTQzMTAwNTA1Njg1NWVlOC1kMzM5NGQ5M2U3OGI0YThkOWZiZDhhZTQ5MGE3N2ViNA%3AZmFsc2U%3AMA%3A%3AaHR0cDovL2NsZWFucG93ZXJzZi5vcmc_X2NsZGVlPWFHOTFjMlZBWkdsbmFYUmhiR3RwYm1ka2IyMHViM0puJnJlY2lwaWVudGlkPWNvbnRhY3QtN2FmZDkwNTZhM2M1ZTUxMTk0MzEwMDUwNTY4NTVlZTgtZDMzOTRkOTNlNzhiNGE4ZDlmYmQ4YWU0OTBhNzdlYjQmZXNpZD1jOWEwMTY5Ny02MWFiLWVhMTEtYTgxMi0wMDBkM2E1OTE1YjI&K=EK6yBvmFgOh4cQ6yNAC5WQ" title="http://cleanpowersf.org" target="_blank" cdlinkrefidmso="19" ><img class="center-on-narrow cd-image" height="278" width="600" style="vertical-align: middle;" src="https://file-us.clickdimensions.com/wwwcleanpowersforg-am6vi/files/cpsf_enewsletter_quarterly_picsetup_600pxx210px_v16.jpg" /></a>
</td>
</tr>
<![endif]-->
<!--[if !mso]><!-- --><tr>
<td width="600" class="stack-column-center image-block-container" style="vertical-align: top; box-sizing: border-box; text-align: center; padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px;">
<a href="http://link.sfwater.org/c/6/?T=OTM1MTYyMDM%3AMDItYjIwMTYzLTQ2MDk2YTNlY2ExOTQ3ODY5NDBhMzE3YTYyYTA0Nzkx%3AaG91c2VAZGlnaXRhbGtpbmdkb20ub3Jn%3AY29udGFjdC03YWZkOTA1NmEzYzVlNTExOTQzMTAwNTA1Njg1NWVlOC1kMzM5NGQ5M2U3OGI0YThkOWZiZDhhZTQ5MGE3N2ViNA%3AZmFsc2U%3AMQ%3A%3AaHR0cDovL2NsZWFucG93ZXJzZi5vcmc_X2NsZGVlPWFHOTFjMlZBWkdsbmFYUmhiR3RwYm1ka2IyMHViM0puJnJlY2lwaWVudGlkPWNvbnRhY3QtN2FmZDkwNTZhM2M1ZTUxMTk0MzEwMDUwNTY4NTVlZTgtZDMzOTRkOTNlNzhiNGE4ZDlmYmQ4YWU0OTBhNzdlYjQmZXNpZD1jOWEwMTY5Ny02MWFiLWVhMTEtYTgxMi0wMDBkM2E1OTE1YjI&K=2H9gsM6cpUdxm8XaDIv9kA" title="http://cleanpowersf.org" target="_blank" cdlinkrefid="19" ><img class="center-on-narrow cd-image image-0159a19a1f61 no-img-edit" height="278" width="600" style="vertical-align: middle;" src="https://file-us.clickdimensions.com/wwwcleanpowersforg-am6vi/files/cpsf_enewsletter_quarterly_picsetup_600pxx210px_v16.jpg" /></a>
</td>
</tr><!--<![endif]--><tr>
<td width="600" class="text-block-container" style="box-sizing: border-box;white-space: normal;font-family:Arial,Helvetica,sans-serif;font-size:12px;line-height:1.4;color:#000; word-wrap: break-word !important; white-space: normal; padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px;"><p style="font-family:Calibri;font-size:16px;color:#686868;letter-spacing:0px;line-height:1.5;text-align:left;margin:0;word-wrap:break-word !important;font-weight:normal;font-style:normal;text-decoration: none"> </p>
<p style="font-family:Calibri;font-size:16px;color:#686868;letter-spacing:0px;line-height:1.5;text-align:left;margin:0;word-wrap:break-word !important;font-weight:normal;font-style:normal;text-decoration: none"><span style="font-size:20px"><span style="font-family:Calibri"><strong>We are <a cd-link-manager-tab="1" href="http://link.sfwater.org/c/6/?T=OTM1MTYyMDM%3AMDItYjIwMTYzLTQ2MDk2YTNlY2ExOTQ3ODY5NDBhMzE3YTYyYTA0Nzkx%3AaG91c2VAZGlnaXRhbGtpbmdkb20ub3Jn%3AY29udGFjdC03YWZkOTA1NmEzYzVlNTExOTQzMTAwNTA1Njg1NWVlOC1kMzM5NGQ5M2U3OGI0YThkOWZiZDhhZTQ5MGE3N2ViNA%3AZmFsc2U%3AMg%3A%3AaHR0cHM6Ly93d3cuY2xlYW5wb3dlcnNmLm9yZy8_X2NsZGVlPWFHOTFjMlZBWkdsbmFYUmhiR3RwYm1ka2IyMHViM0puJnJlY2lwaWVudGlkPWNvbnRhY3QtN2FmZDkwNTZhM2M1ZTUxMTk0MzEwMDUwNTY4NTVlZTgtZDMzOTRkOTNlNzhiNGE4ZDlmYmQ4YWU0OTBhNzdlYjQmZXNpZD1jOWEwMTY5Ny02MWFiLWVhMTEtYTgxMi0wMDBkM2E1OTE1YjI&K=KwA1x7FNTMGUrNJe26kF-Q" target="_blank" style="color: #1cbeca; text-decoration: underline;">CleanPowerSF</a>, your local, clean electricity provider.</strong></span></span></p>
<p style="margin-left:0in; margin-right:0in;font-family:Calibri;font-size:16px;color:#686868;letter-spacing:0px;line-height:1.5;text-align:left;margin:0;word-wrap:break-word !important;font-weight:normal;font-style:normal;text-decoration: none"> </p>
<p style="margin-left:0in; margin-right:0in;font-family:Calibri;font-size:16px;color:#686868;letter-spacing:0px;line-height:1.5;text-align:left;margin:0;word-wrap:break-word !important;font-weight:normal;font-style:normal;text-decoration: none"><span style="font-family:Calibri"><span style="font-size:16px">A program of the <a cd-link-manager-tab="1" href="http://link.sfwater.org/c/6/?T=OTM1MTYyMDM%3AMDItYjIwMTYzLTQ2MDk2YTNlY2ExOTQ3ODY5NDBhMzE3YTYyYTA0Nzkx%3AaG91c2VAZGlnaXRhbGtpbmdkb20ub3Jn%3AY29udGFjdC03YWZkOTA1NmEzYzVlNTExOTQzMTAwNTA1Njg1NWVlOC1kMzM5NGQ5M2U3OGI0YThkOWZiZDhhZTQ5MGE3N2ViNA%3AZmFsc2U%3AMw%3A%3AaHR0cHM6Ly9zZndhdGVyLm9yZy8_X2NsZGVlPWFHOTFjMlZBWkdsbmFYUmhiR3RwYm1ka2IyMHViM0puJnJlY2lwaWVudGlkPWNvbnRhY3QtN2FmZDkwNTZhM2M1ZTUxMTk0MzEwMDUwNTY4NTVlZTgtZDMzOTRkOTNlNzhiNGE4ZDlmYmQ4YWU0OTBhNzdlYjQmZXNpZD1jOWEwMTY5Ny02MWFiLWVhMTEtYTgxMi0wMDBkM2E1OTE1YjI&K=qFaf-XcUyVajUe2xgTkQnw" target="_blank" style="color: #1cbeca; text-decoration: underline;">San Francisco Public Utilities Commission (SFPUC)</a>, CleanPowerSF serves nearly 380,000 residential and commercial accounts in San Francisco. <strong>Thank you for being one of them.</strong></span></span></p>
<p style="margin-left:0in; margin-right:0in;font-family:Calibri;font-size:16px;color:#686868;letter-spacing:0px;line-height:1.5;text-align:left;margin:0;word-wrap:break-word !important;font-weight:normal;font-style:normal;text-decoration: none"> </p>
<p style="font-family:Calibri;font-size:16px;color:#686868;letter-spacing:0px;line-height:1.5;text-align:left;margin:0;word-wrap:break-word !important;font-weight:normal;font-style:normal;text-decoration: none"><span style="font-family:Calibri"><span style="font-size:16px">CleanPowerSF is focused on providing clean energy that is affordable and accessible to all—now and in the future. <strong>We recognize the hardships our customers may be facing as a result of the global coronavirus (COVID-19) pandemic. </strong>We also realize you may be using more energy than you typically do while sheltering in place at home. </span></span></p>
<p style="font-family:Calibri;font-size:16px;color:#686868;letter-spacing:0px;line-height:1.5;text-align:left;margin:0;word-wrap:break-word !important;font-weight:normal;font-style:normal;text-decoration: none"> </p>
<p style="font-family:Calibri;font-size:16px;color:#686868;letter-spacing:0px;line-height:1.5;text-align:left;margin:0;word-wrap:break-word !important;font-weight:normal;font-style:normal;text-decoration: none"><span style="font-family:Calibri"><span style="font-size:16px">We’re reaching out to offer support and to make you aware of resources available to you during this challenging time. <strong>From monthly discounts to flexible payment options, we’re here to help you manage and save on your electricity bill. </strong></span></span></p>
</td>
</tr><tr>
<td width="560" class="button-block-container"
style="box-sizing: border-box;white-space: normal;font-family:Arial,Helvetica,sans-serif;font-size:12px;line-height:1.4;color:#000; word-wrap: break-word !important; white-space: normal;
padding-top: 15px; padding-bottom: 15px; padding-left: 20px; padding-right: 20px; text-align: center;">
<!--[if mso]><table role="presentation" cellspacing="0" cellpadding="0" border="0" >
<tr>
<td valign="top" style="padding: 13px; color:
font-weight: normal; word-wrap: break-word !important;
word-wrap: break-word !important; white-space: normal; box-sizing: content-box; text-align: center;
background-color: #35b8a6;
border:2px none #000;border-radius:10px;
max-width: 530px;">
<p align="center" style="font-family: Arial; color: #ffffff; text-align:center; font-size:20px;"><a class="button-link" href="http://link.sfwater.org/c/6/?T=OTM1MTYyMDM%3AMDItYjIwMTYzLTQ2MDk2YTNlY2ExOTQ3ODY5NDBhMzE3YTYyYTA0Nzkx%3AaG91c2VAZGlnaXRhbGtpbmdkb20ub3Jn%3AY29udGFjdC03YWZkOTA1NmEzYzVlNTExOTQzMTAwNTA1Njg1NWVlOC1kMzM5NGQ5M2U3OGI0YThkOWZiZDhhZTQ5MGE3N2ViNA%3AZmFsc2U%3ANA%3A%3AaHR0cHM6Ly93d3cuY2xlYW5wb3dlcnNmLm9yZy9jb3ZpZC0xOT9fY2xkZWU9YUc5MWMyVkFaR2xuYVhSaGJHdHBibWRrYjIwdWIzSm4mcmVjaXBpZW50aWQ9Y29udGFjdC03YWZkOTA1NmEzYzVlNTExOTQzMTAwNTA1Njg1NWVlOC1kMzM5NGQ5M2U3OGI0YThkOWZiZDhhZTQ5MGE3N2ViNCZlc2lkPWM5YTAxNjk3LTYxYWItZWExMS1hODEyLTAwMGQzYTU5MTViMg&K=6ool7g0D8GfB-aN9TlL9oQ" title="https://www.cleanpowersf.org/covid-19" target="_blank"
cdlinkrefidmso="21" style="text-decoration: none; color:#fff; font-family: Arial;
font-weight: normal; display: inline-block;"><span style="font-size:20px"><span style="font-family:Calibri">Learn More</span></span></a></p>
</td>
</tr></table><![endif]-->
<!--[if !mso]><!-- -->
<a class="button-link" style="display: block;" href="http://link.sfwater.org/c/6/?T=OTM1MTYyMDM%3AMDItYjIwMTYzLTQ2MDk2YTNlY2ExOTQ3ODY5NDBhMzE3YTYyYTA0Nzkx%3AaG91c2VAZGlnaXRhbGtpbmdkb20ub3Jn%3AY29udGFjdC03YWZkOTA1NmEzYzVlNTExOTQzMTAwNTA1Njg1NWVlOC1kMzM5NGQ5M2U3OGI0YThkOWZiZDhhZTQ5MGE3N2ViNA%3AZmFsc2U%3ANQ%3A%3AaHR0cHM6Ly93d3cuY2xlYW5wb3dlcnNmLm9yZy9jb3ZpZC0xOT9fY2xkZWU9YUc5MWMyVkFaR2xuYVhSaGJHdHBibWRrYjIwdWIzSm4mcmVjaXBpZW50aWQ9Y29udGFjdC03YWZkOTA1NmEzYzVlNTExOTQzMTAwNTA1Njg1NWVlOC1kMzM5NGQ5M2U3OGI0YThkOWZiZDhhZTQ5MGE3N2ViNCZlc2lkPWM5YTAxNjk3LTYxYWItZWExMS1hODEyLTAwMGQzYTU5MTViMg&K=KS_ElrYNC_Imv9Ca5m3sCA" title="https://www.cleanpowersf.org/covid-19" target="_blank" cdlinkrefid="21" >
<span class="button-text" style="display: inline-block; vertical-align: middle; padding: 13px; font-size: 20px;
color: #ffffff; word-wrap: break-word !important; white-space: normal; box-sizing: content-box; text-align: center;
background-color: #35b8a6;
border:2px none #000;border-radius:10px;
max-width: 530px;"><span style="font-size:20px"><span style="font-family:Calibri">Learn More</span></span></span>
</a>
<!--<![endif]-->
</td>
</tr><tr>
<td width="560" class="text-block-container" style="box-sizing: border-box;white-space: normal;font-family:Arial,Helvetica,sans-serif;font-size:12px;line-height:1.4;color:#000; word-wrap: break-word !important; white-space: normal; padding-top: 20px; padding-bottom: 20px; padding-left: 20px; padding-right: 20px;">
<table role="presentation" cellspacing="0" cellpadding="0" style="border-collapse: collapse; border-spacing: 0; vertical-align: top; width: 100%; min-width: 100%;
border-bottom-width: 1px;
border-bottom-color: #686868;
border-bottom-style: solid;" width="100%" >
<tr>
<td style="border: 0 none transparent; padding: 0; vertical-align: top; width: 100%; font-size: 0; line-height: 0;"> </td>
</tr>
</table>
</td>
</tr><!--[if mso]>
<tr>
<td width="600" class="stack-column-center image-block-container" style="vertical-align: top; text-align: center; padding-top: 10px; padding-bottom: 10px; padding-left: 0px; padding-right: 0px;">
<a href="http://link.sfwater.org/c/6/?T=OTM1MTYyMDM%3AMDItYjIwMTYzLTQ2MDk2YTNlY2ExOTQ3ODY5NDBhMzE3YTYyYTA0Nzkx%3AaG91c2VAZGlnaXRhbGtpbmdkb20ub3Jn%3AY29udGFjdC03YWZkOTA1NmEzYzVlNTExOTQzMTAwNTA1Njg1NWVlOC1kMzM5NGQ5M2U3OGI0YThkOWZiZDhhZTQ5MGE3N2ViNA%3AZmFsc2U%3ANg%3A%3AaHR0cHM6Ly93d3cuY2xlYW5wb3dlcnNmLm9yZy9jb3ZpZC0xOT9fY2xkZWU9YUc5MWMyVkFaR2xuYVhSaGJHdHBibWRrYjIwdWIzSm4mcmVjaXBpZW50aWQ9Y29udGFjdC03YWZkOTA1NmEzYzVlNTExOTQzMTAwNTA1Njg1NWVlOC1kMzM5NGQ5M2U3OGI0YThkOWZiZDhhZTQ5MGE3N2ViNCZlc2lkPWM5YTAxNjk3LTYxYWItZWExMS1hODEyLTAwMGQzYTU5MTViMg&K=Scn9T8HgxzP_qD4KYb_VPw" title="https://www.cleanpowersf.org/covid-19" target="_blank" cdlinkrefidmso="23" ><img class="center-on-narrow cd-image" height="220" width="600" style="vertical-align: middle;" src="https://file-us.clickdimensions.com/wwwcleanpowersforg-am6vi/files/cpsf_enewsletter_quarterly_picsetup_600pxx210px_v143.jpg" /></a>
</td>
</tr>
<![endif]-->
<!--[if !mso]><!-- --><tr>
<td width="600" class="stack-column-center image-block-container" style="vertical-align: top; box-sizing: border-box; text-align: center; padding-top: 10px; padding-bottom: 10px; padding-left: 0px; padding-right: 0px;">
<a href="http://link.sfwater.org/c/6/?T=OTM1MTYyMDM%3AMDItYjIwMTYzLTQ2MDk2YTNlY2ExOTQ3ODY5NDBhMzE3YTYyYTA0Nzkx%3AaG91c2VAZGlnaXRhbGtpbmdkb20ub3Jn%3AY29udGFjdC03YWZkOTA1NmEzYzVlNTExOTQzMTAwNTA1Njg1NWVlOC1kMzM5NGQ5M2U3OGI0YThkOWZiZDhhZTQ5MGE3N2ViNA%3AZmFsc2U%3ANw%3A%3AaHR0cHM6Ly93d3cuY2xlYW5wb3dlcnNmLm9yZy9jb3ZpZC0xOT9fY2xkZWU9YUc5MWMyVkFaR2xuYVhSaGJHdHBibWRrYjIwdWIzSm4mcmVjaXBpZW50aWQ9Y29udGFjdC03YWZkOTA1NmEzYzVlNTExOTQzMTAwNTA1Njg1NWVlOC1kMzM5NGQ5M2U3OGI0YThkOWZiZDhhZTQ5MGE3N2ViNCZlc2lkPWM5YTAxNjk3LTYxYWItZWExMS1hODEyLTAwMGQzYTU5MTViMg&K=gyE5Nq7MQ0ZMRxksfT9zIw" title="https://www.cleanpowersf.org/covid-19" target="_blank" cdlinkrefid="23" ><img class="center-on-narrow cd-image image-8c9973c9bc4c no-img-edit" height="220" width="600" style="vertical-align: middle;" src="https://file-us.clickdimensions.com/wwwcleanpowersforg-am6vi/files/cpsf_enewsletter_quarterly_picsetup_600pxx210px_v143.jpg" /></a>
</td>
</tr><!--<![endif]-->
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</div><!--[if mso]></td><![endif]-->
<!--[if mso]>
</tr>
</table>
<![endif]-->
</td>
</tr>
</tbody>
</table>
<!--[if mso]>
</td>
</tr>
</table>
<![endif]-->
<!-- Email Section : END -->
</td>
</tr><tr class="section-block">
<td align="center" height="100%" valign="top" width="100%" style=" ">
<!-- Email Section : BEGIN -->
<!--[if mso]>
<table role="presentation" border="0" cellspacing="0" cellpadding="0" align="center" width="600">
<tr>
<td align="center" valign="top" width="600">
<![endif]-->
<table id="41" role="presentation" border="0" cellpadding="0" cellspacing="0" align="center" width="100%" style="max-width:600px;">
<tbody>
<tr>
<td valign="top" width="100%" style="padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; background-color: #ffffff;; font-size: 0;">
<!--[if mso]>
<table role="presentation" border="0" cellspacing="0" cellpadding="0" align="center" width="600px" style="table-layout:fixed; border-collapse: collapse; mso-table-lspace:0; mso-table-rspace:0;" cellpadding="0" cellspacing="0" >
<tr>
<![endif]-->
<!--[if mso]><td align="left" valign="top" width="600px"><![endif]--><div style="overflow: visible!important; display: inline-block; width:600px; max-width:600px; min-width:600px; vertical-align:top;" class="stack-column">
<table role="presentation" cellspacing="0" cellpadding="0" border="0" width="100%">
<tbody>
<tr>
<td style="padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px;">
<table role="presentation" cellspacing="0" cellpadding="0" border="0" width="600px" style="table-layout: fixed; width: 600px;" >
<tbody>
<tr>
<td width="600" class="text-block-container" style="box-sizing: border-box;white-space: normal;font-family:Arial,Helvetica,sans-serif;font-size:12px;line-height:1.4;color:#000; word-wrap: break-word !important; white-space: normal; padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px;"><h1 style="font-family:Calibri;font-size:28px;color:#1cbeca;letter-spacing:0px;line-height:1.5;text-align:left;margin:0;word-wrap:break-word !important;font-weight:bold;font-style:normal;text-decoration: none;"><span style="font-family:Calibri">Customer Protections</span></h1>
<p style="font-family:Calibri;font-size:16px;color:#686868;letter-spacing:0px;line-height:1.5;text-align:left;margin:0;word-wrap:break-word !important;font-weight:normal;font-style:normal;text-decoration: none"><span style="font-family:Calibri"><span style="font-size:16px"><a cd-link-manager-tab="1" href="http://link.sfwater.org/c/6/?T=OTM1MTYyMDM%3AMDItYjIwMTYzLTQ2MDk2YTNlY2ExOTQ3ODY5NDBhMzE3YTYyYTA0Nzkx%3AaG91c2VAZGlnaXRhbGtpbmdkb20ub3Jn%3AY29udGFjdC03YWZkOTA1NmEzYzVlNTExOTQzMTAwNTA1Njg1NWVlOC1kMzM5NGQ5M2U3OGI0YThkOWZiZDhhZTQ5MGE3N2ViNA%3AZmFsc2U%3AOA%3A%3AaHR0cHM6Ly93d3cucGdlLmNvbS9lbl9VUy9hYm91dC1wZ2UvY29tcGFueS1pbmZvcm1hdGlvbi9wcm90ZWN0aXZlLXByb3RvY29scy9jb3ZpZDE5LXByb3RlY3Rpb25zLnBhZ2U_V1QubWNfaWQ9VmFuaXR5X2NvdmlkMTljb25zdW1lcnByb3RlY3Rpb25zJl9jbGRlZT1hRzkxYzJWQVpHbG5hWFJoYkd0cGJtZGtiMjB1YjNKbiZyZWNpcGllbnRpZD1jb250YWN0LTdhZmQ5MDU2YTNjNWU1MTE5NDMxMDA1MDU2ODU1ZWU4LWQzMzk0ZDkzZTc4YjRhOGQ5ZmJkOGFlNDkwYTc3ZWI0JmVzaWQ9YzlhMDE2OTctNjFhYi1lYTExLWE4MTItMDAwZDNhNTkxNWIy&K=BYlKNIVVW9cXOWzpINGMOg" target="_blank" style="color: #1cbeca; text-decoration: underline;">Together with PG&E</a>, we are offering the following customer protections during the COVID-19 pandemic: </span></span></p>
<p style="font-family:Calibri;font-size:16px;color:#686868;letter-spacing:0px;line-height:1.5;text-align:left;margin:0;word-wrap:break-word !important;font-weight:normal;font-style:normal;text-decoration: none"> </p>
<p style="font-family:Calibri;font-size:16px;color:#686868;letter-spacing:0px;line-height:1.5;text-align:left;margin:0;word-wrap:break-word !important;font-weight:normal;font-style:normal;text-decoration: none"><span style="font-size:16px"><span style="font-family:Calibri"><strong>CleanPowerSF will no longer return CleanPowerSF customers to PG&E service as result of late payment</strong> until further notice.</span></span></p>
<p style="font-family:Calibri;font-size:16px;color:#686868;letter-spacing:0px;line-height:1.5;text-align:left;margin:0;word-wrap:break-word !important;font-weight:normal;font-style:normal;text-decoration: none"> </p>
<p style="font-family:Calibri;font-size:16px;color:#686868;letter-spacing:0px;line-height:1.5;text-align:left;margin:0;word-wrap:break-word !important;font-weight:normal;font-style:normal;text-decoration: none"><span style="font-family:Calibri"><span style="font-size:16px"><strong>PG&E will not disconnect CleanPowerSF residential customers for not paying their electricity bill. </strong>They are also waiving deposit requirements. The policy will remain in effect until further notice. </span></span></p>
<p style="font-family:Calibri;font-size:16px;color:#686868;letter-spacing:0px;line-height:1.5;text-align:left;margin:0;word-wrap:break-word !important;font-weight:normal;font-style:normal;text-decoration: none"> </p>
<p style="font-family:Calibri;font-size:16px;color:#686868;letter-spacing:0px;line-height:1.5;text-align:left;margin:0;word-wrap:break-word !important;font-weight:normal;font-style:normal;text-decoration: none"><span style="font-family:Calibri"><span style="font-size:16px"><strong><a cd-link-manager-tab="1" href="http://link.sfwater.org/c/6/?T=OTM1MTYyMDM%3AMDItYjIwMTYzLTQ2MDk2YTNlY2ExOTQ3ODY5NDBhMzE3YTYyYTA0Nzkx%3AaG91c2VAZGlnaXRhbGtpbmdkb20ub3Jn%3AY29udGFjdC03YWZkOTA1NmEzYzVlNTExOTQzMTAwNTA1Njg1NWVlOC1kMzM5NGQ5M2U3OGI0YThkOWZiZDhhZTQ5MGE3N2ViNA%3AZmFsc2U%3AOQ%3A%3AaHR0cHM6Ly93d3cucGdlLmNvbS9lbl9VUy9yZXNpZGVudGlhbC9zYXZlLWVuZXJneS1tb25leS9oZWxwLXBheWluZy15b3VyLWJpbGwvbG9uZ2VyLXRlcm0tYXNzaXN0YW5jZS9tZWRpY2FsLWNvbmRpdGlvbi1yZWxhdGVkL21lZGljYWwtYmFzZWxpbmUtYWxsb3dhbmNlL21lZGljYWwtYmFzZWxpbmUtYWxsb3dhbmNlLnBhZ2U_V1QubWNfaWQ9VmFuaXR5X21lZGljYWxiYXNlbGluZSZfY2xkZWU9YUc5MWMyVkFaR2xuYVhSaGJHdHBibWRrYjIwdWIzSm4mcmVjaXBpZW50aWQ9Y29udGFjdC03YWZkOTA1NmEzYzVlNTExOTQzMTAwNTA1Njg1NWVlOC1kMzM5NGQ5M2U3OGI0YThkOWZiZDhhZTQ5MGE3N2ViNCZlc2lkPWM5YTAxNjk3LTYxYWItZWExMS1hODEyLTAwMGQzYTU5MTViMg&K=HinCrI5arTlkhrtbu6jzSA" target="_blank" style="color: #1cbeca; text-decoration: underline;">Medical Baseline customers</a> will receive additional protections for twelve months.</strong> PG&E will not remove customers from the program during this time, enrollees will not have to re-certify through a doctor, and customers can self-certify their eligibility to enroll. </span></span></p>
</td>
</tr><tr>
<td width="560" class="button-block-container"
style="box-sizing: border-box;white-space: normal;font-family:Arial,Helvetica,sans-serif;font-size:12px;line-height:1.4;color:#000; word-wrap: break-word !important; white-space: normal;
padding-top: 15px; padding-bottom: 15px; padding-left: 20px; padding-right: 20px; text-align: center;">
<!--[if mso]><table role="presentation" cellspacing="0" cellpadding="0" border="0" >
<tr>
<td valign="top" style="padding: 13px; color:
font-weight: normal; word-wrap: break-word !important;
word-wrap: break-word !important; white-space: normal; box-sizing: content-box; text-align: center;
background-color: #35b8a6;
border:2px none #000;border-radius:10px;
max-width: 530px;">
<p align="center" style="font-family: Arial; color: #ffffff; text-align:center; font-size:20px;"><a class="button-link" href="http://link.sfwater.org/c/6/?T=OTM1MTYyMDM%3AMDItYjIwMTYzLTQ2MDk2YTNlY2ExOTQ3ODY5NDBhMzE3YTYyYTA0Nzkx%3AaG91c2VAZGlnaXRhbGtpbmdkb20ub3Jn%3AY29udGFjdC03YWZkOTA1NmEzYzVlNTExOTQzMTAwNTA1Njg1NWVlOC1kMzM5NGQ5M2U3OGI0YThkOWZiZDhhZTQ5MGE3N2ViNA%3AZmFsc2U%3AMTA%3A%3AaHR0cHM6Ly93d3cuY2xlYW5wb3dlcnNmLm9yZy9jb3ZpZC0xOT9fY2xkZWU9YUc5MWMyVkFaR2xuYVhSaGJHdHBibWRrYjIwdWIzSm4mcmVjaXBpZW50aWQ9Y29udGFjdC03YWZkOTA1NmEzYzVlNTExOTQzMTAwNTA1Njg1NWVlOC1kMzM5NGQ5M2U3OGI0YThkOWZiZDhhZTQ5MGE3N2ViNCZlc2lkPWM5YTAxNjk3LTYxYWItZWExMS1hODEyLTAwMGQzYTU5MTViMg&K=AmHBatU4H6CFBe3W07JpbA" title="https://www.cleanpowersf.org/covid-19" target="_blank"
cdlinkrefidmso="26" style="text-decoration: none; color:#fff; font-family: Arial;
font-weight: normal; display: inline-block;"><span style="font-family:Calibri"><span style="font-size:20px">More Customer Protections</span></span></a></p>
</td>
</tr></table><![endif]-->
<!--[if !mso]><!-- -->
<a class="button-link" style="display: block;" href="http://link.sfwater.org/c/6/?T=OTM1MTYyMDM%3AMDItYjIwMTYzLTQ2MDk2YTNlY2ExOTQ3ODY5NDBhMzE3YTYyYTA0Nzkx%3AaG91c2VAZGlnaXRhbGtpbmdkb20ub3Jn%3AY29udGFjdC03YWZkOTA1NmEzYzVlNTExOTQzMTAwNTA1Njg1NWVlOC1kMzM5NGQ5M2U3OGI0YThkOWZiZDhhZTQ5MGE3N2ViNA%3AZmFsc2U%3AMTE%3A%3AaHR0cHM6Ly93d3cuY2xlYW5wb3dlcnNmLm9yZy9jb3ZpZC0xOT9fY2xkZWU9YUc5MWMyVkFaR2xuYVhSaGJHdHBibWRrYjIwdWIzSm4mcmVjaXBpZW50aWQ9Y29udGFjdC03YWZkOTA1NmEzYzVlNTExOTQzMTAwNTA1Njg1NWVlOC1kMzM5NGQ5M2U3OGI0YThkOWZiZDhhZTQ5MGE3N2ViNCZlc2lkPWM5YTAxNjk3LTYxYWItZWExMS1hODEyLTAwMGQzYTU5MTViMg&K=MaGK88anQZJkJVT_C0YdnA" title="https://www.cleanpowersf.org/covid-19" target="_blank" cdlinkrefid="26" >
<span class="button-text" style="display: inline-block; vertical-align: middle; padding: 13px; font-size: 20px;
color: #ffffff; word-wrap: break-word !important; white-space: normal; box-sizing: content-box; text-align: center;
background-color: #35b8a6;
border:2px none #000;border-radius:10px;
max-width: 530px;"><span style="font-family:Calibri"><span style="font-size:20px">More Customer Protections</span></span></span>
</a>
<!--<![endif]-->
</td>
</tr><tr>
<td width="560" class="text-block-container" style="box-sizing: border-box;white-space: normal;font-family:Arial,Helvetica,sans-serif;font-size:12px;line-height:1.4;color:#000; word-wrap: break-word !important; white-space: normal; padding-top: 20px; padding-bottom: 20px; padding-left: 20px; padding-right: 20px;">
<table role="presentation" cellspacing="0" cellpadding="0" style="border-collapse: collapse; border-spacing: 0; vertical-align: top; width: 100%; min-width: 100%;
border-bottom-width: 1px;
border-bottom-color: #686868;
border-bottom-style: solid;" width="100%" >
<tr>
<td style="border: 0 none transparent; padding: 0; vertical-align: top; width: 100%; font-size: 0; line-height: 0;"> </td>
</tr>
</table>
</td>
</tr><!--[if mso]>
<tr>
<td width="600" class="stack-column-center image-block-container" style="vertical-align: top; text-align: center; padding-top: 10px; padding-bottom: 10px; padding-left: 0px; padding-right: 0px;">
<a href="http://link.sfwater.org/c/6/?T=OTM1MTYyMDM%3AMDItYjIwMTYzLTQ2MDk2YTNlY2ExOTQ3ODY5NDBhMzE3YTYyYTA0Nzkx%3AaG91c2VAZGlnaXRhbGtpbmdkb20ub3Jn%3AY29udGFjdC03YWZkOTA1NmEzYzVlNTExOTQzMTAwNTA1Njg1NWVlOC1kMzM5NGQ5M2U3OGI0YThkOWZiZDhhZTQ5MGE3N2ViNA%3AZmFsc2U%3AMTI%3A%3AaHR0cHM6Ly93d3cuY2xlYW5wb3dlcnNmLm9yZy9sb3dlcnlvdXJiaWxsP19jbGRlZT1hRzkxYzJWQVpHbG5hWFJoYkd0cGJtZGtiMjB1YjNKbiZyZWNpcGllbnRpZD1jb250YWN0LTdhZmQ5MDU2YTNjNWU1MTE5NDMxMDA1MDU2ODU1ZWU4LWQzMzk0ZDkzZTc4YjRhOGQ5ZmJkOGFlNDkwYTc3ZWI0JmVzaWQ9YzlhMDE2OTctNjFhYi1lYTExLWE4MTItMDAwZDNhNTkxNWIy&K=9AdQ0IhU0wLIXZF76o4gTg" title="https://www.cleanpowersf.org/loweryourbill" target="_blank" cdlinkrefidmso="28" ><img class="center-on-narrow cd-image" height="220" width="600" style="vertical-align: middle;" src="https://file-us.clickdimensions.com/wwwcleanpowersforg-am6vi/files/cpsf_enewsletter_quarterly_picsetup_600pxx210px_v14.jpg" /></a>
</td>
</tr>
<![endif]-->
<!--[if !mso]><!-- --><tr>
<td width="600" class="stack-column-center image-block-container" style="vertical-align: top; box-sizing: border-box; text-align: center; padding-top: 10px; padding-bottom: 10px; padding-left: 0px; padding-right: 0px;">
<a href="http://link.sfwater.org/c/6/?T=OTM1MTYyMDM%3AMDItYjIwMTYzLTQ2MDk2YTNlY2ExOTQ3ODY5NDBhMzE3YTYyYTA0Nzkx%3AaG91c2VAZGlnaXRhbGtpbmdkb20ub3Jn%3AY29udGFjdC03YWZkOTA1NmEzYzVlNTExOTQzMTAwNTA1Njg1NWVlOC1kMzM5NGQ5M2U3OGI0YThkOWZiZDhhZTQ5MGE3N2ViNA%3AZmFsc2U%3AMTM%3A%3AaHR0cHM6Ly93d3cuY2xlYW5wb3dlcnNmLm9yZy9sb3dlcnlvdXJiaWxsP19jbGRlZT1hRzkxYzJWQVpHbG5hWFJoYkd0cGJtZGtiMjB1YjNKbiZyZWNpcGllbnRpZD1jb250YWN0LTdhZmQ5MDU2YTNjNWU1MTE5NDMxMDA1MDU2ODU1ZWU4LWQzMzk0ZDkzZTc4YjRhOGQ5ZmJkOGFlNDkwYTc3ZWI0JmVzaWQ9YzlhMDE2OTctNjFhYi1lYTExLWE4MTItMDAwZDNhNTkxNWIy&K=vQpMbju20wAfmVd_fr5jDQ" title="https://www.cleanpowersf.org/loweryourbill" target="_blank" cdlinkrefid="28" ><img class="center-on-narrow cd-image image-6199f7ca7755 no-img-edit" height="220" width="600" style="vertical-align: middle;" src="https://file-us.clickdimensions.com/wwwcleanpowersforg-am6vi/files/cpsf_enewsletter_quarterly_picsetup_600pxx210px_v14.jpg" /></a>
</td>
</tr><!--<![endif]-->
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</div><!--[if mso]></td><![endif]-->
<!--[if mso]>
</tr>
</table>
<![endif]-->
</td>
</tr>
</tbody>
</table>
<!--[if mso]>
</td>
</tr>
</table>
<![endif]-->
<!-- Email Section : END -->
</td>
</tr><tr class="section-block">
<td align="center" height="100%" valign="top" width="100%" style=" ">
<!-- Email Section : BEGIN -->
<!--[if mso]>
<table role="presentation" border="0" cellspacing="0" cellpadding="0" align="center" width="600">
<tr>
<td align="center" valign="top" width="600">
<![endif]-->
<table id="42" role="presentation" border="0" cellpadding="0" cellspacing="0" align="center" width="100%" style="max-width:600px;">
<tbody>
<tr>
<td valign="top" width="100%" style="padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; background-color: #ffffff;; font-size: 0;">
<!--[if mso]>
<table role="presentation" border="0" cellspacing="0" cellpadding="0" align="center" width="600px" style="table-layout:fixed; border-collapse: collapse; mso-table-lspace:0; mso-table-rspace:0;" cellpadding="0" cellspacing="0" >
<tr>
<![endif]-->
<!--[if mso]><td align="left" valign="top" width="600px"><![endif]--><div style="overflow: visible!important; display: inline-block; width:600px; max-width:600px; min-width:600px; vertical-align:top;" class="stack-column">
<table role="presentation" cellspacing="0" cellpadding="0" border="0" width="100%">
<tbody>
<tr>
<td style="padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px;">
<table role="presentation" cellspacing="0" cellpadding="0" border="0" width="600px" style="table-layout: fixed; width: 600px;" >
<tbody>
<tr>
<td width="600" class="text-block-container" style="box-sizing: border-box;white-space: normal;font-family:Arial,Helvetica,sans-serif;font-size:12px;line-height:1.4;color:#000; word-wrap: break-word !important; white-space: normal; padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px;"><h1 style="font-family:Calibri;font-size:28px;color:#1cbeca;letter-spacing:0px;line-height:1.5;text-align:left;margin:0;word-wrap:break-word !important;font-weight:bold;font-style:normal;text-decoration: none;"><span style="font-family:Calibri">Financial Assistance</span></h1>
<p style="font-family:Calibri;font-size:16px;color:#686868;letter-spacing:0px;line-height:1.5;text-align:left;margin:0;word-wrap:break-word !important;font-weight:normal;font-style:normal;text-decoration: none"><span style="font-family:Calibri"><span style="font-size:16px">We understand that many of our customers are experiencing financial hardship, and we’re here to help: </span></span></p>
<p style="font-family:Calibri;font-size:16px;color:#686868;letter-spacing:0px;line-height:1.5;text-align:left;margin:0;word-wrap:break-word !important;font-weight:normal;font-style:normal;text-decoration: none"> </p>
<p style="font-family:Calibri;font-size:16px;color:#686868;letter-spacing:0px;line-height:1.5;text-align:left;margin:0;word-wrap:break-word !important;font-weight:normal;font-style:normal;text-decoration: none"><span style="font-family:Calibri"><span style="font-size:16px"><strong>CleanPowerSF customers will receive the <a cd-link-manager-tab="1" href="http://link.sfwater.org/c/6/?T=OTM1MTYyMDM%3AMDItYjIwMTYzLTQ2MDk2YTNlY2ExOTQ3ODY5NDBhMzE3YTYyYTA0Nzkx%3AaG91c2VAZGlnaXRhbGtpbmdkb20ub3Jn%3AY29udGFjdC03YWZkOTA1NmEzYzVlNTExOTQzMTAwNTA1Njg1NWVlOC1kMzM5NGQ5M2U3OGI0YThkOWZiZDhhZTQ5MGE3N2ViNA%3AZmFsc2U%3AMTQ%3A%3AaHR0cHM6Ly93d3cuY3B1Yy5jYS5nb3YvY2xpbWF0ZWNyZWRpdC8_X2NsZGVlPWFHOTFjMlZBWkdsbmFYUmhiR3RwYm1ka2IyMHViM0puJnJlY2lwaWVudGlkPWNvbnRhY3QtN2FmZDkwNTZhM2M1ZTUxMTk0MzEwMDUwNTY4NTVlZTgtZDMzOTRkOTNlNzhiNGE4ZDlmYmQ4YWU0OTBhNzdlYjQmZXNpZD1jOWEwMTY5Ny02MWFiLWVhMTEtYTgxMi0wMDBkM2E1OTE1YjI&K=AxJ3Hkh51_gWDmjHiLSL1g" target="_blank" style="color: #1cbeca; text-decoration: underline;">2020 California Climate Credit</a> on their electricity bills early this year.</strong> You should have received $35.73 in April and $17.87 in May, and will receive $17.86 in June.</span></span></p>
<p style="font-family:Calibri;font-size:16px;color:#686868;letter-spacing:0px;line-height:1.5;text-align:left;margin:0;word-wrap:break-word !important;font-weight:normal;font-style:normal;text-decoration: none"> </p>
<p style="font-family:Calibri;font-size:16px;color:#686868;letter-spacing:0px;line-height:1.5;text-align:left;margin:0;word-wrap:break-word !important;font-weight:normal;font-style:normal;text-decoration: none"><span style="font-family:Calibri"><span style="font-size:16px">If you have recently lost your job, even if you are receiving unemployment benefits, <strong>you may qualify for a reduced energy rate through programs like</strong> <strong><a cd-link-manager-tab="1" href="http://link.sfwater.org/c/6/?T=OTM1MTYyMDM%3AMDItYjIwMTYzLTQ2MDk2YTNlY2ExOTQ3ODY5NDBhMzE3YTYyYTA0Nzkx%3AaG91c2VAZGlnaXRhbGtpbmdkb20ub3Jn%3AY29udGFjdC03YWZkOTA1NmEzYzVlNTExOTQzMTAwNTA1Njg1NWVlOC1kMzM5NGQ5M2U3OGI0YThkOWZiZDhhZTQ5MGE3N2ViNA%3AZmFsc2U%3AMTU%3A%3AaHR0cHM6Ly93d3cucGdlLmNvbS9lbl9VUy9yZXNpZGVudGlhbC9zYXZlLWVuZXJneS1tb25leS9oZWxwLXBheWluZy15b3VyLWJpbGwvbG9uZ2VyLXRlcm0tYXNzaXN0YW5jZS9jYXJlL2NhcmUucGFnZT9XVC5tY19pZD1WYW5pdHlfY2FyZWZlcmFzYXZpbmdzJl9jbGRlZT1hRzkxYzJWQVpHbG5hWFJoYkd0cGJtZGtiMjB1YjNKbiZyZWNpcGllbnRpZD1jb250YWN0LTdhZmQ5MDU2YTNjNWU1MTE5NDMxMDA1MDU2ODU1ZWU4LWQzMzk0ZDkzZTc4YjRhOGQ5ZmJkOGFlNDkwYTc3ZWI0JmVzaWQ9YzlhMDE2OTctNjFhYi1lYTExLWE4MTItMDAwZDNhNTkxNWIy&K=CSzpX0YGwCD6czl3iiHbQg" target="_blank" style="color: #1cbeca; text-decoration: underline;">California Alternate Rates for Energy (CARE)</a></strong> or <strong><a cd-link-manager-tab="1" href="http://link.sfwater.org/c/6/?T=OTM1MTYyMDM%3AMDItYjIwMTYzLTQ2MDk2YTNlY2ExOTQ3ODY5NDBhMzE3YTYyYTA0Nzkx%3AaG91c2VAZGlnaXRhbGtpbmdkb20ub3Jn%3AY29udGFjdC03YWZkOTA1NmEzYzVlNTExOTQzMTAwNTA1Njg1NWVlOC1kMzM5NGQ5M2U3OGI0YThkOWZiZDhhZTQ5MGE3N2ViNA%3AZmFsc2U%3AMTY%3A%3AaHR0cHM6Ly93d3cucGdlLmNvbS9lbl9VUy9yZXNpZGVudGlhbC9zYXZlLWVuZXJneS1tb25leS9oZWxwLXBheWluZy15b3VyLWJpbGwvbG9uZ2VyLXRlcm0tYXNzaXN0YW5jZS9jYXJlL2NhcmUucGFnZT9XVC5tY19pZD1WYW5pdHlfY2FyZWZlcmFzYXZpbmdzJl9jbGRlZT1hRzkxYzJWQVpHbG5hWFJoYkd0cGJtZGtiMjB1YjNKbiZyZWNpcGllbnRpZD1jb250YWN0LTdhZmQ5MDU2YTNjNWU1MTE5NDMxMDA1MDU2ODU1ZWU4LWQzMzk0ZDkzZTc4YjRhOGQ5ZmJkOGFlNDkwYTc3ZWI0JmVzaWQ9YzlhMDE2OTctNjFhYi1lYTExLWE4MTItMDAwZDNhNTkxNWIy&K=ifEl7GasqjB9CMnK9_Zadg" target="_blank" style="color: #1cbeca; text-decoration: underline;">Family Electric Rate Assistance (FERA)</a></strong>, where households can save 18- 35 percent each month. </span></span></p>
<p style="font-family:Calibri;font-size:16px;color:#686868;letter-spacing:0px;line-height:1.5;text-align:left;margin:0;word-wrap:break-word !important;font-weight:normal;font-style:normal;text-decoration: none"> </p>
<p style="font-family:Calibri;font-size:16px;color:#686868;letter-spacing:0px;line-height:1.5;text-align:left;margin:0;word-wrap:break-word !important;font-weight:normal;font-style:normal;text-decoration: none"><span style="font-size:16px"><span style="font-family:Calibri"><strong>Flexible payment plans</strong> are available to support CleanPowerSF customers who may need additional time to pay their bill. Call (800) 743-5000 to make payment arrangements. </span></span></p>
</td>
</tr><tr>
<td width="560" class="button-block-container"
style="box-sizing: border-box;white-space: normal;font-family:Arial,Helvetica,sans-serif;font-size:12px;line-height:1.4;color:#000; word-wrap: break-word !important; white-space: normal;
padding-top: 15px; padding-bottom: 15px; padding-left: 20px; padding-right: 20px; text-align: center;">
<!--[if mso]><table role="presentation" cellspacing="0" cellpadding="0" border="0" >
<tr>
<td valign="top" style="padding: 13px; color:
font-weight: normal; word-wrap: break-word !important;
word-wrap: break-word !important; white-space: normal; box-sizing: content-box; text-align: center;
background-color: #35b8a6;
border:2px none #000;border-radius:10px;
max-width: 530px;">
<p align="center" style="font-family: Arial; color: #ffffff; text-align:center; font-size:20px;"><a class="button-link" href="http://link.sfwater.org/c/6/?T=OTM1MTYyMDM%3AMDItYjIwMTYzLTQ2MDk2YTNlY2ExOTQ3ODY5NDBhMzE3YTYyYTA0Nzkx%3AaG91c2VAZGlnaXRhbGtpbmdkb20ub3Jn%3AY29udGFjdC03YWZkOTA1NmEzYzVlNTExOTQzMTAwNTA1Njg1NWVlOC1kMzM5NGQ5M2U3OGI0YThkOWZiZDhhZTQ5MGE3N2ViNA%3AZmFsc2U%3AMTc%3A%3AaHR0cHM6Ly93d3cuY2xlYW5wb3dlcnNmLm9yZy9sb3dlcnlvdXJiaWxsP19jbGRlZT1hRzkxYzJWQVpHbG5hWFJoYkd0cGJtZGtiMjB1YjNKbiZyZWNpcGllbnRpZD1jb250YWN0LTdhZmQ5MDU2YTNjNWU1MTE5NDMxMDA1MDU2ODU1ZWU4LWQzMzk0ZDkzZTc4YjRhOGQ5ZmJkOGFlNDkwYTc3ZWI0JmVzaWQ9YzlhMDE2OTctNjFhYi1lYTExLWE4MTItMDAwZDNhNTkxNWIy&K=hx9ADh2wBprrAyxMLCDslQ" title="https://www.cleanpowersf.org/loweryourbill" target="_blank"
cdlinkrefidmso="31" style="text-decoration: none; color:#fff; font-family: Arial;
font-weight: normal; display: inline-block;"><span style="font-family:Calibri"><span style="font-size:20px">More Ways to Lower Your Bill</span></span></a></p>
</td>
</tr></table><![endif]-->
<!--[if !mso]><!-- -->
<a class="button-link" style="display: block;" href="http://link.sfwater.org/c/6/?T=OTM1MTYyMDM%3AMDItYjIwMTYzLTQ2MDk2YTNlY2ExOTQ3ODY5NDBhMzE3YTYyYTA0Nzkx%3AaG91c2VAZGlnaXRhbGtpbmdkb20ub3Jn%3AY29udGFjdC03YWZkOTA1NmEzYzVlNTExOTQzMTAwNTA1Njg1NWVlOC1kMzM5NGQ5M2U3OGI0YThkOWZiZDhhZTQ5MGE3N2ViNA%3AZmFsc2U%3AMTg%3A%3AaHR0cHM6Ly93d3cuY2xlYW5wb3dlcnNmLm9yZy9sb3dlcnlvdXJiaWxsP19jbGRlZT1hRzkxYzJWQVpHbG5hWFJoYkd0cGJtZGtiMjB1YjNKbiZyZWNpcGllbnRpZD1jb250YWN0LTdhZmQ5MDU2YTNjNWU1MTE5NDMxMDA1MDU2ODU1ZWU4LWQzMzk0ZDkzZTc4YjRhOGQ5ZmJkOGFlNDkwYTc3ZWI0JmVzaWQ9YzlhMDE2OTctNjFhYi1lYTExLWE4MTItMDAwZDNhNTkxNWIy&K=QI2hQQrQbh6jc5bifPSfJg" title="https://www.cleanpowersf.org/loweryourbill" target="_blank" cdlinkrefid="31" >
<span class="button-text" style="display: inline-block; vertical-align: middle; padding: 13px; font-size: 20px;
color: #ffffff; word-wrap: break-word !important; white-space: normal; box-sizing: content-box; text-align: center;
background-color: #35b8a6;
border:2px none #000;border-radius:10px;
max-width: 530px;"><span style="font-family:Calibri"><span style="font-size:20px">More Ways to Lower Your Bill</span></span></span>
</a>
<!--<![endif]-->
</td>
</tr><tr>
<td width="560" class="text-block-container" style="box-sizing: border-box;white-space: normal;font-family:Arial,Helvetica,sans-serif;font-size:12px;line-height:1.4;color:#000; word-wrap: break-word !important; white-space: normal; padding-top: 20px; padding-bottom: 20px; padding-left: 20px; padding-right: 20px;">
<table role="presentation" cellspacing="0" cellpadding="0" style="border-collapse: collapse; border-spacing: 0; vertical-align: top; width: 100%; min-width: 100%;
border-bottom-width: 1px;
border-bottom-color: #686868;
border-bottom-style: solid;" width="100%" >
<tr>
<td style="border: 0 none transparent; padding: 0; vertical-align: top; width: 100%; font-size: 0; line-height: 0;"> </td>
</tr>
</table>
</td>
</tr><!--[if mso]>
<tr>
<td width="600" class="stack-column-center image-block-container" style="vertical-align: top; text-align: center; padding-top: 10px; padding-bottom: 10px; padding-left: 0px; padding-right: 0px;">
<a href="http://link.sfwater.org/c/6/?T=OTM1MTYyMDM%3AMDItYjIwMTYzLTQ2MDk2YTNlY2ExOTQ3ODY5NDBhMzE3YTYyYTA0Nzkx%3AaG91c2VAZGlnaXRhbGtpbmdkb20ub3Jn%3AY29udGFjdC03YWZkOTA1NmEzYzVlNTExOTQzMTAwNTA1Njg1NWVlOC1kMzM5NGQ5M2U3OGI0YThkOWZiZDhhZTQ5MGE3N2ViNA%3AZmFsc2U%3AMTk%3A%3AaHR0cHM6Ly93d3cuY2xlYW5wb3dlcnNmLm9yZy9jb250YWN0P19jbGRlZT1hRzkxYzJWQVpHbG5hWFJoYkd0cGJtZGtiMjB1YjNKbiZyZWNpcGllbnRpZD1jb250YWN0LTdhZmQ5MDU2YTNjNWU1MTE5NDMxMDA1MDU2ODU1ZWU4LWQzMzk0ZDkzZTc4YjRhOGQ5ZmJkOGFlNDkwYTc3ZWI0JmVzaWQ9YzlhMDE2OTctNjFhYi1lYTExLWE4MTItMDAwZDNhNTkxNWIy&K=CWqgVDtol6hpnHlzCo959w" title="https://www.cleanpowersf.org/contact" target="_blank" cdlinkrefidmso="33" ><img class="center-on-narrow cd-image" height="220" width="600" style="vertical-align: middle;" src="https://file-us.clickdimensions.com/wwwcleanpowersforg-am6vi/files/cpsf_enewsletter_quarterly_picsetup_600pxx210px_v142.jpg" /></a>
</td>
</tr>
<![endif]-->
<!--[if !mso]><!-- --><tr>
<td width="600" class="stack-column-center image-block-container" style="vertical-align: top; box-sizing: border-box; text-align: center; padding-top: 10px; padding-bottom: 10px; padding-left: 0px; padding-right: 0px;">
<a href="http://link.sfwater.org/c/6/?T=OTM1MTYyMDM%3AMDItYjIwMTYzLTQ2MDk2YTNlY2ExOTQ3ODY5NDBhMzE3YTYyYTA0Nzkx%3AaG91c2VAZGlnaXRhbGtpbmdkb20ub3Jn%3AY29udGFjdC03YWZkOTA1NmEzYzVlNTExOTQzMTAwNTA1Njg1NWVlOC1kMzM5NGQ5M2U3OGI0YThkOWZiZDhhZTQ5MGE3N2ViNA%3AZmFsc2U%3AMjA%3A%3AaHR0cHM6Ly93d3cuY2xlYW5wb3dlcnNmLm9yZy9jb250YWN0P19jbGRlZT1hRzkxYzJWQVpHbG5hWFJoYkd0cGJtZGtiMjB1YjNKbiZyZWNpcGllbnRpZD1jb250YWN0LTdhZmQ5MDU2YTNjNWU1MTE5NDMxMDA1MDU2ODU1ZWU4LWQzMzk0ZDkzZTc4YjRhOGQ5ZmJkOGFlNDkwYTc3ZWI0JmVzaWQ9YzlhMDE2OTctNjFhYi1lYTExLWE4MTItMDAwZDNhNTkxNWIy&K=fRpo7QhRLuZoDpr1i5sF_Q" title="https://www.cleanpowersf.org/contact" target="_blank" cdlinkrefid="33" ><img class="center-on-narrow cd-image image-85d57bbbabd8 no-img-edit" height="220" width="600" style="vertical-align: middle;" src="https://file-us.clickdimensions.com/wwwcleanpowersforg-am6vi/files/cpsf_enewsletter_quarterly_picsetup_600pxx210px_v142.jpg" /></a>
</td>
</tr><!--<![endif]--><tr>
<td width="600" class="text-block-container" style="box-sizing: border-box;white-space: normal;font-family:Arial,Helvetica,sans-serif;font-size:12px;line-height:1.4;color:#000; word-wrap: break-word !important; white-space: normal; padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px;"><h1 style="font-family:Calibri;font-size:28px;color:#1cbeca;letter-spacing:0px;line-height:1.5;text-align:left;margin:0;word-wrap:break-word !important;font-weight:bold;font-style:normal;text-decoration: none;"><span style="font-family:Calibri">We're Here for You</span></h1>
<p style="font-family:Calibri;font-size:16px;color:#686868;letter-spacing:0px;line-height:1.5;text-align:left;margin:0;word-wrap:break-word !important;font-weight:normal;font-style:normal;text-decoration: none"><span style="font-family:Calibri"><span style="font-size:16px"><strong>Wondering what else you can do to save money on your electricity bill?</strong> <a cd-link-manager-tab="1" href="http://link.sfwater.org/c/6/?T=OTM1MTYyMDM%3AMDItYjIwMTYzLTQ2MDk2YTNlY2ExOTQ3ODY5NDBhMzE3YTYyYTA0Nzkx%3AaG91c2VAZGlnaXRhbGtpbmdkb20ub3Jn%3AY29udGFjdC03YWZkOTA1NmEzYzVlNTExOTQzMTAwNTA1Njg1NWVlOC1kMzM5NGQ5M2U3OGI0YThkOWZiZDhhZTQ5MGE3N2ViNA%3AZmFsc2U%3AMjE%3A%3AaHR0cHM6Ly93d3cuY2xlYW5wb3dlcnNmLm9yZy9sb3dlcnlvdXJiaWxsP19jbGRlZT1hRzkxYzJWQVpHbG5hWFJoYkd0cGJtZGtiMjB1YjNKbiZyZWNpcGllbnRpZD1jb250YWN0LTdhZmQ5MDU2YTNjNWU1MTE5NDMxMDA1MDU2ODU1ZWU4LWQzMzk0ZDkzZTc4YjRhOGQ5ZmJkOGFlNDkwYTc3ZWI0JmVzaWQ9YzlhMDE2OTctNjFhYi1lYTExLWE4MTItMDAwZDNhNTkxNWIy&K=mJRBBbLOTHIOslpUzmnVkA" target="_blank" style="color: #1cbeca; text-decoration: underline;">Simple actions at home</a> can make a big difference on your energy use.</span></span></p>
<p style="font-family:Calibri;font-size:16px;color:#686868;letter-spacing:0px;line-height:1.5;text-align:left;margin:0;word-wrap:break-word !important;font-weight:normal;font-style:normal;text-decoration: none"> </p>
<p style="font-family:Calibri;font-size:16px;color:#686868;letter-spacing:0px;line-height:1.5;text-align:left;margin:0;word-wrap:break-word !important;font-weight:normal;font-style:normal;text-decoration: none"><span style="font-size:16px"><span style="font-family:Calibri"><strong>For the latest news on COVID-19</strong>, visit <a cd-link-manager-tab="1" href="http://link.sfwater.org/c/6/?T=OTM1MTYyMDM%3AMDItYjIwMTYzLTQ2MDk2YTNlY2ExOTQ3ODY5NDBhMzE3YTYyYTA0Nzkx%3AaG91c2VAZGlnaXRhbGtpbmdkb20ub3Jn%3AY29udGFjdC03YWZkOTA1NmEzYzVlNTExOTQzMTAwNTA1Njg1NWVlOC1kMzM5NGQ5M2U3OGI0YThkOWZiZDhhZTQ5MGE3N2ViNA%3AZmFsc2U%3AMjI%3A%3AaHR0cHM6Ly9zZi5nb3YvdG9waWNzL2Nvcm9uYXZpcnVzLWNvdmlkLTE5P19jbGRlZT1hRzkxYzJWQVpHbG5hWFJoYkd0cGJtZGtiMjB1YjNKbiZyZWNpcGllbnRpZD1jb250YWN0LTdhZmQ5MDU2YTNjNWU1MTE5NDMxMDA1MDU2ODU1ZWU4LWQzMzk0ZDkzZTc4YjRhOGQ5ZmJkOGFlNDkwYTc3ZWI0JmVzaWQ9YzlhMDE2OTctNjFhYi1lYTExLWE4MTItMDAwZDNhNTkxNWIy&K=aPiK_B57Sb7151ZM6X9azg" target="_blank" style="color: #1cbeca; text-decoration: underline;">sf.gov</a> and sign up for the City’s alert service for official updates: text COVID19SF to 888-777. Call <a cd-link-manager-tab="1" href="http://link.sfwater.org/c/6/?T=OTM1MTYyMDM%3AMDItYjIwMTYzLTQ2MDk2YTNlY2ExOTQ3ODY5NDBhMzE3YTYyYTA0Nzkx%3AaG91c2VAZGlnaXRhbGtpbmdkb20ub3Jn%3AY29udGFjdC03YWZkOTA1NmEzYzVlNTExOTQzMTAwNTA1Njg1NWVlOC1kMzM5NGQ5M2U3OGI0YThkOWZiZDhhZTQ5MGE3N2ViNA%3AZmFsc2U%3AMjM%3A%3AaHR0cHM6Ly9zZjMxMS5vcmcvP19jbGRlZT1hRzkxYzJWQVpHbG5hWFJoYkd0cGJtZGtiMjB1YjNKbiZyZWNpcGllbnRpZD1jb250YWN0LTdhZmQ5MDU2YTNjNWU1MTE5NDMxMDA1MDU2ODU1ZWU4LWQzMzk0ZDkzZTc4YjRhOGQ5ZmJkOGFlNDkwYTc3ZWI0JmVzaWQ9YzlhMDE2OTctNjFhYi1lYTExLWE4MTItMDAwZDNhNTkxNWIy&K=9lp2AQPDK5IJmGKHChMDYQ" target="_blank" style="color: #1cbeca; text-decoration: underline;">3-1-1</a> for COVID-19 related questions and assistance. </span></span></p>
<p style="font-family:Calibri;font-size:16px;color:#686868;letter-spacing:0px;line-height:1.5;text-align:left;margin:0;word-wrap:break-word !important;font-weight:normal;font-style:normal;text-decoration: none"> </p>
<p style="font-family:Calibri;font-size:16px;color:#686868;letter-spacing:0px;line-height:1.5;text-align:left;margin:0;word-wrap:break-word !important;font-weight:normal;font-style:normal;text-decoration: none"><span style="font-size:16px"><span style="font-family:Calibri"><strong>Have questions you need answered?</strong> Please email us at <a cd-link-manager-tab="2" href="mailto:cleanpowersf@sfwater.org" target="_blank" style="color: #1cbeca; text-decoration: underline;">cleanpowersf@sfwater.org</a> or call (415) 554-0773.</span></span></p>
<ul style="color: #686868">
<li><span style="font-size:16px"><span style="font-family:Calibri"><a cd-link-manager-tab="1" href="http://link.sfwater.org/c/6/?T=OTM1MTYyMDM%3AMDItYjIwMTYzLTQ2MDk2YTNlY2ExOTQ3ODY5NDBhMzE3YTYyYTA0Nzkx%3AaG91c2VAZGlnaXRhbGtpbmdkb20ub3Jn%3AY29udGFjdC03YWZkOTA1NmEzYzVlNTExOTQzMTAwNTA1Njg1NWVlOC1kMzM5NGQ5M2U3OGI0YThkOWZiZDhhZTQ5MGE3N2ViNA%3AZmFsc2U%3AMjQ%3A%3AaHR0cHM6Ly93d3cuY2xlYW5wb3dlcnNmLm9yZy9zcGFuaXNoP19jbGRlZT1hRzkxYzJWQVpHbG5hWFJoYkd0cGJtZGtiMjB1YjNKbiZyZWNpcGllbnRpZD1jb250YWN0LTdhZmQ5MDU2YTNjNWU1MTE5NDMxMDA1MDU2ODU1ZWU4LWQzMzk0ZDkzZTc4YjRhOGQ5ZmJkOGFlNDkwYTc3ZWI0JmVzaWQ9YzlhMDE2OTctNjFhYi1lYTExLWE4MTItMDAwZDNhNTkxNWIy&K=bfEvyA6ohMDltKEkp7pa7g" target="_blank" style="color: #1cbeca; text-decoration: underline;">Hablamos su idioma</a></span></span></li>
<li><span style="font-size:16px"><span style="font-family:Calibri"><a cd-link-manager-tab="1" href="http://link.sfwater.org/c/6/?T=OTM1MTYyMDM%3AMDItYjIwMTYzLTQ2MDk2YTNlY2ExOTQ3ODY5NDBhMzE3YTYyYTA0Nzkx%3AaG91c2VAZGlnaXRhbGtpbmdkb20ub3Jn%3AY29udGFjdC03YWZkOTA1NmEzYzVlNTExOTQzMTAwNTA1Njg1NWVlOC1kMzM5NGQ5M2U3OGI0YThkOWZiZDhhZTQ5MGE3N2ViNA%3AZmFsc2U%3AMjU%3A%3AaHR0cHM6Ly93d3cuY2xlYW5wb3dlcnNmLm9yZy9jaGluZXNlP19jbGRlZT1hRzkxYzJWQVpHbG5hWFJoYkd0cGJtZGtiMjB1YjNKbiZyZWNpcGllbnRpZD1jb250YWN0LTdhZmQ5MDU2YTNjNWU1MTE5NDMxMDA1MDU2ODU1ZWU4LWQzMzk0ZDkzZTc4YjRhOGQ5ZmJkOGFlNDkwYTc3ZWI0JmVzaWQ9YzlhMDE2OTctNjFhYi1lYTExLWE4MTItMDAwZDNhNTkxNWIy&K=lRFfWaGGj7LzR0AT-dBJtg" target="_blank" style="color: #1cbeca; text-decoration: underline;">我們會講您的語言 </a></span></span></li>
<li><span style="font-size:16px"><span style="font-family:Calibri"><a cd-link-manager-tab="1" href="http://link.sfwater.org/c/6/?T=OTM1MTYyMDM%3AMDItYjIwMTYzLTQ2MDk2YTNlY2ExOTQ3ODY5NDBhMzE3YTYyYTA0Nzkx%3AaG91c2VAZGlnaXRhbGtpbmdkb20ub3Jn%3AY29udGFjdC03YWZkOTA1NmEzYzVlNTExOTQzMTAwNTA1Njg1NWVlOC1kMzM5NGQ5M2U3OGI0YThkOWZiZDhhZTQ5MGE3N2ViNA%3AZmFsc2U%3AMjY%3A%3AaHR0cHM6Ly93d3cuY2xlYW5wb3dlcnNmLm9yZy9maWxpcGlubz9fY2xkZWU9YUc5MWMyVkFaR2xuYVhSaGJHdHBibWRrYjIwdWIzSm4mcmVjaXBpZW50aWQ9Y29udGFjdC03YWZkOTA1NmEzYzVlNTExOTQzMTAwNTA1Njg1NWVlOC1kMzM5NGQ5M2U3OGI0YThkOWZiZDhhZTQ5MGE3N2ViNCZlc2lkPWM5YTAxNjk3LTYxYWItZWExMS1hODEyLTAwMGQzYTU5MTViMg&K=sZWfiabhuWUsGXCnBcz9Xw" target="_blank" style="color: #1cbeca; text-decoration: underline;">Kami ay nagsasalita sa inyong wika</a></span></span></li>
</ul>
</td>
</tr><tr>
<td width="560" class="text-block-container" style="box-sizing: border-box;white-space: normal;font-family:Arial,Helvetica,sans-serif;font-size:12px;line-height:1.4;color:#000; word-wrap: break-word !important; white-space: normal; padding-top: 20px; padding-bottom: 20px; padding-left: 20px; padding-right: 20px;">
<table role="presentation" cellspacing="0" cellpadding="0" style="border-collapse: collapse; border-spacing: 0; vertical-align: top; width: 100%; min-width: 100%;
border-bottom-width: 1px;
border-bottom-color: #686868;
border-bottom-style: solid;" width="100%" >
<tr>
<td style="border: 0 none transparent; padding: 0; vertical-align: top; width: 100%; font-size: 0; line-height: 0;"> </td>
</tr>
</table>
</td>
</tr><tr>
<td width="568" class="text-block-container" style="box-sizing: border-box;white-space: normal;font-family:Arial,Helvetica,sans-serif;font-size:12px;line-height:1.4;color:#000; word-wrap: break-word !important; white-space: normal; padding-top: 8px; padding-bottom: 8px; padding-left: 16px; padding-right: 16px;"><p style="text-align:center;font-family:Calibri;font-size:16px;color:#686868;letter-spacing:0px;line-height:1.5;margin:0;word-wrap:break-word !important;font-weight:normal;font-style:normal;text-decoration: none"><span style="font-family:Calibri">Visit <a cd-link-manager-tab="1" href="http://link.sfwater.org/c/6/?T=OTM1MTYyMDM%3AMDItYjIwMTYzLTQ2MDk2YTNlY2ExOTQ3ODY5NDBhMzE3YTYyYTA0Nzkx%3AaG91c2VAZGlnaXRhbGtpbmdkb20ub3Jn%3AY29udGFjdC03YWZkOTA1NmEzYzVlNTExOTQzMTAwNTA1Njg1NWVlOC1kMzM5NGQ5M2U3OGI0YThkOWZiZDhhZTQ5MGE3N2ViNA%3AZmFsc2U%3AMjc%3A%3AaHR0cDovL2NsZWFucG93ZXJzZi5vcmc_X2NsZGVlPWFHOTFjMlZBWkdsbmFYUmhiR3RwYm1ka2IyMHViM0puJnJlY2lwaWVudGlkPWNvbnRhY3QtN2FmZDkwNTZhM2M1ZTUxMTk0MzEwMDUwNTY4NTVlZTgtZDMzOTRkOTNlNzhiNGE4ZDlmYmQ4YWU0OTBhNzdlYjQmZXNpZD1jOWEwMTY5Ny02MWFiLWVhMTEtYTgxMi0wMDBkM2E1OTE1YjI&K=1JwoWouMnFbuUL24F_5Mmg" target="_blank" style="color: #1cbeca; text-decoration: underline;">cleanpowersf.org</a></span></p>
<p style="text-align:center;font-family:Calibri;font-size:16px;color:#686868;letter-spacing:0px;line-height:1.5;margin:0;word-wrap:break-word !important;font-weight:normal;font-style:normal;text-decoration: none"><span style="font-family:Calibri">Email <a cd-link-manager-tab="2" href="mailto:cleanpowersf@sfwater.org" target="_blank" style="color: #1cbeca; text-decoration: underline;">cleanpowersf@sfwater.org</a></span></p>
<p style="text-align:center;font-family:Calibri;font-size:16px;color:#686868;letter-spacing:0px;line-height:1.5;margin:0;word-wrap:break-word !important;font-weight:normal;font-style:normal;text-decoration: none"><span style="font-family:Calibri">Follow us on <a cd-link-manager-tab="1" href="http://link.sfwater.org/c/6/?T=OTM1MTYyMDM%3AMDItYjIwMTYzLTQ2MDk2YTNlY2ExOTQ3ODY5NDBhMzE3YTYyYTA0Nzkx%3AaG91c2VAZGlnaXRhbGtpbmdkb20ub3Jn%3AY29udGFjdC03YWZkOTA1NmEzYzVlNTExOTQzMTAwNTA1Njg1NWVlOC1kMzM5NGQ5M2U3OGI0YThkOWZiZDhhZTQ5MGE3N2ViNA%3AZmFsc2U%3AMjg%3A%3AaHR0cDovL3R3aXR0ZXIub3JnL2NsZWFucG93ZXJzZj9fY2xkZWU9YUc5MWMyVkFaR2xuYVhSaGJHdHBibWRrYjIwdWIzSm4mcmVjaXBpZW50aWQ9Y29udGFjdC03YWZkOTA1NmEzYzVlNTExOTQzMTAwNTA1Njg1NWVlOC1kMzM5NGQ5M2U3OGI0YThkOWZiZDhhZTQ5MGE3N2ViNCZlc2lkPWM5YTAxNjk3LTYxYWItZWExMS1hODEyLTAwMGQzYTU5MTViMg&K=7uos94h3oqKjWOJH5tRINA" target="_blank" style="color: #1cbeca; text-decoration: underline;">Twitter</a></span></p>
<p style="text-align:center;font-family:Calibri;font-size:16px;color:#686868;letter-spacing:0px;line-height:1.5;margin:0;word-wrap:break-word !important;font-weight:normal;font-style:normal;text-decoration: none"><span style="font-family:Calibri">(415) 554-0773</span></p>
<p style="text-align:center;font-family:Calibri;font-size:16px;color:#686868;letter-spacing:0px;line-height:1.5;margin:0;word-wrap:break-word !important;font-weight:normal;font-style:normal;text-decoration: none"><span style="font-family:Calibri">525 Golden Gate Ave. San Francisco, CA 94102</span></p>
<p style="text-align:center;font-family:Calibri;font-size:16px;color:#686868;letter-spacing:0px;line-height:1.5;margin:0;word-wrap:break-word !important;font-weight:normal;font-style:normal;text-decoration: none"> </p>
<p style="text-align:center;font-family:Calibri;font-size:16px;color:#686868;letter-spacing:0px;line-height:1.5;margin:0;word-wrap:break-word !important;font-weight:normal;font-style:normal;text-decoration: none"><span style="font-size:12px"><span style="font-family:Calibri">You are receiving this email because you are a customer of CleanPowerSF and Pacific Gas & Electric (PG&E).</span></span></p>
<p style="text-align:center;font-family:Calibri;font-size:16px;color:#686868;letter-spacing:0px;line-height:1.5;margin:0;word-wrap:break-word !important;font-weight:normal;font-style:normal;text-decoration: none"><span style="font-size:12px"><span style="font-family:Calibri">View CleanPowerSF's <a cd-link-manager-tab="1" href="http://link.sfwater.org/c/6/?T=OTM1MTYyMDM%3AMDItYjIwMTYzLTQ2MDk2YTNlY2ExOTQ3ODY5NDBhMzE3YTYyYTA0Nzkx%3AaG91c2VAZGlnaXRhbGtpbmdkb20ub3Jn%3AY29udGFjdC03YWZkOTA1NmEzYzVlNTExOTQzMTAwNTA1Njg1NWVlOC1kMzM5NGQ5M2U3OGI0YThkOWZiZDhhZTQ5MGE3N2ViNA%3AZmFsc2U%3AMjk%3A%3AaHR0cHM6Ly93d3cuY2xlYW5wb3dlcnNmLm9yZy9wcml2YWN5P19jbGRlZT1hRzkxYzJWQVpHbG5hWFJoYkd0cGJtZGtiMjB1YjNKbiZyZWNpcGllbnRpZD1jb250YWN0LTdhZmQ5MDU2YTNjNWU1MTE5NDMxMDA1MDU2ODU1ZWU4LWQzMzk0ZDkzZTc4YjRhOGQ5ZmJkOGFlNDkwYTc3ZWI0JmVzaWQ9YzlhMDE2OTctNjFhYi1lYTExLWE4MTItMDAwZDNhNTkxNWIy&K=p6sPSJ68ueyqPvmllOvUTw" target="_blank" style="color: #1cbeca; text-decoration: underline;">privacy policy.</a></span></span></p>
<p style="text-align:center;font-family:Calibri;font-size:16px;color:#686868;letter-spacing:0px;line-height:1.5;margin:0;word-wrap:break-word !important;font-weight:normal;font-style:normal;text-decoration: none"><span style="font-family:Calibri"><span style="font-size:12px">Click <a cd-link-manager-tab="5" href="http://link.sfwater.org/uu/2/1cla%3AOTM1MTYyMDM%3AMDItYjIwMTYzLTQ2MDk2YTNlY2ExOTQ3ODY5NDBhMzE3YTYyYTA0Nzkx%3AaG91c2VAZGlnaXRhbGtpbmdkb20ub3Jn%3AY29udGFjdC03YWZkOTA1NmEzYzVlNTExOTQzMTAwNTA1Njg1NWVlOC1kMzM5NGQ5M2U3OGI0YThkOWZiZDhhZTQ5MGE3N2ViNA%3An%3An%3AwhTxck3XXZRaNkRtXeGplg" link-metadata="GlobalUnsubscribe" target="_blank" style="color: #1cbeca; text-decoration: underline;">here</a> to unsubscribe or to change your subscription preferences. </span></span></p>
</td>
</tr><tr>
<td width="560" class="text-block-container" style="box-sizing: border-box;white-space: normal;font-family:Arial,Helvetica,sans-serif;font-size:12px;line-height:1.4;color:#000; word-wrap: break-word !important; white-space: normal; padding-top: 20px; padding-bottom: 20px; padding-left: 20px; padding-right: 20px;">
<table role="presentation" cellspacing="0" cellpadding="0" style="border-collapse: collapse; border-spacing: 0; vertical-align: top; width: 100%; min-width: 100%;
border-bottom-width: 1px;
border-bottom-color: #000000;
border-bottom-style: none;" width="100%" >
<tr>
<td style="border: 0 none transparent; padding: 0; vertical-align: top; width: 100%; font-size: 0; line-height: 0;"> </td>
</tr>
</table>
</td>
</tr><!--[if mso]>
<tr>
<td width="600" class="stack-column-center image-block-container" style="vertical-align: top; text-align: center; padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px;">
<img class="center-on-narrow cd-image" height="129" width="600" style="vertical-align: middle;" src="https://file-us.clickdimensions.com/wwwcleanpowersforg-am6vi/files/cpsf_enewsletter_quarterly_picsetup_600pxx210px_v016.png" />
</td>
</tr>
<![endif]-->
<!--[if !mso]><!-- --><tr>
<td width="600" class="stack-column-center image-block-container" style="vertical-align: top; box-sizing: border-box; text-align: center; padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px;">
<img class="center-on-narrow cd-image image-deb91e7db682 no-img-edit" height="129" width="600" style="vertical-align: middle;" src="https://file-us.clickdimensions.com/wwwcleanpowersforg-am6vi/files/cpsf_enewsletter_quarterly_picsetup_600pxx210px_v016.png" />
</td>
</tr><!--<![endif]-->
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</div><!--[if mso]></td><![endif]-->
<!--[if mso]>
</tr>
</table>
<![endif]-->
</td>
</tr>
</tbody>
</table>
<!--[if mso]>
</td>
</tr>
</table>
<![endif]-->
<!-- Email Section : END -->
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</div>
</center>
</body>
</html>
</html>