Inboxes

Create an inbox to save and track emails. It's free!

+New inbox

0123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional //EN" "//www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="//www.w3.org/1999/xhtml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:v="urn:schemas-microsoft-com:vml">
 <head>
  <!--[if gte mso 9]><xml><o:OfficeDocumentSettings><o:AllowPNG/><o:PixelsPerInch>96</o:PixelsPerInch></o:OfficeDocumentSettings></xml><![endif]-->
  <meta content="text/html; charset=utf-8" http-equiv="Content-Type"/>
  <meta content="width=device-width" name="viewport"/>
  <!--[if !mso]><!-->
  <meta content="IE=edge" http-equiv="X-UA-Compatible"/>
  <!--<![endif]-->
  <title>
  </title>
  <!--[if !mso]><!-->
  <!--<![endif]-->
  <style type="text/css">
   body {
			margin: 0;
			padding: 0;
		}

		table,
		td,
		tr {
			vertical-align: top;
			border-collapse: collapse;
		}

		* {
			line-height: inherit;
		}

		a[x-apple-data-detectors=true] {
			color: inherit !important;
			text-decoration: none !important;
		}
  </style>
  <style id="media-query" type="text/css">
   @media (max-width: 660px) {

			.block-grid,
			.col {
				min-width: 320px !important;
				max-width: 100% !important;
				display: block !important;
			}

			.block-grid {
				width: 100% !important;
			}

			.col {
				width: 100% !important;
			}

			.col>div {
				margin: 0 auto;
			}

			img.fullwidth,
			img.fullwidthOnMobile {
				max-width: 100% !important;
			}

			.no-stack .col {
				min-width: 0 !important;
				display: table-cell !important;
			}

			.no-stack.two-up .col {
				width: 50% !important;
			}

			.no-stack .col.num4 {
				width: 33% !important;
			}

			.no-stack .col.num8 {
				width: 66% !important;
			}

			.no-stack .col.num4 {
				width: 33% !important;
			}

			.no-stack .col.num3 {
				width: 25% !important;
			}

			.no-stack .col.num6 {
				width: 50% !important;
			}

			.no-stack .col.num9 {
				width: 75% !important;
			}

			.video-block {
				max-width: none !important;
			}

			.mobile_hide {
				min-height: 0px;
				max-height: 0px;
				max-width: 0px;
				display: none;
				overflow: hidden;
				font-size: 0px;
			}

			.desktop_hide {
				display: block !important;
				max-height: none !important;
			}
		}
  </style>
 </head>
 <body class="clean-body" style="margin: 0; padding: 0; -webkit-text-size-adjust: 100%; background-color: #FFFFFF;">
  <!--[if IE]><div class="ie-browser"><![endif]-->
  <table bgcolor="#FFFFFF" cellpadding="0" cellspacing="0" class="nl-container" role="presentation" style="table-layout: fixed; vertical-align: top; min-width: 320px; Margin: 0 auto; border-spacing: 0; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #FFFFFF; width: 100%;" valign="top" width="100%">
   <tbody>
    <tr style="vertical-align: top;" valign="top">
     <td style="word-break: break-word; vertical-align: top;" valign="top">
      <!--[if (mso)|(IE)]><table width="100%" cellpadding="0" cellspacing="0" border="0"><tr><td align="center" style="background-color:#FFFFFF"><![endif]-->
      <div style="background-color:transparent;">
       <div class="block-grid" style="Margin: 0 auto; min-width: 320px; max-width: 640px; overflow-wrap: break-word; word-wrap: break-word; word-break: break-word; background-color: #ffffff;">
        <div style="border-collapse: collapse;display: table;width: 100%;background-color:#ffffff;">
         <!--[if (mso)|(IE)]><table width="100%" cellpadding="0" cellspacing="0" border="0" style="background-color:transparent;"><tr><td align="center"><table cellpadding="0" cellspacing="0" border="0" style="width:640px"><tr class="layout-full-width" style="background-color:#ffffff"><![endif]-->
         <!--[if (mso)|(IE)]><td align="center" width="640" style="background-color:#ffffff;width:640px; border-top: 0px dotted transparent; border-left: 0px dotted transparent; border-bottom: 0px dotted transparent; border-right: 0px dotted transparent;" valign="top"><table width="100%" cellpadding="0" cellspacing="0" border="0"><tr><td style="padding-right: 0px; padding-left: 0px; padding-top:0px; padding-bottom:0px;"><![endif]-->
         <div class="col num12" style="min-width: 320px; max-width: 640px; display: table-cell; vertical-align: top; width: 640px;">
          <div style="width:100% !important;">
           <!--[if (!mso)&(!IE)]><!-->
           <div style="border-top:0px dotted transparent; border-left:0px dotted transparent; border-bottom:0px dotted transparent; border-right:0px dotted transparent; padding-top:0px; padding-bottom:0px; padding-right: 0px; padding-left: 0px;">
            <!--<![endif]-->
            <div style="font-size:16px;text-align:center;font-family:Arial, 'Helvetica Neue', Helvetica, sans-serif">
             <style>
              .staplesHDR td {
														text-size-adjust: none !important;
														-webkit-text-size-adjust: none !important;
														-ms-text-size-adjust: none !important;
													}
             </style>
             <style>
              .staplesHDR td {
														font-family: Arial, Verdana, sans-serif;
													}

													.staplesHDR a {
														text-decoration: none !important;
													}

													a:link,
													a:visited,
													a:active,
													a:hover {
														color: #000000;
													}

													a.underline {
														text-decoration: underline !important;
													}

													a.underline:hover {
														text-decoration: underline !important;
													}

													.staplesHDR table {
														font-size: 0 !important;
														line-height: 0 !important;
													}

													@media screen and (max-width:640px) {
														.w320 {
															width: 320px !important;
														}

														.w190 {
															width: 190px !important;
														}

														.w65 {
															width: 65px !important;
														}

														.hei35 {
															height: 35px !important;
														}

														.hei4 {
															height: 4px !important;
														}

														.remove {
															display: none !important;
														}

														.underline {
															text-decoration: underline !important;
														}

														.appBanner {
															background-image: url('https://inboxflows.com/_/image/http%253A%252F%252Fmedia.staples.com%252Femail%252Ftemplates%252Fusso%252Fa2%252Fmobile_app_banner.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRm1lZGlhLnN0YXBsZSJ9:1kXNYe:hLX33PMIpRrFDPpz0s9YgxDwNA5Mf5JXGSK_o4YgpEk') !important;
														}

														.dkGray {
															color: #666666 !important;
														}

														.borderGray {
															background-color: #e3e3e3 !important;
														}

														.left {
															text-align: left !important;
														}
													}
             </style>
             <style>
              /* Vendor Prefixes and CSS not supported within gmail */
													@media screen and (max-width:640px) {
														.flexbox {
															display: -webkit-box !important;
															display: -webkit-flex !important;
															display: -moz-box !important;
															display: -ms-flexbox !important;
															display: flex !important;
															-webkit-flex-flow: row wrap !important;
															-moz-flex-flow: row wrap !important;
															-ms-flex-flow: row wrap !important;
															flex-flow: row wrap !important;
														}

														.order1 {
															width: 100% !important;
															-webkit-order: 1 !important;
															order: 1 !important;
															float: left !important;
														}

														.order2 {
															width: 100% !important;
															-webkit-order: 2 !important;
															order: 2 !important;
															float: left !important;
														}

														.order3 {
															width: 100% !important;
															-webkit-order: 3 !important;
															order: 3 !important;
															float: left !important;
														}
													}
             </style>
             <table cellpadding="0" cellspacing="0" class="staplesHDR" width="100%">
              <tr>
               <td align="center" bgcolor="#ffffff">
                <table bgcolor="#ffffff" cellpadding="0" cellspacing="0" class="w320" style="width:640px" width="640">
                 <tr>
                  <td align="center">
                   <table cellpadding="0" cellspacing="0" class="w320" width="590">
                    <tr>
                     <td colspan="2">
                      <img class="w320 hei4" height="1" src="https://inboxflows.com/_/image/http%253A%252F%252Fmedia.staples.com%252Femail%252Ftemplates%252Fusso%252Fa2%252F4f49925e531f5e92bbf187fb03fdd933.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRm1lZGlhLnN0YXBsZSJ9:1kXNYe:hLX33PMIpRrFDPpz0s9YgxDwNA5Mf5JXGSK_o4YgpEk" style="display:block;" width="1"/>
                     </td>
                    </tr>
                    <tr>
                     <td align="left" class="w220" height="20" style="line-height:14px;" valign="middle" width="490">
                      <a class="dkGray" style="font-family:Arial, Verdana, sans-serif; font-size:11px; line-height:14px; color:#999999; text-decoration:none;">
                       Shop our biggest deals of the season.
                      </a>
                     </td>
                     <td align="right" height="20" style="line-height:14px;" valign="middle" width="100">
                     </td>
                    </tr>
                    <tr>
                     <td colspan="2">
                      <img class="w320 hei4" height="1" src="https://inboxflows.com/_/image/http%253A%252F%252Fmedia.staples.com%252Femail%252Ftemplates%252Fusso%252Fa2%252F4f49925e531f5e92bbf187fb03fdd933.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRm1lZGlhLnN0YXBsZSJ9:1kXNYe:hLX33PMIpRrFDPpz0s9YgxDwNA5Mf5JXGSK_o4YgpEk" style="display:block;" width="1"/>
                     </td>
                    </tr>
                    <tr>
                     <td class="appBanner" colspan="2">
                      <a>
                       <img alt="Download our mobile App." border="0" class="hei35" height="1" src="https://inboxflows.com/_/image/http%253A%252F%252Fmedia.staples.com%252Femail%252Ftemplates%252Fusso%252Fa2%252F4f49925e531f5e92bbf187fb03fdd933.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRm1lZGlhLnN0YXBsZSJ9:1kXNYe:hLX33PMIpRrFDPpz0s9YgxDwNA5Mf5JXGSK_o4YgpEk" style="display:block;" width="270"/>
                      </a>
                     </td>
                    </tr>
                    <tr>
                     <td colspan="2">
                      <img class="w320 hei4" height="3" src="https://inboxflows.com/_/image/http%253A%252F%252Fmedia.staples.com%252Femail%252Ftemplates%252Fusso%252Fa2%252F4f49925e531f5e92bbf187fb03fdd933.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRm1lZGlhLnN0YXBsZSJ9:1kXNYe:hLX33PMIpRrFDPpz0s9YgxDwNA5Mf5JXGSK_o4YgpEk" style="display:block;" width="1"/>
                     </td>
                    </tr>
                   </table>
                   <table cellpadding="0" cellspacing="0" class="w320" width="640">
                    <tr class="flexbox">
                     <td align="left" class="order1" valign="bottom" width="320">
                      <table cellpadding="0" cellspacing="0" width="320">
                       <tr>
                        <td class="remove" width="25">
                         <img height="1" src="https://inboxflows.com/_/image/http%253A%252F%252Fmedia.staples.com%252Femail%252Ftemplates%252Fusso%252Fa2%252F4f49925e531f5e92bbf187fb03fdd933.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRm1lZGlhLnN0YXBsZSJ9:1kXNYe:hLX33PMIpRrFDPpz0s9YgxDwNA5Mf5JXGSK_o4YgpEk" style="display:block;" width="25"/>
                        </td>
                        <td align="center">
                         <table cellpadding="0" cellspacing="0">
                          <tr>
                           <td>
                            <table cellpadding="0" cellspacing="0">
                             <tr>
                              <td>
                               <img height="20" src="https://inboxflows.com/_/image/http%253A%252F%252Fmedia.staples.com%252Femail%252Ftemplates%252Fusso%252Fa2%252F4f49925e531f5e92bbf187fb03fdd933.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRm1lZGlhLnN0YXBsZSJ9:1kXNYe:hLX33PMIpRrFDPpz0s9YgxDwNA5Mf5JXGSK_o4YgpEk" style="display:block;" width="1"/>
                              </td>
                             </tr>
                             <tr>
                              <td align="center" style="line-height:33px;">
                               <a style="line-height:33px;">
                                <img alt="Staples®" border="0" height="28" src="https://inboxflows.com/_/image/http%253A%252F%252Fmedia.staples.com%252Femail%252Ftemplates%252Fimages%252Flogo_staples2.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRm1lZGlhLnN0YXBsZSJ9:1kXNYe:hLX33PMIpRrFDPpz0s9YgxDwNA5Mf5JXGSK_o4YgpEk" style="display:block;" width="159"/>
                               </a>
                              </td>
                             </tr>
                             <tr>
                              <td>
                               <img height="15" src="https://inboxflows.com/_/image/http%253A%252F%252Fmedia.staples.com%252Femail%252Ftemplates%252Fusso%252Fa2%252F4f49925e531f5e92bbf187fb03fdd933.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRm1lZGlhLnN0YXBsZSJ9:1kXNYe:hLX33PMIpRrFDPpz0s9YgxDwNA5Mf5JXGSK_o4YgpEk" style="display:block;" width="1"/>
                              </td>
                             </tr>
                            </table>
                           </td>
                           <td class="remove" width="113">
                            <img height="1" src="https://inboxflows.com/_/image/http%253A%252F%252Fmedia.staples.com%252Femail%252Ftemplates%252Fusso%252Fa2%252F4f49925e531f5e92bbf187fb03fdd933.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRm1lZGlhLnN0YXBsZSJ9:1kXNYe:hLX33PMIpRrFDPpz0s9YgxDwNA5Mf5JXGSK_o4YgpEk" style="display:block;" width="113"/>
                           </td>
                          </tr>
                         </table>
                        </td>
                        <td class="remove" width="25">
                         <img height="1" src="https://inboxflows.com/_/image/http%253A%252F%252Fmedia.staples.com%252Femail%252Ftemplates%252Fusso%252Fa2%252F4f49925e531f5e92bbf187fb03fdd933.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRm1lZGlhLnN0YXBsZSJ9:1kXNYe:hLX33PMIpRrFDPpz0s9YgxDwNA5Mf5JXGSK_o4YgpEk" style="display:block;" width="25"/>
                        </td>
                       </tr>
                       <tr>
                        <td class="borderGray" colspan="3">
                         <img class="w320" height="1" src="https://inboxflows.com/_/image/http%253A%252F%252Fmedia.staples.com%252Femail%252Ftemplates%252Fusso%252Fa2%252F4f49925e531f5e92bbf187fb03fdd933.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRm1lZGlhLnN0YXBsZSJ9:1kXNYe:hLX33PMIpRrFDPpz0s9YgxDwNA5Mf5JXGSK_o4YgpEk" style="display:block;" width="320"/>
                        </td>
                       </tr>
                      </table>
                     </td>
                     <td align="right" class="order2" valign="bottom" width="320">
                      <table cellpadding="0" cellspacing="0" width="320">
                       <tr>
                        <td class="w65" width="25">
                         <img class="w65" height="1" src="https://inboxflows.com/_/image/http%253A%252F%252Fmedia.staples.com%252Femail%252Ftemplates%252Fusso%252Fa2%252F4f49925e531f5e92bbf187fb03fdd933.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRm1lZGlhLnN0YXBsZSJ9:1kXNYe:hLX33PMIpRrFDPpz0s9YgxDwNA5Mf5JXGSK_o4YgpEk" style="display:block;" width="25"/>
                        </td>
                        <td align="right" class="w190" width="270">
                         <table cellpadding="0" cellspacing="0" class="w190" width="270">
                          <tr>
                           <td>
                            <img height="10" src="https://inboxflows.com/_/image/http%253A%252F%252Fmedia.staples.com%252Femail%252Ftemplates%252Fusso%252Fa2%252F4f49925e531f5e92bbf187fb03fdd933.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRm1lZGlhLnN0YXBsZSJ9:1kXNYe:hLX33PMIpRrFDPpz0s9YgxDwNA5Mf5JXGSK_o4YgpEk" style="display:block;" width="1"/>
                           </td>
                          </tr>
                          <tr>
                           <td align="right" class="left" style="font-family:Arial, Verdana, sans-serif; font-size:13px; line-height:16px; color:#cc0000;">
                            <b>
                             FREE NEXT-DAY DELIVERY
                            </b>
                           </td>
                          </tr>
                          <tr>
                           <td align="right" class="left" style="font-family:Arial, Verdana, sans-serif; font-size:13px; line-height:16px; color:#444444;">
                            On qualifying orders $35+.
                            <a style="font-family:Arial, Verdana, sans-serif; font-size:13px; line-height:16px; color:#444444; text-decoration:underline !important;">
                             See details
                            </a>
                            .
                           </td>
                          </tr>
                          <tr>
                           <td>
                            <img height="10" src="https://inboxflows.com/_/image/http%253A%252F%252Fmedia.staples.com%252Femail%252Ftemplates%252Fusso%252Fa2%252F4f49925e531f5e92bbf187fb03fdd933.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRm1lZGlhLnN0YXBsZSJ9:1kXNYe:hLX33PMIpRrFDPpz0s9YgxDwNA5Mf5JXGSK_o4YgpEk" style="display:block;" width="1"/>
                           </td>
                          </tr>
                         </table>
                        </td>
                        <td class="w65" width="25">
                         <img class="w65" height="1" src="https://inboxflows.com/_/image/http%253A%252F%252Fmedia.staples.com%252Femail%252Ftemplates%252Fusso%252Fa2%252F4f49925e531f5e92bbf187fb03fdd933.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRm1lZGlhLnN0YXBsZSJ9:1kXNYe:hLX33PMIpRrFDPpz0s9YgxDwNA5Mf5JXGSK_o4YgpEk" style="display:block;" width="25"/>
                        </td>
                       </tr>
                       <tr>
                        <td class="borderGray" colspan="3">
                         <img class="w320" height="1" src="https://inboxflows.com/_/image/http%253A%252F%252Fmedia.staples.com%252Femail%252Ftemplates%252Fusso%252Fa2%252F4f49925e531f5e92bbf187fb03fdd933.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRm1lZGlhLnN0YXBsZSJ9:1kXNYe:hLX33PMIpRrFDPpz0s9YgxDwNA5Mf5JXGSK_o4YgpEk" style="display:block;" width="320"/>
                        </td>
                       </tr>
                      </table>
                     </td>
                    </tr>
                   </table>
                   <table bgcolor="#ececec" cellpadding="0" cellspacing="0" class="remove" style="min-width:640px;" width="640">
                    <tr>
                     <td height="10" width="640">
                      <img height="14" src="https://inboxflows.com/_/image/http%253A%252F%252Fmedia.staples.com%252Femail%252Ftemplates%252Fusso%252Fa2%252F4f49925e531f5e92bbf187fb03fdd933.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRm1lZGlhLnN0YXBsZSJ9:1kXNYe:hLX33PMIpRrFDPpz0s9YgxDwNA5Mf5JXGSK_o4YgpEk" style="display:block;" width="640"/>
                     </td>
                    </tr>
                    <tr>
                     <td width="640">
                      <table cellpadding="0" cellspacing="0" width="640">
                       <tr>
                        <td align="center" style="line-height:16px;" valign="middle" width="16%">
                         <a style="font-family:Arial, Verdana, sans-serif; font-size:11px; line-height:16px; color:#000000; text-decoration:none;">
                          OFFICE SUPPLIES
                         </a>
                        </td>
                        <td align="center" style="line-height:16px;" valign="middle" width="16%">
                         <a style="font-family:Arial, Verdana, sans-serif; font-size:11px; line-height:16px; color:#000000; text-decoration:none;">
                          INK &amp; TONER
                         </a>
                        </td>
                        <td align="center" style="line-height:16px;" valign="middle" width="16%">
                         <a style="font-family:Arial, Verdana, sans-serif; font-size:11px; line-height:16px; color:#000000; text-decoration:none;">
                          TECHNOLOGY
                         </a>
                        </td>
                        <td align="center" style="line-height:16px;" valign="middle" width="16%">
                         <a style="font-family:Arial, Verdana, sans-serif; font-size:11px; line-height:16px; color:#000000; text-decoration:none;">
                          FURNITURE
                         </a>
                        </td>
                        <td align="center" style="line-height:16px;" valign="middle" width="16%">
                         <a style="font-family:Arial, Verdana, sans-serif; font-size:11px; line-height:16px; color:#000000; text-decoration:none;">
                          DRINKS &amp; SNACKS
                         </a>
                        </td>
                        <td align="center" style="line-height:16px;" valign="middle" width="16%">
                         <a style="font-family:Arial, Verdana, sans-serif; font-size:11px; line-height:16px; color:#000000; text-decoration:none;">
                          CLEANING
                         </a>
                        </td>
                       </tr>
                      </table>
                     </td>
                    </tr>
                    <tr>
                     <td height="10" width="640">
                      <img height="6" src="https://inboxflows.com/_/image/http%253A%252F%252Fmedia.staples.com%252Femail%252Ftemplates%252Fusso%252Fa2%252F4f49925e531f5e92bbf187fb03fdd933.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRm1lZGlhLnN0YXBsZSJ9:1kXNYe:hLX33PMIpRrFDPpz0s9YgxDwNA5Mf5JXGSK_o4YgpEk" style="display:block;" width="640"/>
                     </td>
                    </tr>
                   </table>
                   <table cellpadding="0" cellspacing="0" class="w320" width="640">
                    <tr>
                     <td>
                      <img height="4" src="https://inboxflows.com/_/image/http%253A%252F%252Fmedia.staples.com%252Femail%252Ftemplates%252Fusso%252Fa2%252F4f49925e531f5e92bbf187fb03fdd933.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRm1lZGlhLnN0YXBsZSJ9:1kXNYe:hLX33PMIpRrFDPpz0s9YgxDwNA5Mf5JXGSK_o4YgpEk" style="display:block;" width="1"/>
                     </td>
                    </tr>
                   </table>
                  </td>
                 </tr>
                </table>
               </td>
              </tr>
             </table>
            </div>
            <!--[if (!mso)&(!IE)]><!-->
           </div>
           <!--<![endif]-->
          </div>
         </div>
         <!--[if (mso)|(IE)]></td></tr></table><![endif]-->
         <!--[if (mso)|(IE)]></td></tr></table></td></tr></table><![endif]-->
        </div>
       </div>
      </div>
      <div style="background-color:transparent;">
       <div class="block-grid three-up" style="Margin: 0 auto; min-width: 320px; max-width: 640px; overflow-wrap: break-word; word-wrap: break-word; word-break: break-word; background-color: #ffffff;">
        <div style="border-collapse: collapse;display: table;width: 100%;background-color:#ffffff;">
         <!--[if (mso)|(IE)]><table width="100%" cellpadding="0" cellspacing="0" border="0" style="background-color:transparent;"><tr><td align="center"><table cellpadding="0" cellspacing="0" border="0" style="width:640px"><tr class="layout-full-width" style="background-color:#ffffff"><![endif]-->
         <!--[if (mso)|(IE)]><td align="center" width="213" style="background-color:#ffffff;width:213px; border-top: 0px solid transparent; border-left: 0px solid transparent; border-bottom: 0px solid transparent; border-right: 0px solid transparent;" valign="top"><table width="100%" cellpadding="0" cellspacing="0" border="0"><tr><td style="padding-right: 0px; padding-left: 0px; padding-top:5px; padding-bottom:5px;"><![endif]-->
         <div class="col num4" style="max-width: 320px; min-width: 213px; display: table-cell; vertical-align: top; width: 213px;">
          <div style="width:100% !important;">
           <!--[if (!mso)&(!IE)]><!-->
           <div style="border-top:0px solid transparent; border-left:0px solid transparent; border-bottom:0px solid transparent; border-right:0px solid transparent; padding-top:5px; padding-bottom:5px; padding-right: 0px; padding-left: 0px;">
            <!--<![endif]-->
            <div style="font-size:16px;text-align:center;font-family:Arial, 'Helvetica Neue', Helvetica, sans-serif">
             <div class="our-class">
              <a>
               <img alt="Save even more" border="0" height="90" src="https://inboxflows.com/_/image/https%253A%252F%252Fmarketingassets.staples.com%252Fm%252F7e28420e0cf48d83%252Foriginal%252Fdg21921_370971_e6b_205x90.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtYXJrZXRpbmdhcyJ9:1kXNYe:WF02zfUWiDgbetNzXZP0PDnSR5ZiHJclgXHlHRxewy0" style="display:block;width:100%;max-width:205px;height:auto; padding-right: 5px; padding left: 5px;" width="205"/>
              </a>
             </div>
            </div>
            <!--[if (!mso)&(!IE)]><!-->
           </div>
           <!--<![endif]-->
          </div>
         </div>
         <!--[if (mso)|(IE)]></td></tr></table><![endif]-->
         <!--[if (mso)|(IE)]></td><td align="center" width="213" style="background-color:#ffffff;width:213px; border-top: 0px solid transparent; border-left: 0px solid transparent; border-bottom: 0px solid transparent; border-right: 0px solid transparent;" valign="top"><table width="100%" cellpadding="0" cellspacing="0" border="0"><tr><td style="padding-right: 0px; padding-left: 0px; padding-top:5px; padding-bottom:5px;"><![endif]-->
         <div class="col num4" style="max-width: 320px; min-width: 213px; display: table-cell; vertical-align: top; width: 213px;">
          <div style="width:100% !important;">
           <!--[if (!mso)&(!IE)]><!-->
           <div style="border-top:0px solid transparent; border-left:0px solid transparent; border-bottom:0px solid transparent; border-right:0px solid transparent; padding-top:5px; padding-bottom:5px; padding-right: 0px; padding-left: 0px;">
            <!--<![endif]-->
            <!--[if mso]><table width="100%" cellpadding="0" cellspacing="0" border="0"><tr><td style="padding-right: 10px; padding-left: 25px; padding-top: 15px; padding-bottom: 5px; font-family: Arial, sans-serif"><![endif]-->
            <div style="color:#555555;font-family:Arial, 'Helvetica Neue', Helvetica, sans-serif;line-height:1.2;padding-top:15px;padding-right:10px;padding-bottom:5px;padding-left:25px;">
             <div style="font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; font-size: 12px; line-height: 1.2; color: #555555; mso-line-height-alt: 14px;">
              <p style="font-size: 15px; line-height: 1.2; text-align: left; mso-line-height-alt: 18px; margin: 0;">
               <span style="color: #333333; font-size: 15px;">
                Hurry, time's running out! Shop our Black Friday deals before they're gone.
               </span>
              </p>
             </div>
            </div>
            <!--[if mso]></td></tr></table><![endif]-->
            <!--[if (!mso)&(!IE)]><!-->
           </div>
           <!--<![endif]-->
          </div>
         </div>
         <!--[if (mso)|(IE)]></td></tr></table><![endif]-->
         <!--[if (mso)|(IE)]></td><td align="center" width="213" style="background-color:#ffffff;width:213px; border-top: 0px solid transparent; border-left: 0px solid transparent; border-bottom: 0px solid transparent; border-right: 0px solid transparent;" valign="top"><table width="100%" cellpadding="0" cellspacing="0" border="0"><tr><td style="padding-right: 0px; padding-left: 0px; padding-top:5px; padding-bottom:5px;"><![endif]-->
         <div class="col num4" style="max-width: 320px; min-width: 213px; display: table-cell; vertical-align: top; width: 213px;">
          <div style="width:100% !important;">
           <!--[if (!mso)&(!IE)]><!-->
           <div style="border-top:0px solid transparent; border-left:0px solid transparent; border-bottom:0px solid transparent; border-right:0px solid transparent; padding-top:5px; padding-bottom:5px; padding-right: 0px; padding-left: 0px;">
            <!--<![endif]-->
            <div align="center" class="button-container" style="padding-top:10px;padding-right:15px;padding-bottom:10px;padding-left:0px;">
             <!--[if mso]><table width="100%" cellpadding="0" cellspacing="0" border="0" style="border-spacing: 0; border-collapse: collapse; mso-table-lspace:0pt; mso-table-rspace:0pt;"><tr><td style="padding-top: 10px; padding-right: 15px; padding-bottom: 10px; padding-left: 0px" align="center"><v:roundrect xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="urn:schemas-microsoft-com:office:word" href="//weeklyad.staples.com/staplessd/weeklyad?&userid=$PERSON_ID$&adref=112819email&cid=EM_OPT_370971AP1&utm_medium=Event_BlackFriday_XC&utm_term=BFDEALS&utm_source=9DAFAADC32CC21545485B5DBEDED20B4_20191130_P_OMNI_CON_BUS_BEP_SPLUS_2:30PM&utm_campaign=370971AP1" style="height:24pt; width:108.75pt; v-text-anchor:middle;" arcsize="4%" stroke="false" fillcolor="#CC0000"><w:anchorlock/><v:textbox inset="0,0,0,0"><center style="color:#ffffff; font-family:Arial, sans-serif; font-size:15px"><![endif]-->
             <a style="-webkit-text-size-adjust: none; text-decoration: none; display: inline-block; color: #ffffff; background-color: #CC0000; border-radius: 1px; -webkit-border-radius: 1px; -moz-border-radius: 1px; width: auto; width: auto; border-top: 1px solid #CC0000; border-right: 1px solid #CC0000; border-bottom: 1px solid #CC0000; border-left: 1px solid #CC0000; padding-top: 0px; padding-bottom: 0px; font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; text-align: center; mso-border-alt: none; word-break: keep-all;" target="_blank">
              <span style="padding-left:30px;padding-right:35px;font-size:15px;display:inline-block;">
               <span style="font-size: 16px; line-height: 2; mso-line-height-alt: 32px;">
                <span style="font-size: 15px; line-height: 30px;">
                 <strong>
                  <span style="line-height: 30px; font-size: 15px;">
                   See deals
                  </span>
                 </strong>
                </span>
               </span>
              </span>
             </a>
             <!--[if mso]></center></v:textbox></v:roundrect></td></tr></table><![endif]-->
            </div>
            <div align="center" class="button-container" style="padding-top:5px;padding-right:15px;padding-bottom:5px;padding-left:0px;">
             <!--[if mso]><table width="100%" cellpadding="0" cellspacing="0" border="0" style="border-spacing: 0; border-collapse: collapse; mso-table-lspace:0pt; mso-table-rspace:0pt;"><tr><td style="padding-top: 5px; padding-right: 15px; padding-bottom: 5px; padding-left: 0px" align="center"><v:roundrect xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="urn:schemas-microsoft-com:office:word" href="https://www.staples.com/deals/Black-Friday-Deals/BI1146571?cid=EM_OPT_370971AP1&utm_medium=Event_BlackFriday_XC&utm_term=BFDEALS&utm_source=9DAFAADC32CC21545485B5DBEDED20B4_20191130_P_OMNI_CON_BUS_BEP_SPLUS_7:30AM&utm_campaign=370971AP1" style="height:24pt; width:111pt; v-text-anchor:middle;" arcsize="4%" stroke="false" fillcolor="#CC0000"><w:anchorlock/><v:textbox inset="0,0,0,0"><center style="color:#ffffff; font-family:Arial, sans-serif; font-size:15px"><![endif]-->
             <a style="-webkit-text-size-adjust: none; text-decoration: none; display: inline-block; color: #ffffff; background-color: #CC0000; border-radius: 1px; -webkit-border-radius: 1px; -moz-border-radius: 1px; width: auto; width: auto; border-top: 1px solid #CC0000; border-right: 1px solid #CC0000; border-bottom: 1px solid #CC0000; border-left: 1px solid #CC0000; padding-top: 0px; padding-bottom: 0px; font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; text-align: center; mso-border-alt: none; word-break: keep-all;" target="_blank">
              <span style="padding-left:30px;padding-right:35px;font-size:15px;display:inline-block;">
               <span style="font-size: 16px; line-height: 2; mso-line-height-alt: 32px;">
                <span style="font-size: 15px; line-height: 30px;">
                 <strong>
                  <span style="line-height: 30px; font-size: 15px;">
                   Shop now
                  </span>
                 </strong>
                </span>
               </span>
              </span>
             </a>
             <!--[if mso]></center></v:textbox></v:roundrect></td></tr></table><![endif]-->
            </div>
            <!--[if (!mso)&(!IE)]><!-->
           </div>
           <!--<![endif]-->
          </div>
         </div>
         <!--[if (mso)|(IE)]></td></tr></table><![endif]-->
         <!--[if (mso)|(IE)]></td></tr></table></td></tr></table><![endif]-->
        </div>
       </div>
      </div>
      <div style="background-color:transparent;">
       <div class="block-grid" style="Margin: 0 auto; min-width: 320px; max-width: 640px; overflow-wrap: break-word; word-wrap: break-word; word-break: break-word; background-color: #ffffff;">
        <div style="border-collapse: collapse;display: table;width: 100%;background-color:#ffffff;">
         <!--[if (mso)|(IE)]><table width="100%" cellpadding="0" cellspacing="0" border="0" style="background-color:transparent;"><tr><td align="center"><table cellpadding="0" cellspacing="0" border="0" style="width:640px"><tr class="layout-full-width" style="background-color:#ffffff"><![endif]-->
         <!--[if (mso)|(IE)]><td align="center" width="640" style="background-color:#ffffff;width:640px; border-top: 0px solid transparent; border-left: 0px solid transparent; border-bottom: 0px solid transparent; border-right: 0px solid transparent;" valign="top"><table width="100%" cellpadding="0" cellspacing="0" border="0"><tr><td style="padding-right: 0px; padding-left: 0px; padding-top:5px; padding-bottom:5px;"><![endif]-->
         <div class="col num12" style="min-width: 320px; max-width: 640px; display: table-cell; vertical-align: top; width: 640px;">
          <div style="width:100% !important;">
           <!--[if (!mso)&(!IE)]><!-->
           <div style="border-top:0px solid transparent; border-left:0px solid transparent; border-bottom:0px solid transparent; border-right:0px solid transparent; padding-top:5px; padding-bottom:5px; padding-right: 0px; padding-left: 0px;">
            <!--<![endif]-->
            <table border="0" cellpadding="0" cellspacing="0" class="divider" role="presentation" style="table-layout: fixed; vertical-align: top; border-spacing: 0; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; min-width: 100%; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%;" valign="top" width="100%">
             <tbody>
              <tr style="vertical-align: top;" valign="top">
               <td class="divider_inner" style="word-break: break-word; vertical-align: top; min-width: 100%; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%; padding-top: 10px; padding-right: 10px; padding-bottom: 10px; padding-left: 10px;" valign="top">
                <table align="center" border="0" cellpadding="0" cellspacing="0" class="divider_content" height="0" role="presentation" style="table-layout: fixed; vertical-align: top; border-spacing: 0; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-top: 4px solid #cccccc; height: 0px; width: 100%;" valign="top" width="100%">
                 <tbody>
                  <tr style="vertical-align: top;" valign="top">
                   <td height="0" style="word-break: break-word; vertical-align: top; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%;" valign="top">
                    <span>
                    </span>
                   </td>
                  </tr>
                 </tbody>
                </table>
               </td>
              </tr>
             </tbody>
            </table>
            <!--[if (!mso)&(!IE)]><!-->
           </div>
           <!--<![endif]-->
          </div>
         </div>
         <!--[if (mso)|(IE)]></td></tr></table><![endif]-->
         <!--[if (mso)|(IE)]></td></tr></table></td></tr></table><![endif]-->
        </div>
       </div>
      </div>
      <div style="background-color:transparent;">
       <div class="block-grid" style="Margin: 0 auto; min-width: 320px; max-width: 640px; overflow-wrap: break-word; word-wrap: break-word; word-break: break-word; background-color: #ffffff;">
        <div style="border-collapse: collapse;display: table;width: 100%;background-color:#ffffff;">
         <!--[if (mso)|(IE)]><table width="100%" cellpadding="0" cellspacing="0" border="0" style="background-color:transparent;"><tr><td align="center"><table cellpadding="0" cellspacing="0" border="0" style="width:640px"><tr class="layout-full-width" style="background-color:#ffffff"><![endif]-->
         <!--[if (mso)|(IE)]><td align="center" width="640" style="background-color:#ffffff;width:640px; border-top: 0px solid transparent; border-left: 0px solid transparent; border-bottom: 0px solid transparent; border-right: 0px solid transparent;" valign="top"><table width="100%" cellpadding="0" cellspacing="0" border="0"><tr><td style="padding-right: 0px; padding-left: 0px; padding-top:5px; padding-bottom:5px;"><![endif]-->
         <div class="col num12" style="min-width: 320px; max-width: 640px; display: table-cell; vertical-align: top; width: 640px;">
          <div style="width:100% !important;">
           <!--[if (!mso)&(!IE)]><!-->
           <div style="border-top:0px solid transparent; border-left:0px solid transparent; border-bottom:0px solid transparent; border-right:0px solid transparent; padding-top:5px; padding-bottom:5px; padding-right: 0px; padding-left: 0px;">
            <!--<![endif]-->
            <div style="font-size:16px;text-align:center;font-family:Arial, 'Helvetica Neue', Helvetica, sans-serif">
             <div class="our-class">
              <a>
               <img alt="Up to $330 off" border="0" height="350" src="https://inboxflows.com/_/image/https%253A%252F%252Fmarketingassets.staples.com%252Fm%252F6ac5a3e1f5146546%252Foriginal%252Fdg21921_355642_p1b_640x350.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtYXJrZXRpbmdhcyJ9:1kXNYe:WF02zfUWiDgbetNzXZP0PDnSR5ZiHJclgXHlHRxewy0" style="display:block;width:100%;max-width:640px;height:auto;" width="640"/>
              </a>
             </div>
            </div>
            <!--[if mso]><table width="100%" cellpadding="0" cellspacing="0" border="0"><tr><td style="padding-right: 10px; padding-left: 10px; padding-top: 10px; padding-bottom: 15px; font-family: Arial, sans-serif"><![endif]-->
            <div style="color:#555555;font-family:Arial, 'Helvetica Neue', Helvetica, sans-serif;line-height:1.2;padding-top:10px;padding-right:10px;padding-bottom:15px;padding-left:10px;">
             <div style="font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; font-size: 12px; line-height: 1.2; color: #555555; mso-line-height-alt: 14px;">
              <p style="font-size: 16px; line-height: 1.2; mso-line-height-alt: 19px; margin: 0;">
               <span style="font-size: 16px;">
                <span style="color: #cc0000; font-size: 16px;">
                 <strong>
                  Up to $330 off
                 </strong>
                </span>
               </span>
               <span style="font-size: 16px;">
                <span style="color: #333333; font-size: 16px;">
                 select HP computers.
                </span>
               </span>
              </p>
             </div>
            </div>
            <!--[if mso]></td></tr></table><![endif]-->
            <!--[if (!mso)&(!IE)]><!-->
           </div>
           <!--<![endif]-->
          </div>
         </div>
         <!--[if (mso)|(IE)]></td></tr></table><![endif]-->
         <!--[if (mso)|(IE)]></td></tr></table></td></tr></table><![endif]-->
        </div>
       </div>
      </div>
      <div style="background-color:transparent;">
       <div class="block-grid two-up" style="Margin: 0 auto; min-width: 320px; max-width: 640px; overflow-wrap: break-word; word-wrap: break-word; word-break: break-word; background-color: #ffffff;">
        <div style="border-collapse: collapse;display: table;width: 100%;background-color:#ffffff;">
         <!--[if (mso)|(IE)]><table width="100%" cellpadding="0" cellspacing="0" border="0" style="background-color:transparent;"><tr><td align="center"><table cellpadding="0" cellspacing="0" border="0" style="width:640px"><tr class="layout-full-width" style="background-color:#ffffff"><![endif]-->
         <!--[if (mso)|(IE)]><td align="center" width="320" style="background-color:#ffffff;width:320px; border-top: 0px solid transparent; border-left: 0px solid transparent; border-bottom: 0px solid transparent; border-right: 0px solid transparent;" valign="top"><table width="100%" cellpadding="0" cellspacing="0" border="0"><tr><td style="padding-right: 0px; padding-left: 0px; padding-top:5px; padding-bottom:5px;"><![endif]-->
         <div class="col num6" style="min-width: 320px; max-width: 320px; display: table-cell; vertical-align: top; width: 320px;">
          <div style="width:100% !important;">
           <!--[if (!mso)&(!IE)]><!-->
           <div style="border-top:0px solid transparent; border-left:0px solid transparent; border-bottom:0px solid transparent; border-right:0px solid transparent; padding-top:5px; padding-bottom:5px; padding-right: 0px; padding-left: 0px;">
            <!--<![endif]-->
            <div align="left" class="button-container" style="padding-top:5px;padding-right:0px;padding-bottom:5px;padding-left:10px;">
             <!--[if mso]><table width="100%" cellpadding="0" cellspacing="0" border="0" style="border-spacing: 0; border-collapse: collapse; mso-table-lspace:0pt; mso-table-rspace:0pt;"><tr><td style="padding-top: 5px; padding-right: 0px; padding-bottom: 5px; padding-left: 10px" align="left"><v:roundrect xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="urn:schemas-microsoft-com:office:word" href="https://www.staples.com/deals/HP-Holiday-Computer-Deals/BI1786950?cid=EM_OPT_355642P1&utm_medium=Technology_XC&utm_term=330HPCOMP&utm_source=9DAFAADC32CC21545485B5DBEDED20B4_20191130_P_OMNI_CON_BUS_BEP_SPLUS_2:30PM&utm_campaign=355642P1" style="height:28.5pt; width:117.75pt; v-text-anchor:middle;" arcsize="0%" stroke="false" fillcolor="#CC0000"><w:anchorlock/><v:textbox inset="0,0,0,0"><center style="color:#ffffff; font-family:Arial, sans-serif; font-size:16px"><![endif]-->
             <a style="-webkit-text-size-adjust: none; text-decoration: none; display: inline-block; color: #ffffff; background-color: #CC0000; border-radius: 0px; -webkit-border-radius: 0px; -moz-border-radius: 0px; width: auto; width: auto; border-top: 1px solid #CC0000; border-right: 1px solid #CC0000; border-bottom: 1px solid #CC0000; border-left: 1px solid #CC0000; padding-top: 5px; padding-bottom: 5px; font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; text-align: center; mso-border-alt: none; word-break: keep-all;" target="_blank">
              <span style="padding-left:25px;padding-right:40px;font-size:16px;display:inline-block;">
               <span style="font-size: 16px; line-height: 1.8; mso-line-height-alt: 29px;">
                <strong>
                 <span style="font-size: 16px; line-height: 28px;">
                  Shop now
                 </span>
                </strong>
               </span>
              </span>
             </a>
             <!--[if mso]></center></v:textbox></v:roundrect></td></tr></table><![endif]-->
            </div>
            <!--[if (!mso)&(!IE)]><!-->
           </div>
           <!--<![endif]-->
          </div>
         </div>
         <!--[if (mso)|(IE)]></td></tr></table><![endif]-->
         <!--[if (mso)|(IE)]></td><td align="center" width="320" style="background-color:#ffffff;width:320px; border-top: 0px solid transparent; border-left: 0px solid transparent; border-bottom: 0px solid transparent; border-right: 0px solid transparent;" valign="top"><table width="100%" cellpadding="0" cellspacing="0" border="0"><tr><td style="padding-right: 0px; padding-left: 0px; padding-top:5px; padding-bottom:5px;"><![endif]-->
         <div class="col num6" style="min-width: 320px; max-width: 320px; display: table-cell; vertical-align: top; width: 320px;">
          <div style="width:100% !important;">
           <!--[if (!mso)&(!IE)]><!-->
           <div style="border-top:0px solid transparent; border-left:0px solid transparent; border-bottom:0px solid transparent; border-right:0px solid transparent; padding-top:5px; padding-bottom:5px; padding-right: 0px; padding-left: 0px;">
            <!--<![endif]-->
            <div align="left" class="button-container" style="padding-top:5px;padding-right:0px;padding-bottom:5px;padding-left:10px;">
             <!--[if mso]><table width="100%" cellpadding="0" cellspacing="0" border="0" style="border-spacing: 0; border-collapse: collapse; mso-table-lspace:0pt; mso-table-rspace:0pt;"><tr><td style="padding-top: 5px; padding-right: 0px; padding-bottom: 5px; padding-left: 10px" align="left"><v:roundrect xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="urn:schemas-microsoft-com:office:word" href="https://stores.staples.com?cid=EM_OPT_355642P1&utm_medium=Technology_XC&utm_term=330HPCOMP&utm_source=9DAFAADC32CC21545485B5DBEDED20B4_20191130_P_OMNI_CON_BUS_BEP_SPLUS_2:30PM&utm_campaign=355642P1" style="height:28.5pt; width:117.75pt; v-text-anchor:middle;" arcsize="0%" stroke="false" fillcolor="#CC0000"><w:anchorlock/><v:textbox inset="0,0,0,0"><center style="color:#ffffff; font-family:Arial, sans-serif; font-size:16px"><![endif]-->
             <a style="-webkit-text-size-adjust: none; text-decoration: none; display: inline-block; color: #ffffff; background-color: #CC0000; border-radius: 0px; -webkit-border-radius: 0px; -moz-border-radius: 0px; width: auto; width: auto; border-top: 1px solid #CC0000; border-right: 1px solid #CC0000; border-bottom: 1px solid #CC0000; border-left: 1px solid #CC0000; padding-top: 5px; padding-bottom: 5px; font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; text-align: center; mso-border-alt: none; word-break: keep-all;" target="_blank">
              <span style="padding-left:25px;padding-right:25px;font-size:16px;display:inline-block;">
               <span style="font-size: 16px; line-height: 1.8; mso-line-height-alt: 29px;">
                <strong>
                 <span style="font-size: 16px; line-height: 28px;">
                  Find a store
                 </span>
                </strong>
               </span>
              </span>
             </a>
             <!--[if mso]></center></v:textbox></v:roundrect></td></tr></table><![endif]-->
            </div>
            <!--[if (!mso)&(!IE)]><!-->
           </div>
           <!--<![endif]-->
          </div>
         </div>
         <!--[if (mso)|(IE)]></td></tr></table><![endif]-->
         <!--[if (mso)|(IE)]></td></tr></table></td></tr></table><![endif]-->
        </div>
       </div>
      </div>
      <div style="background-color:transparent;">
       <div class="block-grid" style="Margin: 0 auto; min-width: 320px; max-width: 640px; overflow-wrap: break-word; word-wrap: break-word; word-break: break-word; background-color: #ffffff;">
        <div style="border-collapse: collapse;display: table;width: 100%;background-color:#ffffff;">
         <!--[if (mso)|(IE)]><table width="100%" cellpadding="0" cellspacing="0" border="0" style="background-color:transparent;"><tr><td align="center"><table cellpadding="0" cellspacing="0" border="0" style="width:640px"><tr class="layout-full-width" style="background-color:#ffffff"><![endif]-->
         <!--[if (mso)|(IE)]><td align="center" width="640" style="background-color:#ffffff;width:640px; border-top: 0px solid transparent; border-left: 0px solid transparent; border-bottom: 0px solid transparent; border-right: 0px solid transparent;" valign="top"><table width="100%" cellpadding="0" cellspacing="0" border="0"><tr><td style="padding-right: 0px; padding-left: 0px; padding-top:5px; padding-bottom:5px;"><![endif]-->
         <div class="col num12" style="min-width: 320px; max-width: 640px; display: table-cell; vertical-align: top; width: 640px;">
          <div style="width:100% !important;">
           <!--[if (!mso)&(!IE)]><!-->
           <div style="border-top:0px solid transparent; border-left:0px solid transparent; border-bottom:0px solid transparent; border-right:0px solid transparent; padding-top:5px; padding-bottom:5px; padding-right: 0px; padding-left: 0px;">
            <!--<![endif]-->
            <!--[if mso]><table width="100%" cellpadding="0" cellspacing="0" border="0"><tr><td style="padding-right: 10px; padding-left: 10px; padding-top: 10px; padding-bottom: 10px; font-family: Arial, sans-serif"><![endif]-->
            <div style="color:#555555;font-family:Arial, 'Helvetica Neue', Helvetica, sans-serif;line-height:1.2;padding-top:10px;padding-right:10px;padding-bottom:10px;padding-left:10px;">
             <div style="font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; font-size: 12px; line-height: 1.2; color: #555555; mso-line-height-alt: 14px;">
              <p style="font-size: 12px; line-height: 1.2; mso-line-height-alt: 14px; margin: 0;">
               <span style="color: #333333; font-size: 12px;">
                Ends 11/30/19.
                <a rel="noopener" style="text-decoration: underline; color: #333333;" target="_blank" title="See Details">
                 <span style="font-size: 12px;">
                  See details
                 </span>
                 .
                </a>
               </span>
              </p>
             </div>
            </div>
            <!--[if mso]></td></tr></table><![endif]-->
            <table border="0" cellpadding="0" cellspacing="0" class="divider" role="presentation" style="table-layout: fixed; vertical-align: top; border-spacing: 0; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; min-width: 100%; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%;" valign="top" width="100%">
             <tbody>
              <tr style="vertical-align: top;" valign="top">
               <td class="divider_inner" style="word-break: break-word; vertical-align: top; min-width: 100%; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%; padding-top: 10px; padding-right: 10px; padding-bottom: 10px; padding-left: 10px;" valign="top">
                <table align="center" border="0" cellpadding="0" cellspacing="0" class="divider_content" height="0" role="presentation" style="table-layout: fixed; vertical-align: top; border-spacing: 0; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-top: 4px solid #cccccc; height: 0px; width: 100%;" valign="top" width="100%">
                 <tbody>
                  <tr style="vertical-align: top;" valign="top">
                   <td height="0" style="word-break: break-word; vertical-align: top; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%;" valign="top">
                    <span>
                    </span>
                   </td>
                  </tr>
                 </tbody>
                </table>
               </td>
              </tr>
             </tbody>
            </table>
            <!--[if (!mso)&(!IE)]><!-->
           </div>
           <!--<![endif]-->
          </div>
         </div>
         <!--[if (mso)|(IE)]></td></tr></table><![endif]-->
         <!--[if (mso)|(IE)]></td></tr></table></td></tr></table><![endif]-->
        </div>
       </div>
      </div>
      <div style="background-color:transparent;">
       <div class="block-grid two-up" style="Margin: 0 auto; min-width: 320px; max-width: 640px; overflow-wrap: break-word; word-wrap: break-word; word-break: break-word; background-color: #ffffff;">
        <div style="border-collapse: collapse;display: table;width: 100%;background-color:#ffffff;">
         <!--[if (mso)|(IE)]><table width="100%" cellpadding="0" cellspacing="0" border="0" style="background-color:transparent;"><tr><td align="center"><table cellpadding="0" cellspacing="0" border="0" style="width:640px"><tr class="layout-full-width" style="background-color:#ffffff"><![endif]-->
         <!--[if (mso)|(IE)]><td align="center" width="320" style="background-color:#ffffff;width:320px; border-top: 0px solid transparent; border-left: 0px solid transparent; border-bottom: 0px solid transparent; border-right: 0px solid transparent;" valign="top"><table width="100%" cellpadding="0" cellspacing="0" border="0"><tr><td style="padding-right: 0px; padding-left: 0px; padding-top:5px; padding-bottom:5px;"><![endif]-->
         <div class="col num6" style="min-width: 320px; max-width: 320px; display: table-cell; vertical-align: top; width: 320px;">
          <div style="width:100% !important;">
           <!--[if (!mso)&(!IE)]><!-->
           <div style="border-top:0px solid transparent; border-left:0px solid transparent; border-bottom:0px solid transparent; border-right:0px solid transparent; padding-top:5px; padding-bottom:5px; padding-right: 0px; padding-left: 0px;">
            <!--<![endif]-->
            <div style="font-size:16px;text-align:center;font-family:Arial, 'Helvetica Neue', Helvetica, sans-serif">
             <div class="our-class">
              <a>
               <img alt="Only $249" border="0" height="315" src="https://inboxflows.com/_/image/https%253A%252F%252Fmarketingassets.staples.com%252Fm%252Fa8d22ee55da2bf84%252Foriginal%252Fdg21921_366640_c3_315x315.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtYXJrZXRpbmdhcyJ9:1kXNYe:WF02zfUWiDgbetNzXZP0PDnSR5ZiHJclgXHlHRxewy0" style="display:block;width:100%;max-width:640px;height:auto; padding-right: 5px; padding left: 5px;" width="315"/>
              </a>
             </div>
            </div>
            <!--[if (!mso)&(!IE)]><!-->
           </div>
           <!--<![endif]-->
          </div>
         </div>
         <!--[if (mso)|(IE)]></td></tr></table><![endif]-->
         <!--[if (mso)|(IE)]></td><td align="center" width="320" style="background-color:#ffffff;width:320px; border-top: 0px solid transparent; border-left: 0px solid transparent; border-bottom: 0px solid transparent; border-right: 0px solid transparent;" valign="top"><table width="100%" cellpadding="0" cellspacing="0" border="0"><tr><td style="padding-right: 0px; padding-left: 0px; padding-top:5px; padding-bottom:5px;"><![endif]-->
         <div class="col num6" style="min-width: 320px; max-width: 320px; display: table-cell; vertical-align: top; width: 320px;">
          <div style="width:100% !important;">
           <!--[if (!mso)&(!IE)]><!-->
           <div style="border-top:0px solid transparent; border-left:0px solid transparent; border-bottom:0px solid transparent; border-right:0px solid transparent; padding-top:5px; padding-bottom:5px; padding-right: 0px; padding-left: 0px;">
            <!--<![endif]-->
            <!--[if mso]><table width="100%" cellpadding="0" cellspacing="0" border="0"><tr><td style="padding-right: 15px; padding-left: 15px; padding-top: 25px; padding-bottom: 10px; font-family: Arial, sans-serif"><![endif]-->
            <div style="color:#555555;font-family:Arial, 'Helvetica Neue', Helvetica, sans-serif;line-height:1.2;padding-top:25px;padding-right:15px;padding-bottom:10px;padding-left:15px;">
             <div style="font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; line-height: 1.2; font-size: 12px; color: #555555; mso-line-height-alt: 14px;">
              <p style="line-height: 1.2; font-size: 12px; mso-line-height-alt: 14px; margin: 0;">
               <span style="color: #333333; font-size: 12px;">
                <span style="font-size: 46px;">
                 <strong>
                  Only $249
                 </strong>
                </span>
               </span>
              </p>
             </div>
            </div>
            <!--[if mso]></td></tr></table><![endif]-->
            <!--[if mso]><table width="100%" cellpadding="0" cellspacing="0" border="0"><tr><td style="padding-right: 15px; padding-left: 25px; padding-top: 15px; padding-bottom: 10px; font-family: Arial, sans-serif"><![endif]-->
            <div style="color:#555555;font-family:Arial, 'Helvetica Neue', Helvetica, sans-serif;line-height:1.2;padding-top:15px;padding-right:15px;padding-bottom:10px;padding-left:25px;">
             <div style="font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; line-height: 1.2; font-size: 12px; color: #555555; mso-line-height-alt: 14px;">
              <p style="line-height: 1.2; text-align: left; font-size: 16px; mso-line-height-alt: 19px; margin: 0;">
               <span style="font-size: 16px; color: #333333;">
                for the latest Apple® iPad® 10.2", 32GB (7th gen.).
               </span>
              </p>
             </div>
            </div>
            <!--[if mso]></td></tr></table><![endif]-->
            <div align="left" class="button-container" style="padding-top:15px;padding-right:10px;padding-bottom:15px;padding-left:25px;">
             <!--[if mso]><table width="100%" cellpadding="0" cellspacing="0" border="0" style="border-spacing: 0; border-collapse: collapse; mso-table-lspace:0pt; mso-table-rspace:0pt;"><tr><td style="padding-top: 15px; padding-right: 10px; padding-bottom: 15px; padding-left: 25px" align="left"><v:roundrect xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="urn:schemas-microsoft-com:office:word" href="https://stores.staples.com?cid=EM_OPT_366640P2&utm_medium=Technology_XC&utm_term=249IPAD&utm_source=9DAFAADC32CC21545485B5DBEDED20B4_20191130_P_OMNI_CON_BUS_BEP_SPLUS_2:30PM&utm_campaign=366640P2" style="height:28.5pt; width:99pt; v-text-anchor:middle;" arcsize="0%" stroke="false" fillcolor="#CC0000"><w:anchorlock/><v:textbox inset="0,0,0,0"><center style="color:#ffffff; font-family:Arial, sans-serif; font-size:16px"><![endif]-->
             <a style="-webkit-text-size-adjust: none; text-decoration: none; display: inline-block; color: #ffffff; background-color: #CC0000; border-radius: 0px; -webkit-border-radius: 0px; -moz-border-radius: 0px; width: auto; width: auto; border-top: 1px solid #CC0000; border-right: 1px solid #CC0000; border-bottom: 1px solid #CC0000; border-left: 1px solid #CC0000; padding-top: 5px; padding-bottom: 5px; font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; text-align: center; mso-border-alt: none; word-break: keep-all;" target="_blank">
              <span style="padding-left:25px;padding-right:25px;font-size:16px;display:inline-block;">
               <span style="font-size: 16px; line-height: 1.8; mso-line-height-alt: 29px;">
                <strong>
                 Find a store
                </strong>
               </span>
              </span>
             </a>
             <!--[if mso]></center></v:textbox></v:roundrect></td></tr></table><![endif]-->
            </div>
            <!--[if mso]><table width="100%" cellpadding="0" cellspacing="0" border="0"><tr><td style="padding-right: 20px; padding-left: 25px; padding-top: 15px; padding-bottom: 20px; font-family: Arial, sans-serif"><![endif]-->
            <div style="color:#555555;font-family:Arial, 'Helvetica Neue', Helvetica, sans-serif;line-height:1.2;padding-top:15px;padding-right:20px;padding-bottom:20px;padding-left:25px;">
             <div style="font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; font-size: 12px; line-height: 1.2; color: #555555; mso-line-height-alt: 14px;">
              <p style="font-size: 12px; line-height: 1.2; mso-line-height-alt: 14px; margin: 0;">
               In store only. Ends 11/30/19.
              </p>
              <p style="font-size: 12px; line-height: 1.2; mso-line-height-alt: 14px; margin: 0;">
               While supplies last.
              </p>
             </div>
            </div>
            <!--[if mso]></td></tr></table><![endif]-->
            <!--[if (!mso)&(!IE)]><!-->
           </div>
           <!--<![endif]-->
          </div>
         </div>
         <!--[if (mso)|(IE)]></td></tr></table><![endif]-->
         <!--[if (mso)|(IE)]></td></tr></table></td></tr></table><![endif]-->
        </div>
       </div>
      </div>
      <div style="background-color:transparent;">
       <div class="block-grid" style="Margin: 0 auto; min-width: 320px; max-width: 640px; overflow-wrap: break-word; word-wrap: break-word; word-break: break-word; background-color: #ffffff;">
        <div style="border-collapse: collapse;display: table;width: 100%;background-color:#ffffff;">
         <!--[if (mso)|(IE)]><table width="100%" cellpadding="0" cellspacing="0" border="0" style="background-color:transparent;"><tr><td align="center"><table cellpadding="0" cellspacing="0" border="0" style="width:640px"><tr class="layout-full-width" style="background-color:#ffffff"><![endif]-->
         <!--[if (mso)|(IE)]><td align="center" width="640" style="background-color:#ffffff;width:640px; border-top: 0px solid transparent; border-left: 0px solid transparent; border-bottom: 0px solid transparent; border-right: 0px solid transparent;" valign="top"><table width="100%" cellpadding="0" cellspacing="0" border="0"><tr><td style="padding-right: 0px; padding-left: 0px; padding-top:5px; padding-bottom:5px;"><![endif]-->
         <div class="col num12" style="min-width: 320px; max-width: 640px; display: table-cell; vertical-align: top; width: 640px;">
          <div style="width:100% !important;">
           <!--[if (!mso)&(!IE)]><!-->
           <div style="border-top:0px solid transparent; border-left:0px solid transparent; border-bottom:0px solid transparent; border-right:0px solid transparent; padding-top:5px; padding-bottom:5px; padding-right: 0px; padding-left: 0px;">
            <!--<![endif]-->
            <table border="0" cellpadding="0" cellspacing="0" class="divider" role="presentation" style="table-layout: fixed; vertical-align: top; border-spacing: 0; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; min-width: 100%; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%;" valign="top" width="100%">
             <tbody>
              <tr style="vertical-align: top;" valign="top">
               <td class="divider_inner" style="word-break: break-word; vertical-align: top; min-width: 100%; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%; padding-top: 10px; padding-right: 10px; padding-bottom: 10px; padding-left: 10px;" valign="top">
                <table align="center" border="0" cellpadding="0" cellspacing="0" class="divider_content" height="0" role="presentation" style="table-layout: fixed; vertical-align: top; border-spacing: 0; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-top: 4px solid #cccccc; height: 0px; width: 100%;" valign="top" width="100%">
                 <tbody>
                  <tr style="vertical-align: top;" valign="top">
                   <td height="0" style="word-break: break-word; vertical-align: top; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%;" valign="top">
                    <span>
                    </span>
                   </td>
                  </tr>
                 </tbody>
                </table>
               </td>
              </tr>
             </tbody>
            </table>
            <!--[if (!mso)&(!IE)]><!-->
           </div>
           <!--<![endif]-->
          </div>
         </div>
         <!--[if (mso)|(IE)]></td></tr></table><![endif]-->
         <!--[if (mso)|(IE)]></td></tr></table></td></tr></table><![endif]-->
        </div>
       </div>
      </div>
      <div style="background-color:transparent;">
       <div class="block-grid two-up" style="Margin: 0 auto; min-width: 320px; max-width: 640px; overflow-wrap: break-word; word-wrap: break-word; word-break: break-word; background-color: #ffffff;">
        <div style="border-collapse: collapse;display: table;width: 100%;background-color:#ffffff;">
         <!--[if (mso)|(IE)]><table width="100%" cellpadding="0" cellspacing="0" border="0" style="background-color:transparent;"><tr><td align="center"><table cellpadding="0" cellspacing="0" border="0" style="width:640px"><tr class="layout-full-width" style="background-color:#ffffff"><![endif]-->
         <!--[if (mso)|(IE)]><td align="center" width="320" style="background-color:#ffffff;width:320px; border-top: 0px solid transparent; border-left: 0px solid transparent; border-bottom: 0px solid transparent; border-right: 0px solid transparent;" valign="top"><table width="100%" cellpadding="0" cellspacing="0" border="0"><tr><td style="padding-right: 0px; padding-left: 0px; padding-top:5px; padding-bottom:5px;"><![endif]-->
         <div class="col num6" style="min-width: 320px; max-width: 320px; display: table-cell; vertical-align: top; width: 320px;">
          <div style="width:100% !important;">
           <!--[if (!mso)&(!IE)]><!-->
           <div style="border-top:0px solid transparent; border-left:0px solid transparent; border-bottom:0px solid transparent; border-right:0px solid transparent; padding-top:5px; padding-bottom:5px; padding-right: 0px; padding-left: 0px;">
            <!--<![endif]-->
            <div style="font-size:16px;text-align:center;font-family:Arial, 'Helvetica Neue', Helvetica, sans-serif">
             <div class="our-class">
              <a>
               <img alt="$25 off" border="0" height="315" src="https://inboxflows.com/_/image/https%253A%252F%252Fmarketingassets.staples.com%252Fm%252F8daa1899dac05814%252Foriginal%252Fdg21921_374093_c3b_315x315.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtYXJrZXRpbmdhcyJ9:1kXNYe:WF02zfUWiDgbetNzXZP0PDnSR5ZiHJclgXHlHRxewy0" style="display:block;width:100%;max-width:640px;height:auto; padding-right: 5px; padding left: 5px;" width="315"/>
              </a>
             </div>
            </div>
            <!--[if (!mso)&(!IE)]><!-->
           </div>
           <!--<![endif]-->
          </div>
         </div>
         <!--[if (mso)|(IE)]></td></tr></table><![endif]-->
         <!--[if (mso)|(IE)]></td><td align="center" width="320" style="background-color:#ffffff;width:320px; border-top: 0px solid transparent; border-left: 0px solid transparent; border-bottom: 0px solid transparent; border-right: 0px solid transparent;" valign="top"><table width="100%" cellpadding="0" cellspacing="0" border="0"><tr><td style="padding-right: 0px; padding-left: 0px; padding-top:5px; padding-bottom:5px;"><![endif]-->
         <div class="col num6" style="min-width: 320px; max-width: 320px; display: table-cell; vertical-align: top; width: 320px;">
          <div style="width:100% !important;">
           <!--[if (!mso)&(!IE)]><!-->
           <div style="border-top:0px solid transparent; border-left:0px solid transparent; border-bottom:0px solid transparent; border-right:0px solid transparent; padding-top:5px; padding-bottom:5px; padding-right: 0px; padding-left: 0px;">
            <!--<![endif]-->
            <!--[if mso]><table width="100%" cellpadding="0" cellspacing="0" border="0"><tr><td style="padding-right: 15px; padding-left: 15px; padding-top: 25px; padding-bottom: 10px; font-family: Arial, sans-serif"><![endif]-->
            <div style="color:#555555;font-family:Arial, 'Helvetica Neue', Helvetica, sans-serif;line-height:1.2;padding-top:25px;padding-right:15px;padding-bottom:10px;padding-left:15px;">
             <div style="font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; line-height: 1.2; font-size: 12px; color: #555555; mso-line-height-alt: 14px;">
              <p style="line-height: 1.2; font-size: 12px; mso-line-height-alt: 14px; margin: 0;">
               <span style="color: #333333; font-size: 12px;">
                <span style="font-size: 46px;">
                 <strong>
                  $25 off
                 </strong>
                </span>
               </span>
              </p>
             </div>
            </div>
            <!--[if mso]></td></tr></table><![endif]-->
            <!--[if mso]><table width="100%" cellpadding="0" cellspacing="0" border="0"><tr><td style="padding-right: 15px; padding-left: 25px; padding-top: 15px; padding-bottom: 10px; font-family: Arial, sans-serif"><![endif]-->
            <div style="color:#555555;font-family:Arial, 'Helvetica Neue', Helvetica, sans-serif;line-height:1.2;padding-top:15px;padding-right:15px;padding-bottom:10px;padding-left:25px;">
             <div style="font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; line-height: 1.2; font-size: 12px; color: #555555; mso-line-height-alt: 14px;">
              <p style="line-height: 1.2; text-align: left; font-size: 12px; mso-line-height-alt: 14px; margin: 0;">
               <span style="font-size: 12px; color: #333333;">
                <span style="font-size: 16px;">
                 your online order of $100 or more.
                 <sup>
                  †
                 </sup>
                </span>
               </span>
              </p>
             </div>
            </div>
            <!--[if mso]></td></tr></table><![endif]-->
            <div align="left" class="button-container" style="padding-top:15px;padding-right:10px;padding-bottom:10px;padding-left:25px;">
             <!--[if mso]><table width="100%" cellpadding="0" cellspacing="0" border="0" style="border-spacing: 0; border-collapse: collapse; mso-table-lspace:0pt; mso-table-rspace:0pt;"><tr><td style="padding-top: 15px; padding-right: 10px; padding-bottom: 10px; padding-left: 25px" align="left"><v:roundrect xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="urn:schemas-microsoft-com:office:word" href="https://www.staples.com/deals/Coupon-Details/BI1870517?cid=EM_OPT_374093P3&utm_medium=SD_COUPON_ONLINE&utm_term=25OFF100&utm_source=9DAFAADC32CC21545485B5DBEDED20B4_20191130_P_OMNI_CON_BUS_BEP_SPLUS_2:30PM&utm_campaign=374093P3" style="height:28.5pt; width:105pt; v-text-anchor:middle;" arcsize="0%" stroke="false" fillcolor="#CC0000"><w:anchorlock/><v:textbox inset="0,0,0,0"><center style="color:#ffffff; font-family:Arial, sans-serif; font-size:16px"><![endif]-->
             <a style="-webkit-text-size-adjust: none; text-decoration: none; display: inline-block; color: #ffffff; background-color: #CC0000; border-radius: 0px; -webkit-border-radius: 0px; -moz-border-radius: 0px; width: auto; width: auto; border-top: 1px solid #CC0000; border-right: 1px solid #CC0000; border-bottom: 1px solid #CC0000; border-left: 1px solid #CC0000; padding-top: 5px; padding-bottom: 5px; font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; text-align: center; mso-border-alt: none; word-break: keep-all;" target="_blank">
              <span style="padding-left:25px;padding-right:25px;font-size:16px;display:inline-block;">
               <span style="font-size: 16px; line-height: 1.8; mso-line-height-alt: 29px;">
                <strong>
                 Redeem now
                </strong>
               </span>
              </span>
             </a>
             <!--[if mso]></center></v:textbox></v:roundrect></td></tr></table><![endif]-->
            </div>
            <!--[if mso]><table width="100%" cellpadding="0" cellspacing="0" border="0"><tr><td style="padding-right: 20px; padding-left: 25px; padding-top: 20px; padding-bottom: 20px; font-family: Arial, sans-serif"><![endif]-->
            <div style="color:#555555;font-family:Arial, 'Helvetica Neue', Helvetica, sans-serif;line-height:1.2;padding-top:20px;padding-right:20px;padding-bottom:20px;padding-left:25px;">
             <div style="font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; font-size: 12px; line-height: 1.2; color: #555555; mso-line-height-alt: 14px;">
              <p style="font-size: 12px; line-height: 1.2; mso-line-height-alt: 14px; margin: 0;">
               <span style="color: #333333; font-size: 12px;">
                Coupon code: 74806. Online only. Ends 12/1/19.
                <a rel="noopener" style="text-decoration: underline; color: #333333;" target="_blank" title="See details.">
                 See details.
                </a>
               </span>
              </p>
             </div>
            </div>
            <!--[if mso]></td></tr></table><![endif]-->
            <!--[if (!mso)&(!IE)]><!-->
           </div>
           <!--<![endif]-->
          </div>
         </div>
         <!--[if (mso)|(IE)]></td></tr></table><![endif]-->
         <!--[if (mso)|(IE)]></td></tr></table></td></tr></table><![endif]-->
        </div>
       </div>
      </div>
      <div style="background-color:transparent;">
       <div class="block-grid" style="Margin: 0 auto; min-width: 320px; max-width: 640px; overflow-wrap: break-word; word-wrap: break-word; word-break: break-word; background-color: #ffffff;">
        <div style="border-collapse: collapse;display: table;width: 100%;background-color:#ffffff;">
         <!--[if (mso)|(IE)]><table width="100%" cellpadding="0" cellspacing="0" border="0" style="background-color:transparent;"><tr><td align="center"><table cellpadding="0" cellspacing="0" border="0" style="width:640px"><tr class="layout-full-width" style="background-color:#ffffff"><![endif]-->
         <!--[if (mso)|(IE)]><td align="center" width="640" style="background-color:#ffffff;width:640px; border-top: 0px solid transparent; border-left: 0px solid transparent; border-bottom: 0px solid transparent; border-right: 0px solid transparent;" valign="top"><table width="100%" cellpadding="0" cellspacing="0" border="0"><tr><td style="padding-right: 0px; padding-left: 0px; padding-top:5px; padding-bottom:5px;"><![endif]-->
         <div class="col num12" style="min-width: 320px; max-width: 640px; display: table-cell; vertical-align: top; width: 640px;">
          <div style="width:100% !important;">
           <!--[if (!mso)&(!IE)]><!-->
           <div style="border-top:0px solid transparent; border-left:0px solid transparent; border-bottom:0px solid transparent; border-right:0px solid transparent; padding-top:5px; padding-bottom:5px; padding-right: 0px; padding-left: 0px;">
            <!--<![endif]-->
            <table border="0" cellpadding="0" cellspacing="0" class="divider" role="presentation" style="table-layout: fixed; vertical-align: top; border-spacing: 0; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; min-width: 100%; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%;" valign="top" width="100%">
             <tbody>
              <tr style="vertical-align: top;" valign="top">
               <td class="divider_inner" style="word-break: break-word; vertical-align: top; min-width: 100%; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%; padding-top: 10px; padding-right: 10px; padding-bottom: 10px; padding-left: 10px;" valign="top">
                <table align="center" border="0" cellpadding="0" cellspacing="0" class="divider_content" height="0" role="presentation" style="table-layout: fixed; vertical-align: top; border-spacing: 0; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-top: 4px solid #cccccc; height: 0px; width: 100%;" valign="top" width="100%">
                 <tbody>
                  <tr style="vertical-align: top;" valign="top">
                   <td height="0" style="word-break: break-word; vertical-align: top; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%;" valign="top">
                    <span>
                    </span>
                   </td>
                  </tr>
                 </tbody>
                </table>
               </td>
              </tr>
             </tbody>
            </table>
            <!--[if (!mso)&(!IE)]><!-->
           </div>
           <!--<![endif]-->
          </div>
         </div>
         <!--[if (mso)|(IE)]></td></tr></table><![endif]-->
         <!--[if (mso)|(IE)]></td></tr></table></td></tr></table><![endif]-->
        </div>
       </div>
      </div>
      <div style="background-color:transparent;">
       <div class="block-grid" style="Margin: 0 auto; min-width: 320px; max-width: 640px; overflow-wrap: break-word; word-wrap: break-word; word-break: break-word; background-color: #ffffff;">
        <div style="border-collapse: collapse;display: table;width: 100%;background-color:#ffffff;">
         <!--[if (mso)|(IE)]><table width="100%" cellpadding="0" cellspacing="0" border="0" style="background-color:transparent;"><tr><td align="center"><table cellpadding="0" cellspacing="0" border="0" style="width:640px"><tr class="layout-full-width" style="background-color:#ffffff"><![endif]-->
         <!--[if (mso)|(IE)]><td align="center" width="640" style="background-color:#ffffff;width:640px; border-top: 0px solid transparent; border-left: 0px solid transparent; border-bottom: 0px solid transparent; border-right: 0px solid transparent;" valign="top"><table width="100%" cellpadding="0" cellspacing="0" border="0"><tr><td style="padding-right: 0px; padding-left: 0px; padding-top:5px; padding-bottom:5px;"><![endif]-->
         <div class="col num12" style="min-width: 320px; max-width: 640px; display: table-cell; vertical-align: top; width: 640px;">
          <div style="width:100% !important;">
           <!--[if (!mso)&(!IE)]><!-->
           <div style="border-top:0px solid transparent; border-left:0px solid transparent; border-bottom:0px solid transparent; border-right:0px solid transparent; padding-top:5px; padding-bottom:5px; padding-right: 0px; padding-left: 0px;">
            <!--<![endif]-->
            <div style="font-size:16px;text-align:center;font-family:Arial, 'Helvetica Neue', Helvetica, sans-serif">
             <div class="our-class">
              <a>
               <img alt="HP Pavilion laptop" border="0" height="350" src="https://inboxflows.com/_/image/https%253A%252F%252Fmarketingassets.staples.com%252Fm%252Fbf2c30c1e0770043%252Foriginal%252Fdg21921_376735_p1b_640x350.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtYXJrZXRpbmdhcyJ9:1kXNYe:WF02zfUWiDgbetNzXZP0PDnSR5ZiHJclgXHlHRxewy0" style="display:block;width:100%;max-width:640px;height:auto;" width="640"/>
              </a>
             </div>
            </div>
            <!--[if mso]><table width="100%" cellpadding="0" cellspacing="0" border="0"><tr><td style="padding-right: 10px; padding-left: 10px; padding-top: 10px; padding-bottom: 15px; font-family: Arial, sans-serif"><![endif]-->
            <div style="color:#555555;font-family:Arial, 'Helvetica Neue', Helvetica, sans-serif;line-height:1.2;padding-top:10px;padding-right:10px;padding-bottom:15px;padding-left:10px;">
             <div style="font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; font-size: 12px; line-height: 1.2; color: #555555; mso-line-height-alt: 14px;">
              <p style="font-size: 16px; line-height: 1.2; mso-line-height-alt: 19px; margin: 0;">
               <span style="font-size: 16px;">
                <span style="color: #cc0000; font-size: 16px;">
                 <strong>
                  Only $499.99
                 </strong>
                </span>
               </span>
               <span style="font-size: 16px;">
                <span style="color: #333333; font-size: 16px;">
                 for the HP Pavilion 15.6" laptop with Intel
                 <sup>
                  ®
                 </sup>
                 Core™ i7 processor.
                </span>
               </span>
              </p>
             </div>
            </div>
            <!--[if mso]></td></tr></table><![endif]-->
            <!--[if (!mso)&(!IE)]><!-->
           </div>
           <!--<![endif]-->
          </div>
         </div>
         <!--[if (mso)|(IE)]></td></tr></table><![endif]-->
         <!--[if (mso)|(IE)]></td></tr></table></td></tr></table><![endif]-->
        </div>
       </div>
      </div>
      <div style="background-color:transparent;">
       <div class="block-grid two-up" style="Margin: 0 auto; min-width: 320px; max-width: 640px; overflow-wrap: break-word; word-wrap: break-word; word-break: break-word; background-color: #ffffff;">
        <div style="border-collapse: collapse;display: table;width: 100%;background-color:#ffffff;">
         <!--[if (mso)|(IE)]><table width="100%" cellpadding="0" cellspacing="0" border="0" style="background-color:transparent;"><tr><td align="center"><table cellpadding="0" cellspacing="0" border="0" style="width:640px"><tr class="layout-full-width" style="background-color:#ffffff"><![endif]-->
         <!--[if (mso)|(IE)]><td align="center" width="320" style="background-color:#ffffff;width:320px; border-top: 0px solid transparent; border-left: 0px solid transparent; border-bottom: 0px solid transparent; border-right: 0px solid transparent;" valign="top"><table width="100%" cellpadding="0" cellspacing="0" border="0"><tr><td style="padding-right: 0px; padding-left: 0px; padding-top:5px; padding-bottom:5px;"><![endif]-->
         <div class="col num6" style="min-width: 320px; max-width: 320px; display: table-cell; vertical-align: top; width: 320px;">
          <div style="width:100% !important;">
           <!--[if (!mso)&(!IE)]><!-->
           <div style="border-top:0px solid transparent; border-left:0px solid transparent; border-bottom:0px solid transparent; border-right:0px solid transparent; padding-top:5px; padding-bottom:5px; padding-right: 0px; padding-left: 0px;">
            <!--<![endif]-->
            <div align="left" class="button-container" style="padding-top:5px;padding-right:0px;padding-bottom:5px;padding-left:10px;">
             <!--[if mso]><table width="100%" cellpadding="0" cellspacing="0" border="0" style="border-spacing: 0; border-collapse: collapse; mso-table-lspace:0pt; mso-table-rspace:0pt;"><tr><td style="padding-top: 5px; padding-right: 0px; padding-bottom: 5px; padding-left: 10px" align="left"><v:roundrect xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="urn:schemas-microsoft-com:office:word" href="https://www.staples.com/deals/Black-Friday-Deals/BI1146571?cid=EM_OPT_355642P1&utm_medium=Technology_XC&utm_term=49999HPI7&utm_source=9DAFAADC32CC21545485B5DBEDED20B4_20191130_P_OMNI_CON_BUS_BEP_SPLUS_2:30PM&utm_campaign=355642P1" style="height:28.5pt; width:117.75pt; v-text-anchor:middle;" arcsize="0%" stroke="false" fillcolor="#CC0000"><w:anchorlock/><v:textbox inset="0,0,0,0"><center style="color:#ffffff; font-family:Arial, sans-serif; font-size:16px"><![endif]-->
             <a style="-webkit-text-size-adjust: none; text-decoration: none; display: inline-block; color: #ffffff; background-color: #CC0000; border-radius: 0px; -webkit-border-radius: 0px; -moz-border-radius: 0px; width: auto; width: auto; border-top: 1px solid #CC0000; border-right: 1px solid #CC0000; border-bottom: 1px solid #CC0000; border-left: 1px solid #CC0000; padding-top: 5px; padding-bottom: 5px; font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; text-align: center; mso-border-alt: none; word-break: keep-all;" target="_blank">
              <span style="padding-left:25px;padding-right:40px;font-size:16px;display:inline-block;">
               <span style="font-size: 16px; line-height: 1.8; mso-line-height-alt: 29px;">
                <strong>
                 <span style="font-size: 16px; line-height: 28px;">
                  Shop now
                 </span>
                </strong>
               </span>
              </span>
             </a>
             <!--[if mso]></center></v:textbox></v:roundrect></td></tr></table><![endif]-->
            </div>
            <!--[if (!mso)&(!IE)]><!-->
           </div>
           <!--<![endif]-->
          </div>
         </div>
         <!--[if (mso)|(IE)]></td></tr></table><![endif]-->
         <!--[if (mso)|(IE)]></td><td align="center" width="320" style="background-color:#ffffff;width:320px; border-top: 0px solid transparent; border-left: 0px solid transparent; border-bottom: 0px solid transparent; border-right: 0px solid transparent;" valign="top"><table width="100%" cellpadding="0" cellspacing="0" border="0"><tr><td style="padding-right: 0px; padding-left: 0px; padding-top:5px; padding-bottom:5px;"><![endif]-->
         <div class="col num6" style="min-width: 320px; max-width: 320px; display: table-cell; vertical-align: top; width: 320px;">
          <div style="width:100% !important;">
           <!--[if (!mso)&(!IE)]><!-->
           <div style="border-top:0px solid transparent; border-left:0px solid transparent; border-bottom:0px solid transparent; border-right:0px solid transparent; padding-top:5px; padding-bottom:5px; padding-right: 0px; padding-left: 0px;">
            <!--<![endif]-->
            <div align="left" class="button-container" style="padding-top:5px;padding-right:0px;padding-bottom:5px;padding-left:10px;">
             <!--[if mso]><table width="100%" cellpadding="0" cellspacing="0" border="0" style="border-spacing: 0; border-collapse: collapse; mso-table-lspace:0pt; mso-table-rspace:0pt;"><tr><td style="padding-top: 5px; padding-right: 0px; padding-bottom: 5px; padding-left: 10px" align="left"><v:roundrect xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="urn:schemas-microsoft-com:office:word" href="https://stores.staples.com?cid=EM_OPT_355642P1&utm_medium=Technology_XC&utm_term=49999HPI7&utm_source=9DAFAADC32CC21545485B5DBEDED20B4_20191130_P_OMNI_CON_BUS_BEP_SPLUS_2:30PM&utm_campaign=355642P1" style="height:28.5pt; width:117.75pt; v-text-anchor:middle;" arcsize="0%" stroke="false" fillcolor="#CC0000"><w:anchorlock/><v:textbox inset="0,0,0,0"><center style="color:#ffffff; font-family:Arial, sans-serif; font-size:16px"><![endif]-->
             <a style="-webkit-text-size-adjust: none; text-decoration: none; display: inline-block; color: #ffffff; background-color: #CC0000; border-radius: 0px; -webkit-border-radius: 0px; -moz-border-radius: 0px; width: auto; width: auto; border-top: 1px solid #CC0000; border-right: 1px solid #CC0000; border-bottom: 1px solid #CC0000; border-left: 1px solid #CC0000; padding-top: 5px; padding-bottom: 5px; font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; text-align: center; mso-border-alt: none; word-break: keep-all;" target="_blank">
              <span style="padding-left:25px;padding-right:25px;font-size:16px;display:inline-block;">
               <span style="font-size: 16px; line-height: 1.8; mso-line-height-alt: 29px;">
                <strong>
                 <span style="font-size: 16px; line-height: 28px;">
                  Find a store
                 </span>
                </strong>
               </span>
              </span>
             </a>
             <!--[if mso]></center></v:textbox></v:roundrect></td></tr></table><![endif]-->
            </div>
            <!--[if (!mso)&(!IE)]><!-->
           </div>
           <!--<![endif]-->
          </div>
         </div>
         <!--[if (mso)|(IE)]></td></tr></table><![endif]-->
         <!--[if (mso)|(IE)]></td></tr></table></td></tr></table><![endif]-->
        </div>
       </div>
      </div>
      <div style="background-color:transparent;">
       <div class="block-grid" style="Margin: 0 auto; min-width: 320px; max-width: 640px; overflow-wrap: break-word; word-wrap: break-word; word-break: break-word; background-color: #ffffff;">
        <div style="border-collapse: collapse;display: table;width: 100%;background-color:#ffffff;">
         <!--[if (mso)|(IE)]><table width="100%" cellpadding="0" cellspacing="0" border="0" style="background-color:transparent;"><tr><td align="center"><table cellpadding="0" cellspacing="0" border="0" style="width:640px"><tr class="layout-full-width" style="background-color:#ffffff"><![endif]-->
         <!--[if (mso)|(IE)]><td align="center" width="640" style="background-color:#ffffff;width:640px; border-top: 0px solid transparent; border-left: 0px solid transparent; border-bottom: 0px solid transparent; border-right: 0px solid transparent;" valign="top"><table width="100%" cellpadding="0" cellspacing="0" border="0"><tr><td style="padding-right: 0px; padding-left: 0px; padding-top:5px; padding-bottom:5px;"><![endif]-->
         <div class="col num12" style="min-width: 320px; max-width: 640px; display: table-cell; vertical-align: top; width: 640px;">
          <div style="width:100% !important;">
           <!--[if (!mso)&(!IE)]><!-->
           <div style="border-top:0px solid transparent; border-left:0px solid transparent; border-bottom:0px solid transparent; border-right:0px solid transparent; padding-top:5px; padding-bottom:5px; padding-right: 0px; padding-left: 0px;">
            <!--<![endif]-->
            <!--[if mso]><table width="100%" cellpadding="0" cellspacing="0" border="0"><tr><td style="padding-right: 10px; padding-left: 10px; padding-top: 10px; padding-bottom: 10px; font-family: Arial, sans-serif"><![endif]-->
            <div style="color:#555555;font-family:Arial, 'Helvetica Neue', Helvetica, sans-serif;line-height:1.2;padding-top:10px;padding-right:10px;padding-bottom:10px;padding-left:10px;">
             <div style="font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; font-size: 12px; line-height: 1.2; color: #555555; mso-line-height-alt: 14px;">
              <p style="font-size: 12px; line-height: 1.2; mso-line-height-alt: 14px; margin: 0;">
               <span style="color: #333333; font-size: 12px;">
                Ends 11/30/19. While supplies last.
               </span>
              </p>
             </div>
            </div>
            <!--[if mso]></td></tr></table><![endif]-->
            <table border="0" cellpadding="0" cellspacing="0" class="divider" role="presentation" style="table-layout: fixed; vertical-align: top; border-spacing: 0; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; min-width: 100%; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%;" valign="top" width="100%">
             <tbody>
              <tr style="vertical-align: top;" valign="top">
               <td class="divider_inner" style="word-break: break-word; vertical-align: top; min-width: 100%; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%; padding-top: 10px; padding-right: 10px; padding-bottom: 10px; padding-left: 10px;" valign="top">
                <table align="center" border="0" cellpadding="0" cellspacing="0" class="divider_content" height="0" role="presentation" style="table-layout: fixed; vertical-align: top; border-spacing: 0; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-top: 4px solid #cccccc; height: 0px; width: 100%;" valign="top" width="100%">
                 <tbody>
                  <tr style="vertical-align: top;" valign="top">
                   <td height="0" style="word-break: break-word; vertical-align: top; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%;" valign="top">
                    <span>
                    </span>
                   </td>
                  </tr>
                 </tbody>
                </table>
               </td>
              </tr>
             </tbody>
            </table>
            <!--[if (!mso)&(!IE)]><!-->
           </div>
           <!--<![endif]-->
          </div>
         </div>
         <!--[if (mso)|(IE)]></td></tr></table><![endif]-->
         <!--[if (mso)|(IE)]></td></tr></table></td></tr></table><![endif]-->
        </div>
       </div>
      </div>
      <div style="background-color:transparent;">
       <div class="block-grid" style="Margin: 0 auto; min-width: 320px; max-width: 640px; overflow-wrap: break-word; word-wrap: break-word; word-break: break-word; background-color: #ffffff;">
        <div style="border-collapse: collapse;display: table;width: 100%;background-color:#ffffff;">
         <!--[if (mso)|(IE)]><table width="100%" cellpadding="0" cellspacing="0" border="0" style="background-color:transparent;"><tr><td align="center"><table cellpadding="0" cellspacing="0" border="0" style="width:640px"><tr class="layout-full-width" style="background-color:#ffffff"><![endif]-->
         <!--[if (mso)|(IE)]><td align="center" width="640" style="background-color:#ffffff;width:640px; border-top: 0px solid transparent; border-left: 0px solid transparent; border-bottom: 0px solid transparent; border-right: 0px solid transparent;" valign="top"><table width="100%" cellpadding="0" cellspacing="0" border="0"><tr><td style="padding-right: 0px; padding-left: 0px; padding-top:5px; padding-bottom:5px;"><![endif]-->
         <div class="col num12" style="min-width: 320px; max-width: 640px; display: table-cell; vertical-align: top; width: 640px;">
          <div style="width:100% !important;">
           <!--[if (!mso)&(!IE)]><!-->
           <div style="border-top:0px solid transparent; border-left:0px solid transparent; border-bottom:0px solid transparent; border-right:0px solid transparent; padding-top:5px; padding-bottom:5px; padding-right: 0px; padding-left: 0px;">
            <!--<![endif]-->
            <div style="font-size:16px;text-align:center;font-family:Arial, 'Helvetica Neue', Helvetica, sans-serif">
             <div class="our-class">
              <a>
               <img alt="Only $28.99" border="0" height="350" src="https://inboxflows.com/_/image/https%253A%252F%252Fmarketingassets.staples.com%252Fm%252Ff196f4262e1d72e0%252Foriginal%252Fdg21921_368341_p1_640x350.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtYXJrZXRpbmdhcyJ9:1kXNYe:WF02zfUWiDgbetNzXZP0PDnSR5ZiHJclgXHlHRxewy0" style="display:block;width:100%;max-width:640px;height:auto;" width="640"/>
              </a>
             </div>
            </div>
            <!--[if mso]><table width="100%" cellpadding="0" cellspacing="0" border="0"><tr><td style="padding-right: 10px; padding-left: 10px; padding-top: 10px; padding-bottom: 15px; font-family: Arial, sans-serif"><![endif]-->
            <div style="color:#555555;font-family:Arial, 'Helvetica Neue', Helvetica, sans-serif;line-height:1.2;padding-top:10px;padding-right:10px;padding-bottom:15px;padding-left:10px;">
             <div style="font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; font-size: 12px; line-height: 1.2; color: #555555; mso-line-height-alt: 14px;">
              <p style="font-size: 16px; line-height: 1.2; mso-line-height-alt: 19px; margin: 0;">
               <span style="font-size: 16px;">
                <span style="color: #cc0000; font-size: 16px;">
                 <strong>
                  Only $28.99
                 </strong>
                </span>
               </span>
               <span style="font-size: 16px; color: #333333;">
                for TRU RED™ color printer paper, letter, 10-ream case — in store only.
               </span>
              </p>
             </div>
            </div>
            <!--[if mso]></td></tr></table><![endif]-->
            <div align="left" class="button-container" style="padding-top:5px;padding-right:0px;padding-bottom:5px;padding-left:10px;">
             <!--[if mso]><table width="100%" cellpadding="0" cellspacing="0" border="0" style="border-spacing: 0; border-collapse: collapse; mso-table-lspace:0pt; mso-table-rspace:0pt;"><tr><td style="padding-top: 5px; padding-right: 0px; padding-bottom: 5px; padding-left: 10px" align="left"><v:roundrect xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="urn:schemas-microsoft-com:office:word" href="https://stores.staples.com?cid=EM_OPT_368341AP2&utm_medium=Paper_STORE&utm_term=2899TRURED10RM&utm_source=9DAFAADC32CC21545485B5DBEDED20B4_20191130_P_OMNI_CON_BUS_BEP_SPLUS_2:30PM&utm_campaign=368341AP2" style="height:28.5pt; width:117.75pt; v-text-anchor:middle;" arcsize="0%" stroke="false" fillcolor="#CC0000"><w:anchorlock/><v:textbox inset="0,0,0,0"><center style="color:#ffffff; font-family:Arial, sans-serif; font-size:16px"><![endif]-->
             <a style="-webkit-text-size-adjust: none; text-decoration: none; display: inline-block; color: #ffffff; background-color: #CC0000; border-radius: 0px; -webkit-border-radius: 0px; -moz-border-radius: 0px; width: auto; width: auto; border-top: 1px solid #CC0000; border-right: 1px solid #CC0000; border-bottom: 1px solid #CC0000; border-left: 1px solid #CC0000; padding-top: 5px; padding-bottom: 5px; font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; text-align: center; mso-border-alt: none; word-break: keep-all;" target="_blank">
              <span style="padding-left:25px;padding-right:25px;font-size:16px;display:inline-block;">
               <span style="font-size: 16px; line-height: 1.8; mso-line-height-alt: 29px;">
                <strong>
                 <span style="font-size: 16px; line-height: 28px;">
                  Find a store
                 </span>
                </strong>
               </span>
              </span>
             </a>
             <!--[if mso]></center></v:textbox></v:roundrect></td></tr></table><![endif]-->
            </div>
            <!--[if mso]><table width="100%" cellpadding="0" cellspacing="0" border="0"><tr><td style="padding-right: 10px; padding-left: 10px; padding-top: 10px; padding-bottom: 10px; font-family: Arial, sans-serif"><![endif]-->
            <div style="color:#555555;font-family:Arial, 'Helvetica Neue', Helvetica, sans-serif;line-height:1.2;padding-top:10px;padding-right:10px;padding-bottom:10px;padding-left:10px;">
             <div style="font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; font-size: 12px; line-height: 1.2; color: #555555; mso-line-height-alt: 14px;">
              <p style="font-size: 12px; line-height: 1.2; mso-line-height-alt: 14px; margin: 0;">
               <span style="color: #333333; font-size: 12px;">
                In store only. Ends 11/30/19. Limit 5 per customer.
               </span>
              </p>
             </div>
            </div>
            <!--[if mso]></td></tr></table><![endif]-->
            <!--[if (!mso)&(!IE)]><!-->
           </div>
           <!--<![endif]-->
          </div>
         </div>
         <!--[if (mso)|(IE)]></td></tr></table><![endif]-->
         <!--[if (mso)|(IE)]></td></tr></table></td></tr></table><![endif]-->
        </div>
       </div>
      </div>
      <div style="background-color:transparent;">
       <div class="block-grid" style="Margin: 0 auto; min-width: 320px; max-width: 640px; overflow-wrap: break-word; word-wrap: break-word; word-break: break-word; background-color: #ffffff;">
        <div style="border-collapse: collapse;display: table;width: 100%;background-color:#ffffff;">
         <!--[if (mso)|(IE)]><table width="100%" cellpadding="0" cellspacing="0" border="0" style="background-color:transparent;"><tr><td align="center"><table cellpadding="0" cellspacing="0" border="0" style="width:640px"><tr class="layout-full-width" style="background-color:#ffffff"><![endif]-->
         <!--[if (mso)|(IE)]><td align="center" width="640" style="background-color:#ffffff;width:640px; border-top: 0px solid transparent; border-left: 0px solid transparent; border-bottom: 0px solid transparent; border-right: 0px solid transparent;" valign="top"><table width="100%" cellpadding="0" cellspacing="0" border="0"><tr><td style="padding-right: 0px; padding-left: 0px; padding-top:5px; padding-bottom:5px;"><![endif]-->
         <div class="col num12" style="min-width: 320px; max-width: 640px; display: table-cell; vertical-align: top; width: 640px;">
          <div style="width:100% !important;">
           <!--[if (!mso)&(!IE)]><!-->
           <div style="border-top:0px solid transparent; border-left:0px solid transparent; border-bottom:0px solid transparent; border-right:0px solid transparent; padding-top:5px; padding-bottom:5px; padding-right: 0px; padding-left: 0px;">
            <!--<![endif]-->
            <table border="0" cellpadding="0" cellspacing="0" class="divider" role="presentation" style="table-layout: fixed; vertical-align: top; border-spacing: 0; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; min-width: 100%; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%;" valign="top" width="100%">
             <tbody>
              <tr style="vertical-align: top;" valign="top">
               <td class="divider_inner" style="word-break: break-word; vertical-align: top; min-width: 100%; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%; padding-top: 10px; padding-right: 10px; padding-bottom: 10px; padding-left: 10px;" valign="top">
                <table align="center" border="0" cellpadding="0" cellspacing="0" class="divider_content" height="0" role="presentation" style="table-layout: fixed; vertical-align: top; border-spacing: 0; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-top: 4px solid #cccccc; height: 0px; width: 100%;" valign="top" width="100%">
                 <tbody>
                  <tr style="vertical-align: top;" valign="top">
                   <td height="0" style="word-break: break-word; vertical-align: top; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%;" valign="top">
                    <span>
                    </span>
                   </td>
                  </tr>
                 </tbody>
                </table>
               </td>
              </tr>
             </tbody>
            </table>
            <!--[if (!mso)&(!IE)]><!-->
           </div>
           <!--<![endif]-->
          </div>
         </div>
         <!--[if (mso)|(IE)]></td></tr></table><![endif]-->
         <!--[if (mso)|(IE)]></td></tr></table></td></tr></table><![endif]-->
        </div>
       </div>
      </div>
      <div style="background-color:transparent;">
       <div class="block-grid two-up" style="Margin: 0 auto; min-width: 320px; max-width: 640px; overflow-wrap: break-word; word-wrap: break-word; word-break: break-word; background-color: #ffffff;">
        <div style="border-collapse: collapse;display: table;width: 100%;background-color:#ffffff;">
         <!--[if (mso)|(IE)]><table width="100%" cellpadding="0" cellspacing="0" border="0" style="background-color:transparent;"><tr><td align="center"><table cellpadding="0" cellspacing="0" border="0" style="width:640px"><tr class="layout-full-width" style="background-color:#ffffff"><![endif]-->
         <!--[if (mso)|(IE)]><td align="center" width="320" style="background-color:#ffffff;width:320px; border-top: 0px solid transparent; border-left: 0px solid transparent; border-bottom: 0px solid transparent; border-right: 0px solid transparent;" valign="top"><table width="100%" cellpadding="0" cellspacing="0" border="0"><tr><td style="padding-right: 0px; padding-left: 0px; padding-top:5px; padding-bottom:5px;"><![endif]-->
         <div class="col num6" style="min-width: 320px; max-width: 320px; display: table-cell; vertical-align: top; width: 320px;">
          <div style="width:100% !important;">
           <!--[if (!mso)&(!IE)]><!-->
           <div style="border-top:0px solid transparent; border-left:0px solid transparent; border-bottom:0px solid transparent; border-right:0px solid transparent; padding-top:5px; padding-bottom:5px; padding-right: 0px; padding-left: 0px;">
            <!--<![endif]-->
            <div style="font-size:16px;text-align:center;font-family:Arial, 'Helvetica Neue', Helvetica, sans-serif">
             <div class="our-class">
              <a>
               <img alt="25% back" border="0" height="315" src="https://inboxflows.com/_/image/https%253A%252F%252Fmarketingassets.staples.com%252Fm%252F53cd69e3a80c82f2%252Foriginal%252Fdg21921_371326_c3_315x315.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtYXJrZXRpbmdhcyJ9:1kXNYe:WF02zfUWiDgbetNzXZP0PDnSR5ZiHJclgXHlHRxewy0" style="display:block;width:100%;max-width:640px;height:auto; padding-right: 5px; padding left: 5px;" width="315"/>
              </a>
             </div>
            </div>
            <!--[if (!mso)&(!IE)]><!-->
           </div>
           <!--<![endif]-->
          </div>
         </div>
         <!--[if (mso)|(IE)]></td></tr></table><![endif]-->
         <!--[if (mso)|(IE)]></td><td align="center" width="320" style="background-color:#ffffff;width:320px; border-top: 0px solid transparent; border-left: 0px solid transparent; border-bottom: 0px solid transparent; border-right: 0px solid transparent;" valign="top"><table width="100%" cellpadding="0" cellspacing="0" border="0"><tr><td style="padding-right: 0px; padding-left: 0px; padding-top:5px; padding-bottom:5px;"><![endif]-->
         <div class="col num6" style="min-width: 320px; max-width: 320px; display: table-cell; vertical-align: top; width: 320px;">
          <div style="width:100% !important;">
           <!--[if (!mso)&(!IE)]><!-->
           <div style="border-top:0px solid transparent; border-left:0px solid transparent; border-bottom:0px solid transparent; border-right:0px solid transparent; padding-top:5px; padding-bottom:5px; padding-right: 0px; padding-left: 0px;">
            <!--<![endif]-->
            <!--[if mso]><table width="100%" cellpadding="0" cellspacing="0" border="0"><tr><td style="padding-right: 15px; padding-left: 15px; padding-top: 25px; padding-bottom: 10px; font-family: Arial, sans-serif"><![endif]-->
            <div style="color:#555555;font-family:Arial, 'Helvetica Neue', Helvetica, sans-serif;line-height:1.2;padding-top:25px;padding-right:15px;padding-bottom:10px;padding-left:15px;">
             <div style="font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; line-height: 1.2; font-size: 12px; color: #555555; mso-line-height-alt: 14px;">
              <p style="line-height: 1.2; font-size: 12px; mso-line-height-alt: 14px; margin: 0;">
               <span style="color: #333333; font-size: 12px;">
                <span style="font-size: 46px;">
                 <strong>
                  25% back in rewards
                 </strong>
                </span>
               </span>
              </p>
             </div>
            </div>
            <!--[if mso]></td></tr></table><![endif]-->
            <!--[if mso]><table width="100%" cellpadding="0" cellspacing="0" border="0"><tr><td style="padding-right: 15px; padding-left: 25px; padding-top: 15px; padding-bottom: 10px; font-family: Arial, sans-serif"><![endif]-->
            <div style="color:#555555;font-family:Arial, 'Helvetica Neue', Helvetica, sans-serif;line-height:1.2;padding-top:15px;padding-right:15px;padding-bottom:10px;padding-left:25px;">
             <div style="font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; line-height: 1.2; font-size: 12px; color: #555555; mso-line-height-alt: 14px;">
              <p style="line-height: 1.2; text-align: left; font-size: 16px; mso-line-height-alt: 19px; margin: 0;">
               <span style="font-size: 16px; color: #333333;">
                on $75 of ink or $200 of toner.
                <sup>
                 †
                </sup>
               </span>
              </p>
             </div>
            </div>
            <!--[if mso]></td></tr></table><![endif]-->
            <div align="left" class="button-container" style="padding-top:15px;padding-right:10px;padding-bottom:10px;padding-left:25px;">
             <!--[if mso]><table width="100%" cellpadding="0" cellspacing="0" border="0" style="border-spacing: 0; border-collapse: collapse; mso-table-lspace:0pt; mso-table-rspace:0pt;"><tr><td style="padding-top: 15px; padding-right: 10px; padding-bottom: 10px; padding-left: 25px" align="left"><v:roundrect xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="urn:schemas-microsoft-com:office:word" href="https://www.staples.com/sbd/cre/products/190421/dg19435/?cid=EM_OPT_371326CAT_POS_01&utm_medium=Ink_Toner_XC&utm_term=25REWARDS75INK200TONER&utm_source=9DAFAADC32CC21545485B5DBEDED20B4_20191130_P_OMNI_CON_BUS_BEP_SPLUS_2:30PM&utm_campaign=371326CAT_POS_01" style="height:28.5pt; width:99pt; v-text-anchor:middle;" arcsize="0%" stroke="false" fillcolor="#CC0000"><w:anchorlock/><v:textbox inset="0,0,0,0"><center style="color:#ffffff; font-family:Arial, sans-serif; font-size:16px"><![endif]-->
             <a style="-webkit-text-size-adjust: none; text-decoration: none; display: inline-block; color: #ffffff; background-color: #CC0000; border-radius: 0px; -webkit-border-radius: 0px; -moz-border-radius: 0px; width: auto; width: auto; border-top: 1px solid #CC0000; border-right: 1px solid #CC0000; border-bottom: 1px solid #CC0000; border-left: 1px solid #CC0000; padding-top: 5px; padding-bottom: 5px; font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; text-align: center; mso-border-alt: none; word-break: keep-all;" target="_blank">
              <span style="padding-left:25px;padding-right:35px;font-size:16px;display:inline-block;">
               <span style="font-size: 16px; line-height: 1.8; mso-line-height-alt: 29px;">
                <strong>
                 Shop now
                </strong>
               </span>
              </span>
             </a>
             <!--[if mso]></center></v:textbox></v:roundrect></td></tr></table><![endif]-->
            </div>
            <div align="left" class="button-container" style="padding-top:10px;padding-right:10px;padding-bottom:10px;padding-left:25px;">
             <!--[if mso]><table width="100%" cellpadding="0" cellspacing="0" border="0" style="border-spacing: 0; border-collapse: collapse; mso-table-lspace:0pt; mso-table-rspace:0pt;"><tr><td style="padding-top: 10px; padding-right: 10px; padding-bottom: 10px; padding-left: 25px" align="left"><v:roundrect xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="urn:schemas-microsoft-com:office:word" href="https://stores.staples.com?cid=EM_OPT_371326CAT_POS_01&utm_medium=Ink_Toner_XC&utm_term=25REWARDS75INK200TONER&utm_source=9DAFAADC32CC21545485B5DBEDED20B4_20191130_P_OMNI_CON_BUS_BEP_SPLUS_2:30PM&utm_campaign=371326CAT_POS_01" style="height:28.5pt; width:99pt; v-text-anchor:middle;" arcsize="0%" stroke="false" fillcolor="#CC0000"><w:anchorlock/><v:textbox inset="0,0,0,0"><center style="color:#ffffff; font-family:Arial, sans-serif; font-size:16px"><![endif]-->
             <a style="-webkit-text-size-adjust: none; text-decoration: none; display: inline-block; color: #ffffff; background-color: #CC0000; border-radius: 0px; -webkit-border-radius: 0px; -moz-border-radius: 0px; width: auto; width: auto; border-top: 1px solid #CC0000; border-right: 1px solid #CC0000; border-bottom: 1px solid #CC0000; border-left: 1px solid #CC0000; padding-top: 5px; padding-bottom: 5px; font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; text-align: center; mso-border-alt: none; word-break: keep-all;" target="_blank">
              <span style="padding-left:25px;padding-right:25px;font-size:16px;display:inline-block;">
               <span style="font-size: 16px; line-height: 1.8; mso-line-height-alt: 29px;">
                <strong>
                 Find a store
                </strong>
               </span>
              </span>
             </a>
             <!--[if mso]></center></v:textbox></v:roundrect></td></tr></table><![endif]-->
            </div>
            <!--[if mso]><table width="100%" cellpadding="0" cellspacing="0" border="0"><tr><td style="padding-right: 20px; padding-left: 25px; padding-top: 10px; padding-bottom: 10px; font-family: Arial, sans-serif"><![endif]-->
            <div style="color:#555555;font-family:Arial, 'Helvetica Neue', Helvetica, sans-serif;line-height:1.2;padding-top:10px;padding-right:20px;padding-bottom:10px;padding-left:25px;">
             <div style="font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; font-size: 12px; line-height: 1.2; color: #555555; mso-line-height-alt: 14px;">
              <p style="font-size: 12px; line-height: 1.2; mso-line-height-alt: 14px; margin: 0;">
               <span style="color: #333333; font-size: 12px;">
                Coupon code: 43409. Ends 11/30/19.
               </span>
              </p>
             </div>
            </div>
            <!--[if mso]></td></tr></table><![endif]-->
            <!--[if (!mso)&(!IE)]><!-->
           </div>
           <!--<![endif]-->
          </div>
         </div>
         <!--[if (mso)|(IE)]></td></tr></table><![endif]-->
         <!--[if (mso)|(IE)]></td></tr></table></td></tr></table><![endif]-->
        </div>
       </div>
      </div>
      <div style="background-color:transparent;">
       <div class="block-grid" style="Margin: 0 auto; min-width: 320px; max-width: 640px; overflow-wrap: break-word; word-wrap: break-word; word-break: break-word; background-color: #ffffff;">
        <div style="border-collapse: collapse;display: table;width: 100%;background-color:#ffffff;">
         <!--[if (mso)|(IE)]><table width="100%" cellpadding="0" cellspacing="0" border="0" style="background-color:transparent;"><tr><td align="center"><table cellpadding="0" cellspacing="0" border="0" style="width:640px"><tr class="layout-full-width" style="background-color:#ffffff"><![endif]-->
         <!--[if (mso)|(IE)]><td align="center" width="640" style="background-color:#ffffff;width:640px; border-top: 0px solid transparent; border-left: 0px solid transparent; border-bottom: 0px solid transparent; border-right: 0px solid transparent;" valign="top"><table width="100%" cellpadding="0" cellspacing="0" border="0"><tr><td style="padding-right: 0px; padding-left: 0px; padding-top:5px; padding-bottom:5px;"><![endif]-->
         <div class="col num12" style="min-width: 320px; max-width: 640px; display: table-cell; vertical-align: top; width: 640px;">
          <div style="width:100% !important;">
           <!--[if (!mso)&(!IE)]><!-->
           <div style="border-top:0px solid transparent; border-left:0px solid transparent; border-bottom:0px solid transparent; border-right:0px solid transparent; padding-top:5px; padding-bottom:5px; padding-right: 0px; padding-left: 0px;">
            <!--<![endif]-->
            <table border="0" cellpadding="0" cellspacing="0" class="divider" role="presentation" style="table-layout: fixed; vertical-align: top; border-spacing: 0; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; min-width: 100%; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%;" valign="top" width="100%">
             <tbody>
              <tr style="vertical-align: top;" valign="top">
               <td class="divider_inner" style="word-break: break-word; vertical-align: top; min-width: 100%; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%; padding-top: 10px; padding-right: 10px; padding-bottom: 10px; padding-left: 10px;" valign="top">
                <table align="center" border="0" cellpadding="0" cellspacing="0" class="divider_content" height="0" role="presentation" style="table-layout: fixed; vertical-align: top; border-spacing: 0; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-top: 4px solid #cccccc; height: 0px; width: 100%;" valign="top" width="100%">
                 <tbody>
                  <tr style="vertical-align: top;" valign="top">
                   <td height="0" style="word-break: break-word; vertical-align: top; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%;" valign="top">
                    <span>
                    </span>
                   </td>
                  </tr>
                 </tbody>
                </table>
               </td>
              </tr>
             </tbody>
            </table>
            <!--[if (!mso)&(!IE)]><!-->
           </div>
           <!--<![endif]-->
          </div>
         </div>
         <!--[if (mso)|(IE)]></td></tr></table><![endif]-->
         <!--[if (mso)|(IE)]></td></tr></table></td></tr></table><![endif]-->
        </div>
       </div>
      </div>
      <div style="background-color:transparent;">
       <div class="block-grid two-up" style="Margin: 0 auto; min-width: 320px; max-width: 640px; overflow-wrap: break-word; word-wrap: break-word; word-break: break-word; background-color: #ffffff;">
        <div style="border-collapse: collapse;display: table;width: 100%;background-color:#ffffff;">
         <!--[if (mso)|(IE)]><table width="100%" cellpadding="0" cellspacing="0" border="0" style="background-color:transparent;"><tr><td align="center"><table cellpadding="0" cellspacing="0" border="0" style="width:640px"><tr class="layout-full-width" style="background-color:#ffffff"><![endif]-->
         <!--[if (mso)|(IE)]><td align="center" width="320" style="background-color:#ffffff;width:320px; border-top: 0px solid transparent; border-left: 0px solid transparent; border-bottom: 0px solid transparent; border-right: 0px solid transparent;" valign="top"><table width="100%" cellpadding="0" cellspacing="0" border="0"><tr><td style="padding-right: 0px; padding-left: 0px; padding-top:5px; padding-bottom:5px;"><![endif]-->
         <div class="col num6" style="min-width: 320px; max-width: 320px; display: table-cell; vertical-align: top; width: 320px;">
          <div style="width:100% !important;">
           <!--[if (!mso)&(!IE)]><!-->
           <div style="border-top:0px solid transparent; border-left:0px solid transparent; border-bottom:0px solid transparent; border-right:0px solid transparent; padding-top:5px; padding-bottom:5px; padding-right: 0px; padding-left: 0px;">
            <!--<![endif]-->
            <div style="font-size:16px;text-align:center;font-family:Arial, 'Helvetica Neue', Helvetica, sans-serif">
             <div class="our-class">
              <a>
               <img alt="Only $39.99" border="0" height="315" src="https://inboxflows.com/_/image/https%253A%252F%252Fmarketingassets.staples.com%252Fm%252F2f90d89bab2d9b8c%252Foriginal%252Fdg21921_373758_c3_315x315.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtYXJrZXRpbmdhcyJ9:1kXNYe:WF02zfUWiDgbetNzXZP0PDnSR5ZiHJclgXHlHRxewy0" style="display:block;width:100%;max-width:640px;height:auto; padding-right: 5px; padding left: 5px;" width="315"/>
              </a>
             </div>
            </div>
            <!--[if (!mso)&(!IE)]><!-->
           </div>
           <!--<![endif]-->
          </div>
         </div>
         <!--[if (mso)|(IE)]></td></tr></table><![endif]-->
         <!--[if (mso)|(IE)]></td><td align="center" width="320" style="background-color:#ffffff;width:320px; border-top: 0px solid transparent; border-left: 0px solid transparent; border-bottom: 0px solid transparent; border-right: 0px solid transparent;" valign="top"><table width="100%" cellpadding="0" cellspacing="0" border="0"><tr><td style="padding-right: 0px; padding-left: 0px; padding-top:5px; padding-bottom:5px;"><![endif]-->
         <div class="col num6" style="min-width: 320px; max-width: 320px; display: table-cell; vertical-align: top; width: 320px;">
          <div style="width:100% !important;">
           <!--[if (!mso)&(!IE)]><!-->
           <div style="border-top:0px solid transparent; border-left:0px solid transparent; border-bottom:0px solid transparent; border-right:0px solid transparent; padding-top:5px; padding-bottom:5px; padding-right: 0px; padding-left: 0px;">
            <!--<![endif]-->
            <!--[if mso]><table width="100%" cellpadding="0" cellspacing="0" border="0"><tr><td style="padding-right: 15px; padding-left: 15px; padding-top: 25px; padding-bottom: 10px; font-family: Arial, sans-serif"><![endif]-->
            <div style="color:#555555;font-family:Arial, 'Helvetica Neue', Helvetica, sans-serif;line-height:1.2;padding-top:25px;padding-right:15px;padding-bottom:10px;padding-left:15px;">
             <div style="font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; line-height: 1.2; font-size: 12px; color: #555555; mso-line-height-alt: 14px;">
              <p style="line-height: 1.2; font-size: 12px; mso-line-height-alt: 14px; margin: 0;">
               <span style="color: #333333; font-size: 12px;">
                <span style="font-size: 46px;">
                 <strong>
                  Only $39.99
                 </strong>
                </span>
               </span>
              </p>
             </div>
            </div>
            <!--[if mso]></td></tr></table><![endif]-->
            <!--[if mso]><table width="100%" cellpadding="0" cellspacing="0" border="0"><tr><td style="padding-right: 15px; padding-left: 25px; padding-top: 15px; padding-bottom: 10px; font-family: Arial, sans-serif"><![endif]-->
            <div style="color:#555555;font-family:Arial, 'Helvetica Neue', Helvetica, sans-serif;line-height:1.2;padding-top:15px;padding-right:15px;padding-bottom:10px;padding-left:25px;">
             <div style="font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; line-height: 1.2; font-size: 12px; color: #555555; mso-line-height-alt: 14px;">
              <p style="line-height: 1.2; text-align: left; font-size: 16px; mso-line-height-alt: 19px; margin: 0;">
               <span style="font-size: 16px; color: #333333;">
                for the Brother HL-L2320D printer. — save 60%.
               </span>
              </p>
             </div>
            </div>
            <!--[if mso]></td></tr></table><![endif]-->
            <div align="left" class="button-container" style="padding-top:10px;padding-right:10px;padding-bottom:5px;padding-left:25px;">
             <!--[if mso]><table width="100%" cellpadding="0" cellspacing="0" border="0" style="border-spacing: 0; border-collapse: collapse; mso-table-lspace:0pt; mso-table-rspace:0pt;"><tr><td style="padding-top: 10px; padding-right: 10px; padding-bottom: 5px; padding-left: 25px" align="left"><v:roundrect xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="urn:schemas-microsoft-com:office:word" href="https://stores.staples.com?cid=EM_OPT_373758CAT_POS_02&utm_medium=Technology_XC&utm_term=3999BROTHERHL&utm_source=9DAFAADC32CC21545485B5DBEDED20B4_20191130_P_OMNI_CON_BUS_BEP_SPLUS_2:30PM&utm_campaign=373758CAT_POS_02" style="height:28.5pt; width:99pt; v-text-anchor:middle;" arcsize="0%" stroke="false" fillcolor="#CC0000"><w:anchorlock/><v:textbox inset="0,0,0,0"><center style="color:#ffffff; font-family:Arial, sans-serif; font-size:16px"><![endif]-->
             <a style="-webkit-text-size-adjust: none; text-decoration: none; display: inline-block; color: #ffffff; background-color: #CC0000; border-radius: 0px; -webkit-border-radius: 0px; -moz-border-radius: 0px; width: auto; width: auto; border-top: 1px solid #CC0000; border-right: 1px solid #CC0000; border-bottom: 1px solid #CC0000; border-left: 1px solid #CC0000; padding-top: 5px; padding-bottom: 5px; font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; text-align: center; mso-border-alt: none; word-break: keep-all;" target="_blank">
              <span style="padding-left:25px;padding-right:25px;font-size:16px;display:inline-block;">
               <span style="font-size: 12px; line-height: 1.8; mso-line-height-alt: 22px;">
                <strong>
                 <span style="font-size: 16px; line-height: 28px;">
                  Find a store
                 </span>
                </strong>
               </span>
              </span>
             </a>
             <!--[if mso]></center></v:textbox></v:roundrect></td></tr></table><![endif]-->
            </div>
            <div align="left" class="button-container" style="padding-top:10px;padding-right:10px;padding-bottom:15px;padding-left:25px;">
             <!--[if mso]><table width="100%" cellpadding="0" cellspacing="0" border="0" style="border-spacing: 0; border-collapse: collapse; mso-table-lspace:0pt; mso-table-rspace:0pt;"><tr><td style="padding-top: 10px; padding-right: 10px; padding-bottom: 15px; padding-left: 25px" align="left"><v:roundrect xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="urn:schemas-microsoft-com:office:word" href="https://www.staples.com/Brother-HL-L2320D-Monochrome-Laser-Printer/product_1074269?cid=EM_OPT_373758CAT_POS_02&utm_medium=Technology_XC&utm_term=3999BROTHERHL&utm_source=9DAFAADC32CC21545485B5DBEDED20B4_20191130_P_OMNI_CON_BUS_BEP_SPLUS_2:30PM&utm_campaign=373758CAT_POS_02" style="height:28.5pt; width:99pt; v-text-anchor:middle;" arcsize="0%" stroke="false" fillcolor="#CC0000"><w:anchorlock/><v:textbox inset="0,0,0,0"><center style="color:#ffffff; font-family:Arial, sans-serif; font-size:16px"><![endif]-->
             <a style="-webkit-text-size-adjust: none; text-decoration: none; display: inline-block; color: #ffffff; background-color: #CC0000; border-radius: 0px; -webkit-border-radius: 0px; -moz-border-radius: 0px; width: auto; width: auto; border-top: 1px solid #CC0000; border-right: 1px solid #CC0000; border-bottom: 1px solid #CC0000; border-left: 1px solid #CC0000; padding-top: 5px; padding-bottom: 5px; font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; text-align: center; mso-border-alt: none; word-break: keep-all;" target="_blank">
              <span style="padding-left:25px;padding-right:35px;font-size:16px;display:inline-block;">
               <span style="font-size: 12px; line-height: 1.8; mso-line-height-alt: 22px;">
                <span style="font-size: 16px; line-height: 28px;">
                 <strong>
                  Shop now
                 </strong>
                </span>
               </span>
              </span>
             </a>
             <!--[if mso]></center></v:textbox></v:roundrect></td></tr></table><![endif]-->
            </div>
            <!--[if mso]><table width="100%" cellpadding="0" cellspacing="0" border="0"><tr><td style="padding-right: 20px; padding-left: 25px; padding-top: 20px; padding-bottom: 20px; font-family: Arial, sans-serif"><![endif]-->
            <div style="color:#555555;font-family:Arial, 'Helvetica Neue', Helvetica, sans-serif;line-height:1.2;padding-top:20px;padding-right:20px;padding-bottom:20px;padding-left:25px;">
             <div style="font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; font-size: 12px; line-height: 1.2; color: #555555; mso-line-height-alt: 14px;">
              <p style="font-size: 12px; line-height: 1.2; mso-line-height-alt: 14px; margin: 0;">
               <span style="color: #333333; font-size: 12px;">
                Ends 11/30/19. While supplies last.
               </span>
              </p>
             </div>
            </div>
            <!--[if mso]></td></tr></table><![endif]-->
            <!--[if (!mso)&(!IE)]><!-->
           </div>
           <!--<![endif]-->
          </div>
         </div>
         <!--[if (mso)|(IE)]></td></tr></table><![endif]-->
         <!--[if (mso)|(IE)]></td></tr></table></td></tr></table><![endif]-->
        </div>
       </div>
      </div>
      <div style="background-color:transparent;">
       <div class="block-grid" style="Margin: 0 auto; min-width: 320px; max-width: 640px; overflow-wrap: break-word; word-wrap: break-word; word-break: break-word; background-color: #ffffff;">
        <div style="border-collapse: collapse;display: table;width: 100%;background-color:#ffffff;">
         <!--[if (mso)|(IE)]><table width="100%" cellpadding="0" cellspacing="0" border="0" style="background-color:transparent;"><tr><td align="center"><table cellpadding="0" cellspacing="0" border="0" style="width:640px"><tr class="layout-full-width" style="background-color:#ffffff"><![endif]-->
         <!--[if (mso)|(IE)]><td align="center" width="640" style="background-color:#ffffff;width:640px; border-top: 0px solid transparent; border-left: 0px solid transparent; border-bottom: 0px solid transparent; border-right: 0px solid transparent;" valign="top"><table width="100%" cellpadding="0" cellspacing="0" border="0"><tr><td style="padding-right: 0px; padding-left: 0px; padding-top:5px; padding-bottom:5px;"><![endif]-->
         <div class="col num12" style="min-width: 320px; max-width: 640px; display: table-cell; vertical-align: top; width: 640px;">
          <div style="width:100% !important;">
           <!--[if (!mso)&(!IE)]><!-->
           <div style="border-top:0px solid transparent; border-left:0px solid transparent; border-bottom:0px solid transparent; border-right:0px solid transparent; padding-top:5px; padding-bottom:5px; padding-right: 0px; padding-left: 0px;">
            <!--<![endif]-->
            <table border="0" cellpadding="0" cellspacing="0" class="divider" role="presentation" style="table-layout: fixed; vertical-align: top; border-spacing: 0; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; min-width: 100%; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%;" valign="top" width="100%">
             <tbody>
              <tr style="vertical-align: top;" valign="top">
               <td class="divider_inner" style="word-break: break-word; vertical-align: top; min-width: 100%; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%; padding-top: 10px; padding-right: 10px; padding-bottom: 10px; padding-left: 10px;" valign="top">
                <table align="center" border="0" cellpadding="0" cellspacing="0" class="divider_content" height="0" role="presentation" style="table-layout: fixed; vertical-align: top; border-spacing: 0; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-top: 4px solid #cccccc; height: 0px; width: 100%;" valign="top" width="100%">
                 <tbody>
                  <tr style="vertical-align: top;" valign="top">
                   <td height="0" style="word-break: break-word; vertical-align: top; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%;" valign="top">
                    <span>
                    </span>
                   </td>
                  </tr>
                 </tbody>
                </table>
               </td>
              </tr>
             </tbody>
            </table>
            <!--[if (!mso)&(!IE)]><!-->
           </div>
           <!--<![endif]-->
          </div>
         </div>
         <!--[if (mso)|(IE)]></td></tr></table><![endif]-->
         <!--[if (mso)|(IE)]></td></tr></table></td></tr></table><![endif]-->
        </div>
       </div>
      </div>
      <div style="background-color:transparent;">
       <div class="block-grid" style="Margin: 0 auto; min-width: 320px; max-width: 640px; overflow-wrap: break-word; word-wrap: break-word; word-break: break-word; background-color: #ffffff;">
        <div style="border-collapse: collapse;display: table;width: 100%;background-color:#ffffff;">
         <!--[if (mso)|(IE)]><table width="100%" cellpadding="0" cellspacing="0" border="0" style="background-color:transparent;"><tr><td align="center"><table cellpadding="0" cellspacing="0" border="0" style="width:640px"><tr class="layout-full-width" style="background-color:#ffffff"><![endif]-->
         <!--[if (mso)|(IE)]><td align="center" width="640" style="background-color:#ffffff;width:640px; border-top: 0px solid transparent; border-left: 0px solid transparent; border-bottom: 0px solid transparent; border-right: 0px solid transparent;" valign="top"><table width="100%" cellpadding="0" cellspacing="0" border="0"><tr><td style="padding-right: 0px; padding-left: 0px; padding-top:5px; padding-bottom:5px;"><![endif]-->
         <div class="col num12" style="min-width: 320px; max-width: 640px; display: table-cell; vertical-align: top; width: 640px;">
          <div style="width:100% !important;">
           <!--[if (!mso)&(!IE)]><!-->
           <div style="border-top:0px solid transparent; border-left:0px solid transparent; border-bottom:0px solid transparent; border-right:0px solid transparent; padding-top:5px; padding-bottom:5px; padding-right: 0px; padding-left: 0px;">
            <!--<![endif]-->
            <div style="font-size:16px;text-align:center;font-family:Arial, 'Helvetica Neue', Helvetica, sans-serif">
             <div class="our-class">
              <a>
               <img alt="Apple® AirPods®" border="0" height="350" src="https://inboxflows.com/_/image/https%253A%252F%252Fmarketingassets.staples.com%252Fm%252F6844c74df7864b42%252Foriginal%252Fdg21921_370807_p1b_640x350.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtYXJrZXRpbmdhcyJ9:1kXNYe:WF02zfUWiDgbetNzXZP0PDnSR5ZiHJclgXHlHRxewy0" style="display:block;width:100%;max-width:640px;height:auto;" width="640"/>
              </a>
             </div>
            </div>
            <!--[if mso]><table width="100%" cellpadding="0" cellspacing="0" border="0"><tr><td style="padding-right: 10px; padding-left: 10px; padding-top: 10px; padding-bottom: 15px; font-family: Arial, sans-serif"><![endif]-->
            <div style="color:#555555;font-family:Arial, 'Helvetica Neue', Helvetica, sans-serif;line-height:1.2;padding-top:10px;padding-right:10px;padding-bottom:15px;padding-left:10px;">
             <div style="font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; font-size: 12px; line-height: 1.2; color: #555555; mso-line-height-alt: 14px;">
              <p style="font-size: 16px; line-height: 1.2; mso-line-height-alt: 19px; margin: 0;">
               <span style="font-size: 16px;">
                <span style="color: #cc0000; font-size: 16px;">
                 <strong>
                  Only $134
                 </strong>
                </span>
               </span>
               <span style="font-size: 16px; color: #333333;">
                for Apple
                <sup>
                 ®
                </sup>
                AirPods
                <sup>
                 ®
                </sup>
                (2nd gen.) wireless headphones.
               </span>
              </p>
             </div>
            </div>
            <!--[if mso]></td></tr></table><![endif]-->
            <div align="left" class="button-container" style="padding-top:5px;padding-right:0px;padding-bottom:5px;padding-left:10px;">
             <!--[if mso]><table width="100%" cellpadding="0" cellspacing="0" border="0" style="border-spacing: 0; border-collapse: collapse; mso-table-lspace:0pt; mso-table-rspace:0pt;"><tr><td style="padding-top: 5px; padding-right: 0px; padding-bottom: 5px; padding-left: 10px" align="left"><v:roundrect xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="urn:schemas-microsoft-com:office:word" href="https://stores.staples.com?cid=EM_OPT_368341&utm_medium=Technology_XC&utm_term=134AIRPODS&utm_source=9DAFAADC32CC21545485B5DBEDED20B4_20191130_P_OMNI_CON_BUS_BEP_SPLUS_2:30PM&utm_campaign=368341" style="height:28.5pt; width:117.75pt; v-text-anchor:middle;" arcsize="0%" stroke="false" fillcolor="#CC0000"><w:anchorlock/><v:textbox inset="0,0,0,0"><center style="color:#ffffff; font-family:Arial, sans-serif; font-size:16px"><![endif]-->
             <a style="-webkit-text-size-adjust: none; text-decoration: none; display: inline-block; color: #ffffff; background-color: #CC0000; border-radius: 0px; -webkit-border-radius: 0px; -moz-border-radius: 0px; width: auto; width: auto; border-top: 1px solid #CC0000; border-right: 1px solid #CC0000; border-bottom: 1px solid #CC0000; border-left: 1px solid #CC0000; padding-top: 5px; padding-bottom: 5px; font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; text-align: center; mso-border-alt: none; word-break: keep-all;" target="_blank">
              <span style="padding-left:25px;padding-right:25px;font-size:16px;display:inline-block;">
               <span style="font-size: 16px; line-height: 1.8; mso-line-height-alt: 29px;">
                <strong>
                 <span style="font-size: 16px; line-height: 28px;">
                  Find a store
                 </span>
                </strong>
               </span>
              </span>
             </a>
             <!--[if mso]></center></v:textbox></v:roundrect></td></tr></table><![endif]-->
            </div>
            <!--[if mso]><table width="100%" cellpadding="0" cellspacing="0" border="0"><tr><td style="padding-right: 10px; padding-left: 10px; padding-top: 10px; padding-bottom: 10px; font-family: Arial, sans-serif"><![endif]-->
            <div style="color:#555555;font-family:Arial, 'Helvetica Neue', Helvetica, sans-serif;line-height:1.2;padding-top:10px;padding-right:10px;padding-bottom:10px;padding-left:10px;">
             <div style="font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; font-size: 12px; line-height: 1.2; color: #555555; mso-line-height-alt: 14px;">
              <p style="font-size: 12px; line-height: 1.2; mso-line-height-alt: 14px; margin: 0;">
               <span style="color: #333333; font-size: 12px;">
                In store only.
               </span>
              </p>
              <p style="font-size: 12px; line-height: 1.2; mso-line-height-alt: 14px; margin: 0;">
               <span style="color: #333333; font-size: 12px;">
                While supplies last.
               </span>
              </p>
             </div>
            </div>
            <!--[if mso]></td></tr></table><![endif]-->
            <table border="0" cellpadding="0" cellspacing="0" class="divider" role="presentation" style="table-layout: fixed; vertical-align: top; border-spacing: 0; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; min-width: 100%; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%;" valign="top" width="100%">
             <tbody>
              <tr style="vertical-align: top;" valign="top">
               <td class="divider_inner" style="word-break: break-word; vertical-align: top; min-width: 100%; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%; padding-top: 10px; padding-right: 10px; padding-bottom: 10px; padding-left: 10px;" valign="top">
                <table align="center" border="0" cellpadding="0" cellspacing="0" class="divider_content" height="0" role="presentation" style="table-layout: fixed; vertical-align: top; border-spacing: 0; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-top: 4px solid #cccccc; height: 0px; width: 100%;" valign="top" width="100%">
                 <tbody>
                  <tr style="vertical-align: top;" valign="top">
                   <td height="0" style="word-break: break-word; vertical-align: top; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%;" valign="top">
                    <span>
                    </span>
                   </td>
                  </tr>
                 </tbody>
                </table>
               </td>
              </tr>
             </tbody>
            </table>
            <!--[if (!mso)&(!IE)]><!-->
           </div>
           <!--<![endif]-->
          </div>
         </div>
         <!--[if (mso)|(IE)]></td></tr></table><![endif]-->
         <!--[if (mso)|(IE)]></td></tr></table></td></tr></table><![endif]-->
        </div>
       </div>
      </div>
      <div style="background-color:#ffffff;">
       <div class="block-grid no-stack" style="Margin: 0 auto; min-width: 320px; max-width: 640px; overflow-wrap: break-word; word-wrap: break-word; word-break: break-word; background-color: #ffffff;">
        <div style="border-collapse: collapse;display: table;width: 100%;background-color:#ffffff;">
         <!--[if (mso)|(IE)]><table width="100%" cellpadding="0" cellspacing="0" border="0" style="background-color:#ffffff;"><tr><td align="center"><table cellpadding="0" cellspacing="0" border="0" style="width:640px"><tr class="layout-full-width" style="background-color:#ffffff"><![endif]-->
         <!--[if (mso)|(IE)]><td align="center" width="640" style="background-color:#ffffff;width:640px; border-top: 0px solid transparent; border-left: 0px solid transparent; border-bottom: 0px solid transparent; border-right: 0px solid transparent;" valign="top"><table width="100%" cellpadding="0" cellspacing="0" border="0"><tr><td style="padding-right: 0px; padding-left: 0px; padding-top:0px; padding-bottom:0px;"><![endif]-->
         <div class="col num12" style="min-width: 320px; max-width: 640px; display: table-cell; vertical-align: top; width: 640px;">
          <div style="width:100% !important;">
           <!--[if (!mso)&(!IE)]><!-->
           <div style="border-top:0px solid transparent; border-left:0px solid transparent; border-bottom:0px solid transparent; border-right:0px solid transparent; padding-top:0px; padding-bottom:0px; padding-right: 0px; padding-left: 0px;">
            <!--<![endif]-->
            <div style="font-size:16px;text-align:center;font-family:Arial, 'Helvetica Neue', Helvetica, sans-serif">
             <style>
              .stapleFTR td {
														text-size-adjust: none !important;
														-webkit-text-size-adjust: none !important;
														-ms-text-size-adjust: none !important;
													}
             </style>
             <style>
              .stapleFTR td,
													.stapleFTR div {
														font-family: Arial, Verdana, sans-serif;
													}

													.stapleFTR a {
														text-decoration: none !important;
													}

													a:link,
													a:visited,
													a:active,
													a:hover {
														color: #000000;
													}

													a.underline {
														text-decoration: underline !important;
													}

													a.underline:hover {
														text-decoration: underline !important;
													}

													.stapleFTR table {
														font-size: 0 !important;
														line-height: 0 !important;
													}

													@media screen and (max-width:640px) {
														.w320 {
															width: 320px !important;
														}

														.w288 {
															width: 288px !important;
														}

														.w16 {
															width: 16px !important;
														}

														.hei94 {
															height: 94px !important;
														}

														.hei25 {
															height: 25px !important;
														}

														.hei20 {
															height: 20px !important;
														}

														.hei8 {
															height: 8px !important;
														}

														.hei2 {
															height: 2px !important;
														}

														.c50pc100pc {
															display: block !important;
															width: 100% !important;
															height: auto !important;
															float: left !important;
														}

														.remove {
															display: none !important;
														}

														.underline {
															text-decoration: underline !important;
														}

														.showFoTABLE {
															display: block !important;
															font-size: 100% !important;
															line-height: 100% !important;
															height: auto !important;
															margin: 0 auto !important;
														}

														.showFoTD {
															display: block !important;
															font-size: 15px !important;
															line-height: 44px !important;
														}

														.bgGray {
															background-color: #e6e7e8 !important;
														}

														.left {
															text-align: center !important;
														}
													}
             </style>
             <style>
              @media screen and (max-width:640px) {
														.flexbox {
															display: -webkit-box !important;
															display: -webkit-flex !important;
															display: -moz-box !important;
															display: -ms-flexbox !important;
															display: flex !important;
															-webkit-flex-flow: row wrap !important;
															-moz-flex-flow: row wrap !important;
															-ms-flex-flow: row wrap !important;
															flex-flow: row wrap !important;
														}

														.order1 {
															width: 100% !important;
															-webkit-order: 1 !important;
															order: 1 !important;
															float: left !important;
														}

														.order2 {
															width: 100% !important;
															-webkit-order: 2 !important;
															order: 2 !important;
															float: left !important;
														}

														.order3 {
															width: 100% !important;
															-webkit-order: 3 !important;
															order: 3 !important;
															float: left !important;
														}
													}
             </style>
             <table align="center" cellpadding="0" cellspacing="0" class="stapleFTR" width="100%">
              <tr>
               <td>
                <table align="center" cellpadding="0" cellspacing="0" class="w320" width="640">
                 <tr class="flexbox">
                  <td align="center" class="order1" valign="bottom" width="213">
                   <table cellpadding="0" cellspacing="0" width="200">
                    <tr class="remove">
                     <td>
                      <img height="1" src="https://inboxflows.com/_/image/http%253A%252F%252Fmedia.staples.com%252Femail%252Ftemplates%252Fusso%252Fa2%252F4f49925e531f5e92bbf187fb03fdd933.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRm1lZGlhLnN0YXBsZSJ9:1kXNYe:hLX33PMIpRrFDPpz0s9YgxDwNA5Mf5JXGSK_o4YgpEk" style="display:block;" width="1"/>
                     </td>
                    </tr>
                    <tr>
                     <td>
                      <img class="hei20" height="10" src="https://inboxflows.com/_/image/http%253A%252F%252Fmedia.staples.com%252Femail%252Ftemplates%252Fusso%252Fa2%252F4f49925e531f5e92bbf187fb03fdd933.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRm1lZGlhLnN0YXBsZSJ9:1kXNYe:hLX33PMIpRrFDPpz0s9YgxDwNA5Mf5JXGSK_o4YgpEk" style="display:block;" width="1"/>
                     </td>
                    </tr>
                    <tr>
                     <td align="center" height="53" valign="bottom">
                      <a>
                       <img alt="Free next-day delivery truck." border="0" height="40" src="https://inboxflows.com/_/image/http%253A%252F%252Fmedia.staples.com%252Femail%252Ftemplates%252Fimages%252Ficon_fndd_2.0.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRm1lZGlhLnN0YXBsZSJ9:1kXNYe:hLX33PMIpRrFDPpz0s9YgxDwNA5Mf5JXGSK_o4YgpEk" style="display:block;" width="55"/>
                      </a>
                     </td>
                    </tr>
                    <tr>
                     <td>
                      <img height="10" src="https://inboxflows.com/_/image/http%253A%252F%252Fmedia.staples.com%252Femail%252Ftemplates%252Fusso%252Fa2%252F4f49925e531f5e92bbf187fb03fdd933.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRm1lZGlhLnN0YXBsZSJ9:1kXNYe:hLX33PMIpRrFDPpz0s9YgxDwNA5Mf5JXGSK_o4YgpEk" style="display:block;" width="1"/>
                     </td>
                    </tr>
                    <tr>
                     <td align="center" style="font-family:Arial, Verdana, sans-serif; font-size:15px; line-height:19px; color:#444444; text-decoration:none !important;">
                      <a style="font-family:Arial, Verdana, sans-serif; font-size:14px; line-height:19px; color:#444444; text-decoration:none !important;">
                       <b>
                        Free next-day delivery
                       </b>
                       <br/>
                       on orders over $35.*
                      </a>
                     </td>
                    </tr>
                    <tr>
                     <td>
                      <img height="6" src="https://inboxflows.com/_/image/http%253A%252F%252Fmedia.staples.com%252Femail%252Ftemplates%252Fusso%252Fa2%252F4f49925e531f5e92bbf187fb03fdd933.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRm1lZGlhLnN0YXBsZSJ9:1kXNYe:hLX33PMIpRrFDPpz0s9YgxDwNA5Mf5JXGSK_o4YgpEk" style="display:block;" width="1"/>
                     </td>
                    </tr>
                    <tr class="remove">
                     <td>
                      <img height="1" src="https://inboxflows.com/_/image/http%253A%252F%252Fmedia.staples.com%252Femail%252Ftemplates%252Fusso%252Fa2%252F4f49925e531f5e92bbf187fb03fdd933.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRm1lZGlhLnN0YXBsZSJ9:1kXNYe:hLX33PMIpRrFDPpz0s9YgxDwNA5Mf5JXGSK_o4YgpEk" style="display:block;" width="1"/>
                     </td>
                    </tr>
                   </table>
                  </td>
                  <td align="center" class="order2" valign="bottom" width="213">
                   <table cellpadding="0" cellspacing="0" width="200">
                    <tr class="remove">
                     <td>
                      <img height="1" src="https://inboxflows.com/_/image/http%253A%252F%252Fmedia.staples.com%252Femail%252Ftemplates%252Fusso%252Fa2%252F4f49925e531f5e92bbf187fb03fdd933.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRm1lZGlhLnN0YXBsZSJ9:1kXNYe:hLX33PMIpRrFDPpz0s9YgxDwNA5Mf5JXGSK_o4YgpEk" style="display:block;" width="1"/>
                     </td>
                    </tr>
                    <tr>
                     <td>
                      <img class="hei20" height="10" src="https://inboxflows.com/_/image/http%253A%252F%252Fmedia.staples.com%252Femail%252Ftemplates%252Fusso%252Fa2%252F4f49925e531f5e92bbf187fb03fdd933.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRm1lZGlhLnN0YXBsZSJ9:1kXNYe:hLX33PMIpRrFDPpz0s9YgxDwNA5Mf5JXGSK_o4YgpEk" style="display:block;" width="1"/>
                     </td>
                    </tr>
                    <tr>
                     <td align="center" height="53" valign="bottom">
                      <a>
                       <img alt="1-hour pickup" border="0" height="47" src="https://inboxflows.com/_/image/http%253A%252F%252Fmedia.staples.com%252Femail%252Ftemplates%252Fimages%252Ficon_clock_2.0.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRm1lZGlhLnN0YXBsZSJ9:1kXNYe:hLX33PMIpRrFDPpz0s9YgxDwNA5Mf5JXGSK_o4YgpEk" style="display:block;" width="47"/>
                      </a>
                     </td>
                    </tr>
                    <tr>
                     <td>
                      <img height="10" src="https://inboxflows.com/_/image/http%253A%252F%252Fmedia.staples.com%252Femail%252Ftemplates%252Fusso%252Fa2%252F4f49925e531f5e92bbf187fb03fdd933.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRm1lZGlhLnN0YXBsZSJ9:1kXNYe:hLX33PMIpRrFDPpz0s9YgxDwNA5Mf5JXGSK_o4YgpEk" style="display:block;" width="1"/>
                     </td>
                    </tr>
                    <tr>
                     <td align="center" style="font-family:Arial, Verdana, sans-serif; font-size:15px; line-height:19px; color:#444444; text-decoration:none !important;">
                      <a style="font-family:Arial, Verdana, sans-serif; font-size:14px; line-height:19px; color:#444444; text-decoration:none !important;">
                       <b>
                        1 hour pickup
                       </b>
                       <br/>
                       Buy online and pick up in store.
                      </a>
                     </td>
                    </tr>
                    <tr>
                     <td>
                      <img height="6" src="https://inboxflows.com/_/image/http%253A%252F%252Fmedia.staples.com%252Femail%252Ftemplates%252Fusso%252Fa2%252F4f49925e531f5e92bbf187fb03fdd933.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRm1lZGlhLnN0YXBsZSJ9:1kXNYe:hLX33PMIpRrFDPpz0s9YgxDwNA5Mf5JXGSK_o4YgpEk" style="display:block;" width="1"/>
                     </td>
                    </tr>
                    <tr>
                     <td>
                      <img class="hei25" height="1" src="https://inboxflows.com/_/image/http%253A%252F%252Fmedia.staples.com%252Femail%252Ftemplates%252Fusso%252Fa2%252F4f49925e531f5e92bbf187fb03fdd933.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRm1lZGlhLnN0YXBsZSJ9:1kXNYe:hLX33PMIpRrFDPpz0s9YgxDwNA5Mf5JXGSK_o4YgpEk" style="display:block;" width="1"/>
                     </td>
                    </tr>
                   </table>
                  </td>
                  <td align="center" class="order3" valign="bottom" width="214">
                   <table cellpadding="0" cellspacing="0" width="200">
                    <tr class="remove">
                     <td>
                      <img height="1" src="https://inboxflows.com/_/image/http%253A%252F%252Fmedia.staples.com%252Femail%252Ftemplates%252Fusso%252Fa2%252F4f49925e531f5e92bbf187fb03fdd933.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRm1lZGlhLnN0YXBsZSJ9:1kXNYe:hLX33PMIpRrFDPpz0s9YgxDwNA5Mf5JXGSK_o4YgpEk" style="display:block;" width="1"/>
                     </td>
                    </tr>
                    <tr>
                     <td align="center" height="53" valign="bottom">
                      <a>
                       <img alt="The Loop" border="0" height="47" src="https://inboxflows.com/_/image/http%253A%252F%252Fmedia.staples.com%252Femail%252Ftemplates%252Fimages%252Ficon_theloop_2.0.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRm1lZGlhLnN0YXBsZSJ9:1kXNYe:hLX33PMIpRrFDPpz0s9YgxDwNA5Mf5JXGSK_o4YgpEk" style="display:block;" width="47"/>
                      </a>
                     </td>
                    </tr>
                    <tr>
                     <td>
                      <img height="10" src="https://inboxflows.com/_/image/http%253A%252F%252Fmedia.staples.com%252Femail%252Ftemplates%252Fusso%252Fa2%252F4f49925e531f5e92bbf187fb03fdd933.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRm1lZGlhLnN0YXBsZSJ9:1kXNYe:hLX33PMIpRrFDPpz0s9YgxDwNA5Mf5JXGSK_o4YgpEk" style="display:block;" width="1"/>
                     </td>
                    </tr>
                    <tr>
                     <td align="center" style="font-family:Arial, Verdana, sans-serif; font-size:15px; line-height:19px; color:#444444; text-decoration:none !important;">
                      <a style="font-family:Arial, Verdana, sans-serif; font-size:14px; line-height:19px; color:#444444; text-decoration:none !important;">
                       <b>
                        The Loop™
                       </b>
                       <br/>
                       Inspire your Worklife.
                      </a>
                     </td>
                    </tr>
                    <tr>
                     <td>
                      <img height="6" src="https://inboxflows.com/_/image/http%253A%252F%252Fmedia.staples.com%252Femail%252Ftemplates%252Fusso%252Fa2%252F4f49925e531f5e92bbf187fb03fdd933.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRm1lZGlhLnN0YXBsZSJ9:1kXNYe:hLX33PMIpRrFDPpz0s9YgxDwNA5Mf5JXGSK_o4YgpEk" style="display:block;" width="1"/>
                     </td>
                    </tr>
                    <tr>
                     <td>
                      <img class="hei25" height="1" src="https://inboxflows.com/_/image/http%253A%252F%252Fmedia.staples.com%252Femail%252Ftemplates%252Fusso%252Fa2%252F4f49925e531f5e92bbf187fb03fdd933.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRm1lZGlhLnN0YXBsZSJ9:1kXNYe:hLX33PMIpRrFDPpz0s9YgxDwNA5Mf5JXGSK_o4YgpEk" style="display:block;" width="1"/>
                     </td>
                    </tr>
                   </table>
                  </td>
                 </tr>
                </table>
                <table align="center" cellpadding="0" cellspacing="0" class="w320" width="640">
                 <tr class="remove">
                  <td>
                   <img height="8" src="https://inboxflows.com/_/image/http%253A%252F%252Fmedia.staples.com%252Femail%252Ftemplates%252Fusso%252Fa2%252F4f49925e531f5e92bbf187fb03fdd933.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRm1lZGlhLnN0YXBsZSJ9:1kXNYe:hLX33PMIpRrFDPpz0s9YgxDwNA5Mf5JXGSK_o4YgpEk" style="display:block;" width="1"/>
                  </td>
                 </tr>
                </table>
                <table align="center" cellpadding="0" cellspacing="0" class="remove" width="640">
                 <tr>
                  <td align="center" width="212">
                   <a>
                    <img alt="See our Weekly Ad" border="0" height="37" src="https://inboxflows.com/_/image/http%253A%252F%252Fmedia.staples.com%252Femail%252Ftemplates%252Fimages%252Ficon_ad.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRm1lZGlhLnN0YXBsZSJ9:1kXNYe:hLX33PMIpRrFDPpz0s9YgxDwNA5Mf5JXGSK_o4YgpEk" style="display:block;" width="212"/>
                   </a>
                  </td>
                  <td width="2">
                   <img height="1" src="https://inboxflows.com/_/image/http%253A%252F%252Fmedia.staples.com%252Femail%252Ftemplates%252Fusso%252Fa2%252F4f49925e531f5e92bbf187fb03fdd933.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRm1lZGlhLnN0YXBsZSJ9:1kXNYe:hLX33PMIpRrFDPpz0s9YgxDwNA5Mf5JXGSK_o4YgpEk" style="display:block;" width="2"/>
                  </td>
                  <td align="center" width="212">
                   <a>
                    <img alt="Get your coupons" border="0" height="37" src="https://inboxflows.com/_/image/http%253A%252F%252Fmedia.staples.com%252Femail%252Ftemplates%252Fimages%252Ficon_coupon.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRm1lZGlhLnN0YXBsZSJ9:1kXNYe:hLX33PMIpRrFDPpz0s9YgxDwNA5Mf5JXGSK_o4YgpEk" style="display:block;" width="212"/>
                   </a>
                  </td>
                  <td width="2">
                   <img height="1" src="https://inboxflows.com/_/image/http%253A%252F%252Fmedia.staples.com%252Femail%252Ftemplates%252Fusso%252Fa2%252F4f49925e531f5e92bbf187fb03fdd933.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRm1lZGlhLnN0YXBsZSJ9:1kXNYe:hLX33PMIpRrFDPpz0s9YgxDwNA5Mf5JXGSK_o4YgpEk" style="display:block;" width="2"/>
                  </td>
                  <td align="center" width="212">
                   <a>
                    <img alt="Find a local store" border="0" height="37" src="https://inboxflows.com/_/image/http%253A%252F%252Fmedia.staples.com%252Femail%252Ftemplates%252Fimages%252Ficon_location.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRm1lZGlhLnN0YXBsZSJ9:1kXNYe:hLX33PMIpRrFDPpz0s9YgxDwNA5Mf5JXGSK_o4YgpEk" style="display:block;" width="212"/>
                   </a>
                  </td>
                 </tr>
                </table>
                <table align="center" bgcolor="#ffffff" cellpadding="0" cellspacing="0" class="showFoTABLE" style="display:none; font-size:0; line-height:0; height:0; margin:0; padding:0;" width="320">
                 <tr bgcolor="#e3e3e3">
                  <td colspan="3">
                   <img height="1" src="https://inboxflows.com/_/image/http%253A%252F%252Fmedia.staples.com%252Femail%252Ftemplates%252Fusso%252Fa2%252F4f49925e531f5e92bbf187fb03fdd933.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRm1lZGlhLnN0YXBsZSJ9:1kXNYe:hLX33PMIpRrFDPpz0s9YgxDwNA5Mf5JXGSK_o4YgpEk" style="display:block;" width="1"/>
                  </td>
                 </tr>
                 <tr>
                  <td align="center" width="107">
                   <a>
                    <img alt="See our Weekly Ad" border="0" class="hei94" height="0" src="https://inboxflows.com/_/image/http%253A%252F%252Fmedia.staples.com%252Femail%252Ftemplates%252Fimages%252Ficon_ad--mobile.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRm1lZGlhLnN0YXBsZSJ9:1kXNYe:hLX33PMIpRrFDPpz0s9YgxDwNA5Mf5JXGSK_o4YgpEk" style="display:block;" width="107"/>
                   </a>
                  </td>
                  <td align="center" width="106">
                   <a>
                    <img alt="Get your coupons" border="0" class="hei94" height="0" src="https://inboxflows.com/_/image/http%253A%252F%252Fmedia.staples.com%252Femail%252Ftemplates%252Fimages%252Ficon_coupon--mobile.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRm1lZGlhLnN0YXBsZSJ9:1kXNYe:hLX33PMIpRrFDPpz0s9YgxDwNA5Mf5JXGSK_o4YgpEk" style="display:block;" width="107"/>
                   </a>
                  </td>
                  <td align="center" width="107">
                   <a>
                    <img alt="Find a local store" border="0" class="hei94" height="0" src="https://inboxflows.com/_/image/http%253A%252F%252Fmedia.staples.com%252Femail%252Ftemplates%252Fimages%252Ficon_location--mobile.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRm1lZGlhLnN0YXBsZSJ9:1kXNYe:hLX33PMIpRrFDPpz0s9YgxDwNA5Mf5JXGSK_o4YgpEk" style="display:block;" width="107"/>
                   </a>
                  </td>
                 </tr>
                </table>
                <table align="center" cellpadding="0" cellspacing="0" class="w320" width="640">
                 <tr>
                  <td>
                   <img height="4" src="https://inboxflows.com/_/image/http%253A%252F%252Fmedia.staples.com%252Femail%252Ftemplates%252Fusso%252Fa2%252F4f49925e531f5e92bbf187fb03fdd933.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRm1lZGlhLnN0YXBsZSJ9:1kXNYe:hLX33PMIpRrFDPpz0s9YgxDwNA5Mf5JXGSK_o4YgpEk" style="display:block;" width="1"/>
                  </td>
                 </tr>
                </table>
                <table align="center" bgcolor="#ffffff" cellpadding="0" cellspacing="0" class="showFoTABLE bgGray" style="display:none; font-size:0; line-height:0; height:0; margin:0; padding:0;" width="320">
                 <tr>
                  <td align="center" class="c50pc100pc" valign="middle" width="320">
                   <a class="showFoTD" style="display:none; font-size:0; line-height:0; color:#000000; text-decoration:none;">
                    OFFICE SUPPLIES
                   </a>
                  </td>
                 </tr>
                 <tr>
                  <td bgcolor="#ffffff" class="c50pc100pc" width="320">
                   <img class="hei2" height="0" src="https://inboxflows.com/_/image/http%253A%252F%252Fmedia.staples.com%252Femail%252Ftemplates%252Fusso%252Fa2%252F4f49925e531f5e92bbf187fb03fdd933.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRm1lZGlhLnN0YXBsZSJ9:1kXNYe:hLX33PMIpRrFDPpz0s9YgxDwNA5Mf5JXGSK_o4YgpEk" style="display:block;" width="320"/>
                  </td>
                 </tr>
                 <tr>
                  <td align="center" class="c50pc100pc" valign="middle" width="320">
                   <a class="showFoTD" style="display:none; font-size:0; line-height:0; color:#000000; text-decoration:none;">
                    INK &amp; TONER
                   </a>
                  </td>
                 </tr>
                 <tr>
                  <td bgcolor="#ffffff" class="c50pc100pc" width="320">
                   <img class="hei2" height="0" src="https://inboxflows.com/_/image/http%253A%252F%252Fmedia.staples.com%252Femail%252Ftemplates%252Fusso%252Fa2%252F4f49925e531f5e92bbf187fb03fdd933.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRm1lZGlhLnN0YXBsZSJ9:1kXNYe:hLX33PMIpRrFDPpz0s9YgxDwNA5Mf5JXGSK_o4YgpEk" style="display:block;" width="320"/>
                  </td>
                 </tr>
                 <tr>
                  <td align="center" class="c50pc100pc" valign="middle" width="320">
                   <a class="showFoTD" style="display:none; font-size:0; line-height:0; color:#000000; text-decoration:none;">
                    TECHNOLOGY
                   </a>
                  </td>
                 </tr>
                 <tr>
                  <td bgcolor="#ffffff" class="c50pc100pc" width="320">
                   <img class="hei2" height="0" src="https://inboxflows.com/_/image/http%253A%252F%252Fmedia.staples.com%252Femail%252Ftemplates%252Fusso%252Fa2%252F4f49925e531f5e92bbf187fb03fdd933.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRm1lZGlhLnN0YXBsZSJ9:1kXNYe:hLX33PMIpRrFDPpz0s9YgxDwNA5Mf5JXGSK_o4YgpEk" style="display:block;" width="320"/>
                  </td>
                 </tr>
                 <tr>
                  <td align="center" class="c50pc100pc" valign="middle" width="320">
                   <a class="showFoTD" style="display:none; font-size:0; line-height:0; color:#000000; text-decoration:none;">
                    FURNITURE
                   </a>
                  </td>
                 </tr>
                 <tr>
                  <td bgcolor="#ffffff" class="c50pc100pc" width="320">
                   <img class="hei2" height="0" src="https://inboxflows.com/_/image/http%253A%252F%252Fmedia.staples.com%252Femail%252Ftemplates%252Fusso%252Fa2%252F4f49925e531f5e92bbf187fb03fdd933.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRm1lZGlhLnN0YXBsZSJ9:1kXNYe:hLX33PMIpRrFDPpz0s9YgxDwNA5Mf5JXGSK_o4YgpEk" style="display:block;" width="320"/>
                  </td>
                 </tr>
                 <tr>
                  <td align="center" class="c50pc100pc" valign="middle" width="320">
                   <a class="showFoTD" style="display:none; font-size:0; line-height:0; color:#000000; text-decoration:none;">
                    DRINKS &amp; SNACKS
                   </a>
                  </td>
                 </tr>
                 <tr>
                  <td bgcolor="#ffffff" class="c50pc100pc" width="320">
                   <img class="hei2" height="0" src="https://inboxflows.com/_/image/http%253A%252F%252Fmedia.staples.com%252Femail%252Ftemplates%252Fusso%252Fa2%252F4f49925e531f5e92bbf187fb03fdd933.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRm1lZGlhLnN0YXBsZSJ9:1kXNYe:hLX33PMIpRrFDPpz0s9YgxDwNA5Mf5JXGSK_o4YgpEk" style="display:block;" width="320"/>
                  </td>
                 </tr>
                 <tr>
                  <td align="center" class="c50pc100pc" valign="middle" width="320">
                   <a class="showFoTD" style="display:none; font-size:0; line-height:0; color:#000000; text-decoration:none;">
                    CLEANING
                   </a>
                  </td>
                 </tr>
                 <tr>
                  <td bgcolor="#ffffff" class="c50pc100pc" width="320">
                   <img class="hei2" height="0" src="https://inboxflows.com/_/image/http%253A%252F%252Fmedia.staples.com%252Femail%252Ftemplates%252Fusso%252Fa2%252F4f49925e531f5e92bbf187fb03fdd933.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRm1lZGlhLnN0YXBsZSJ9:1kXNYe:hLX33PMIpRrFDPpz0s9YgxDwNA5Mf5JXGSK_o4YgpEk" style="display:block;" width="320"/>
                  </td>
                 </tr>
                 <tr>
                  <td bgcolor="#ffffff" class="c50pc100pc" width="320">
                   <img class="hei8" height="0" src="https://inboxflows.com/_/image/http%253A%252F%252Fmedia.staples.com%252Femail%252Ftemplates%252Fusso%252Fa2%252F4f49925e531f5e92bbf187fb03fdd933.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRm1lZGlhLnN0YXBsZSJ9:1kXNYe:hLX33PMIpRrFDPpz0s9YgxDwNA5Mf5JXGSK_o4YgpEk" style="display:block;" width="320"/>
                  </td>
                 </tr>
                </table>
                <table align="center" cellpadding="0" cellspacing="0" class="w320" width="640">
                 <tr class="flexbox">
                  <td bgcolor="#444444" class="order1" width="319">
                   <table cellpadding="0" cellspacing="0" class="w320" width="319">
                    <tr>
                     <td style="line-height:20px;" width="30">
                      <img height="1" src="https://inboxflows.com/_/image/http%253A%252F%252Fmedia.staples.com%252Femail%252Ftemplates%252Fusso%252Fa2%252F4f49925e531f5e92bbf187fb03fdd933.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRm1lZGlhLnN0YXBsZSJ9:1kXNYe:hLX33PMIpRrFDPpz0s9YgxDwNA5Mf5JXGSK_o4YgpEk" style="display:block;" width="30"/>
                     </td>
                     <td width="274">
                      <table cellpadding="0" cellspacing="0" width="274">
                       <tr>
                        <td>
                         <img height="15" src="https://inboxflows.com/_/image/http%253A%252F%252Fmedia.staples.com%252Femail%252Ftemplates%252Fusso%252Fa2%252F4f49925e531f5e92bbf187fb03fdd933.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRm1lZGlhLnN0YXBsZSJ9:1kXNYe:hLX33PMIpRrFDPpz0s9YgxDwNA5Mf5JXGSK_o4YgpEk" style="display:block;" width="1"/>
                        </td>
                       </tr>
                       <tr>
                        <td>
                         <table cellpadding="0" cellspacing="0" width="274">
                          <tr>
                           <td align="left" style="font-size:12px; line-height:16px;" valign="middle" width="217">
                            <a style="font-family:Arial, Verdana, sans-serif; font-size:13px; font-weight:bold; line-height:17px; color:#ffffff; text-decoration:none;">
                             IDEAS, INSIGHTS AND MORE
                            </a>
                           </td>
                           <td align="left" valign="middle" width="57">
                            <img border="0" height="35" src="https://inboxflows.com/_/image/http%253A%252F%252Fmedia.staples.com%252Femail%252Ftemplates%252Fusso%252Fa2%252Finsight_icon.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRm1lZGlhLnN0YXBsZSJ9:1kXNYe:hLX33PMIpRrFDPpz0s9YgxDwNA5Mf5JXGSK_o4YgpEk" style="display:block;" width="37"/>
                           </td>
                          </tr>
                         </table>
                        </td>
                       </tr>
                       <tr>
                        <td>
                         <img height="15" src="https://inboxflows.com/_/image/http%253A%252F%252Fmedia.staples.com%252Femail%252Ftemplates%252Fusso%252Fa2%252F4f49925e531f5e92bbf187fb03fdd933.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRm1lZGlhLnN0YXBsZSJ9:1kXNYe:hLX33PMIpRrFDPpz0s9YgxDwNA5Mf5JXGSK_o4YgpEk" style="display:block;" width="1"/>
                        </td>
                       </tr>
                      </table>
                     </td>
                     <td class="w16" style="line-height:20px;" width="15">
                      <img class="w16" height="1" src="https://inboxflows.com/_/image/http%253A%252F%252Fmedia.staples.com%252Femail%252Ftemplates%252Fusso%252Fa2%252F4f49925e531f5e92bbf187fb03fdd933.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRm1lZGlhLnN0YXBsZSJ9:1kXNYe:hLX33PMIpRrFDPpz0s9YgxDwNA5Mf5JXGSK_o4YgpEk" style="display:block;" width="15"/>
                     </td>
                    </tr>
                   </table>
                  </td>
                  <td class="order2" width="1">
                   <img height="1" src="https://inboxflows.com/_/image/http%253A%252F%252Fmedia.staples.com%252Femail%252Ftemplates%252Fusso%252Fa2%252F4f49925e531f5e92bbf187fb03fdd933.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRm1lZGlhLnN0YXBsZSJ9:1kXNYe:hLX33PMIpRrFDPpz0s9YgxDwNA5Mf5JXGSK_o4YgpEk" style="display:block;" width="1"/>
                  </td>
                  <td bgcolor="#444444" class="order3" width="320">
                   <table cellpadding="0" cellspacing="0" width="320">
                    <tr>
                     <td style="line-height:20px;" width="16">
                      <img height="1" src="https://inboxflows.com/_/image/http%253A%252F%252Fmedia.staples.com%252Femail%252Ftemplates%252Fusso%252Fa2%252F4f49925e531f5e92bbf187fb03fdd933.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRm1lZGlhLnN0YXBsZSJ9:1kXNYe:hLX33PMIpRrFDPpz0s9YgxDwNA5Mf5JXGSK_o4YgpEk" style="display:block;" width="16"/>
                     </td>
                     <td width="292">
                      <table cellpadding="0" cellspacing="0" width="292">
                       <tr>
                        <td width="292">
                         <img height="16" src="https://inboxflows.com/_/image/http%253A%252F%252Fmedia.staples.com%252Femail%252Ftemplates%252Fusso%252Fa2%252F4f49925e531f5e92bbf187fb03fdd933.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRm1lZGlhLnN0YXBsZSJ9:1kXNYe:hLX33PMIpRrFDPpz0s9YgxDwNA5Mf5JXGSK_o4YgpEk" style="display:block;" width="1"/>
                        </td>
                       </tr>
                       <tr>
                        <td width="292">
                         <table cellpadding="0" cellspacing="0" width="292">
                          <tr>
                           <td align="left" class="left" style="font-family:Arial, Verdana, sans-serif; font-size:13px; line-height:16px; color:#ffffff;" valign="middle" width="137">
                            <b>
                             STAY CONNECTED
                            </b>
                           </td>
                           <td align="right" valign="middle" width="31">
                            <a title="Connect with our mobile App.">
                             <img border="0" height="31" src="https://inboxflows.com/_/image/http%253A%252F%252Fmedia.staples.com%252Femail%252Ftemplates%252Fusso%252Fa2%252Ficon_app.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRm1lZGlhLnN0YXBsZSJ9:1kXNYe:hLX33PMIpRrFDPpz0s9YgxDwNA5Mf5JXGSK_o4YgpEk" style="display:block;" width="31"/>
                            </a>
                           </td>
                           <td align="right" valign="middle" width="31">
                            <a title="Connect with us on LinkedIn.">
                             <img border="0" height="31" src="https://inboxflows.com/_/image/http%253A%252F%252Fmedia.staples.com%252Femail%252Ftemplates%252Fusso%252Fa2%252Ficon_in.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRm1lZGlhLnN0YXBsZSJ9:1kXNYe:hLX33PMIpRrFDPpz0s9YgxDwNA5Mf5JXGSK_o4YgpEk" style="display:block;" width="31"/>
                            </a>
                           </td>
                           <td align="right" valign="middle" width="31">
                            <a title="Connect with us on Twitter.">
                             <img border="0" height="31" src="https://inboxflows.com/_/image/http%253A%252F%252Fmedia.staples.com%252Femail%252Ftemplates%252Fusso%252Fa2%252Ficon_twee.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRm1lZGlhLnN0YXBsZSJ9:1kXNYe:hLX33PMIpRrFDPpz0s9YgxDwNA5Mf5JXGSK_o4YgpEk" style="display:block;" width="31"/>
                            </a>
                           </td>
                           <td align="right" valign="middle" width="31">
                            <a title="Connect with us on Facebook.">
                             <img border="0" height="31" src="https://inboxflows.com/_/image/http%253A%252F%252Fmedia.staples.com%252Femail%252Ftemplates%252Fusso%252Fa2%252Ficon_face.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRm1lZGlhLnN0YXBsZSJ9:1kXNYe:hLX33PMIpRrFDPpz0s9YgxDwNA5Mf5JXGSK_o4YgpEk" style="display:block;" width="31"/>
                            </a>
                           </td>
                           <td align="right" valign="middle" width="31">
                            <a title="Connect with us on YouTube.">
                             <img border="0" height="31" src="https://inboxflows.com/_/image/http%253A%252F%252Fmedia.staples.com%252Femail%252Ftemplates%252Fusso%252Fa2%252Ficon_yout.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRm1lZGlhLnN0YXBsZSJ9:1kXNYe:hLX33PMIpRrFDPpz0s9YgxDwNA5Mf5JXGSK_o4YgpEk" style="display:block;" width="31"/>
                            </a>
                           </td>
                          </tr>
                         </table>
                        </td>
                       </tr>
                       <tr>
                        <td width="283">
                         <img height="16" src="https://inboxflows.com/_/image/http%253A%252F%252Fmedia.staples.com%252Femail%252Ftemplates%252Fusso%252Fa2%252F4f49925e531f5e92bbf187fb03fdd933.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRm1lZGlhLnN0YXBsZSJ9:1kXNYe:hLX33PMIpRrFDPpz0s9YgxDwNA5Mf5JXGSK_o4YgpEk" style="display:block;" width="1"/>
                        </td>
                       </tr>
                      </table>
                     </td>
                     <td style="line-height:20px;" width="12">
                      <img height="1" src="https://inboxflows.com/_/image/http%253A%252F%252Fmedia.staples.com%252Femail%252Ftemplates%252Fusso%252Fa2%252F4f49925e531f5e92bbf187fb03fdd933.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRm1lZGlhLnN0YXBsZSJ9:1kXNYe:hLX33PMIpRrFDPpz0s9YgxDwNA5Mf5JXGSK_o4YgpEk" style="display:block;" width="12"/>
                     </td>
                    </tr>
                   </table>
                  </td>
                 </tr>
                </table>
                <table align="center" cellpadding="0" cellspacing="0" class="w320" width="640">
                 <tr>
                  <td>
                   <img height="8" src="https://inboxflows.com/_/image/http%253A%252F%252Fmedia.staples.com%252Femail%252Ftemplates%252Fusso%252Fa2%252F4f49925e531f5e92bbf187fb03fdd933.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRm1lZGlhLnN0YXBsZSJ9:1kXNYe:hLX33PMIpRrFDPpz0s9YgxDwNA5Mf5JXGSK_o4YgpEk" style="display:block;" width="1"/>
                  </td>
                 </tr>
                </table>
                <table align="center" cellpadding="0" cellspacing="0" class="w320" width="640">
                 <tr>
                  <td class="w320" colspan="3" width="640">
                   <img height="17" src="https://inboxflows.com/_/image/http%253A%252F%252Fmedia.staples.com%252Femail%252Ftemplates%252Fusso%252Fa2%252F4f49925e531f5e92bbf187fb03fdd933.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRm1lZGlhLnN0YXBsZSJ9:1kXNYe:hLX33PMIpRrFDPpz0s9YgxDwNA5Mf5JXGSK_o4YgpEk" style="display:block;" width="1"/>
                  </td>
                 </tr>
                 <tr>
                  <td class="w16" width="25">
                   <img class="w16" height="1" src="https://inboxflows.com/_/image/http%253A%252F%252Fmedia.staples.com%252Femail%252Ftemplates%252Fusso%252Fa2%252F4f49925e531f5e92bbf187fb03fdd933.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRm1lZGlhLnN0YXBsZSJ9:1kXNYe:hLX33PMIpRrFDPpz0s9YgxDwNA5Mf5JXGSK_o4YgpEk" style="display:block;" width="25"/>
                  </td>
                  <td align="center" class="w288" style="font-family:Arial, Verdana, sans-serif; font-size:11px; line-height:16px; color:#666666;" width="590">
                   <div class="w288">
                    <a style="color:#666666;">
                     *Free next-day delivery is available for qualified orders totaling $35 or more before taxes and after discounts. Orders must be placed by 5 pm local time on staples.com or by phone at 1-800-333-3330. Eligible items only, handling fees may apply for select items. Standard Staples shipping and delivery policies
                    </a>
                    <a>
                     apply
                    </a>
                    . Excludes weekends and holidays, items, orders made at directmail.staples.com, documents.staples.com, holidaycards.staples.com,staples.com/services/printing, staplespromotionalproducts.com, staples.com/services/printing/promotional-products and third-party websites linked to staples.com.
                    <span class="remove">
                    </span>
                    <br/>
                    <sup>
                     †
                    </sup>
                    Valid online at staples.com® only. Excludes Daily Deals and Auto Restock orders. Limit one coupon per customer, nontransferable. Offer is subject to change or cancellation at any time. Minimum purchase requirement must be met with purchases to which no other coupon or instant savings offer applies. Tax and shipping not included in calculating the minimum purchase. Not valid on technology including but not limited to desktop or laptop computers, tablets, Chromebooks, streaming devices, select audio devices and accessories, Amazon products, Apple®, Bose®, HP Ink &amp; Toner, Epson Ink &amp; Toner, HP® printers and scanners, HP® Instant Ink, Epson® EcoTank® printers, Google™ products, JBL®, Samsung®, gaming, select PC hardware and accessories, home automation devices, batteries, TVs, select commercial kitchen appliances and accessories, software, warranties, wearable technology, Staples® Plus membership fee, Staples® Protection &amp; Tech Help, select hard drives and data storage devices, Texas Instruments™ graphing calculators and accessories, surveillance and security cameras, Ultimate Ears®, Wacom®, gift cards, services, cell phones and phone cards, operating systems, postage stamps, direct mail services, custom-quoted orders or promotional products. Not valid on prior purchases or purchases made with Staples® Procurement or Convenience Cards. No cash/credit back. Coupon value applied pre-tax. Expires 12/1/19.
                    <br/>
                    <sup>
                     †
                    </sup>
                    Valid 11/28/2019 - 12/1/2019 at staples.com®, by phone at 1-800-333-3330 or in Staples® U.S. stores. Purchase $75 of ink and/or purchase $200 of toner in one transaction and earn 25% back in Staples Rewards®. Excludes HP Instant Ink, HP Print Free for Life, Smart Ordering, HP small-format economy ink, HP large-format ink (DesignJet), HP printheads, Daily Deals, Auto Restock orders and clearance items. While supplies last. Price eligible for meeting minimum spend requirement is amount paid at checkout after application of all promotions, coupons, instant savings and rewards redemptions and does not include tax or shipping. Standard percent back in Staples Rewards will be excluded from purchases receiving 25% back. Staples Rewards are issued online monthly in increments of $5. Rewards expire the last day of the month following the month in which they are issued and cannot be redeemed after the expiration date. Monthly balances of less than $5 will roll over through the end of the following calendar quarter. Unissued rewards will expire at the end of the following calendar quarter unless a qualifying purchase is made during that rollover period. For full program details, visit staples.com/rewards. Staples Rewards membership is FREE. Limit one Staples Rewards account per person or at any mailing address. Membership number must be supplied during the purchase to receive benefits. Rewards earned after application of all promotions, coupons, rewards redeemed and instant savings, and are not earned on taxes or shipping charges. For full program details, visit staples.com/rewards.
                    <br/>
                   </div>
                   <br/>
                   Please add staples@connected.staples.com to your address book or contact list to make sure you get our mailings.
                   <a class="underline" style="color:#0098d5;">
                    Unsubscribe
                   </a>
                   <span class="remove">
                    |
                   </span>
                   <a class="underline" style="color:#0098d5;">
                    Privacy Policy
                   </a>
                   <br/>
                   <br/>
                   <span class="addr">
                    Staples, Inc., 500 Staples Drive, Framingham, MA 01702
                   </span>
                  </td>
                  <td class="w16" width="25">
                   <img class="w16" height="1" src="https://inboxflows.com/_/image/http%253A%252F%252Fmedia.staples.com%252Femail%252Ftemplates%252Fusso%252Fa2%252F4f49925e531f5e92bbf187fb03fdd933.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRm1lZGlhLnN0YXBsZSJ9:1kXNYe:hLX33PMIpRrFDPpz0s9YgxDwNA5Mf5JXGSK_o4YgpEk" style="display:block;" width="25"/>
                  </td>
                 </tr>
                 <tr>
                  <td colspan="3" width="1">
                   <img height="30" src="https://inboxflows.com/_/image/http%253A%252F%252Fmedia.staples.com%252Femail%252Ftemplates%252Fusso%252Fa2%252F4f49925e531f5e92bbf187fb03fdd933.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRm1lZGlhLnN0YXBsZSJ9:1kXNYe:hLX33PMIpRrFDPpz0s9YgxDwNA5Mf5JXGSK_o4YgpEk" style="display:block;" width="1"/>
                  </td>
                 </tr>
                </table>
               </td>
              </tr>
             </table>
            </div>
            <!--[if (!mso)&(!IE)]><!-->
           </div>
           <!--<![endif]-->
          </div>
         </div>
         <!--[if (mso)|(IE)]></td></tr></table><![endif]-->
         <!--[if (mso)|(IE)]></td></tr></table></td></tr></table><![endif]-->
        </div>
       </div>
      </div>
      <!--[if (mso)|(IE)]></td></tr></table><![endif]-->
     </td>
    </tr>
   </tbody>
  </table>
  <!--[if (IE)]></div><![endif]-->
  <img alt="" border="0" height="1" src="https://inboxflows.com/_/image/http%253A%252F%252Flink.connected.staples.com%252Fmpss%252Fo%252FEgE%252FkAqkAA%252Ft.2x5%252FHc0CK-PoTSW341dpcVBfxw%252Fho.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmxpbmsuY29ubmVjdCJ9:1kXNYe:ldP7LahfE_4tzt6DxaQcoy7xRb29hj_Fq9MA53YNX9I" style="height:1px !important;width:1px !important;border-width:0 !important;margin-top:0 !important;margin-bottom:0 !important;margin-right:0 !important;margin-left:0 !important;padding-top:0 !important;padding-bottom:0 !important;padding-right:0 !important;padding-left:0 !important;" width="1"/>
 </body>
</html>