<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-bf2de9df1bfa {
width: auto%;
height: auto !important;
}
.email-container img.cd-image.image-194530c8a44c {
width: 95%;
height: auto !important;
}
.email-container img.cd-image.image-ee0891696702 {
width: 22.833333333333332%;
height: auto !important;
}
.email-container img.cd-image.image-a96866df06a1 {
width: 95%;
height: auto !important;
}
.email-container img.cd-image.image-bbf49a3fa472 {
width: 95%;
height: auto !important;
}
.email-container img.cd-image.image-8cc8cfce3cbb {
width: 95%;
height: auto !important;
}
}
@media screen and (max-width: 768px) {
.email-container img.cd-image.image-bf2de9df1bfa {
width: auto%;
height: auto !important;
}
.email-container img.cd-image.image-194530c8a44c {
width: 95%;
height: auto !important;
}
.email-container img.cd-image.image-ee0891696702 {
width: 22.833333333333332%;
height: auto !important;
}
.email-container img.cd-image.image-a96866df06a1 {
width: 95%;
height: auto !important;
}
.email-container img.cd-image.image-bbf49a3fa472 {
width: 95%;
height: auto !important;
}
.email-container img.cd-image.image-8cc8cfce3cbb {
width: 95%;
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>
<!–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: #f0f0f0; 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=”601″ style=”border-width: 1px; border-style: none; width: 601px; max-width: 601px; border-collapse: separate!important;” class=”email-page-container”>
<![endif]–>
<!–[if !mso]><!– –>
<table role=”presentation” cellspacing=”0″ cellpadding=”0″ border=”0″ align=”center” width=”602″ style=”border-width: 1px; border-style: none; width: 602px; max-width: 602px; 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=”47″ 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: 15px; padding-bottom: 15px; padding-left: 5px; padding-right: 5px; 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=”590px”><![endif]–><div style=”overflow: visible!important; display: inline-block; width:590px; max-width:590px; min-width:590px; 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=”590px” style=”table-layout: fixed; width: 590px;” >
<tbody>
<!–[if mso]>
<tr>
<td width=”590″ 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=”https://www.partneresi.com/” name=”%7B%22UrlIdOffset%22%3A1%7D” target=”_blank” cdlinkrefidmso=”18″ ><img class=”center-on-narrow cd-image” height=”auto” width=”26.610169491525422%” style=”vertical-align: middle;” src=”https://app.clickdimensions.com/blob/partneresicom-a5r0j/files/partner-logo800x233c78f.jpg” /></a>
</td>
</tr>
<![endif]–>
<!–[if !mso]><!– –><tr>
<td width=”590″ class=”stack-column-center image-block-container” style=”vertical-align: top; box-sizing: border-box; text-align: center; padding-left: 0%; padding-right: 0%; padding-top: 0%; padding-bottom: 0%;”>
<a href=”https://www.partneresi.com/” target=”_blank” cdlinkrefid=”18″ ><img class=”center-on-narrow cd-image image-bf2de9df1bfa ” height=”auto” style=”vertical-align: middle;” src=”https://app.clickdimensions.com/blob/partneresicom-a5r0j/files/partner-logo800x233c78f.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=”48″ 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: 15px; padding-right: 15px; 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=”570px”><![endif]–><div style=”overflow: visible!important; display: inline-block; width:570px; max-width:570px; min-width:570px; 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=”570px” style=”table-layout: fixed; width: 570px;” >
<tbody>
<!–[if mso]>
<tr>
<td width=”570″ 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=”147″ width=”570″ style=”vertical-align: middle;” src=”https://app.clickdimensions.com/blob/partneresicom-a5r0j/files/capitalplanningnewsletterheader.png” />
</td>
</tr>
<![endif]–>
<!–[if !mso]><!– –><tr>
<td width=”570″ 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-194530c8a44c no-img-edit” height=”147″ width=”570″ style=”vertical-align: middle;” src=”https://app.clickdimensions.com/blob/partneresicom-a5r0j/files/capitalplanningnewsletterheader.png” />
</td>
</tr><!–<![endif]–><tr>
<td width=”570″ 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: 10px; padding-bottom: 10px; padding-left: 0px; padding-right: 0px;”><p style=”font-family:Arial;font-size:13px;color:#616265;letter-spacing:0px;line-height:1.2;text-align:justify;margin:0;word-wrap:break-word !important;font-weight:normal;font-style:normal;text-decoration: none”><span style=”font-size:14px”><span style=”font-family:Calibri”>How effective is your capital plan? How onerous is your capital budgeting process? For those knee-deep in numbers or looking for a better experience next year, we offer the following resources.</span></span></p>
</td>
</tr>
</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=”49″ 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=”580″ 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: 5px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px;”>
<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: 3px;
border-bottom-color: #cccaca;
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>
</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=”50″ 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: 10px; padding-bottom: 10px; padding-left: 15px; padding-right: 15px; 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=”411px”><![endif]–><div style=”overflow: visible!important; display: inline-block; width:411px; max-width:411px; min-width:411px; 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=”411px” style=”table-layout: fixed; width: 411px;” >
<tbody>
<tr>
<td width=”411″ 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;”><h3 style=”font-family:Arial;font-size:24px;color:#03468a;letter-spacing:0px;line-height:1.2;text-align:left;margin:0;word-wrap:break-word !important;font-weight:normal;font-style:normal;text-decoration: none;”><span style=”font-size:18px”><strong>Getting Asset Data Right</strong></span></h3>
<p style=”font-family:Arial;font-size:13px;color:#616265;letter-spacing:0px;line-height:1.2;text-align:justify;margin:0;word-wrap:break-word !important;font-weight:normal;font-style:normal;text-decoration: none”><span style=”color:#616265; font-family:Calibri; font-size:14px”>For asset managers, accurate property data in the right format can improve the decision-making process and significantly impact the bottom line. In <a cd-link-manager-tab=”1″ href=”https://www.partneresi.com/resources/articles/nate-benton-and-josh-mccullough-discuss-asset-data-collection-in-nareim-dialogues/” target=”_blank” style=”color: #616265; text-decoration: underline;”>this NAREIM Dialogues article</a>, <a cd-link-manager-tab=”1″ href=”https://www.partneresi.com/about/meet-the-partners/nate-benton” target=”_blank” style=”color: #616265; text-decoration: underline;”>Nate Benton, PE CEM LEED AP</a>, and <a cd-link-manager-tab=”1″ href=”https://www.partneresi.com/about/our-people/josh-mccullough/” target=”_blank” style=”color: #616265; text-decoration: underline;”>Josh McCullough, EIT,</a> discuss the importance of quality asset data, best processes for asset data dollection, and how to get the most value from your data set</span><span style=”color:#616265; font-size:14px”>.</span></p>
<p style=”text-align:justify;font-family:Arial;font-size:13px;color:#616265;letter-spacing:0px;line-height:1.2;margin:0;word-wrap:break-word !important;font-weight:normal;font-style:normal;text-decoration: none”> </p>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</div><!–[if mso]></td><![endif]–><!–[if mso]><td align=”left” valign=”top” width=”20px”><![endif]–><div style=”overflow: visible!important; display: inline-block; width:20px; max-width:20px; min-width:20px; 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=”20px” style=”table-layout: fixed; width: 20px;” >
<tbody>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</div><!–[if mso]></td><![endif]–><!–[if mso]><td align=”left” valign=”top” width=”137px”><![endif]–><div style=”overflow: visible!important; display: inline-block; width:137px; max-width:137px; min-width:137px; 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=”137px” style=”table-layout: fixed; width: 137px;” >
<tbody>
<!–[if mso]>
<tr>
<td width=”137″ 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=”https://www.partneresi.com/resources/articles/nate-benton-and-josh-mccullough-discuss-asset-data-collection-in-nareim-dialogues/” name=”%7B%22UrlIdOffset%22%3A1%7D” target=”_blank” cdlinkrefidmso=”26″ ><img class=”center-on-narrow cd-image” height=”171″ width=”137″ style=”vertical-align: middle;” src=”https://app.clickdimensions.com/blob/partneresicom-a5r0j/files/nareimcover.png” /></a>
</td>
</tr>
<![endif]–>
<!–[if !mso]><!– –><tr>
<td width=”137″ 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=”https://www.partneresi.com/resources/articles/nate-benton-and-josh-mccullough-discuss-asset-data-collection-in-nareim-dialogues/” target=”_blank” cdlinkrefid=”26″ ><img class=”center-on-narrow cd-image image-ee0891696702 no-img-edit” height=”171″ width=”137″ style=”vertical-align: middle;” src=”https://app.clickdimensions.com/blob/partneresicom-a5r0j/files/nareimcover.png” /></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=”51″ 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=”580″ 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: 5px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px;”>
<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: 3px;
border-bottom-color: #cccaca;
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>
</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=”52″ 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: 10px; padding-bottom: 10px; padding-left: 15px; padding-right: 15px; 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=”570px”><![endif]–><div style=”overflow: visible!important; display: inline-block; width:570px; max-width:570px; min-width:570px; 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=”570px” style=”table-layout: fixed; width: 570px;” >
<tbody>
<tr>
<td width=”570″ 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: 10px; padding-left: 0px; padding-right: 0px;”><h3 style=”font-family:Arial;font-size:24px;color:#03468a;letter-spacing:0px;line-height:1.2;text-align:left;margin:0;word-wrap:break-word !important;font-weight:normal;font-style:normal;text-decoration: none;”><span style=”font-size:18px”><strong>Your Capital Plan is Only as Good as the Data It’s Built On</strong></span></h3>
<p style=”font-family:Arial;font-size:13px;color:#616265;letter-spacing:0px;line-height:1.2;text-align:justify;margin:0;word-wrap:break-word !important;font-weight:normal;font-style:normal;text-decoration: none”><span style=”font-size:14px”><span style=”font-family:Calibri”>Do you struggle to capture information needed for accurate capital planning? Quality Asset Data Collection and Management can transform capital planning and support organizational goals, from ESG to NOI. In <a cd-link-manager-tab=”1″ href=”https://www.partneresi.com/resources/videos-webinars/webinar/webinars-devil-in-the-details-how-asset-data-collection-and-management-can-make-or-break-your-capital-plan/” target=”_blank” style=”color: #616265; text-decoration: underline;”>this webinar</a>, <a href=”https://www.partneresi.com/about/meet-the-partners/nate-benton” target=”_blank” style=”color: #616265; text-decoration: underline;”>Nate Benton, PE CEM LEED AP</a>, <a href=”https://www.partneresi.com/about/meet-the-partners/ann-civitano” target=”_blank” style=”color: #616265; text-decoration: underline;”>Ann Civitano, PE LEED AP</a>, and <a href=”https://www.partneresi.com/about/meet-the-partners/bob-geiger” target=”_blank” style=”color: #616265; text-decoration: underline;”>Bob Geiger</a> to discuss asset data myths and mistakes, trends and technology, and steps you can take towards developing a comprehensive asset data collection and management program.</span></span></p>
</td>
</tr><!–[if mso]>
<tr>
<td width=”570″ 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=”https://www.partneresi.com/resources/videos-webinars/webinar/webinars-devil-in-the-details-how-asset-data-collection-and-management-can-make-or-break-your-capital-plan/” name=”%7B%22UrlIdOffset%22%3A1%7D” target=”_blank” cdlinkrefidmso=”32″ ><img class=”center-on-narrow cd-image” height=”297″ width=”570″ style=”vertical-align: middle;” src=”https://app.clickdimensions.com/blob/partneresicom-a5r0j/files/devil_in_the_details_linkedin_on_demand_2022.jpg” /></a>
</td>
</tr>
<![endif]–>
<!–[if !mso]><!– –><tr>
<td width=”570″ 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=”https://www.partneresi.com/resources/videos-webinars/webinar/webinars-devil-in-the-details-how-asset-data-collection-and-management-can-make-or-break-your-capital-plan/” target=”_blank” cdlinkrefid=”32″ ><img class=”center-on-narrow cd-image image-a96866df06a1 no-img-edit” height=”297″ width=”570″ style=”vertical-align: middle;” src=”https://app.clickdimensions.com/blob/partneresicom-a5r0j/files/devil_in_the_details_linkedin_on_demand_2022.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=”53″ 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=”580″ 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: 10px; padding-bottom: 5px; padding-left: 10px; padding-right: 10px;”>
<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: 3px;
border-bottom-color: #cccaca;
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>
</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=”54″ 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: 10px; padding-bottom: 10px; padding-left: 15px; padding-right: 15px; 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=”570px”><![endif]–><div style=”overflow: visible!important; display: inline-block; width:570px; max-width:570px; min-width:570px; 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=”570px” style=”table-layout: fixed; width: 570px;” >
<tbody>
<tr>
<td width=”570″ 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;”><h3 style=”font-family:Arial;font-size:24px;color:#03468a;letter-spacing:0px;line-height:1.2;text-align:left;margin:0;word-wrap:break-word !important;font-weight:normal;font-style:normal;text-decoration: none;”><span style=”font-size:18px”><strong>Extend Roof Life, Reduce Costs</strong></span></h3>
<p style=”font-family:Arial;font-size:13px;color:#616265;letter-spacing:0px;line-height:1.2;text-align:justify;margin:0;word-wrap:break-word !important;font-weight:normal;font-style:normal;text-decoration: none”><span style=”color:#616265; font-family:Calibri; font-size:14px”>Are your building envelope expenses going through the roof? In <a cd-link-manager-tab=”1″ href=”https://www.partneresi.com/resources/videos-webinars/webinar/beat-the-rising-costs-of-roofing/” target=”_blank” style=”color: #616265; text-decoration: underline;”>this webinar</a>, CRE expert <a cd-link-manager-tab=”1″ href=”https://www.partneresi.com/about/our-people/joseph-derhake/” target=”_blank” style=”color: #616265; text-decoration: underline;”>Joe Derhake, PE</a>, joins building envelope expert <a cd-link-manager-tab=”1″ href=”https://www.partneresi.com/about/our-people/pamela-boyd/” target=”_blank” style=”color: #616265; text-decoration: underline;”>Pam Boyd</a> to discuss money-saving strategies for each phase of the lifecycle of your roofs.</span></p>
</td>
</tr><!–[if mso]>
<tr>
<td width=”570″ 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=”https://www.partneresi.com/resources/videos-webinars/webinar/beat-the-rising-costs-of-roofing/” name=”%7B%22UrlIdOffset%22%3A1%7D” target=”_blank” cdlinkrefidmso=”37″ ><img class=”center-on-narrow cd-image” height=”276″ width=”570″ style=”vertical-align: middle;” src=”https://app.clickdimensions.com/blob/partneresicom-a5r0j/files/roofwebinar.png” /></a>
</td>
</tr>
<![endif]–>
<!–[if !mso]><!– –><tr>
<td width=”570″ 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=”https://www.partneresi.com/resources/videos-webinars/webinar/beat-the-rising-costs-of-roofing/” target=”_blank” cdlinkrefid=”37″ ><img class=”center-on-narrow cd-image image-bbf49a3fa472 no-img-edit” height=”276″ width=”570″ style=”vertical-align: middle;” src=”https://app.clickdimensions.com/blob/partneresicom-a5r0j/files/roofwebinar.png” /></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=”55″ 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: 10px; padding-bottom: 0px; padding-left: 15px; padding-right: 15px; 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=”570px”><![endif]–><div style=”overflow: visible!important; display: inline-block; width:570px; max-width:570px; min-width:570px; 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=”570px” style=”table-layout: fixed; width: 570px;” >
<tbody>
<!–[if mso]>
<tr>
<td width=”570″ 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=”162″ width=”570″ style=”vertical-align: middle;” src=”https://app.clickdimensions.com/blob/partneresicom-a5r0j/files/roofad.png” />
</td>
</tr>
<![endif]–>
<!–[if !mso]><!– –><tr>
<td width=”570″ 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-8cc8cfce3cbb no-img-edit” height=”162″ width=”570″ style=”vertical-align: middle;” src=”https://app.clickdimensions.com/blob/partneresicom-a5r0j/files/roofad.png” />
</td>
</tr><!–<![endif]–><tr>
<td width=”570″ 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: 10px; padding-left: 0px; padding-right: 0px;”>
<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: 3px;
border-bottom-color: #cccaca;
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=”540″ 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: 5px; padding-bottom: 5px; padding-left: 15px; padding-right: 15px;”><p style=”text-align:center;font-family:Arial;font-size:13px;color:#616265;letter-spacing:0px;line-height:1.2;margin:0;word-wrap:break-word !important;font-weight:normal;font-style:normal;text-decoration: none”><span style=”font-family:Arial”><span style=”font-size:14px”><span style=”color:#666666″>More Than Just Assessments. </span><span style=”color:#d35400″><em>Solutions.</em></span></span></span></p>
<p style=”text-align:center;font-family:Arial;font-size:13px;color:#616265;letter-spacing:0px;line-height:1.2;margin:0;word-wrap:break-word !important;font-weight:normal;font-style:normal;text-decoration: none”> </p>
</td>
</tr>
</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=”56″ 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: 15px; padding-right: 15px; 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=”411px”><![endif]–><div style=”overflow: visible!important; display: inline-block; width:411px; max-width:411px; min-width:411px; 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=”411px” style=”table-layout: fixed; width: 411px;” >
<tbody>
<tr>
<td width=”411″ 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:Arial;font-size:13px;color:#616265;letter-spacing:0px;line-height:1.2;text-align:justify;margin:0;word-wrap:break-word !important;font-weight:normal;font-style:normal;text-decoration: none”><span style=”font-family:Arial”><strong><span style=”color:#616265″><span style=”font-size:10px”>Partner Engineering and Science, Inc.</span></span></strong></span></p>
<p style=”font-family:Arial;font-size:13px;color:#616265;letter-spacing:0px;line-height:1.2;text-align:justify;margin:0;word-wrap:break-word !important;font-weight:normal;font-style:normal;text-decoration: none”><span style=”font-family:Arial”><span style=”font-size:10px”><a href=”http://www.partneresi.com” target=”_blank” style=”color: rgb(97, 98, 101); text-decoration: underline;”><span style=”color:#616265″>www.partneresi.com</span></a></span></span></p>
<p style=”font-family:Arial;font-size:13px;color:#616265;letter-spacing:0px;line-height:1.2;text-align:justify;margin:0;word-wrap:break-word !important;font-weight:normal;font-style:normal;text-decoration: none”><span style=”font-family:Arial”><span style=”font-size:10px”><span style=”color:#616265″>800-419-4923</span></span></span></p>
<p style=”font-family:Arial;font-size:13px;color:#616265;letter-spacing:0px;line-height:1.2;text-align:justify;margin:0;word-wrap:break-word !important;font-weight:normal;font-style:normal;text-decoration: none”><span style=”font-family:Arial”><span style=”color:#616265″><span style=”font-size:10px”>West Coast HQ: 2154 Torrance Blvd., Torrance, CA 90501</span></span></span></p>
<p style=”font-family:Arial;font-size:13px;color:#616265;letter-spacing:0px;line-height:1.2;text-align:justify;margin:0;word-wrap:break-word !important;font-weight:normal;font-style:normal;text-decoration: none”><span style=”font-family:Arial”><span style=”color:#616265″><span style=”font-size:10px”>East Coast HQ: 611 Industrial Way W., Suite A, Eatontown, NJ 07724</span></span></span></p>
<p style=”font-family:Arial;font-size:13px;color:#616265;letter-spacing:0px;line-height:1.2;text-align:justify;margin:0;word-wrap:break-word !important;font-weight:normal;font-style:normal;text-decoration: none”><span style=”font-family:Arial”><span style=”font-size:10px”><span style=”color:#616265″>Manage your subscription preferences: </span><a href=”https://www.partneresi.com/subscribe” style=”color: rgb(97, 98, 101); text-decoration: underline;”><span style=”color:#616265″>Subscribe</span></a><span style=”color:#616265″> / </span><a href=”http://web.partneresi.com/cn/a5r0j/manage-subscription?_cldunsub=${Recipient.UnSub[0]}” style=”color: rgb(97, 98, 101); text-decoration: underline;”><span style=”color:#616265″>Unsubscribe</span></a></span></span></p>
<p style=”font-family:Arial;font-size:13px;color:#616265;letter-spacing:0px;line-height:1.2;text-align:justify;margin:0;word-wrap:break-word !important;font-weight:normal;font-style:normal;text-decoration: none”> </p>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</div><!–[if mso]></td><![endif]–><!–[if mso]><td align=”left” valign=”top” width=”20px”><![endif]–><div style=”overflow: visible!important; display: inline-block; width:20px; max-width:20px; min-width:20px; 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=”20px” style=”table-layout: fixed; width: 20px;” >
<tbody>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</div><!–[if mso]></td><![endif]–><!–[if mso]><td align=”left” valign=”top” width=”137px”><![endif]–><div style=”overflow: visible!important; display: inline-block; width:137px; max-width:137px; min-width:137px; 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=”137px” style=”table-layout: fixed; width: 137px;” >
<tbody>
<tr>
<td
width=”137″
class=”stack-column-center social-block-container”
style=”font-size: 0; vertical-align: top; text-align: center; padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px;”
>
<!–[if mso]>
<table role=”presentation” cellspacing=”0″ cellpadding=”0″ border=”0″ align=”center”>
<tr>
<td style=”padding: 5px;”>
<span style=”display: inline-block;”>
<a
target=”_blank” name=”%7B%22UrlIdOffset%22%3A6%7D” cdlinkrefidmso=”44_0″
style=”text-decoration: none;”
href=”https://www.partneresi.com/resources/blog”
>
<img
class=”social” width=”32″ height=”32″
style=”width: 32px; height: 32px; margin: 5px;”
src=”https://app.clickdimensions.com/blob/partneresicom-a5r0j/images/social-links/blogicon.png?m=8/15/2018 4:46:38 PM”
>
</a>
</span>
</td>
<td style=”padding: 5px;”>
<span style=”display: inline-block;”>
<a
target=”_blank” name=”%7B%22UrlIdOffset%22%3A6%7D” cdlinkrefidmso=”44_1″
style=”text-decoration: none;”
href=”https://www.linkedin.com/company/partner-engineering-&-science-inc./”
>
<img
class=”social” width=”32″ height=”32″
style=”width: 32px; height: 32px; margin: 5px;”
src=”https://az124611.vo.msecnd.net/web/SPA_resources/DndEditor_v2/social_links/circle/gray/linkedin.png”
>
</a>
</span>
</td>
<td style=”padding: 5px;”>
<span style=”display: inline-block;”>
<a
target=”_blank” name=”%7B%22UrlIdOffset%22%3A6%7D” cdlinkrefidmso=”44_2″
style=”text-decoration: none;”
href=”https://twitter.com/partner_esi”
>
<img
class=”social” width=”32″ height=”32″
style=”width: 32px; height: 32px; margin: 5px;”
src=”https://az124611.vo.msecnd.net/web/SPA_resources/DndEditor_v2/social_links/circle/gray/twitter.png”
>
</a>
</span>
</td>
</tr>
<tr>
<td colspan=”3″>
<table role=”presentation” cellspacing=”0″ cellpadding=”0″ border=”0″ align=”center”>
<tr>
<td style=”padding: 5px;”>
<span style=”display: inline-block;”>
<a
target=”_blank” name=”%7B%22UrlIdOffset%22%3A6%7D” cdlinkrefidmso=”44_3″
style=”text-decoration: none;”
href=”https://www.youtube.com/user/partnerengineering/featured”
>
<img
class=”social” width=”32″ height=”32″
style=”width: 32px; height: 32px; margin: 5px;”
src=”https://az124611.vo.msecnd.net/web/SPA_resources/DndEditor_v2/social_links/circle/gray/youtube.png”
>
</a>
</span>
</td>
<td style=”padding: 5px;”>
<span style=”display: inline-block;”>
<a
target=”_blank” name=”%7B%22UrlIdOffset%22%3A6%7D” cdlinkrefidmso=”44_4″
style=”text-decoration: none;”
href=”https://www.facebook.com/Partneresi/”
>
<img
class=”social” width=”32″ height=”32″
style=”width: 32px; height: 32px; margin: 5px;”
src=”https://az124611.vo.msecnd.net/web/SPA_resources/DndEditor_v2/social_links/circle/gray/facebook.png”
>
</a>
</span>
</td>
<td style=”padding: 5px;”>
<span style=”display: inline-block;”>
<a
target=”_blank” name=”%7B%22UrlIdOffset%22%3A6%7D” cdlinkrefidmso=”44_5″
style=”text-decoration: none;”
href=”https://www.instagram.com/partneresi/”
>
<img
class=”social” width=”32″ height=”32″
style=”width: 32px; height: 32px; margin: 5px;”
src=”https://az124611.vo.msecnd.net/web/SPA_resources/DndEditor_v2/social_links/circle/gray/instagram.png”
>
</a>
</span>
</td>
</tr>
</table>
</td>
</tr>
</table>
<![endif]–> <!–[if !mso]><!–>
<span style=”display: inline-block;”>
<a
target=”_blank” cdlinkrefid=”44_0″
style=”text-decoration: none;”
href=”https://www.partneresi.com/resources/blog”
>
<img
class=”social” width=”32″ height=”32″
style=”width: 32px; height: 32px; margin: 5px;”
src=”https://app.clickdimensions.com/blob/partneresicom-a5r0j/images/social-links/blogicon.png?m=8/15/2018 4:46:38 PM”
>
</a>
</span>
<span style=”display: inline-block;”>
<a
target=”_blank” cdlinkrefid=”44_1″
style=”text-decoration: none;”
href=”https://www.linkedin.com/company/partner-engineering-&-science-inc./”
>
<img
class=”social” width=”32″ height=”32″
style=”width: 32px; height: 32px; margin: 5px;”
src=”https://az124611.vo.msecnd.net/web/SPA_resources/DndEditor_v2/social_links/circle/gray/linkedin.png”
>
</a>
</span>
<span style=”display: inline-block;”>
<a
target=”_blank” cdlinkrefid=”44_2″
style=”text-decoration: none;”
href=”https://twitter.com/partner_esi”
>
<img
class=”social” width=”32″ height=”32″
style=”width: 32px; height: 32px; margin: 5px;”
src=”https://az124611.vo.msecnd.net/web/SPA_resources/DndEditor_v2/social_links/circle/gray/twitter.png”
>
</a>
</span>
<span style=”display: inline-block;”>
<a
target=”_blank” cdlinkrefid=”44_3″
style=”text-decoration: none;”
href=”https://www.youtube.com/user/partnerengineering/featured”
>
<img
class=”social” width=”32″ height=”32″
style=”width: 32px; height: 32px; margin: 5px;”
src=”https://az124611.vo.msecnd.net/web/SPA_resources/DndEditor_v2/social_links/circle/gray/youtube.png”
>
</a>
</span>
<span style=”display: inline-block;”>
<a
target=”_blank” cdlinkrefid=”44_4″
style=”text-decoration: none;”
href=”https://www.facebook.com/Partneresi/”
>
<img
class=”social” width=”32″ height=”32″
style=”width: 32px; height: 32px; margin: 5px;”
src=”https://az124611.vo.msecnd.net/web/SPA_resources/DndEditor_v2/social_links/circle/gray/facebook.png”
>
</a>
</span>
<span style=”display: inline-block;”>
<a
target=”_blank” cdlinkrefid=”44_5″
style=”text-decoration: none;”
href=”https://www.instagram.com/partneresi/”
>
<img
class=”social” width=”32″ height=”32″
style=”width: 32px; height: 32px; margin: 5px;”
src=”https://az124611.vo.msecnd.net/web/SPA_resources/DndEditor_v2/social_links/circle/gray/instagram.png”
>
</a>
</span>
<!–<![endif]–>
</td>
</tr>
</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>