<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office">
<head>
<meta charset="utf-8"> <!-- utf-8 works for most cases -->
<meta name="viewport" content="width=device-width"> <!-- 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. -->
<!--[if mso]>
<style>
		  * {
			  font-family: sans-serif !important;
		  }
	  </style>
<![endif]-->
<!-- All other clients get the webfont reference; some will render the font and others will silently fail to the fallbacks. More on that here: -->
<!--[if !mso]>
<style>
	  <link  href=''  rel='stylesheet' type='text/css'>
	  <link  href=''  rel='stylesheet' type='text/css'>
	</style>
<![endif]-->
<!-- Web Font / @font-face : END -->
<!-- CSS Reset : BEGIN -->
<style>

	/* 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;
	  font-family: Helvetica, Arial, sans-serif !important;
	}

	/* Stops email clients resizing small text. */
	* {
	  -ms-text-size-adjust: 100%;
	  -webkit-text-size-adjust: 100%;
	}

	/* Centers email on Android 4.4 */
	div[style*="margin: 16px 0"] {
	  margin: 0 !important;
	}

	/* Stops Outlook from adding extra spacing to tables. */
	table,
	td {
	  mso-table-lspace: 0pt !important;
	  mso-table-rspace: 0pt !important;
	}

	/* 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;
	} */

  table td, table tr { border-collapse: collapse !important;  }

	/* Uses a better rendering method when resizing images in IE. */
	img {
	  -ms-interpolation-mode:bicubic;
	}

	/* Prevents Windows 10 Mail from underlining links despite inline CSS. Styles for underlined links should be inline. */
	a {
	  text-decoration: none;
	}

	/* A work-around for email clients meddling in triggered links. */
	*[x-apple-data-detectors],  /* iOS */
	.unstyle-auto-detected-links *,
	.aBn {
	  border-bottom: 0 !important;
	  cursor: default !important;
	  color: inherit !important;
	  text-decoration: none !important;
	  font-size: inherit !important;
	  font-family: inherit !important;
	  font-weight: inherit !important;
	  line-height: inherit !important;
	}

	/* Prevents Gmail from displaying a 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;
	}

	/* 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 */

	/* iPhone 4, 4S, 5, 5S, 5C, and 5SE */
	@media only screen and (min-device-width: 320px) and (max-device-width: 374px) {
	  u ~ div .email-container {
		min-width: 320px !important;
	  }
	}
	/* iPhone 6, 6S, 7, 8, and X */
	@media only screen and (min-device-width: 375px) and (max-device-width: 413px) {
	  u ~ div .email-container {
		min-width: 375px !important;
	  }
	}
	/* iPhone 6+, 7+, and 8+ */
	@media only screen and (min-device-width: 414px) {
	  u ~ div .email-container {
		min-width: 414px !important;
	  }
	}

  </style>
<!-- CSS Reset : END -->
<!-- Reset list spacing because Outlook ignores much of our inline CSS. -->
<!--[if mso]>
<style type="text/css">
	ul,
	ol {
	  margin: 0 !important;
	}
	li {
	  margin-left: 30px !important;
	}
	li.list-item-first {
	  margin-top: 0 !important;
	}
	li.list-item-last {
	  margin-bottom: 10px !important;
	}
  </style>
<![endif]-->
<!-- Progressive Enhancements : BEGIN -->
<style>

	/* Hover styles for buttons */
	.button-td,
	  .button-a {
		transition: all 100ms ease-in;
	  }
	  .button-td:hover,
	  .button-a:hover {
		background: #B9202F !important;
		border-color: #B9202F !important;
	  }
	/* Active styles for buttons */
	  .button-td:active,
	  .button-a:active {
		background: #EE2737 !important;
		border-color: #EE2737 !important;
	  }
	/* Media Queries */
	@media screen and (max-width: 480px) {
	  /* 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;
	  }

	  /* Forces table cells into full-width rows. */
	  .stack-column,
	  .stack-column-center {
		display: block !important;
		width: 100% !important;
		max-width: 100% !important;
		direction: ltr !important;
	  }
	  /* And center justify these ones. */
	  .stack-column-center {
		text-align: center !important;
	  }

	  /* Generic utility class for centering. Useful for images, buttons, and nested tables. */
	  .center-on-narrow {
		text-align: center !important;
		display: block !important;
		margin-left: auto !important;
		margin-right: auto !important;
		float: none !important;
	  }
	  table.center-on-narrow {
		display: inline-block !important;
	  }

	  /* Adjust typography on small screens to improve readability */
	  .email-container p {
		font-size: 17px !important;
	  }
	}

  </style>
<!-- Progressive Enhancements : END -->
<!-- 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]-->
<!-- My Styles -->
<style>
	/* Hover styles for buttons */
	.button-td-primary,
	  .button-a-primary {
		transition: all 100ms ease-in;
	  }
	  .button-td-primary:hover,
	  .button-a-primary:hover {
		background: #FBFBFB !important;
		border-color: #E9292C !important;
		color: #E9292C !important;
	  }
	/* Active styles for buttons */
	  .button-td-primary:active,
	  .button-a-primary:active {
		background: #B9202F !important;
		border-color: #E9292C !important;
		color: #FFFFFF !important;ss
	  }
  a, a:visited {
    color: #333333; text-decoration:none;
    }
  a:active {
    color: #F05244 !important;
    }
  a.legal{
    color: #F1F1F1 !important;
    }
	  /* My Media Query Styles*/
	@media screen and (max-width: 890px) {
		.header{
		width: 90% !important;
	  }
	  .hide{
		display: none !important;
		overflow: hidden !important;
		height: 0 !important;
		width: 0 !important;
		max-height: 0 !important;
		max-width: 0 !important;
		line-height: 0 !important;
		font-size: 0 !important;
	  }
	}
	@media only screen and (min-device-width: 320px) and (max-device-width: 414px){
		.johnsonBox {
		  -ms-text-size-adjust: 60% !important;
		  -webkit-text-size-adjust: 60% !important;
	  }
	  .exclusions {
		  -ms-text-size-adjust: 70% !important;
		  -webkit-text-size-adjust: 70% !important;
	  }
	}
  </style>
<meta name='robots' content='noindex' />
</head>
<!--
The email background color (#222222) is defined in three places:
1. body tag: for most email clients
2. center tag: for Gmail and Inbox mobile apps and web versions of Gmail, GSuite, Inbox, Yahoo, AOL, Libero, Comcast, freenet, Mail.ru, Orange.fr
3. mso conditional: For Windows 10 Mail
-->
<body width="100%" style="margin: 0; padding: 0 !important; mso-line-height-rule: exactly; background-color: #FFFFFF;">
<center style="width: 100%; background-color: #FFFFFF;">
<!--[if mso | IE]>
<table role="presentation" border="0" cellpadding="0" cellspacing="0" width="100%" style="background-color: #FFFFFF;">
<tr>
<td>
<![endif]-->
<!-- Create white space after the desired preview text so email clients don't pull other distracting text into the inbox preview. Extend as necessary. -->
<!-- Preview Text Spacing Hack : BEGIN -->
<table role="presentation" cellspacing="0" cellpadding="0" border="0" width="100%" height="0" style="background-color: #ffffff;font-size:0;line-height:0;height:0;display:none;overflow:hidden;">
<tr>
<td valign="top">
<span style="font-size:0;line-height:0;height:0;display:none;overflow:hidden;">
&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;
</span>
</td>
</tr>
</table>
<!-- Preview Text Spacing Hack : END -->
<!-- View in Browser : START -->
<table role="presentation" cellspacing="0" cellpadding="0" border="0" width="100%" height="20">
<tr>
<td valign="middle">
<div align="center" style="max-width: 680px; margin: 0 auto;" class="email-container">
<!--[if mso]>
<table role="presentation" cellspacing="0" cellpadding="0" border="0" width="680" align="center">
<tr>
<td>
<![endif]-->
<table role="presentation" cellspacing="0" cellpadding="0" border="0" width="100%" align="center">
<!-- Clear Spacer : BEGIN -->
<tr>
<td aria-hidden="true" height="3" style="font-size: 0px; line-height: 0px;">&nbsp;
</td>
</tr>
<!-- Clear Spacer : END -->
<!-- Top : BEGIN -->
<tr>
<td style="padding: 5px 0; text-align: center; font-family: sans-serif; font-size: 12px; line-height: 12px;">
<a target="_blank"  href=""  target="_blank" style="color: #777777; text-decoration: underline;">View in Browser</a> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <a target="_blank"  href=""  target="_blank" style="color: #777777; text-decoration: underline;">Change My <span class=
"hide">Language and</span> Preferences</a> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <a target="_blank"  href=""  target="_blank" class="hide" style="color: #777777; text-decoration: underline;">Mettre&nbsp;&agrave; jour mon langue et pr&eacute;f&eacute;rences</a>
</td>
</tr>
<!-- Top : END -->
<!-- Clear Spacer : BEGIN -->
<tr>
<td aria-hidden="true" height="3" style="font-size: 0px; line-height: 0px;">&nbsp;
</td>
</tr>
<!-- Clear Spacer : END -->
</table>
<!--[if mso]>
</td>
</tr>
</table>
<![endif]-->
</div>
</td>
</tr>
</table>
<!-- View in Browser : END -->
<!--
Set the email width. Defined in two places:
1. max-width for all clients except Desktop Windows Outlook, allowing the email to squish on narrow but never go wider than 680px.
2. MSO tags for Desktop Windows Outlook enforce a 680px width.
Note: The Fluid and Responsive templates have a different width (600px). The hybrid grid is more "fragile", and I've found that 680px is a good width. Change with caution.
-->
<div style="max-width: 680px; margin: 0 auto;" class="email-container">
<!--[if mso]>
<table align="center" role="presentation" cellspacing="0" cellpadding="0" border="0" width="680">
<tr>
<td>
<![endif]-->
<!-- Email Body : BEGIN -->
<table role="presentation" cellspacing="0" cellpadding="0" border="0" width="100%" style="margin: 0 auto;">
<!-- Logo and Flyer : BEGIN -->
<tr>
<td height="100%" valign="top" width="100%" style="background-color: #ffffff;">
<!--[if mso]>
<table align="center" role="presentation" border="0" cellspacing="0" cellpadding="0" width="680">
<tr>
<td valign="top" width="680">
<![endif]-->
<table align="center" role="presentation" border="0" cellpadding="0" cellspacing="0" width="100%" style="max-width:680px;" bgcolor="#E9292C">
<tr>
<td align="center" valign="top" style="font-size:0; padding:0;">
<a target="_blank"  href=""  target="_blank">
<img src="https://mediacdn.espssl.com/9543/Partials/en/logo.png" width="340" height="" border="0" alt="The Brick." style="width: 100%; max-width: 340px; height: auto; font-family: sans-serif; font-size: 15px; line-height: 15px; color: #FFFFFF; margin: auto; display: block; text-align: center;" class="center-on-narrow g-img">
</a>
</td>
<td align="center" valign="top" style="font-size:0; padding:0;">
<a target="_blank"  href=""  target="_blank">
<img src="https://mediacdn.espssl.com/9543/Partials/en/flyer.png" width="340" height="" border="0" alt="See Flyer." style="width: 100%; max-width: 340px; height: auto; font-family: sans-serif; font-size: 15px; line-height: 15px; color: #FFFFFF; margin: auto; display: block; text-align: center;" class="center-on-narrow g-img">
</a>
</td>
</tr>
</table>
<!--[if mso]>
</td>
</tr>
</table>
<![endif]-->
</td>
</tr>
<!-- Logo and Flyer : END -->
<!-- Navigation : BEGIN -->
<tr>
<td bgcolor="#FFFFFF" height="100%" valign="top" width="100%" style="background-color: #ffffff;">
<!--[if mso]>
<table align="center" role="presentation" border="0" cellspacing="0" cellpadding="0" width="660">
<tr>
<td valign="top" width="680">
<![endif]-->
<table align="center" role="presentation" border="0" cellpadding="0" cellspacing="0" width="100%" style="max-width:680px;">
<tr>
<td width="27.2%">
<a target="_blank"  href=""  target="_blank" style="font-size: 12px; color: #E9292C;"><img src="https://mediacdn.espssl.com/9543/Partials/en/nav_furniture.png" width="185" height="" border="0" alt="Furniture." class="center-on-narrow" style="width: 100%; max-width: 185px; height: auto; border-collapse: collapse; display: block;"></a>
</td>
<td width="21.91%">
<a target="_blank"  href=""  target="_blank" style="font-size: 12px; color: #E9292C;"><img src="https://mediacdn.espssl.com/9543/Partials/en/nav_mattress.png" width="149" height="" border="0" alt="Mattresses." class="center-on-narrow" style="width: 100%; max-width: 149px; height: auto; border-collapse: collapse; display: block;"></a>
</td>
<td width="22.21%">
<a target="_blank"  href=""  target="_blank" style="font-size: 12px; color: #E9292C;"><img src="https://mediacdn.espssl.com/9543/Partials/en/nav_appliances.png" width="151" height="" border="0" alt="Appliances." class="center-on-narrow" style="width: 100%; max-width: 151px; height: auto; border-collapse: collapse; display: block;"></a>
</td>
<td width="28.68%">
<a target="_blank"  href=""  target="_blank" style="font-size: 12px; color: #E9292C;"><img src="https://mediacdn.espssl.com/9543/Partials/en/nav_electronics.png" width="195" height="" border="0" alt="Electronics." class="center-on-narrow" style="width: 100%; max-width: 195px; height: auto; border-collapse: collapse; display: block;"></a>
</td>
</tr>
</table>
<!--[if mso]>
</td>
</tr>
</table>
<![endif]-->
</td>
</tr>
<!-- Navigation : END -->
<!-- Hero Image, Flush : BEGIN -->
<tr>
<td bgcolor="#FFFFFF">
<a target="_blank"  href=""  target="_blank">
<img src="https://mediacdn.espssl.com/9543/Partials/en/overstock.gif" width="680" height="" alt="Overstock Sale, new items added weekly." border="0" style="width: 100%; max-width: 680px; height: auto; font-family: sans-serif; font-size: 15px; line-height: 15px; color: #555555; margin: auto; border-collapse: collapse; display: block; text-align: center;" class="g-img">
</a>
</td>
</tr>
<!-- Hero Image, Flush : END -->
<!-- Hero Image, Flush : BEGIN -->
<tr>
<td bgcolor="#FFFFFF">
<a target="_blank"  href=""  target="_blank">
<img src="https://mediacdn.espssl.com/9543/2022/11-November/11_12_flashSale/en/Flash-Sale-banner.png" width="680" height="" alt="Flash Sale. Two days only, November 12 and 13, 2022." border="0" style="width: 100%; max-width: 680px; height: auto; font-family: sans-serif; font-size: 15px; line-height: 15px; color: #555555; margin: auto; border-collapse: collapse; display: block; text-align: center;" class="g-img">
</a>
</td>
</tr>
<!-- Hero Image, Flush : END -->
<!-- 2 Even Columns : BEGIN -->
<tr>
<td height="100%" valign="top" width="100%" style="background-color: #ffffff; border: 3px solid #cfd3d4;">
<!--[if mso]>
<table align="center" role="presentation" border="0" cellspacing="0" cellpadding="0" width="660">
<tr>
<td valign="top" width="660">
<![endif]-->
<table align="center" role="presentation" border="0" cellpadding="0" cellspacing="0" width="100%" style="max-width:660px;">
<tr>
<td align="center" valign="top" style="font-size: 0; padding: 40px 0 20px 0;">
<!--[if mso]>
<table role="presentation" border="0" cellspacing="0" cellpadding="0" width="660">
<tr>
<td valign="top" width="330">
<![endif]-->
<div style="display:inline-block; margin: 0 -2px; width:100%; min-width:200px; max-width:330px; vertical-align:top;" class="stack-column">
<table role="presentation" cellspacing="0" cellpadding="0" border="0" width="100%">
<tr>
<td style="padding: 0px 10px 20px 10px;">
<table role="presentation" cellspacing="0" cellpadding="0" border="0" width="100%" style="font-size: 14px;text-align: left;">
<!-- Product Image : BEGIN -->
<tr>
<td>
<a target="_blank"  href=""  target="_blank">
<img src="https://mediacdn.espssl.com/9543/2022/11-November/11_12_flashSale/en/fabric-sofa.png" width="310" height="" border="0" alt="74 inch Calla linen-look fabric sofa." class="center-on-narrow" style="width: 100%; max-width: 310px; height: auto; background: #dddddd; font-family: sans-serif; font-size: 15px; line-height: 20px; color: #555555; border-collapse: collapse; display: block;">
</a>
</td>
</tr>
<!-- Product Image : END -->
<!-- Clear Spacer : BEGIN -->
<tr>
<td aria-hidden="true" height="30" style="font-size: 0px; line-height: 0px;">&nbsp;
</td>
</tr>
<!-- Clear Spacer : END -->
<!-- Description + CTA : BEGIN -->
<tr>
<td style="font-family: sans-serif; font-size: 15px; color: #404041; padding-top: 0px; text-align:center" align="center" class="stack-column-center">
<p style="margin: 0; padding-bottom: 15px; font-family: sans-serif;">74&quot; Calla Linen-Look Fabric Sofa<br>
<strong>
<span style="color:#e9292c; font-size: 16px; line-height: 40px; font-family: sans-serif;">SAVE $230</span><br>
<span style="font-size: 25px; line-height: 30px; font-weight: 700; font-family: sans-serif;">$649.95</span><br>
</strong>
<span style="color:#888888; font-size: 11px; line-height: 11px; font-family: sans-serif;">After Discount</span>
</p>
<table role="presentation" cellspacing="0" cellpadding="0" border="0" align="center" width="168" height="44" style="margin: auto; max-width: 168px; height: auto;">
<tr>
<td>
<a target="_blank"  href=""  target="_blank" style="background: #E9292C;text-align: center; text-decoration: none; display: block; font-weight: bold;" class="button-a">
<img src="https://mediacdn.espssl.com/9543/Partials/en/shop.png" width="168" height="" border="0" alt="SHOP NOW." class="center-on-narrow" style="width: 100%; max-width: 168px; height: auto; background: #dddddd; font-family: sans-serif; font-size: 15px; line-height: 20px; color: #555555; border-collapse: collapse; display: block;">
</a>
</td>
</tr>
</table>
</td>
</tr>
<!-- Description + CTA : END -->
</table>
</td>
</tr>
</table>
</div>
<!--[if mso]>
</td>
<td valign="top" width="330">
<![endif]-->
<div style="display:inline-block; margin: 0 -2px; width:100%; min-width:200px; max-width:330px; vertical-align:top;" class="stack-column">
<table role="presentation" cellspacing="0" cellpadding="0" border="0" width="100%">
<tr>
<td style="padding: 0px 10px 20px 10px;">
<table role="presentation" cellspacing="0" cellpadding="0" border="0" width="100%" style="font-size: 14px;text-align: left;">
<!-- Product Image : BEGIN -->
<tr>
<td>
<a target="_blank"  href=""  target="_blank">
<img src="https://mediacdn.espssl.com/9543/2022/11-November/11_12_flashSale/en/bedgear-mattress-protector.png" width="310" height="" border="0" alt="Ver-Tex Mattress Protectors." class="center-on-narrow" style="width: 100%; max-width: 310px; height: auto; background: #dddddd; font-family: sans-serif; font-size: 15px; line-height: 20px; color: #555555; border-collapse: collapse; display: block;">
</a>
</td>
</tr>
<!-- Product Image : END -->
<!-- Clear Spacer : BEGIN -->
<tr>
<td aria-hidden="true" height="30" style="font-size: 0px; line-height: 0px;">&nbsp;
</td>
</tr>
<!-- Clear Spacer : END -->
<!-- Description + CTA : BEGIN -->
<tr>
<td style="font-family: sans-serif; font-size: 15px; color: #404041; padding-top: 0px; text-align:center" align="center" class="stack-column-center">
<p style="margin: 0; padding-bottom: 15px; font-family: sans-serif;">Ver-Tex Mattress Protectors<br>
<strong>
<span style="color:#e9292c; font-size: 16px; line-height: 40px; font-family: sans-serif;">SAVE $30</span><br>
<span style="font-size: 25px; line-height: 30px; font-weight: 700; font-family: sans-serif;">$239.95</span><br/>
</strong>
<span style="color:#888888; font-size: 11px; line-height: 11px; font-family: sans-serif;">After Discount</span>
</p>
<table role="presentation" cellspacing="0" cellpadding="0" border="0" align="center" width="168" height="44" style="margin: auto; max-width: 168px; height: auto;">
<tr>
<td>
<a target="_blank"  href=""  target="_blank" style="background: #E9292C;text-align: center; text-decoration: none; display: block; font-weight: bold;" class="button-a">
<img src="https://mediacdn.espssl.com/9543/Partials/en/shop.png" width="168" height="" border="0" alt="SHOP NOW." class="center-on-narrow" style="width: 100%; max-width: 168px; height: auto; background: #dddddd; font-family: sans-serif; font-size: 15px; line-height: 20px; color: #555555; border-collapse: collapse; display: block;">
</a>
</td>
</tr>
</table>
</td>
</tr>
<!-- Description + CTA : END -->
</table>
</td>
</tr>
</table>
</div>
<!--[if mso]>
</td>
</tr>
</table>
<![endif]-->
</td>
</tr>
</table>
<!--[if mso]>
</td>
</tr>
</table>
<![endif]-->
</td>
</tr>
<!-- 2 Even Columns : END -->
<!-- Clear Spacer : BEGIN -->
<tr>
<td bgcolor="#FFFFFF" aria-hidden="true" height="20" style="font-size: 0px; line-height: 0px; background-color: #ffffff !important;">
&nbsp;
</td>
</tr>
<!-- Clear Spacer : END -->
<!-- Hero Image, Flush : BEGIN -->
<tr>
<td bgcolor="#FFFFFF">
<a target="_blank"  href=""  target="_blank">
<img src="https://mediacdn.espssl.com/9543/2022/11-November/11_12_flashSale/en/Dining-Chair.png" width="680" height="" alt="Jess Accent Dining Chair." border="0" style="width: 100%; max-width: 680px; height: auto; font-family: sans-serif; font-size: 15px; line-height: 15px; color: #555555; margin: auto; border-collapse: collapse; display: block; text-align: center;" class="g-img">
</a>
</td>
</tr>
<!-- Hero Image, Flush : END -->
<!-- Hero Image, Flush : BEGIN -->
<tr>
<td bgcolor="#FFFFFF">
<a target="_blank"  href=""  target="_blank">
<img src="https://mediacdn.espssl.com/9543/2022/11-November/11_12_flashSale/en/Dinning-chair-2.jpg" width="680" height="" alt="Jess Accent Dining Chair." border="0" style="width: 100%; max-width: 680px; height: auto; font-family: sans-serif; font-size: 15px; line-height: 15px; color: #555555; margin: auto; border-collapse: collapse; display: block; text-align: center;" class="g-img">
</a>
</td>
</tr>
<!-- Hero Image, Flush : END -->
<!-- Hero Image, Flush : BEGIN -->
<tr>
<td bgcolor="#FFFFFF">
<a target="_blank"  href=""  target="_blank">
<img src="https://mediacdn.espssl.com/9543/2022/11-November/11_12_flashSale/en/Dining-chair-3.jpg" width="680" height="" alt="Jess Accent Dining Chair." border="0" style="width: 100%; max-width: 680px; height: auto; font-family: sans-serif; font-size: 15px; line-height: 15px; color: #555555; margin: auto; border-collapse: collapse; display: block; text-align: center;" class="g-img">
</a>
</td>
</tr>
<!-- Hero Image, Flush : END -->
<!-- Hero Image, Flush : BEGIN -->
<tr>
<td bgcolor="#FFFFFF">
<a target="_blank"  href=""  target="_blank">
<img src="https://mediacdn.espssl.com/9543/2022/11-November/11_12_flashSale/en/financing.png" width="680" height="" alt="Flexible financing available." border="0" style="width: 100%; max-width: 680px; height: auto; font-family: sans-serif; font-size: 15px; line-height: 15px; color: #555555; margin: auto; border-collapse: collapse; display: block; text-align: center;" class="g-img">
</a>
</td>
</tr>
<!-- Hero Image, Flush : END -->
<!-- Clear Spacer : BEGIN -->
<tr>
<td bgcolor="#FFFFFF" aria-hidden="true" height="20" style="font-size: 0px; line-height: 0px; background-color: #ffffff !important;">
&nbsp;
</td>
</tr>
<!-- Clear Spacer : END -->
<!-- 2 Even Columns : BEGIN -->
<tr>
<td height="100%" valign="top" width="100%" style="background-color: #ffffff; border: 3px solid #cfd3d4;">
<!--[if mso]>
<table align="center" role="presentation" border="0" cellspacing="0" cellpadding="0" width="660">
<tr>
<td valign="top" width="660">
<![endif]-->
<table align="center" role="presentation" border="0" cellpadding="0" cellspacing="0" width="100%" style="max-width:660px;">
<tr>
<td align="center" valign="top" style="font-size: 0; padding: 40px 0 20px 0;">
<!--[if mso]>
<table role="presentation" border="0" cellspacing="0" cellpadding="0" width="660">
<tr>
<td valign="top" width="330">
<![endif]-->
<div style="display:inline-block; margin: 0 -2px; width:100%; min-width:200px; max-width:330px; vertical-align:top;" class="stack-column">
<table role="presentation" cellspacing="0" cellpadding="0" border="0" width="100%">
<tr>
<td style="padding: 0px 10px 20px 10px;">
<table role="presentation" cellspacing="0" cellpadding="0" border="0" width="100%" style="font-size: 14px;text-align: left;">
<!-- Product Image : BEGIN -->
<tr>
<td>
<a target="_blank"  href=""  target="_blank">
<img src="https://mediacdn.espssl.com/9543/2022/11-November/11_12_flashSale/en/dishwasher.png" width="310" height="" border="0" alt="Galanz 24 inch dishwasher." class="center-on-narrow" style="width: 100%; max-width: 310px; height: auto; background: #dddddd; font-family: sans-serif; font-size: 15px; line-height: 20px; color: #555555; border-collapse: collapse; display: block;">
</a>
</td>
</tr>
<!-- Product Image : END -->
<!-- Clear Spacer : BEGIN -->
<tr>
<td aria-hidden="true" height="30" style="font-size: 0px; line-height: 0px;">&nbsp;
</td>
</tr>
<!-- Clear Spacer : END -->
<!-- Description + CTA : BEGIN -->
<tr>
<td style="font-family: sans-serif; font-size: 15px; color: #404041; padding-top: 0px; text-align:center" align="center" class="stack-column-center">
<p style="margin: 0; padding-bottom: 15px; font-family: sans-serif;">24&quot; Dishwasher<br>
<strong>
<span style="color:#e9292c; font-size: 16px; line-height: 40px; font-family: sans-serif;">2 DAYS ONLY!</span><br>
<span style="font-size: 25px; line-height: 30px; font-weight: 700; font-family: sans-serif;">$499.95</span><br>
</strong>
<span style="color:#888888; font-size: 11px; line-height: 11px; font-family: sans-serif;">&nbsp;</span>
</p>
<table role="presentation" cellspacing="0" cellpadding="0" border="0" align="center" width="168" height="44" style="margin: auto; max-width: 168px; height: auto;">
<tr>
<td>
<a target="_blank"  href=""  target="_blank" style="background: #E9292C;text-align: center; text-decoration: none; display: block; font-weight: bold;" class="button-a">
<img src="https://mediacdn.espssl.com/9543/Partials/en/shop.png" width="168" height="" border="0" alt="SHOP NOW." class="center-on-narrow" style="width: 100%; max-width: 168px; height: auto; background: #dddddd; font-family: sans-serif; font-size: 15px; line-height: 20px; color: #555555; border-collapse: collapse; display: block;">
</a>
</td>
</tr>
</table>
</td>
</tr>
<!-- Description + CTA : END -->
</table>
</td>
</tr>
</table>
</div>
<!--[if mso]>
</td>
<td valign="top" width="330">
<![endif]-->
<div style="display:inline-block; margin: 0 -2px; width:100%; min-width:200px; max-width:330px; vertical-align:top;" class="stack-column">
<table role="presentation" cellspacing="0" cellpadding="0" border="0" width="100%">
<tr>
<td style="padding: 0px 10px 20px 10px;">
<table role="presentation" cellspacing="0" cellpadding="0" border="0" width="100%" style="font-size: 14px;text-align: left;">
<!-- Product Image : BEGIN -->
<tr>
<td>
<a target="_blank"  href=""  target="_blank">
<img src="https://mediacdn.espssl.com/9543/2022/11-November/11_12_flashSale/en/rca-Tv.png" width="310" height="" border="0" alt="RCA 24 inch 720p TV." class="center-on-narrow" style="width: 100%; max-width: 310px; height: auto; background: #dddddd; font-family: sans-serif; font-size: 15px; line-height: 20px; color: #555555; border-collapse: collapse; display: block;">
</a>
</td>
</tr>
<!-- Product Image : END -->
<!-- Clear Spacer : BEGIN -->
<tr>
<td aria-hidden="true" height="30" style="font-size: 0px; line-height: 0px;">&nbsp;
</td>
</tr>
<!-- Clear Spacer : END -->
<!-- Description + CTA : BEGIN -->
<tr>
<td style="font-family: sans-serif; font-size: 15px; color: #404041; padding-top: 0px; text-align:center" align="center" class="stack-column-center">
<p style="margin: 0; padding-bottom: 15px; font-family: sans-serif;">24&quot; 720p TV<br>
<strong>
<span style="color:#e9292c; font-size: 16px; line-height: 40px; font-family: sans-serif;">SAVE $100</span><br>
<span style="font-size: 25px; line-height: 30px; font-weight: 700; font-family: sans-serif;">$99.95</span><span><sup>++</sup></span><br/>
</strong>
<span style="color:#888888; font-size: 11px; line-height: 11px; font-family: sans-serif;">After Discount</span>
</p>
<table role="presentation" cellspacing="0" cellpadding="0" border="0" align="center" width="168" height="44" style="margin: auto; max-width: 168px; height: auto;">
<tr>
<td>
<a target="_blank"  href=""  target="_blank" style="background: #E9292C;text-align: center; text-decoration: none; display: block; font-weight: bold;" class="button-a">
<img src="https://mediacdn.espssl.com/9543/Partials/en/shop.png" width="168" height="" border="0" alt="SHOP NOW." class="center-on-narrow" style="width: 100%; max-width: 168px; height: auto; background: #dddddd; font-family: sans-serif; font-size: 15px; line-height: 20px; color: #555555; border-collapse: collapse; display: block;">
</a>
</td>
</tr>
</table>
</td>
</tr>
<!-- Description + CTA : END -->
</table>
</td>
</tr>
</table>
</div>
<!--[if mso]>
</td>
</tr>
</table>
<![endif]-->
</td>
</tr>
</table>
<!--[if mso]>
</td>
</tr>
</table>
<![endif]-->
</td>
</tr>
<!-- 2 Even Columns : END -->
<!-- Clear Spacer : BEGIN -->
<tr>
<td bgcolor="#FFFFFF" aria-hidden="true" height="20" style="font-size: 0px; line-height: 0px; background-color: #ffffff !important;">
&nbsp;
</td>
</tr>
<!-- Clear Spacer : END -->
<!-- Hero Image, Flush : BEGIN -->
<tr>
<td bgcolor="#FFFFFF">
<a target="_blank"  href=""  target="_blank">
<img src="https://mediacdn.espssl.com/9543/2022/11-November/11_12_flashSale/en/Fireplace-Image.jpg" width="680" height="" alt="60 inch Rasko Fireplace TV Stand." border="0" style="width: 100%; max-width: 680px; height: auto; font-family: sans-serif; font-size: 15px; line-height: 15px; color: #555555; margin: auto; border-collapse: collapse; display: block; text-align: center;" class="g-img">
</a>
</td>
</tr>
<!-- Hero Image, Flush : END -->
<!-- Hero Image, Flush : BEGIN -->
<tr>
<td bgcolor="#FFFFFF">
<a target="_blank"  href=""  target="_blank">
<img src="https://mediacdn.espssl.com/9543/2022/11-November/11_12_flashSale/en/Fireplace-Image-2.png" width="680" height="" alt="60 inch Rasko Fireplace TV Stand." border="0" style="width: 100%; max-width: 680px; height: auto; font-family: sans-serif; font-size: 15px; line-height: 15px; color: #555555; margin: auto; border-collapse: collapse; display: block; text-align: center;" class="g-img">
</a>
</td>
</tr>
<!-- Hero Image, Flush : END -->
<!-- Clear Spacer : BEGIN -->
<tr>
<td bgcolor="#FFFFFF" aria-hidden="true" height="20" style="font-size: 0px; line-height: 0px; background-color: #ffffff !important;">
&nbsp;
</td>
</tr>
<!-- Clear Spacer : END -->
<!-- Hero Image, Flush : BEGIN -->
<tr>
<td bgcolor="#FFFFFF">
<a target="_blank"  href=""  target="_blank">
<img src="https://mediacdn.espssl.com/9543/2022/11-November/11_12_flashSale/en/Price-Guarantee.png" width="680" height="" alt="If the price drops before the end of the year we'll refund the difference." border="0" style="width: 100%; max-width: 680px; height: auto; font-family: sans-serif; font-size: 15px; line-height: 15px; color: #555555; margin: auto; border-collapse: collapse; display: block; text-align: center;" class="g-img">
</a>
</td>
</tr>
<!-- Hero Image, Flush : END -->
<!-- Clear Spacer : BEGIN -->
<tr>
<td bgcolor="#FFFFFF" aria-hidden="true" height="20" style="font-size: 0px; line-height: 0px; background-color: #ffffff !important;">
&nbsp;
</td>
</tr>
<!-- Clear Spacer : END -->
<!-- 2 Even Columns : BEGIN -->
<tr>
<td height="100%" valign="top" width="100%" style="background-color: #ffffff; border: 3px solid #cfd3d4;">
<!--[if mso]>
<table align="center" role="presentation" border="0" cellspacing="0" cellpadding="0" width="660">
<tr>
<td valign="top" width="660">
<![endif]-->
<table align="center" role="presentation" border="0" cellpadding="0" cellspacing="0" width="100%" style="max-width:660px;">
<tr>
<td align="center" valign="top" style="font-size: 0; padding: 40px 0 20px 0;">
<!--[if mso]>
<table role="presentation" border="0" cellspacing="0" cellpadding="0" width="660">
<tr>
<td valign="top" width="330">
<![endif]-->
<div style="display:inline-block; margin: 0 -2px; width:100%; min-width:200px; max-width:330px; vertical-align:top;" class="stack-column">
<table role="presentation" cellspacing="0" cellpadding="0" border="0" width="100%">
<tr>
<td style="padding: 0px 10px 20px 10px;">
<table role="presentation" cellspacing="0" cellpadding="0" border="0" width="100%" style="font-size: 14px;text-align: left;">
<!-- Product Image : BEGIN -->
<tr>
<td>
<a target="_blank"  href=""  target="_blank">
<img src="https://mediacdn.espssl.com/9543/2022/11-November/11_12_flashSale/en/hall-tree.png" width="310" height="" border="0" alt="Percy hall tree." class="center-on-narrow" style="width: 100%; max-width: 310px; height: auto; background: #dddddd; font-family: sans-serif; font-size: 15px; line-height: 20px; color: #555555; border-collapse: collapse; display: block;">
</a>
</td>
</tr>
<!-- Product Image : END -->
<!-- Clear Spacer : BEGIN -->
<tr>
<td aria-hidden="true" height="30" style="font-size: 0px; line-height: 0px;">&nbsp;
</td>
</tr>
<!-- Clear Spacer : END -->
<!-- Description + CTA : BEGIN -->
<tr>
<td style="font-family: sans-serif; font-size: 15px; color: #404041; padding-top: 0px; text-align:center" align="center" class="stack-column-center">
<p style="margin: 0; padding-bottom: 15px; font-family: sans-serif;">Percy Hall Tree<br>
<strong>
<span style="color:#e9292c; font-size: 16px; line-height: 40px; font-family: sans-serif;">SAVE $70</span><br>
<span style="font-size: 25px; line-height: 30px; font-weight: 700; font-family: sans-serif;">$299.95</span><br>
</strong>
<span style="color:#888888; font-size: 11px; line-height: 11px; font-family: sans-serif;">After Discount</span>
</p>
<table role="presentation" cellspacing="0" cellpadding="0" border="0" align="center" width="168" height="44" style="margin: auto; max-width: 168px; height: auto;">
<tr>
<td>
<a target="_blank"  href=""  target="_blank" style="background: #E9292C;text-align: center; text-decoration: none; display: block; font-weight: bold;" class="button-a">
<img src="https://mediacdn.espssl.com/9543/Partials/en/shop.png" width="168" height="" border="0" alt="SHOP NOW." class="center-on-narrow" style="width: 100%; max-width: 168px; height: auto; background: #dddddd; font-family: sans-serif; font-size: 15px; line-height: 20px; color: #555555; border-collapse: collapse; display: block;">
</a>
</td>
</tr>
</table>
</td>
</tr>
<!-- Description + CTA : END -->
</table>
</td>
</tr>
</table>
</div>
<!--[if mso]>
</td>
<td valign="top" width="330">
<![endif]-->
<div style="display:inline-block; margin: 0 -2px; width:100%; min-width:200px; max-width:330px; vertical-align:top;" class="stack-column">
<table role="presentation" cellspacing="0" cellpadding="0" border="0" width="100%">
<tr>
<td style="padding: 0px 10px 20px 10px;">
<table role="presentation" cellspacing="0" cellpadding="0" border="0" width="100%" style="font-size: 14px;text-align: left;">
<!-- Product Image : BEGIN -->
<tr>
<td>
<a target="_blank"  href=""  target="_blank">
<img src="https://mediacdn.espssl.com/9543/2022/11-November/11_12_flashSale/en/Accent-Cabinet.png" width="310" height="" border="0" alt="Madison accent cabinet." class="center-on-narrow" style="width: 100%; max-width: 310px; height: auto; background: #dddddd; font-family: sans-serif; font-size: 15px; line-height: 20px; color: #555555; border-collapse: collapse; display: block;">
</a>
</td>
</tr>
<!-- Product Image : END -->
<!-- Clear Spacer : BEGIN -->
<tr>
<td aria-hidden="true" height="30" style="font-size: 0px; line-height: 0px;">&nbsp;
</td>
</tr>
<!-- Clear Spacer : END -->
<!-- Description + CTA : BEGIN -->
<tr>
<td style="font-family: sans-serif; font-size: 15px; color: #404041; padding-top: 0px; text-align:center" align="center" class="stack-column-center">
<p style="margin: 0; padding-bottom: 15px; font-family: sans-serif;">Madison Accent Cabinet<br>
<strong>
<span style="color:#e9292c; font-size: 16px; line-height: 40px; font-family: sans-serif;">SAVE $50</span><br>
<span style="font-size: 25px; line-height: 30px; font-weight: 700; font-family: sans-serif;">$599.95</span><br>
</strong>
<span style="color:#888888; font-size: 11px; line-height: 11px; font-family: sans-serif;">After Discount</span>
</p>
<table role="presentation" cellspacing="0" cellpadding="0" border="0" align="center" width="168" height="44" style="margin: auto; max-width: 168px; height: auto;">
<tr>
<td>
<a target="_blank"  href=""  target="_blank" style="background: #E9292C;text-align: center; text-decoration: none; display: block; font-weight: bold;" class="button-a">
<img src="https://mediacdn.espssl.com/9543/Partials/en/shop.png" width="168" height="" border="0" alt="SHOP NOW." class="center-on-narrow" style="width: 100%; max-width: 168px; height: auto; background: #dddddd; font-family: sans-serif; font-size: 15px; line-height: 20px; color: #555555; border-collapse: collapse; display: block;">
</a>
</td>
</tr>
</table>
</td>
</tr>
<!-- Description + CTA : END -->
</table>
</td>
</tr>
</table>
</div>
<!--[if mso]>
</td>
</tr>
</table>
<![endif]-->
</td>
</tr>
</table>
<!--[if mso]>
</td>
</tr>
</table>
<![endif]-->
</td>
</tr>
<!-- 2 Even Columns : END -->
<!-- Clear Spacer : BEGIN -->
<tr>
<td bgcolor="#FFFFFF" aria-hidden="true" height="20" style="font-size: 0px; line-height: 0px; background-color: #ffffff !important;">
&nbsp;
</td>
</tr>
<!-- Clear Spacer : END -->
<!-- Hero Image, Flush : BEGIN -->
<tr>
<td bgcolor="#FFFFFF">
<a target="_blank"  href=""  target="_blank">
<img src="https://mediacdn.espssl.com/9543/2022/11-November/11_12_flashSale/en/CTA.png" width="680" height="" alt="See all deals." border="0" style="width: 100%; max-width: 680px; height: auto; font-family: sans-serif; font-size: 15px; line-height: 15px; color: #555555; margin: auto; border-collapse: collapse; display: block; text-align: center;" class="g-img">
</a>
</td>
</tr>
<!-- Hero Image, Flush : END -->
<!-- Hero Image, Flush : BEGIN -->
<tr>
<td bgcolor="#FFFFFF">
<a target="_blank"  href=""  target="_blank">
<img src="https://mediacdn.espssl.com/9543/2022/10-October/10_14_bigOne_3DayStart/en%20nat/bigOne_3Day_EN_11.gif" width="680" height="" alt="Online exclusives, direct ship from our vendors to your door." border="0" style="width: 100%; max-width: 680px; height: auto; font-family: sans-serif; font-size: 15px; line-height: 15px; color: #555555; margin: auto; border-collapse: collapse; display: block; text-align: center;" class="g-img">
</a>
</td>
</tr>
<!-- Hero Image, Flush : END -->
<!-- Clear Spacer : BEGIN -->
<tr>
<td aria-hidden="true" height="14" bgcolor="#F1F1F1" style="font-size: 1px; line-height: 1px; background-color: #F1F1F1 !important;">&nbsp;
</td>
</tr>
<!-- Clear Spacer : END -->
<!-- 2 Even Columns : BEGIN -->
<tr>
<td height="100%" valign="top" width="100%" style="background-color: #f1f1f1;">
<!--[if mso]>
<table align="center" role="presentation" border="0" cellspacing="0" cellpadding="0" width="680">
<tr>
<td valign="top" width="680">
<![endif]-->
<table align="center" role="presentation" border="0" cellpadding="0" cellspacing="0" width="100%" style="max-width:680px;">
<tr>
<td align="center" valign="top" style="font-size:0;">
<!--[if mso]>
<table role="presentation" border="0" cellspacing="0" cellpadding="0" width="680">
<tr>
<td valign="top" width="340">
<![endif]-->
<div style="display:inline-block; width:100%; min-width:200px; max-width:340px; vertical-align:top;" class="stack-column">
<table role="presentation" cellspacing="0" cellpadding="0" border="0" width="100%">
<tr>
<td>
<table role="presentation" cellspacing="0" cellpadding="0" border="0" width="100%" style="font-size: 14px;text-align: left;">
<tr>
<td>
<img src="https://mediacdn.espssl.com/9543/Partials/en/follow.png" width="340" height="57" border="0" alt="Follow us for decor tips, contests, and more." class="center-on-narrow" style="width: 100%; max-width: 340; height: auto; background: #dddddd; font-family: sans-serif; font-size: 15px; line-height: 20px; color: #555555; border-collapse: collapse; display: block;">
</td>
</tr>
</table>
</td>
</tr>
</table>
</div>
<!--[if mso]>
</td>
<td valign="top" width="330">
<![endif]-->
<div style="display:inline-block; width:100%; min-width:200px; max-width:340px; vertical-align:top;" class="stack-column">
<table role="presentation" cellspacing="0" cellpadding="0" border="0" width="100%">
<tr>
<td>
<table role="presentation" cellspacing="0" cellpadding="0" border="0" width="100%" style="font-size: 14px;text-align: left;">
<tr>
<td><a target="_blank"  href=""  target="_blank"><img src="https://mediacdn.espssl.com/9543/Partials/en/twitter.png" width="85" height="57" border="0" alt="Twitter." class="center-on-narrow" style="width: 100%; max-width: 85px; height: auto; background: #dddddd; font-family: sans-serif; font-size: 15px; line-height: 20px; color: #555555; border-collapse: collapse; display: block;"></a>
</td>
<td><a target="_blank"  href=""  target="_blank"><img src="https://mediacdn.espssl.com/9543/Partials/en/facebook.png" width="85" height="57" border="0" alt="Facebook." class="center-on-narrow" style="width: 100%; max-width: 85px; height: auto; background: #dddddd; font-family: sans-serif; font-size: 15px; line-height: 20px; color: #555555; border-collapse: collapse; display: block;"></a>
</td>
<td><a target="_blank"  href=""  target="_blank"><img src="https://mediacdn.espssl.com/9543/Partials/en/pinterest.png" width="85" height="57" border="0" alt="Pinterest." class="center-on-narrow" style="width: 100%; max-width: 85px; height: auto; background: #dddddd; font-family: sans-serif; font-size: 15px; line-height: 20px; color: #555555; border-collapse: collapse; display: block;"></a>
</td>
<td><a target="_blank"  href=""  target="_blank"><img src="https://mediacdn.espssl.com/9543/Partials/en/instagram.png" width="85" height="57" border="0" alt="Instagram." class="center-on-narrow" style="width: 100%; max-width: 85px; height: auto; background: #dddddd; font-family: sans-serif; font-size: 15px; line-height: 20px; color: #555555; border-collapse: collapse; display: block;"></a>
</td>
</tr>
</table>
</td>
</tr>
</table>
</div>
<!--[if mso]>
</td>
</tr>
</table>
<![endif]-->
</td>
</tr>
</table>
<!--[if mso]>
</td>
</tr>
</table>
<![endif]-->
</td>
</tr>
<!-- 2 Even Columns : END -->
<!-- Clear Spacer : BEGIN -->
<tr>
<td aria-hidden="true" height="14" bgcolor="#F1F1F1" style="font-size: 1px; line-height: 1px; background-color: #F1F1F1 !important;">&nbsp;
</td>
</tr>
<!-- Clear Spacer : END -->
<!-- Clear Spacer : BEGIN -->
<tr>
<td bgcolor="#FFFFFF" aria-hidden="true" height="40" style="font-size: 0px; line-height: 0px; background-color: #ffffff !important;">
&nbsp;
</td>
</tr>
<!-- Clear Spacer : END -->
</table>
<!-- Email Body : END -->
<!--[if mso]>
</td>
</tr>
</table>
<![endif]-->
</div>
<!-- Email Footer Logo : BEGIN -->
<table role="presentation" cellspacing="0" cellpadding="0" border="0" width="100%" style="background-color: #FFFFFF;">
<tr>
<td valign="top">
<div align="center" style="max-width: 680px; margin: 0 auto;" class="email-container header">
<!--[if mso]>
<table role="presentation" cellspacing="0" cellpadding="0" border="0" width="680" align="center">
<tr>
<td>
<![endif]-->
<table role="presentation" cellspacing="0" cellpadding="0" border="0" width="100%" style="margin: 0 auto;">
<tr>
<td style="padding: 0; text-align: center;">
<!--[if mso]>
<table align="center" role="presentation" border="0" cellspacing="0" cellpadding="0" width="680">
<tr>
<td valign="top" width="680">
<![endif]-->
<table align="center" role="presentation" border="0" cellpadding="0" cellspacing="0" width="100%" style="max-width:680px;" class="logo">
<tr>
<td style="font-family: sans-serif; font-size: 12px; line-height: 16px; text-align: left; color: #606060;">
<p style="margin: 0 0 10px 0; font-family: sans-serif;" class="exclusions">*O.A.C. On your Brick FlexitiCard. Offer valid November 1-17, 2022. Minimum product purchase of $250 (excluding taxes) is required. Only available to Canadian residents. Delivery charges, applicable taxes, administration fees (not applicable in Quebec), and other fees or charges that apply are due at the time of purchase. For no payment deferred plans: no payments are required during the promotional period, except for payment protection insurance premiums and taxes, if applicable, which are billed monthly. No interest will accrue during the promotional period, however, interest at the cardholder agreement annual interest rate (Account AIR) applies if
 the balance is not paid in full by the promotion expiry date or if the promotion is cancelled due to payment default on the account, and a deferral fee of $59.99 - $99.99 may apply. For no interest equal monthly payment plans: no interest will accrue during the promotional period and monthly payments include premiums for payment protection insurance, fees and taxes, if applicable. If any payment is missed, all promotional offers on the account may be cancelled and upon cancellation, interest will be calculated at the Account AIR. Initial Account AIR is disclosed upon approval, varies based on cardholder's creditworthiness at time
 of application. Current Account AIRs are 31.99%, 35% (max for Quebec residents), and 39.99%. Any balance at the end of the promotional period bears interest at the Account AIR. Administration fees of $99.95 apply on "Do not Pay until 2024" (14 month) plans and $149.95 on "Equal Monthly Payments Until 2025" (26 month) plans (excluding Quebec residents). Annual fee of $39.99 applies for residents of Quebec. No payment plans are not available for Quebec residents, however, other deferred interest promotions are available. Promotions and terms may be changed without notice. Eligibility for promotions varies with cardholder creditworthiness. Financing provided by Flexiti Financial. B.C. Licence
 No. 83660. Flexiti, FlexitiCard and the Flexiti design are trademarks of Flexiti Financial Inc. Product and service availability, pricing, selection and promotional offers may vary by location and may not be exactly as illustrated. We reserve the right to limit quantities by store and per purchase. +This offer cannot be combined with any other discount or free gift purchase, sale, or other promotion, unless otherwise specified. ++An Electronic Recycling Surcharge will be added where applicable. For complete details visit <span style="font-family: sans-serif; font-size: 12px; line-height: 16px;">thebrick.com</span> or see in store. Offer effective <span style="font-family: sans-serif; font-size: 12px; line-height: 16px;">November 12-13</span>, 2022 unless otherwise&nbsp;indicated.<br><br>
</p>
</td>
</tr>
</table>
<!--[if mso]>
</td>
</tr>
</table>
<![endif]-->
</td>
</tr>
</table>
<!--[if mso]>
</td>
</tr>
</table>
<![endif]-->
</div>
</td>
</tr>
<tr>
<td valign="top">
<div align="center" style="max-width: 680px; margin: 0 auto;" class="email-container header">
<!--[if mso]>
<table role="presentation" cellspacing="0" cellpadding="0" border="0" width="680" align="center">
<tr>
<td>
<![endif]-->
<table role="presentation" cellspacing="0" cellpadding="0" border="0" width="100%" style="margin: 0 auto;">
<tr>
<td style="padding: 0; text-align: left;">
<!--[if mso]>
<table align="left" role="presentation" border="0" cellspacing="0" cellpadding="0" width="680">
<tr>
<td valign="top" width="680">
<![endif]-->
<table align="left" role="presentation" border="0" cellpadding="0" cellspacing="0" width="100%" style="max-width:680px;" class="logo">
<tr>
<td style="font-family: sans-serif; font-size: 15px; line-height: 20px; text-align: left; color: #777777;">
<webversion><a target="_blank"  href=""  target="_blank" style="color: #777777; text-decoration: underline; font-weight: bold; font-family: sans-serif;">Change My Preferences</a></webversion>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<webversion><a target="_blank"  href=""  target="_blank" style="color: #777777; text-decoration: underline; font-weight: bold; font-family: sans-serif;">Mettre &agrave; jour mon langue et&nbsp;pr&eacute;f&eacute;rences</a></webversion>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<webversion><a target="_blank"  href=""  target="_blank" style="color: #777777; text-decoration: underline; font-weight: bold; font-family: sans-serif;">Unsubscribe</a></webversion>
<br><br><br>
</td>
</tr>
</table>
<!--[if mso]>
</td>
</tr>
</table>
<![endif]-->
</td>
</tr>
</table>
<!--[if mso]>
</td>
</tr>
</table>
<![endif]-->
</div>
</td>
</tr>
<tr>
<td valign="top">
<div align="center" style="max-width: 680px; margin: 0 auto;" class="email-container header">
<!--[if mso]>
<table role="presentation" cellspacing="0" cellpadding="0" border="0" width="680" align="center">
<tr>
<td>
<![endif]-->
<table role="presentation" cellspacing="0" cellpadding="0" border="0" width="100%" style="margin: 0 auto;">
<tr>
<td style="padding: 0; text-align: center;">
<!--[if mso]>
<table align="center" role="presentation" border="0" cellspacing="0" cellpadding="0" width="680">
<tr>
<td valign="top" width="680">
<![endif]-->
<table align="center" role="presentation" border="0" cellpadding="0" cellspacing="0" width="100%" style="max-width:680px;" class="logo">
<tr>
<td style="font-family: sans-serif; font-size: 11px; line-height: 15px; text-align: left; color: #888888;">
<p style="margin: 0 0 10px 0;" class="exclusions">This email was sent to <span style="font-family: sans-serif; font-size: 11px; line-height: 15px; text-align: left; color: #888888;" class="exclusions">previews@email.com</span> by The Brick. To ensure delivery to your inbox, please add <span style="font-family: sans-serif; font-size: 11px; line-height: 15px; text-align: left; color: #888888;" class="exclusions">thebrick@save.thebrick.com</span> to your address book. We take great care in producing personalized emails for our ebrick&trade; members. However, typographical, illustrative or pricing errors may occur. We reserve the right to correct any errors at time of purchase. (Version: EN NAT)</p>
<br><br>
</td>
</tr>
</table>
<!--[if mso]>
</td>
</tr>
</table>
<![endif]-->
</td>
</tr>
</table>
<!--[if mso]>
</td>
</tr>
</table>
<![endif]-->
</div>
</td>
</tr>
</table>
<!-- Email Footer : END -->
<!-- Full Bleed Background Section : BEGIN -->
<table role="presentation" cellspacing="0" cellpadding="0" border="0" width="100%" style="background-color: #303030;">
<tr>
<td valign="top">
<div align="center" style="max-width: 680px; margin: 0 auto;" class="email-container">
<!--[if mso]>
<table role="presentation" cellspacing="0" cellpadding="0" border="0" width="680" align="center">
<tr>
<td>
<![endif]-->
<table role="presentation" cellspacing="0" cellpadding="0" border="0" width="100%" class="logo">
<!-- Clear Spacer : BEGIN -->
<tr>
<td aria-hidden="true" height="20" style="font-size: 0px; line-height: 0px;">&nbsp;
</td>
</tr>
<!-- Clear Spacer : END -->
<tr>
<td>
<p style="text-align: center; font-family: sans-serif; font-size: 15px; line-height: 18px; color: #CCCCCC; margin: 0;">
&copy; 2022 The Brick Warehouse LP &nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp; <span class="unstyle-auto-detected-links">16930&nbsp;-&nbsp;114&nbsp;Ave. Edmonton,&nbsp;AB&nbsp;T5M&nbsp;3S2</span><br>
<a target="_blank"  href=""  target="_blank" style="font-size: 12px; color: #CCCCCC;">Privacy Policy</a> &nbsp;&nbsp; | &nbsp;&nbsp; <a target="_blank"  href=""  target="_blank" style="font-size: 12px; color: #CCCCCC;">Terms and Conditions</a> &nbsp;&nbsp; | &nbsp;&nbsp; <a target="_blank"  href=""  target=
"_blank" style="font-size: 12px; color: #CCCCCC;">Financing</a></p>
</td>
</tr>
<!-- Clear Spacer : BEGIN -->
<tr>
<td aria-hidden="true" height="20" style="font-size: 0px; line-height: 0px;">&nbsp;
</td>
</tr>
<!-- Clear Spacer : END -->
</table>
<!--[if mso]>
</td>
</tr>
</table>
<![endif]-->
</div>
</td>
</tr>
</table>
<!-- Full Bleed Background Section : END -->
<!--[if mso | IE]>
</td>
</tr>
</table>
<![endif]-->
</center>

</html>