Inboxes

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

+New inbox

012345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963<!DOCTYPE html>
<html lang="en" xml:lang="en" xmlns="//www.w3.org/1999/xhtml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:v="urn:schemas-microsoft-com:vml">
 <head>
  <meta content="text/html; charset=utf-8" http-equiv="Content-Type"/>
  <meta name="x-apple-disable-message-reformatting"/>
  <meta content="width=device-width, initial-scale=1.0" name="viewport"/>
  <meta content="IE=edge" http-equiv="X-UA-Compatible"/>
  <title>
   Furniture, Decor and More. Your Costco Home - Delivered!
  </title>
  <style>
   html {-webkit-text-size-adjust:100%; -ms-text-size-adjust:100%} body {margin:0; padding:0; -webkit-text-size-adjust: 100% !important; -ms-text-size-adjust: 100% !important; -webkit-font-smoothing: antialiased !important; border-spacing:0; background-color:#fff;} table {border-collapse: collapse; mso-table-lspace: 0px; mso-table-rspace: 0px; } a {color:#0060a9} table td {border-collapse: collapse; mso-line-height-rule: exactly; } table th { margin:0 !important; padding:0 !important; vertical-align:top; font-weight:normal; } img, a img {border:none; outline:none; -ms-interpolation-mode: bicubic;} .ReadMsgBody {width: 100%;} .ExternalClass {width: 100%;} .ExternalClass, .ExternalClass p, .ExternalClass span, .ExternalClass font, .ExternalClass td, .ExternalClass div {line-height:100%;} .yshortcuts a {border-bottom: none !important;} .appleLinksGray a {color:#666666 !important; text-decoration:none !important;} .appleLinksWhite a {color:#FFFFFF !important; text-decoration:none !important;} .appleLinksBlack a {color:#000000 !important; text-decoration:none !important;} a[x-apple-data-detectors] { color: inherit !important; text-decoration: none !important; font-size: inherit !important; font-family: inherit !important; font-weight: inherit !important; line-height: inherit !important; }
  </style>
  <style>
   @media only screen and (max-width: 600px) { .T-Size-2 {font-size:20px!important; line-height:28px!important;} .T-Size-3 {font-size:18px!important;line-height:18px!important;} .T-Size-4 {font-size:16px!important;line-height:16px!important;} .T-Size-5 {font-size:12px!important;line-height:16px!important;} .T-Size-6 {font-size:16px!important;line-height:16px!important;} .T-Size-7 {font-size:36px!important;line-height:38px!important;} .T-Size-8 {font-size:58px!important;line-height:50px!important;} .remove { display:none !important; width:0 !important; height:0 !important; } .stack { display:block !important; } .stack-header {display:table-header-group !important;} .stack-footer {display:table-footer-group !important;} .stack-image img {margin-bottom:20px !important;} .center-align {text-align:center !important; margin:0 auto !important;} .left-align {text-align:left !important;} .right-align {text-align:right !important;} .w-resize100 { width:100% !important; } .w-resize90 { width:90% !important; } .w-resize50 { width:48% !important; } .h-resize { height: 10px!important} .h-resize30px { height:30px !important; } .h-resize40px { height:40px !important; } .resize90 img {width:90% !important; height:auto !important;} .resize100 img {width:100% !important; height:auto !important;} .showHidden {display: block !important; margin: 0; padding: 0; overflow : visible !important; width: auto !important; max-height: inherit !important; border: none !important;} .mobile-hero img {width:100%; height:auto; margin:0 auto; display:block} .break-hidden{ content: ''; display: block;} .line-right{border-style: none!important;} .line-bottom{border-bottom: 2px solid #494137 !important; width: 180px !important;} }
  </style>
 </head>
 <body>
  <style type="text/css">
   div.preheader { display: none !important; }
  </style>
  <div class="preheader" style="font-size: 1px; display: none !important;">
   $200 OFF Taylor Media Console, $170 OFF LG Dishwasher, $100 OFF AFA Vanity and More.
  </div>
  <div class="wcdm__">
   <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="Presentation" style="margin:0 auto" width="696">
    <tbody>
     <tr>
      <td height="10" style="font-size:0px; line-height:0px">
      </td>
     </tr>
     <tr>
      <td align="center" style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:12px; color:#737474">
       <a style="color: #737474" target="_blank">
        View this email with images.
       </a>
      </td>
     </tr>
    </tbody>
   </table>
  </div>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="Presentation" style="margin:0 auto" width="696">
   <tbody>
    <tr>
     <td height="10" style="font-size:0px; line-height:0px">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="Presentation" style="margin:0 auto" width="696">
   <tbody>
    <tr>
     <td height="8" style="font-size:0px; line-height:0px; border-top:1px solid #d6d6d6">
     </td>
    </tr>
    <tr>
     <td align="center" style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:12px; color:#737474">
      <a target="_blank">
       <img alt="Costco.com" border="0" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Flive%252Fresource%252Fimg%252Fstatic-email-fy20%252Fcostco-em-toplogo.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMgF:-Ba8rIr10JhRMmP4wZ5CvR3tfxASKGwA8e_JtOteUYc" style="margin:0 auto; display:block;" width="134"/>
      </a>
     </td>
    </tr>
    <tr>
     <td height="8" style="font-size:0px; line-height:0px; border-bottom:1px solid #d6d6d6">
     </td>
    </tr>
    <tr>
     <td height="16" style="font-size:0px; line-height:0px">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="Presentation" style="margin:0 auto" width="696">
   <tbody>
    <tr>
     <td align="center">
      <a target="_blank">
       <img alt="Your Costco Home Delivered within 3 Days!* *Available in most areas. The delivery agent will contact you to schedule a delivery date. Shop Now" border="0" class="remove" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Flive%252Fresource%252Fimg%252F6-19-20%252Fd-b2c1788-200619-hero-home-v.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMgF:-Ba8rIr10JhRMmP4wZ5CvR3tfxASKGwA8e_JtOteUYc" style="display:block; margin:0 auto; font-family:'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:16px;color:#000000;" width="696"/>
      </a>
      <div class="showHidden mobile-hero" style="display:none; width:0px; max-width:100%; max-height:0px; overflow:hidden; mso-hide:all">
       <a target="_blank">
        <img alt="Your Costco Home Delivered within 3 Days!* *Available in most areas. The delivery agent will contact you to schedule a delivery date. Shop Now" border="0" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Flive%252Fresource%252Fimg%252F6-19-20%252Fm-b2c1788-200619-hero-home-v1.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMgF:-Ba8rIr10JhRMmP4wZ5CvR3tfxASKGwA8e_JtOteUYc"/>
       </a>
      </div>
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="Presentation" style="margin:0 auto; background-color: #233c49;" width="696">
   <tbody>
    <tr>
     <td height="10" style="font-size:0px; line-height:0px">
     </td>
    </tr>
    <tr>
     <td align="center">
      <div>
       <a style="background-color:#233c49;border:2px solid white;border-radius:0px;color:white;display:inline-block;font-family:sans-serif;font-size:16px;font-weight:bold;line-height:35px;text-align:center;text-decoration:none;width:232px;-webkit-text-size-adjust:none;mso-hide:all;" target="_blank">
        Shop Now
       </a>
      </div>
     </td>
    </tr>
    <tr>
     <td height="10" style="font-size:0px; line-height:0px">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="Presentation" style="margin:0 auto;background-color:#233c49;" width="696">
   <tbody>
    <tr>
     <td align="center">
      <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize90" width="696">
       <tbody>
        <tr>
         <td align="center" class="stack w-resize100" style="vertical-align:top" width="348">
          <table align="center" border="0" cellpadding="0" cellspacing="0" style="background-color:#ccc5ba;" width="100%">
           <tbody>
            <tr>
             <td align="center" class="resize100">
              <a target="_blank">
               <img alt="" border="0" height="153" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Flive%252Fresource%252Fimg%252F6-19-20%252Fus200619-b2c1788-dining-v.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMgF:-Ba8rIr10JhRMmP4wZ5CvR3tfxASKGwA8e_JtOteUYc" style="display: block;" width="232"/>
              </a>
             </td>
            </tr>
            <tr>
             <td align="center">
              <table align="center" border="0" cellpadding="0" cellspacing="0" width="85%">
               <tbody>
                <tr>
                 <td height="4" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td align="center" class="T-Size-4" style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; color: #000000; font-weight: bold">
                  $799.99 Delivered
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
         <td class="stack w-resize100 h-resize40px" style="font-size:0px; line-height:0px;" width="0">
         </td>
         <td align="center" class="stack w-resize100" style="vertical-align:top" width="348">
          <table align="center" border="0" cellpadding="0" cellspacing="0" style="background-color:#ccc5ba;" width="100%">
           <tbody>
            <tr>
             <td align="center" class="resize100">
              <a target="_blank">
               <img alt="" border="0" height="153" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Flive%252Fresource%252Fimg%252F6-19-20%252Fus200619-b2c1788-sofa-v.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMgF:-Ba8rIr10JhRMmP4wZ5CvR3tfxASKGwA8e_JtOteUYc" style="display: block;" width="232"/>
              </a>
             </td>
            </tr>
            <tr>
             <td align="center">
              <table align="center" border="0" cellpadding="0" cellspacing="0" width="85%">
               <tbody>
                <tr>
                 <td height="4" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td align="center" class="T-Size-4" style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; color: #000000; font-weight: bold">
                  $1,999.99 Delivered
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
         <td class="stack w-resize100 h-resize40px" style="font-size:0px; line-height:0px" width="0">
         </td>
         <td align="center" class="stack w-resize100" style="vertical-align:top" width="348">
          <table align="center" border="0" cellpadding="0" cellspacing="0" style="background-color:#ccc5ba;" width="100%">
           <tbody>
            <tr>
             <td align="center" class="resize100">
              <a target="_blank">
               <img alt="" border="0" height="153" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Flive%252Fresource%252Fimg%252F6-19-20%252Fus200619-b2c1788-bath-v.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMgF:-Ba8rIr10JhRMmP4wZ5CvR3tfxASKGwA8e_JtOteUYc" style="display: block;" width="232"/>
              </a>
             </td>
            </tr>
            <tr>
             <td align="center">
              <table align="center" border="0" cellpadding="0" cellspacing="0" width="85%">
               <tbody>
                <tr>
                 <td height="4" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td align="center" class="T-Size-4" style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; color: #000000; font-weight: bold">
                  $649.99 Delivered
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
        </tr>
       </tbody>
      </table>
     </td>
    </tr>
    <tr>
     <td height="10" style="font-size:0px; line-height:0px; background-color: #233c49;">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="Presentation" style="margin:0 auto;" width="696">
   <tbody>
    <tr>
     <td height="20" style="font-size:0px; line-height:0px">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="Presentation" style="margin:0 auto" width="696">
   <tbody>
    <tr>
     <td align="center">
      <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize90" width="696">
       <tbody>
        <tr>
         <td align="center" class="stack w-resize100" style="vertical-align:top" width="348">
          <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
           <tbody>
            <tr>
             <td align="center" class="resize100">
              <a target="_blank">
               <img alt="" border="0" height="218" src="https://inboxflows.com/_/image/https%253A%252F%252Fimages.costco-static.com%252FImageDelivery%252FimageService%253FprofileId%253D12026540%2526imageId%253D1170120-847__1%2526recipeName%253D680/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMgF:2LeuO948OegA6aQE4fGNhqgWBDxyiy1mOdzvtJJGc_A" style="display: block;" width="218"/>
              </a>
             </td>
            </tr>
            <tr>
             <td height="10" style="font-size:0px; line-height:0px">
             </td>
            </tr>
            <tr>
             <td align="center">
              <table align="center" border="0" cellpadding="0" cellspacing="0" width="85%">
               <tbody>
                <tr>
                 <td class="T-Size-3" style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
                  Sealy Posturepedic Response Premium West Salem Cushion Firm Queen Mattress Only
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td class="T-Size-4" style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; color: #000000; font-weight: bold">
                  $120 OFF
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
         <td class="stack w-resize100 h-resize40px" style="font-size:0px; line-height:0px" width="0">
         </td>
         <td align="center" class="stack w-resize100" style="vertical-align:top" width="348">
          <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
           <tbody>
            <tr>
             <td align="center" class="resize100">
              <a target="_blank">
               <img alt="" border="0" height="218" src="https://inboxflows.com/_/image/https%253A%252F%252Fimages.costco-static.com%252FImageDelivery%252FimageService%253FprofileId%253D12026540%2526imageId%253D2001067-847__1%2526recipeName%253D680/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMgF:2LeuO948OegA6aQE4fGNhqgWBDxyiy1mOdzvtJJGc_A" style="display: block;" width="218"/>
              </a>
             </td>
            </tr>
            <tr>
             <td height="10" style="font-size:0px; line-height:0px">
             </td>
            </tr>
            <tr>
             <td align="center">
              <table align="center" border="0" cellpadding="0" cellspacing="0" width="85%">
               <tbody>
                <tr>
                 <td class="T-Size-3" style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
                  Brower Fabric Power Reclining Sectional with Power Headrest
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td class="T-Size-4" style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; color: #000000; font-weight: bold">
                  $1,999.99 Delivered
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
         <td class="stack w-resize100 h-resize40px" style="font-size:0px; line-height:0px" width="0">
         </td>
         <td align="center" class="stack w-resize100" style="vertical-align:top" width="348">
          <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
           <tbody>
            <tr>
             <td align="center" class="resize100">
              <a target="_blank">
               <img alt="" border="0" height="218" src="https://inboxflows.com/_/image/https%253A%252F%252Fimages.costco-static.com%252FImageDelivery%252FimageService%253FprofileId%253D12026540%2526imageId%253D1288045-847__1%2526recipeName%253D680/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMgF:2LeuO948OegA6aQE4fGNhqgWBDxyiy1mOdzvtJJGc_A" style="display: block;" width="218"/>
              </a>
             </td>
            </tr>
            <tr>
             <td height="10" style="font-size:0px; line-height:0px">
             </td>
            </tr>
            <tr>
             <td align="center">
              <table align="center" border="0" cellpadding="0" cellspacing="0" width="85%">
               <tbody>
                <tr>
                 <td class="T-Size-3" style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
                  Tisdale 6-Piece Modular Fabric Sectional
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td class="T-Size-4" style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; color: #000000; font-weight: bold">
                  $1,199.99 Delivered
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
        </tr>
       </tbody>
      </table>
     </td>
    </tr>
    <tr>
     <td height="36" style="font-size:0px; line-height:0px">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="Presentation" style="margin:0 auto" width="696">
   <tbody>
    <tr>
     <td align="center">
      <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize90" width="696">
       <tbody>
        <tr>
         <td align="center" class="stack w-resize100" style="vertical-align:top" width="340">
          <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" width="340">
           <tbody>
            <tr>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color: #333333; text-decoration: none;" target="_blank">
                   <img alt="" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fimages.costco-static.com%252FImageDelivery%252FimageService%253FprofileId%253D12026540%2526imageId%253D1356486-847__1%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMgF:2LeuO948OegA6aQE4fGNhqgWBDxyiy1mOdzvtJJGc_A" style="display: block; " width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="10" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
                  Dunhill Leather Power Reclining Sectional
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; color: #000000; font-weight: bold">
                  $2,199.99 Delivered
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
             <td style="font-size:0px; line-height:0px" width="16">
             </td>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color: #333333; text-decoration: none;" target="_blank">
                   <img alt="" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fimages.costco-static.com%252FImageDelivery%252FimageService%253FprofileId%253D12026540%2526imageId%253D1348486-847__1%2526recipeName%253D680/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMgF:2LeuO948OegA6aQE4fGNhqgWBDxyiy1mOdzvtJJGc_A" style="display: block; " width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="10" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
                  Donovan Leather Power Home Theater Recliner with Power Headrest
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; color: #000000; font-weight: bold">
                  $699.99 Delivered
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
         <td class="stack w-resize100 h-resize30px" style="font-size:0px; line-height:0px" width="16">
         </td>
         <td align="center" class="stack w-resize100" style="vertical-align:top" width="340">
          <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" width="340">
           <tbody>
            <tr>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color: #333333; text-decoration: none;" target="_blank">
                   <img alt="" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Flive%252Fresource%252Fimg%252F6-19-20%252Fus200619-b2c1788-2000225-v.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMgF:-Ba8rIr10JhRMmP4wZ5CvR3tfxASKGwA8e_JtOteUYc" style="display: block; " width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="10" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
                  Aleena Leather Power Reclining Sofa with Power Headrest
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; color: #000000; font-weight: bold">
                  $1,089.99 Delivered
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
             <td style="font-size:0px; line-height:0px" width="16">
             </td>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color: #333333; text-decoration: none;" target="_blank">
                   <img alt="" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fimages.costco-static.com%252FImageDelivery%252FimageService%253FprofileId%253D12026540%2526imageId%253D2000226-847__1%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMgF:2LeuO948OegA6aQE4fGNhqgWBDxyiy1mOdzvtJJGc_A" style="display: block; " width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="10" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
                  Aleena Leather Power Reclining Loveseat with Power Headrest
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; color: #000000; font-weight: bold">
                  $999.99 Delivered
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
        </tr>
       </tbody>
      </table>
     </td>
    </tr>
    <tr>
     <td height="36" style="font-size:0px; line-height:0px">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="Presentation" style="margin:0 auto" width="696">
   <tbody>
    <tr>
     <td align="center">
      <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize90" width="696">
       <tbody>
        <tr>
         <td align="center" class="stack w-resize100" style="vertical-align:top" width="340">
          <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" width="340">
           <tbody>
            <tr>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color: #333333; text-decoration: none;" target="_blank">
                   <img alt="" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fimages.costco-static.com%252FImageDelivery%252FimageService%253FprofileId%253D12026540%2526imageId%253D100497620-847__1%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMgF:2LeuO948OegA6aQE4fGNhqgWBDxyiy1mOdzvtJJGc_A" style="display: block; " width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="10" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
                  Leyton 7-Piece Square to Round Dining Set
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; color: #000000; font-weight: bold">
                  $999.99 Delivered
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
             <td style="font-size:0px; line-height:0px" width="16">
             </td>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color: #333333; text-decoration: none;" target="_blank">
                   <img alt="" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fimages.costco-static.com%252FImageDelivery%252FimageService%253FprofileId%253D12026540%2526imageId%253D1413460-847__1%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMgF:2LeuO948OegA6aQE4fGNhqgWBDxyiy1mOdzvtJJGc_A" style="display: block; " width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="10" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
                  Jacobsen 7-Piece Dining Set
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; color: #000000; font-weight: bold">
                  $1,799.99 Delivered
                  <br/>
                  After $500 OFF
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
         <td class="stack w-resize100 h-resize30px" style="font-size:0px; line-height:0px" width="16">
         </td>
         <td align="center" class="stack w-resize100" style="vertical-align:top" width="340">
          <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" width="340">
           <tbody>
            <tr>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color: #333333; text-decoration: none;" target="_blank">
                   <img alt="" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fimages.costco-static.com%252FImageDelivery%252FimageService%253FprofileId%253D12026540%2526imageId%253D1353967-847__1%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMgF:2LeuO948OegA6aQE4fGNhqgWBDxyiy1mOdzvtJJGc_A" style="display: block; " width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="10" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
                  Lena 7-Piece Dining Set
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; color: #000000; font-weight: bold">
                  $1,699.99 Delivered
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
             <td style="font-size:0px; line-height:0px" width="16">
             </td>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color: #333333; text-decoration: none;" target="_blank">
                   <img alt="" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fimages.costco-static.com%252FImageDelivery%252FimageService%253FprofileId%253D12026540%2526imageId%253D447127-847__1%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMgF:2LeuO948OegA6aQE4fGNhqgWBDxyiy1mOdzvtJJGc_A" style="display: block; " width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="10" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
                  Annora 8-Piece Dining Set
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; color: #000000; font-weight: bold">
                  $4,899.99 Delivered
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
        </tr>
       </tbody>
      </table>
     </td>
    </tr>
    <tr>
     <td height="36" style="font-size:0px; line-height:0px">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="Presentation" style="margin:0 auto" width="696">
   <tbody>
    <tr>
     <td align="center">
      <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize90" width="696">
       <tbody>
        <tr>
         <td align="center" class="stack w-resize100" style="vertical-align:top" width="340">
          <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" width="340">
           <tbody>
            <tr>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color: #333333; text-decoration: none;" target="_blank">
                   <img alt="" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Flive%252Fresource%252Fimg%252F6-19-20%252Fus200619-b2c1788-1446823.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMgF:-Ba8rIr10JhRMmP4wZ5CvR3tfxASKGwA8e_JtOteUYc" style="display: block; " width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="10" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
                  Furniture Savings to Kick Off Summer
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; color: #000000; font-weight: bold">
                  $150 - $1,000 OFF
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
             <td style="font-size:0px; line-height:0px" width="16">
             </td>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color: #333333; text-decoration: none;" target="_blank">
                   <img alt="" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fimages.costco-static.com%252FImageDelivery%252FimageService%253FprofileId%253D12026540%2526imageId%253D1288038-847__1%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMgF:2LeuO948OegA6aQE4fGNhqgWBDxyiy1mOdzvtJJGc_A" style="display: block; " width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="10" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
                  Buckley Leather Sofa
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; color: #000000; font-weight: bold">
                  $999.99 Delivered
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
         <td class="stack w-resize100 h-resize30px" style="font-size:0px; line-height:0px" width="16">
         </td>
         <td align="center" class="stack w-resize100" style="vertical-align:top" width="340">
          <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
           <tbody>
            <tr>
             <td align="center" class="resize100">
              <a style="color: #333333; text-decoration: none;" target="_blank">
               <img alt="" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Flive%252Fresource%252Fimg%252F6-19-20%252Fus200619-b2c1788-100376790-v.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMgF:-Ba8rIr10JhRMmP4wZ5CvR3tfxASKGwA8e_JtOteUYc" style="display: block; " width="338"/>
              </a>
             </td>
            </tr>
            <tr>
             <td height="10" style="font-size:0px; line-height:0px">
             </td>
            </tr>
            <tr>
             <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
              Youth Spring Fling Event
             </td>
            </tr>
            <tr>
             <td height="4" style="font-size:0px; line-height:0px">
             </td>
            </tr>
            <tr>
             <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; color: #000000; font-weight: bold">
              $50 - $500 OFF
             </td>
            </tr>
           </tbody>
          </table>
         </td>
        </tr>
       </tbody>
      </table>
     </td>
    </tr>
    <tr>
     <td height="36" style="font-size:0px; line-height:0px">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="Presentation" style="margin:0 auto" width="696">
   <tbody>
    <tr>
     <td align="center">
      <a target="_blank">
       <img alt="New Items For Your Home! While supplies last. Shop Now" border="0" class="remove" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Flive%252Fresource%252Fimg%252F6-19-20%252Fd-b2c1788-200617-ban-furniture-v1.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMgF:-Ba8rIr10JhRMmP4wZ5CvR3tfxASKGwA8e_JtOteUYc" style="display:block; margin: 0 auto; font-family:'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:16px;color:#000000;" width="696"/>
      </a>
      <div class="showHidden mobile-hero" style="display:none; width:0px; max-width:100%; max-height:0px; overflow:hidden; mso-hide:all">
       <a target="_blank">
        <img alt="New Items For Your Home! While supplies last. Shop Now" border="0" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Flive%252Fresource%252Fimg%252F6-19-20%252Fm-b2c1788-200617-ban-furniture-v1.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMgF:-Ba8rIr10JhRMmP4wZ5CvR3tfxASKGwA8e_JtOteUYc"/>
       </a>
      </div>
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="Presentation" style="margin:0 auto; background-color: #333333;" width="696">
   <tbody>
    <tr>
     <td height="5" style="font-size:0px; line-height:0px">
     </td>
    </tr>
    <tr>
     <td align="center" style="font-size: 16px; mso-line-height-rule:exactly; line-height: 20px; font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; ">
      <a style="color: #ffffff; text-decoration: none" target="_blank">
       While Supplies Last.  |
       <strong>
        Shop Now
       </strong>
      </a>
     </td>
    </tr>
    <tr>
     <td height="5" style="font-size:0px; line-height:0px">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="Presentation" style="margin:0 auto" width="696">
   <tbody>
    <tr>
     <td height="20" style="font-size:0px; line-height:0px">
     </td>
    </tr>
    <tr>
     <td align="center">
      <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize90" width="696">
       <tbody>
        <tr>
         <td align="center" class="stack w-resize100" style="vertical-align:top" width="348">
          <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
           <tbody>
            <tr>
             <td align="center" class="resize100">
              <a target="_blank">
               <img alt="" border="0" height="218" src="https://inboxflows.com/_/image/https%253A%252F%252Fimages.costco-static.com%252FImageDelivery%252FimageService%253FprofileId%253D12026540%2526imageId%253D1348920-847__1%2526recipeName%253D680/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMgF:2LeuO948OegA6aQE4fGNhqgWBDxyiy1mOdzvtJJGc_A" style="display: block;" width="218"/>
              </a>
             </td>
            </tr>
            <tr>
             <td height="10" style="font-size:0px; line-height:0px">
             </td>
            </tr>
            <tr>
             <td align="center">
              <table align="center" border="0" cellpadding="0" cellspacing="0" width="85%">
               <tbody>
                <tr>
                 <td class="T-Size-3" style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
                  Athena Arc Floor Lamp
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td class="T-Size-4" style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; color: #000000; font-weight: bold">
                  $169.99 Delivered
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
         <td class="stack w-resize100 h-resize40px" style="font-size:0px; line-height:0px" width="0">
         </td>
         <td align="center" class="stack w-resize100" style="vertical-align:top" width="348">
          <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
           <tbody>
            <tr>
             <td align="center" class="resize100">
              <a target="_blank">
               <img alt="" border="0" height="218" src="https://inboxflows.com/_/image/https%253A%252F%252Fimages.costco-static.com%252FImageDelivery%252FimageService%253FprofileId%253D12026540%2526imageId%253D1348893-847__1%2526recipeName%253D680/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMgF:2LeuO948OegA6aQE4fGNhqgWBDxyiy1mOdzvtJJGc_A" style="display: block;" width="218"/>
              </a>
             </td>
            </tr>
            <tr>
             <td height="10" style="font-size:0px; line-height:0px">
             </td>
            </tr>
            <tr>
             <td align="center">
              <table align="center" border="0" cellpadding="0" cellspacing="0" width="85%">
               <tbody>
                <tr>
                 <td class="T-Size-3" style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
                  Neptune 3-Light 73" Floor Lamp
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td class="T-Size-4" style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; color: #000000; font-weight: bold">
                  $89.99 Delivered
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
         <td class="stack w-resize100 h-resize40px" style="font-size:0px; line-height:0px" width="0">
         </td>
         <td align="center" class="stack w-resize100" style="vertical-align:top" width="348">
          <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
           <tbody>
            <tr>
             <td align="center" class="resize100">
              <a target="_blank">
               <img alt="" border="0" height="218" src="https://inboxflows.com/_/image/https%253A%252F%252Fimages.costco-static.com%252FImageDelivery%252FimageService%253FprofileId%253D12026540%2526imageId%253D1152486-847__1%2526recipeName%253D680/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMgF:2LeuO948OegA6aQE4fGNhqgWBDxyiy1mOdzvtJJGc_A" style="display: block;" width="218"/>
              </a>
             </td>
            </tr>
            <tr>
             <td height="10" style="font-size:0px; line-height:0px">
             </td>
            </tr>
            <tr>
             <td align="center">
              <table align="center" border="0" cellpadding="0" cellspacing="0" width="85%">
               <tbody>
                <tr>
                 <td class="T-Size-3" style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
                  Berenger Console Table
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td class="T-Size-4" style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; color: #000000; font-weight: bold">
                  $299.99 Delivered
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
        </tr>
       </tbody>
      </table>
     </td>
    </tr>
    <tr>
     <td height="36" style="font-size:0px; line-height:0px">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="Presentation" style="margin:0 auto" width="696">
   <tbody>
    <tr>
     <td align="center">
      <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize90" width="696">
       <tbody>
        <tr>
         <td align="center" class="stack w-resize100" style="vertical-align:top" width="348">
          <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
           <tbody>
            <tr>
             <td align="center" class="resize100">
              <a target="_blank">
               <img alt="" border="0" height="218" src="https://inboxflows.com/_/image/https%253A%252F%252Fimages.costco-static.com%252FImageDelivery%252FimageService%253FprofileId%253D12026540%2526imageId%253D1152480-847__1%2526recipeName%253D680/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMgF:2LeuO948OegA6aQE4fGNhqgWBDxyiy1mOdzvtJJGc_A" style="display: block;" width="218"/>
              </a>
             </td>
            </tr>
            <tr>
             <td height="10" style="font-size:0px; line-height:0px">
             </td>
            </tr>
            <tr>
             <td align="center">
              <table align="center" border="0" cellpadding="0" cellspacing="0" width="85%">
               <tbody>
                <tr>
                 <td class="T-Size-3" style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
                  Berenger 3-Piece Occasional Table Set
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td class="T-Size-4" style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; color: #000000; font-weight: bold">
                  $699.99 Delivered
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
         <td class="stack w-resize100 h-resize40px" style="font-size:0px; line-height:0px" width="0">
         </td>
         <td align="center" class="stack w-resize100" style="vertical-align:top" width="348">
          <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
           <tbody>
            <tr>
             <td align="center" class="resize100">
              <a target="_blank">
               <img alt="" border="0" height="218" src="https://inboxflows.com/_/image/https%253A%252F%252Fimages.costco-static.com%252FImageDelivery%252FimageService%253FprofileId%253D12026540%2526imageId%253D100171849-847__1%2526recipeName%253D680/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMgF:2LeuO948OegA6aQE4fGNhqgWBDxyiy1mOdzvtJJGc_A" style="display: block;" width="218"/>
              </a>
             </td>
            </tr>
            <tr>
             <td height="10" style="font-size:0px; line-height:0px">
             </td>
            </tr>
            <tr>
             <td align="center">
              <table align="center" border="0" cellpadding="0" cellspacing="0" width="85%">
               <tbody>
                <tr>
                 <td class="T-Size-3" style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
                  Taylor 72” Media Console
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td class="T-Size-4" style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; color: #000000; font-weight: bold">
                  $899.99 Delivered
                  <br/>
                  After $200 OFF
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
         <td class="stack w-resize100 h-resize40px" style="font-size:0px; line-height:0px" width="0">
         </td>
         <td align="center" class="stack w-resize100" style="vertical-align:top" width="348">
          <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
           <tbody>
            <tr>
             <td align="center" class="resize100">
              <a target="_blank">
               <img alt="" border="0" height="218" src="https://inboxflows.com/_/image/https%253A%252F%252Fimages.costco-static.com%252FImageDelivery%252FimageService%253FprofileId%253D12026540%2526imageId%253D1363136-847__1%2526recipeName%253D680/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMgF:2LeuO948OegA6aQE4fGNhqgWBDxyiy1mOdzvtJJGc_A" style="display: block;" width="218"/>
              </a>
             </td>
            </tr>
            <tr>
             <td height="10" style="font-size:0px; line-height:0px">
             </td>
            </tr>
            <tr>
             <td align="center">
              <table align="center" border="0" cellpadding="0" cellspacing="0" width="85%">
               <tbody>
                <tr>
                 <td class="T-Size-3" style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
                  Burkedale 56" 3-in-1 TV Stand
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td class="T-Size-4" style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; color: #000000; font-weight: bold">
                  $249.99 Delivered
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
        </tr>
       </tbody>
      </table>
     </td>
    </tr>
    <tr>
     <td height="36" style="font-size:0px; line-height:0px">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="Presentation" style="margin:0 auto" width="696">
   <tbody>
    <tr>
     <td align="center">
      <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize90" width="696">
       <tbody>
        <tr>
         <td align="center" class="stack w-resize100" style="vertical-align:top" width="340">
          <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" width="340">
           <tbody>
            <tr>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color: #333333; text-decoration: none;" target="_blank">
                   <img alt="" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fimages.costco-static.com%252FImageDelivery%252FimageService%253FprofileId%253D12026540%2526imageId%253D2000294-847__1%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMgF:2LeuO948OegA6aQE4fGNhqgWBDxyiy1mOdzvtJJGc_A" style="display: block; " width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="10" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
                  Fergus Queen Storage Bed
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; color: #000000; font-weight: bold">
                  $649.99 Delivered
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
             <td style="font-size:0px; line-height:0px" width="16">
             </td>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color: #333333; text-decoration: none;" target="_blank">
                   <img alt="" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fimages.costco-static.com%252FImageDelivery%252FimageService%253FprofileId%253D12026540%2526imageId%253D2000297-847__1%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMgF:2LeuO948OegA6aQE4fGNhqgWBDxyiy1mOdzvtJJGc_A" style="display: block; " width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="10" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
                  Fergus Nightstand
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; color: #000000; font-weight: bold">
                  $319.99 Delivered
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
         <td class="stack w-resize100 h-resize30px" style="font-size:0px; line-height:0px" width="16">
         </td>
         <td align="center" class="stack w-resize100" style="vertical-align:top" width="340">
          <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" width="340">
           <tbody>
            <tr>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color: #333333; text-decoration: none;" target="_blank">
                   <img alt="" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fimages.costco-static.com%252FImageDelivery%252FimageService%253FprofileId%253D12026540%2526imageId%253D1363190-847__1%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMgF:2LeuO948OegA6aQE4fGNhqgWBDxyiy1mOdzvtJJGc_A" style="display: block; " width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="10" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
                  Cecelia Queen Upholstered Bed
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; color: #000000; font-weight: bold">
                  $449.99 Delivered
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
             <td style="font-size:0px; line-height:0px" width="16">
             </td>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color: #333333; text-decoration: none;" target="_blank">
                   <img alt="" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fimages.costco-static.com%252FImageDelivery%252FimageService%253FprofileId%253D12026540%2526imageId%253D1363130-847__1%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMgF:2LeuO948OegA6aQE4fGNhqgWBDxyiy1mOdzvtJJGc_A" style="display: block; " width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="10" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
                  Thomasville Upholstered Bed
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; color: #000000; font-weight: bold">
                  $699.99 Delivered
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
        </tr>
       </tbody>
      </table>
     </td>
    </tr>
    <tr>
     <td height="36" style="font-size:0px; line-height:0px">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="Presentation" style="margin:0 auto" width="696">
   <tbody>
    <tr>
     <td align="center">
      <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize90" width="696">
       <tbody>
        <tr>
         <td align="center" class="stack w-resize100" style="vertical-align:top" width="340">
          <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" width="340">
           <tbody>
            <tr>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color: #333333; text-decoration: none;" target="_blank">
                   <img alt="" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fimages.costco-static.com%252FImageDelivery%252FimageService%253FprofileId%253D12026540%2526imageId%253D1159574-847__1%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMgF:2LeuO948OegA6aQE4fGNhqgWBDxyiy1mOdzvtJJGc_A" style="display: block; " width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="10" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
                  Comfort Tech Elite Aurora 12" Medium Queen Mattress
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; color: #000000; font-weight: bold">
                  $399.99 Delivered
                  <br/>
                  After $100 OFF
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
             <td style="font-size:0px; line-height:0px" width="16">
             </td>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color: #333333; text-decoration: none;" target="_blank">
                   <img alt="" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fimages.costco-static.com%252FImageDelivery%252FimageService%253FprofileId%253D12026540%2526imageId%253D1345600-847__1%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMgF:2LeuO948OegA6aQE4fGNhqgWBDxyiy1mOdzvtJJGc_A" style="display: block; " width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="10" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
                  Sleep Science Ara 13" Memory Foam Mattresses with QPlus Adjustable Base
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; color: #000000; font-weight: bold">
                  $400 - $600 OFF
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
         <td class="stack w-resize100 h-resize30px" style="font-size:0px; line-height:0px" width="16">
         </td>
         <td align="center" class="stack w-resize100" style="vertical-align:top" width="340">
          <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" width="340">
           <tbody>
            <tr>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color: #333333; text-decoration: none;" target="_blank">
                   <img alt="" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Flive%252Fresource%252Fimg%252F6-17-20%252Fus200617-b2c1787-1359540.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMgF:-Ba8rIr10JhRMmP4wZ5CvR3tfxASKGwA8e_JtOteUYc" style="display: block; " width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="10" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
                  Molecule 1 Air-Engineered 12" Memory Foam Queen Mattress
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; color: #000000; font-weight: bold">
                  $549.99 Delivered
                  <br/>
                  After $150 OFF
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
             <td style="font-size:0px; line-height:0px" width="16">
             </td>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color: #333333; text-decoration: none;" target="_blank">
                   <img alt="" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fimages.costco-static.com%252FImageDelivery%252FimageService%253FprofileId%253D12026540%2526imageId%253D1364104-847__1%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMgF:2LeuO948OegA6aQE4fGNhqgWBDxyiy1mOdzvtJJGc_A" style="display: block; " width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="10" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
                  Cocoon by Sealy 10" Queen Memory Foam Mattress
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; color: #000000; font-weight: bold">
                  $399.99 Delivered
                  <br/>
                  After $100 OFF
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
        </tr>
       </tbody>
      </table>
     </td>
    </tr>
    <tr>
     <td height="36" style="font-size:0px; line-height:0px">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="Presentation" style="margin:0 auto" width="696">
   <tbody>
    <tr>
     <td align="center">
      <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize90" width="696">
       <tbody>
        <tr>
         <td align="center" class="stack w-resize100" style="vertical-align:top" width="340">
          <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" width="340">
           <tbody>
            <tr>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color: #333333; text-decoration: none;" target="_blank">
                   <img alt="" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fimages.costco-static.com%252FImageDelivery%252FimageService%253FprofileId%253D12026540%2526imageId%253D100569427-847__1%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMgF:2LeuO948OegA6aQE4fGNhqgWBDxyiy1mOdzvtJJGc_A" style="display: block; " width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="10" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
                  Shop Duvet Cover Sets
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; color: #000000; font-weight: bold">
                  $39.99 - $89.99 Delivered
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
             <td style="font-size:0px; line-height:0px" width="16">
             </td>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color: #333333; text-decoration: none;" target="_blank">
                   <img alt="" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fimages.costco-static.com%252FImageDelivery%252FimageService%253FprofileId%253D12026540%2526imageId%253D100540651-847__1%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMgF:2LeuO948OegA6aQE4fGNhqgWBDxyiy1mOdzvtJJGc_A" style="display: block; " width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="10" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
                  Charisma Microfiber 6-Piece Sheet Set
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; color: #000000; font-weight: bold">
                  $19.99 - $23.99 Delivered
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
         <td class="stack w-resize100 h-resize30px" style="font-size:0px; line-height:0px" width="16">
         </td>
         <td align="center" class="stack w-resize100" style="vertical-align:top" width="340">
          <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" width="340">
           <tbody>
            <tr>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color: #333333; text-decoration: none;" target="_blank">
                   <img alt="" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fimages.costco-static.com%252FImageDelivery%252FimageService%253FprofileId%253D12026540%2526imageId%253D100489085-847__1%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMgF:2LeuO948OegA6aQE4fGNhqgWBDxyiy1mOdzvtJJGc_A" style="display: block; " width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="10" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
                  Aurora 7'10" x 10' Area Rug Collection
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; color: #000000; font-weight: bold">
                  $349.99 Delivered
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
             <td style="font-size:0px; line-height:0px" width="16">
             </td>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color: #333333; text-decoration: none;" target="_blank">
                   <img alt="" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fimages.costco-static.com%252FImageDelivery%252FimageService%253FprofileId%253D12026540%2526imageId%253D100649748-847__1%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMgF:2LeuO948OegA6aQE4fGNhqgWBDxyiy1mOdzvtJJGc_A" style="display: block; " width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="10" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
                  Mohawk Woven Area Rug
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; color: #000000; font-weight: bold">
                  $30 - $120 OFF
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
        </tr>
       </tbody>
      </table>
     </td>
    </tr>
    <tr>
     <td height="36" style="font-size:0px; line-height:0px">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="Presentation" style="margin:0 auto; background-color: #e5f3f6;" width="696">
   <tbody>
    <tr>
     <td height="10" style="font-size:0px; mso-line-height-rule:exactly; line-height:0px;background-color: #e5f3f6;">
     </td>
    </tr>
    <tr>
     <td align="center" style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;font-size: 18px; mso-line-height-rule:exactly; line-height: 18px; padding-left: 20px; padding-right: 20px; color: #333333;">
      <a style="color: #333333; text-decoration: none" target="_blank">
       Purchase
       <strong>
        qualifying
       </strong>
       Samsung appliances, receive
       <strong>
        15% back* on a Costco Shop Card
       </strong>
       when you pay with your Costco Anywhere Visa
       <span style="font-size:12px; vertical-align:top;">
        ®
       </span>
       Card by Citi.
      </a>
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="Presentation" style="margin:0 auto; background-color: #e5f3f6;" width="696">
   <tbody>
    <tr>
     <td align="center">
      <a target="_blank">
       <img alt="" border="0" class="remove" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Flive%252Fresource%252Fimg%252F20w1074%252Fem-20w1074-samsung-citi.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMgF:-Ba8rIr10JhRMmP4wZ5CvR3tfxASKGwA8e_JtOteUYc" style="display:block; margin:0 auto; font-family:'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:16px; color:#333333;" width="696"/>
      </a>
      <div class="showHidden mobile-hero" style="display:none; width:0px; max-width:100%; max-height:0px; overflow:hidden; mso-hide:all">
       <a target="_blank">
        <img alt="" border="0" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Flive%252Fresource%252Fimg%252F20w1074%252Fem-20w1074-samsung-citi.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMgF:-Ba8rIr10JhRMmP4wZ5CvR3tfxASKGwA8e_JtOteUYc"/>
       </a>
      </div>
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="Presentation" style="margin:0 auto; background-color: #e5f3f6;" width="696">
   <tbody>
    <tr>
     <td align="center" width="420">
      <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" style="margin:0 auto; background-color:#d32122;" width="440">
       <tbody>
        <tr>
         <td align="center" style="font-size: 18px; mso-line-height-rule:exactly; line-height: 26px; color: #FFFFFF; font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; text-decoration:none;">
          <a style="color: #FFFFFF; text-decoration: none" target="_blank">
           Online-Only  |  Valid 6/17/20 - 7/8/20 |
           <strong>
            SHOP NOW
           </strong>
          </a>
         </td>
        </tr>
       </tbody>
      </table>
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="Presentation" style="margin:0 auto" width="696">
   <tbody>
    <tr>
     <td height="20" style="font-size:0px; line-height:0px">
     </td>
    </tr>
    <tr>
     <td align="center">
      <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize90" width="696">
       <tbody>
        <tr>
         <td align="center" class="stack w-resize100" style="vertical-align:top" width="340">
          <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
           <tbody>
            <tr>
             <td align="center" class="resize100">
              <a target="_blank">
               <img alt="" border="0" height="276" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Flive%252Fresource%252Fimg%252F6-19-20%252Fem1788-b2c-200619-b1.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMgF:-Ba8rIr10JhRMmP4wZ5CvR3tfxASKGwA8e_JtOteUYc" style="display:block;" width="340"/>
              </a>
             </td>
            </tr>
            <tr>
             <td height="10" style="font-size:0px; line-height:0px">
             </td>
            </tr>
            <tr>
             <td align="center">
              <table align="center" border="0" cellpadding="0" cellspacing="0" width="85%">
               <tbody>
                <tr>
                 <td align="left" style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:18px; line-height:18px;">
                  Big Savings on LG Ranges
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:12px; line-height:12px; color:#666666; padding-bottom:4px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 16px; line-height: 16px; color: #000000; font-weight: bold">
                  $500 - $800 OFF
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
         <td class="stack w-resize100 h-resize40px" style="font-size:0px; line-height:0px" width="0">
         </td>
         <td align="center" class="stack w-resize100" style="vertical-align:top" width="340">
          <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
           <tbody>
            <tr>
             <td align="center" class="resize100">
              <a target="_blank">
               <img alt="" border="0" height="276" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Flive%252Fresource%252Fimg%252F6-19-20%252Fem1788-b2c-200619-b2.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMgF:-Ba8rIr10JhRMmP4wZ5CvR3tfxASKGwA8e_JtOteUYc" style="display:block;" width="340"/>
              </a>
             </td>
            </tr>
            <tr>
             <td height="10" style="font-size:0px; line-height:0px">
             </td>
            </tr>
            <tr>
             <td align="center">
              <table align="center" border="0" cellpadding="0" cellspacing="0" width="85%">
               <tbody>
                <tr>
                 <td align="left" style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:18px; line-height:18px;">
                  New Kitchen Essentials
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
        </tr>
       </tbody>
      </table>
     </td>
    </tr>
    <tr>
     <td height="36" style="font-size:0px; line-height:0px">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="Presentation" style="margin:0 auto" width="696">
   <tbody>
    <tr>
     <td align="center">
      <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize90" width="696">
       <tbody>
        <tr>
         <td align="center" class="stack w-resize100" style="vertical-align:top" width="348">
          <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
           <tbody>
            <tr>
             <td align="center" class="resize100">
              <a target="_blank">
               <img alt="" border="0" height="218" src="https://inboxflows.com/_/image/https%253A%252F%252Fimages.costco-static.com%252FImageDelivery%252FimageService%253FprofileId%253D12026540%2526imageId%253D9550010-847__1%2526recipeName%253D680/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMgF:2LeuO948OegA6aQE4fGNhqgWBDxyiy1mOdzvtJJGc_A" style="display: block;" width="218"/>
              </a>
             </td>
            </tr>
            <tr>
             <td height="10" style="font-size:0px; line-height:0px">
             </td>
            </tr>
            <tr>
             <td align="center">
              <table align="center" border="0" cellpadding="0" cellspacing="0" width="85%">
               <tbody>
                <tr>
                 <td class="T-Size-3" style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
                  LG 55" Class - CX Series - 4K UHD OLED TV
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td class="T-Size-4" style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; color: #000000; font-weight: bold">
                  $1,749.99
                  <br/>
                  Free Shipping
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td class="T-Size-5" style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 11px; line-height: 12px; color: #008000">
                  $100 SquareTrade Protection Plan Bundle Included
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
         <td class="stack w-resize100 h-resize40px" style="font-size:0px; line-height:0px" width="0">
         </td>
         <td align="center" class="stack w-resize100" style="vertical-align:top" width="348">
          <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
           <tbody>
            <tr>
             <td align="center" class="resize100">
              <a target="_blank">
               <img alt="" border="0" height="218" src="https://inboxflows.com/_/image/https%253A%252F%252Fimages.costco-static.com%252FImageDelivery%252FimageService%253FprofileId%253D12026540%2526imageId%253D100505686-847_stainlesssteel_1%2526recipeName%253D680/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMgF:2LeuO948OegA6aQE4fGNhqgWBDxyiy1mOdzvtJJGc_A" style="display: block;" width="218"/>
              </a>
             </td>
            </tr>
            <tr>
             <td height="10" style="font-size:0px; line-height:0px">
             </td>
            </tr>
            <tr>
             <td align="center">
              <table align="center" border="0" cellpadding="0" cellspacing="0" width="85%">
               <tbody>
                <tr>
                 <td class="T-Size-3" style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
                  LG Top Control Wi-Fi Enabled Pocket Handle Dishwasher with QuadWash and TrueSteam
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td class="T-Size-4" style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; color: #000000; font-weight: bold">
                  $170 OFF
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
         <td class="stack w-resize100 h-resize40px" style="font-size:0px; line-height:0px" width="0">
         </td>
         <td align="center" class="stack w-resize100" style="vertical-align:top" width="348">
          <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
           <tbody>
            <tr>
             <td align="center" class="resize100">
              <a target="_blank">
               <img alt="" border="0" height="218" src="https://inboxflows.com/_/image/https%253A%252F%252Fimages.costco-static.com%252FImageDelivery%252FimageService%253FprofileId%253D12026540%2526imageId%253D1269681-847__1%2526recipeName%253D680/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMgF:2LeuO948OegA6aQE4fGNhqgWBDxyiy1mOdzvtJJGc_A" style="display: block;" width="218"/>
              </a>
             </td>
            </tr>
            <tr>
             <td height="10" style="font-size:0px; line-height:0px">
             </td>
            </tr>
            <tr>
             <td align="center">
              <table align="center" border="0" cellpadding="0" cellspacing="0" width="85%">
               <tbody>
                <tr>
                 <td class="T-Size-3" style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
                  LG 6.3 cu. ft. Wi-Fi Enabled Dual Fuel Slide-in Range with ProBake Convection and EasyClean
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
        </tr>
       </tbody>
      </table>
     </td>
    </tr>
    <tr>
     <td height="36" style="font-size:0px; line-height:0px">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="Presentation" style="margin:0 auto" width="696">
   <tbody>
    <tr>
     <td align="center">
      <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize90" width="696">
       <tbody>
        <tr>
         <td align="center" class="stack w-resize100" style="vertical-align:top" width="340">
          <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" width="340">
           <tbody>
            <tr>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color: #333333; text-decoration: none;" target="_blank">
                   <img alt="" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fimages.costco-static.com%252FImageDelivery%252FimageService%253FprofileId%253D12026540%2526imageId%253D1438482-847__5%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMgF:2LeuO948OegA6aQE4fGNhqgWBDxyiy1mOdzvtJJGc_A" style="display: block; " width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="10" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
                  American Flag Lazy Susan by Mikasa
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; color: #000000; font-weight: bold">
                  $39.99 Delivered
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
             <td style="font-size:0px; line-height:0px" width="16">
             </td>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color: #333333; text-decoration: none;" target="_blank">
                   <img alt="" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fimages.costco-static.com%252FImageDelivery%252FimageService%253FprofileId%253D12026540%2526imageId%253D1338517-847__1%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMgF:2LeuO948OegA6aQE4fGNhqgWBDxyiy1mOdzvtJJGc_A" style="display: block; " width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="10" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
                  Mikasa Celebration Bowls, 6-Piece Set
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; color: #000000; font-weight: bold">
                  $19.99 Delivered
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
         <td class="stack w-resize100 h-resize30px" style="font-size:0px; line-height:0px" width="16">
         </td>
         <td align="center" class="stack w-resize100" style="vertical-align:top" width="340">
          <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" width="340">
           <tbody>
            <tr>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color: #333333; text-decoration: none;" target="_blank">
                   <img alt="" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fimages.costco-static.com%252FImageDelivery%252FimageService%253FprofileId%253D12026540%2526imageId%253D1338502-847__1%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMgF:2LeuO948OegA6aQE4fGNhqgWBDxyiy1mOdzvtJJGc_A" style="display: block; " width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="10" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
                  Pandex 4-Piece Melamine Mixing Bowls with Lids
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; color: #000000; font-weight: bold">
                  $25.99 Delivered
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
             <td style="font-size:0px; line-height:0px" width="16">
             </td>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color: #333333; text-decoration: none;" target="_blank">
                   <img alt="" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fimages.costco-static.com%252FImageDelivery%252FimageService%253FprofileId%253D12026540%2526imageId%253D1371816-847__1%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMgF:2LeuO948OegA6aQE4fGNhqgWBDxyiy1mOdzvtJJGc_A" style="display: block; " width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="10" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
                  Mesa Rattan Picnic Caddy
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; color: #000000; font-weight: bold">
                  $24.99 Delivered
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
        </tr>
       </tbody>
      </table>
     </td>
    </tr>
    <tr>
     <td height="36" style="font-size:0px; line-height:0px">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="Presentation" style="margin:0 auto" width="696">
   <tbody>
    <tr>
     <td align="center">
      <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize90" width="696">
       <tbody>
        <tr>
         <td align="center" class="stack w-resize100" style="vertical-align:top" width="340">
          <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" width="340">
           <tbody>
            <tr>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color: #333333; text-decoration: none;" target="_blank">
                   <img alt="" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fimages.costco-static.com%252FImageDelivery%252FimageService%253FprofileId%253D12026540%2526imageId%253D2883930-847__1%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMgF:2LeuO948OegA6aQE4fGNhqgWBDxyiy1mOdzvtJJGc_A" style="display: block; " width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="10" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
                  Ninja Professional 1000 Watt Blender
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; color: #000000; font-weight: bold">
                  $69.99 Delivered
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
             <td style="font-size:0px; line-height:0px" width="16">
             </td>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color: #333333; text-decoration: none;" target="_blank">
                   <img alt="" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fimages.costco-static.com%252FImageDelivery%252FimageService%253FprofileId%253D12026540%2526imageId%253D1371829-847__2%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMgF:2LeuO948OegA6aQE4fGNhqgWBDxyiy1mOdzvtJJGc_A" style="display: block; " width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="10" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
                  Rabbit Wine Tote and Tumbler 3-Piece Set
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; color: #000000; font-weight: bold">
                  $29.99 Delivered
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
         <td class="stack w-resize100 h-resize30px" style="font-size:0px; line-height:0px" width="16">
         </td>
         <td align="center" class="stack w-resize100" style="vertical-align:top" width="340">
          <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" width="340">
           <tbody>
            <tr>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color: #333333; text-decoration: none;" target="_blank">
                   <img alt="" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fimages.costco-static.com%252FImageDelivery%252FimageService%253FprofileId%253D12026540%2526imageId%253D1371793-847__1%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMgF:2LeuO948OegA6aQE4fGNhqgWBDxyiy1mOdzvtJJGc_A" style="display: block; " width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="10" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
                  Instant Pot 8-Piece Cooking and Baking Accessories Set
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; color: #000000; font-weight: bold">
                  $24.99
                  <br/>
                  Plus S&amp;H
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
             <td style="font-size:0px; line-height:0px" width="16">
             </td>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color: #333333; text-decoration: none;" target="_blank">
                   <img alt="" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fimages.costco-static.com%252FImageDelivery%252FimageService%253FprofileId%253D12026540%2526imageId%253D1327389-847__1%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMgF:2LeuO948OegA6aQE4fGNhqgWBDxyiy1mOdzvtJJGc_A" style="display: block; " width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="10" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
                  Cangshan S Series 7-Piece BBQ Knife Set
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; color: #000000; font-weight: bold">
                  $99.99 Delivered
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
        </tr>
       </tbody>
      </table>
     </td>
    </tr>
    <tr>
     <td height="36" style="font-size:0px; line-height:0px">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="Presentation" style="margin:0 auto" width="696">
   <tbody>
    <tr>
     <td align="center">
      <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize90" width="696">
       <tbody>
        <tr>
         <td align="center" class="stack w-resize100" style="vertical-align:top" width="340">
          <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" width="340">
           <tbody>
            <tr>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color: #333333; text-decoration: none;" target="_blank">
                   <img alt="" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fimages.costco-static.com%252FImageDelivery%252FimageService%253FprofileId%253D12026540%2526imageId%253D1473236-847__1%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMgF:2LeuO948OegA6aQE4fGNhqgWBDxyiy1mOdzvtJJGc_A" style="display: block; " width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="10" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
                  Cuisinart Digital AirFryer Toaster Oven
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; color: #000000; font-weight: bold">
                  $199.99
                  <br/>
                  Plus S&amp;H
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
             <td style="font-size:0px; line-height:0px" width="16">
             </td>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color: #333333; text-decoration: none;" target="_blank">
                   <img alt="" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fimages.costco-static.com%252FImageDelivery%252FimageService%253FprofileId%253D12026540%2526imageId%253D1440616-847__1%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMgF:2LeuO948OegA6aQE4fGNhqgWBDxyiy1mOdzvtJJGc_A" style="display: block; " width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="10" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
                  Calphalon Auto-Speed Blender, Dark Stainless Steel
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; color: #000000; font-weight: bold">
                  $119.99 Delivered
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
         <td class="stack w-resize100 h-resize30px" style="font-size:0px; line-height:0px" width="16">
         </td>
         <td align="center" class="stack w-resize100" style="vertical-align:top" width="340">
          <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" width="340">
           <tbody>
            <tr>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color: #333333; text-decoration: none;" target="_blank">
                   <img alt="" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fimages.costco-static.com%252FImageDelivery%252FimageService%253FprofileId%253D12026540%2526imageId%253D1450288-847__1%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMgF:2LeuO948OegA6aQE4fGNhqgWBDxyiy1mOdzvtJJGc_A" style="display: block; " width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="10" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
                  Chef’n 3-in-1 Cold Brew Coffee Maker and French Press
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; color: #000000; font-weight: bold">
                  $46.99 Delivered
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
             <td style="font-size:0px; line-height:0px" width="16">
             </td>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color: #333333; text-decoration: none;" target="_blank">
                   <img alt="" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fimages.costco-static.com%252FImageDelivery%252FimageService%253FprofileId%253D12026540%2526imageId%253D9999975-847__1%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMgF:2LeuO948OegA6aQE4fGNhqgWBDxyiy1mOdzvtJJGc_A" style="display: block; " width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="10" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
                  Keurig K-Duo Plus C Coffee Maker with Single Serve K-Cup Pods and 12-Cup Thermal Carafe Brewer
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; color: #000000; font-weight: bold">
                  $40 OFF
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
        </tr>
       </tbody>
      </table>
     </td>
    </tr>
    <tr>
     <td height="36" style="font-size:0px; line-height:0px">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="Presentation" style="margin:0 auto" width="696">
   <tbody>
    <tr>
     <td align="center">
      <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize90" width="696">
       <tbody>
        <tr>
         <td align="center" class="stack w-resize100" style="vertical-align:top" width="340">
          <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" width="340">
           <tbody>
            <tr>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color: #333333; text-decoration: none;" target="_blank">
                   <img alt="" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fimages.costco-static.com%252FImageDelivery%252FimageService%253FprofileId%253D12026540%2526imageId%253D1458233-847__1%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMgF:2LeuO948OegA6aQE4fGNhqgWBDxyiy1mOdzvtJJGc_A" style="display: block; " width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="10" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
                  Anolon 13" Pizza Crisper Pan, 2-Piece Set
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; color: #000000; font-weight: bold">
                  $37.99 Delivered
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
             <td style="font-size:0px; line-height:0px" width="16">
             </td>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color: #333333; text-decoration: none;" target="_blank">
                   <img alt="" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fimages.costco-static.com%252FImageDelivery%252FimageService%253FprofileId%253D12026540%2526imageId%253D1458240-847__1%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMgF:2LeuO948OegA6aQE4fGNhqgWBDxyiy1mOdzvtJJGc_A" style="display: block; " width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="10" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
                  Circulon Loaf Pan, 4-Piece Set
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; color: #000000; font-weight: bold">
                  $29.99 Delivered
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
         <td class="stack w-resize100 h-resize30px" style="font-size:0px; line-height:0px" width="16">
         </td>
         <td align="center" class="stack w-resize100" style="vertical-align:top" width="340">
          <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" width="340">
           <tbody>
            <tr>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color: #333333; text-decoration: none;" target="_blank">
                   <img alt="" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fimages.costco-static.com%252FImageDelivery%252FimageService%253FprofileId%253D12026540%2526imageId%253D1458244-847__1%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMgF:2LeuO948OegA6aQE4fGNhqgWBDxyiy1mOdzvtJJGc_A" style="display: block; " width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="10" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
                  Anolon Nouvelle Copper Mixed Metals Cookware, 11-Piece Set
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; color: #000000; font-weight: bold">
                  $279.99 Delivered
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
             <td style="font-size:0px; line-height:0px" width="16">
             </td>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color: #333333; text-decoration: none;" target="_blank">
                   <img alt="" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fimages.costco-static.com%252FImageDelivery%252FimageService%253FprofileId%253D12026540%2526imageId%253D1458241-847__1%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMgF:2LeuO948OegA6aQE4fGNhqgWBDxyiy1mOdzvtJJGc_A" style="display: block; " width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="10" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
                  Anolon Advanced Nonstick Hard Anodized 18" Double Burner Griddle
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; color: #000000; font-weight: bold">
                  $49.99 Delivered
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
        </tr>
       </tbody>
      </table>
     </td>
    </tr>
    <tr>
     <td height="36" style="font-size:0px; line-height:0px">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="Presentation" style="margin:0 auto" width="696">
   <tbody>
    <tr>
     <td align="center">
      <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize90" width="696">
       <tbody>
        <tr>
         <td align="center" class="stack w-resize100" style="vertical-align:top" width="340">
          <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" width="340">
           <tbody>
            <tr>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color: #333333; text-decoration: none;" target="_blank">
                   <img alt="" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fimages.costco-static.com%252FImageDelivery%252FimageService%253FprofileId%253D12026540%2526imageId%253D100661667-847__1%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMgF:2LeuO948OegA6aQE4fGNhqgWBDxyiy1mOdzvtJJGc_A" style="display: block; " width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="10" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
                  Le Creuset Wine Essentials Tools Set
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; color: #000000; font-weight: bold">
                  $64.99 Delivered
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
             <td style="font-size:0px; line-height:0px" width="16">
             </td>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color: #333333; text-decoration: none;" target="_blank">
                   <img alt="" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fimages.costco-static.com%252FImageDelivery%252FimageService%253FprofileId%253D12026540%2526imageId%253D100517950-847__1%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMgF:2LeuO948OegA6aQE4fGNhqgWBDxyiy1mOdzvtJJGc_A" style="display: block; " width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="10" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
                  Cangshan S1 Series German Steel Forged 2-Piece Cleaver Knife Set
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; color: #000000; font-weight: bold">
                  $54.99 Delivered
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
         <td class="stack w-resize100 h-resize30px" style="font-size:0px; line-height:0px" width="16">
         </td>
         <td align="center" class="stack w-resize100" style="vertical-align:top" width="340">
          <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
           <tbody>
            <tr>
             <td align="center" class="resize100">
              <a style="color: #333333; text-decoration: none;" target="_blank">
               <img alt="" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Flive%252Fresource%252Fimg%252F6-19-20%252Fus200619-b2c1788-100667374.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMgF:-Ba8rIr10JhRMmP4wZ5CvR3tfxASKGwA8e_JtOteUYc" style="display: block; " width="338"/>
              </a>
             </td>
            </tr>
            <tr>
             <td height="10" style="font-size:0px; line-height:0px">
             </td>
            </tr>
            <tr>
             <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
              Kohler 47L Step Trash Bin
             </td>
            </tr>
            <tr>
             <td height="4" style="font-size:0px; line-height:0px">
             </td>
            </tr>
            <tr>
             <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; color: #000000; font-weight: bold">
              $99.99 Delivered
             </td>
            </tr>
           </tbody>
          </table>
         </td>
        </tr>
       </tbody>
      </table>
     </td>
    </tr>
    <tr>
     <td height="36" style="font-size:0px; line-height:0px">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="Presentation" style="margin:0 auto" width="696">
   <tbody>
    <tr>
     <td align="center">
      <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize90" width="696">
       <tbody>
        <tr>
         <td align="center" class="stack w-resize100" style="vertical-align:top" width="348">
          <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
           <tbody>
            <tr>
             <td align="center" class="resize100">
              <a target="_blank">
               <img alt="" border="0" height="218" src="https://inboxflows.com/_/image/https%253A%252F%252Fimages.costco-static.com%252FImageDelivery%252FimageService%253FprofileId%253D12026540%2526imageId%253D100533904-847__1%2526recipeName%253D680/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMgF:2LeuO948OegA6aQE4fGNhqgWBDxyiy1mOdzvtJJGc_A" style="display: block;" width="218"/>
              </a>
             </td>
            </tr>
            <tr>
             <td height="10" style="font-size:0px; line-height:0px">
             </td>
            </tr>
            <tr>
             <td align="center">
              <table align="center" border="0" cellpadding="0" cellspacing="0" width="85%">
               <tbody>
                <tr>
                 <td class="T-Size-3" style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
                  Lourdes 42" Vanity by OVE Decors, White
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td class="T-Size-4" style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; color: #000000; font-weight: bold">
                  $649.99 Delivered
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
         <td class="stack w-resize100 h-resize40px" style="font-size:0px; line-height:0px" width="0">
         </td>
         <td align="center" class="stack w-resize100" style="vertical-align:top" width="348">
          <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
           <tbody>
            <tr>
             <td align="center" class="resize100">
              <a target="_blank">
               <img alt="" border="0" height="218" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Flive%252Fresource%252Fimg%252F6-19-20%252Fus200619-b2c1788-1429680.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMgF:-Ba8rIr10JhRMmP4wZ5CvR3tfxASKGwA8e_JtOteUYc" style="display: block;" width="218"/>
              </a>
             </td>
            </tr>
            <tr>
             <td height="10" style="font-size:0px; line-height:0px">
             </td>
            </tr>
            <tr>
             <td align="center">
              <table align="center" border="0" cellpadding="0" cellspacing="0" width="85%">
               <tbody>
                <tr>
                 <td class="T-Size-3" style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
                  Smart Lighting by Philips Hue
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
         <td class="stack w-resize100 h-resize40px" style="font-size:0px; line-height:0px" width="0">
         </td>
         <td align="center" class="stack w-resize100" style="vertical-align:top" width="348">
          <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
           <tbody>
            <tr>
             <td align="center" class="resize100">
              <a target="_blank">
               <img alt="" border="0" height="218" src="https://inboxflows.com/_/image/https%253A%252F%252Fimages.costco-static.com%252FImageDelivery%252FimageService%253FprofileId%253D12026540%2526imageId%253D100652005-847_black_1%2526recipeName%253D680/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMgF:2LeuO948OegA6aQE4fGNhqgWBDxyiy1mOdzvtJJGc_A" style="display: block;" width="218"/>
              </a>
             </td>
            </tr>
            <tr>
             <td height="10" style="font-size:0px; line-height:0px">
             </td>
            </tr>
            <tr>
             <td align="center">
              <table align="center" border="0" cellpadding="0" cellspacing="0" width="85%">
               <tbody>
                <tr>
                 <td class="T-Size-3" style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
                  A&amp;E Appollo Melanie 67” Freestanding Bathtub
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td class="T-Size-4" style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; color: #000000; font-weight: bold">
                  $200 OFF
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
        </tr>
       </tbody>
      </table>
     </td>
    </tr>
    <tr>
     <td height="36" style="font-size:0px; line-height:0px">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="Presentation" style="margin:0 auto" width="696">
   <tbody>
    <tr>
     <td align="center">
      <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize90" width="696">
       <tbody>
        <tr>
         <td align="center" class="stack w-resize100" style="vertical-align:top" width="340">
          <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
           <tbody>
            <tr>
             <td align="center" class="resize100">
              <a style="color: #333333; text-decoration: none;" target="_blank">
               <img alt="" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Flive%252Fresource%252Fimg%252F6-19-20%252Fus200619-b2c1788-100480424.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMgF:-Ba8rIr10JhRMmP4wZ5CvR3tfxASKGwA8e_JtOteUYc" style="display: block; " width="338"/>
              </a>
             </td>
            </tr>
            <tr>
             <td height="10" style="font-size:0px; line-height:0px">
             </td>
            </tr>
            <tr>
             <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
              AFA 36" Stainless Steel Bathroom Vanity with Faucet
             </td>
            </tr>
            <tr>
             <td height="4" style="font-size:0px; line-height:0px">
             </td>
            </tr>
            <tr>
             <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; color: #000000; font-weight: bold">
              $899.99 Delivered
              <br/>
              After $100 OFF
             </td>
            </tr>
           </tbody>
          </table>
         </td>
         <td class="stack w-resize100 h-resize30px" style="font-size:0px; line-height:0px" width="16">
         </td>
         <td align="center" class="stack w-resize100" style="vertical-align:top" width="340">
          <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
           <tbody>
            <tr>
             <td align="center" class="resize100">
              <a style="color: #333333; text-decoration: none;" target="_blank">
               <img alt="" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Flive%252Fresource%252Fimg%252F6-19-20%252Fus200619-b2c1788-100214525.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMgF:-Ba8rIr10JhRMmP4wZ5CvR3tfxASKGwA8e_JtOteUYc" style="display: block; " width="338"/>
              </a>
             </td>
            </tr>
            <tr>
             <td height="10" style="font-size:0px; line-height:0px">
             </td>
            </tr>
            <tr>
             <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
              Casanova Antique Gray Vanities by Lanza
             </td>
            </tr>
            <tr>
             <td height="4" style="font-size:0px; line-height:0px">
             </td>
            </tr>
            <tr>
             <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; color: #000000; font-weight: bold">
              $200 - $300 OFF
             </td>
            </tr>
           </tbody>
          </table>
         </td>
        </tr>
       </tbody>
      </table>
     </td>
    </tr>
    <tr>
     <td height="36" style="font-size:0px; line-height:0px">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="Presentation" style="margin:0 auto" width="696">
   <tbody>
    <tr>
     <td align="center">
      <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize90" width="696">
       <tbody>
        <tr>
         <td align="center" class="stack w-resize100" style="vertical-align:top" width="340">
          <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" width="340">
           <tbody>
            <tr>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color: #333333; text-decoration: none;" target="_blank">
                   <img alt="" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fimages.costco-static.com%252FImageDelivery%252FimageService%253FprofileId%253D12026540%2526imageId%253D1443357-847__1%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMgF:2LeuO948OegA6aQE4fGNhqgWBDxyiy1mOdzvtJJGc_A" style="display: block; " width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="10" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
                  Blueair Pure Fan Air Purifier + Fan Combo
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; color: #000000; font-weight: bold">
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 11px; line-height: 12px; color: #666666">
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
             <td style="font-size:0px; line-height:0px" width="16">
             </td>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color: #333333; text-decoration: none;" target="_blank">
                   <img alt="" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fimages.costco-static.com%252FImageDelivery%252FimageService%253FprofileId%253D12026540%2526imageId%253D1444264-847__1%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMgF:2LeuO948OegA6aQE4fGNhqgWBDxyiy1mOdzvtJJGc_A" style="display: block; " width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="10" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
                  HoMedics TotalClean Desktop Air Purifier
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; color: #000000; font-weight: bold">
                  $69.99 Delivered
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
         <td class="stack w-resize100 h-resize30px" style="font-size:0px; line-height:0px" width="16">
         </td>
         <td align="center" class="stack w-resize100" style="vertical-align:top" width="340">
          <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
           <tbody>
            <tr>
             <td align="center" class="resize100">
              <a style="color: #333333; text-decoration: none;" target="_blank">
               <img alt="" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Flive%252Fresource%252Fimg%252F6-19-20%252Fus200619-b2c1788-shaw.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMgF:-Ba8rIr10JhRMmP4wZ5CvR3tfxASKGwA8e_JtOteUYc" style="display: block; " width="338"/>
              </a>
             </td>
            </tr>
            <tr>
             <td height="10" style="font-size:0px; line-height:0px">
             </td>
            </tr>
            <tr>
             <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
              Shaw Flooring
             </td>
            </tr>
            <tr>
             <td height="4" style="font-size:0px; line-height:0px">
             </td>
            </tr>
            <tr>
             <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; color: #000000; font-weight: bold">
              Earn a 10% Costco Shop Card with Your Qualifying Purchase
             </td>
            </tr>
           </tbody>
          </table>
         </td>
        </tr>
       </tbody>
      </table>
     </td>
    </tr>
    <tr>
     <td height="36" style="font-size:0px; line-height:0px">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="Presentation" style="margin:0 auto" width="696">
   <tbody>
    <tr>
     <td align="center">
      <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize90" width="696">
       <tbody>
        <tr>
         <td align="center" class="stack w-resize100" style="vertical-align:top" width="340">
          <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
           <tbody>
            <tr>
             <td align="center" class="resize100">
              <a style="color: #333333; text-decoration: none;" target="_blank">
               <img alt="" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Flive%252Fresource%252Fimg%252F6-19-20%252Fus200619-b2c1788-100490249.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMgF:-Ba8rIr10JhRMmP4wZ5CvR3tfxASKGwA8e_JtOteUYc" style="display: block; " width="338"/>
              </a>
             </td>
            </tr>
            <tr>
             <td height="10" style="font-size:0px; line-height:0px">
             </td>
            </tr>
            <tr>
             <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
              Phyn Plus Smart Water Monitor with Whole-Home Leak Detection and Auto Shutoff
             </td>
            </tr>
            <tr>
             <td height="4" style="font-size:0px; line-height:0px">
             </td>
            </tr>
            <tr>
             <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; color: #000000; font-weight: bold">
              $549.99 Delivered
              <br/>
              After $50 OFF
             </td>
            </tr>
           </tbody>
          </table>
         </td>
         <td class="stack w-resize100 h-resize30px" style="font-size:0px; line-height:0px" width="16">
         </td>
         <td align="center" class="stack w-resize100" style="vertical-align:top" width="340">
          <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
           <tbody>
            <tr>
             <td align="center" class="resize100">
              <a style="color: #333333; text-decoration: none;" target="_blank">
               <img alt="" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Flive%252Fresource%252Fimg%252F6-19-20%252Fus200619-b2c1788-11600157.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMgF:-Ba8rIr10JhRMmP4wZ5CvR3tfxASKGwA8e_JtOteUYc" style="display: block; " width="338"/>
              </a>
             </td>
            </tr>
            <tr>
             <td height="10" style="font-size:0px; line-height:0px">
             </td>
            </tr>
            <tr>
             <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
              Litex Knightsbridge Outdoor 52" Ceiling Fan
             </td>
            </tr>
            <tr>
             <td height="4" style="font-size:0px; line-height:0px">
             </td>
            </tr>
            <tr>
             <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; color: #000000; font-weight: bold">
              $179.99 Delivered
             </td>
            </tr>
           </tbody>
          </table>
         </td>
        </tr>
       </tbody>
      </table>
     </td>
    </tr>
    <tr>
     <td height="36" style="font-size:0px; line-height:0px">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="Presentation" style="margin:0 auto" width="696">
   <tbody>
    <tr>
     <td align="center">
      <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize90" width="696">
       <tbody>
        <tr>
         <td align="center" class="stack w-resize100" style="vertical-align:top" width="340">
          <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" width="340">
           <tbody>
            <tr>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color: #333333; text-decoration: none;" target="_blank">
                   <img alt="" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fimages.costco-static.com%252FImageDelivery%252FimageService%253FprofileId%253D12026540%2526imageId%253D1272335-847__1%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMgF:2LeuO948OegA6aQE4fGNhqgWBDxyiy1mOdzvtJJGc_A" style="display: block; " width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="10" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
                  Mighty Mule Smart 1-1/4 HP Garage Door Opener
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; color: #000000; font-weight: bold">
                  $219.99 Delivered
                  <br/>
                  After $30 OFF
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
             <td style="font-size:0px; line-height:0px" width="16">
             </td>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color: #333333; text-decoration: none;" target="_blank">
                   <img alt="" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fimages.costco-static.com%252FImageDelivery%252FimageService%253FprofileId%253D12026540%2526imageId%253D4678900-847__1%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMgF:2LeuO948OegA6aQE4fGNhqgWBDxyiy1mOdzvtJJGc_A" style="display: block; " width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="10" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
                  Powersport Batteries Now Available to Order
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; color: #000000; font-weight: bold">
                  Starting at $46.99 Delivered
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
         <td class="stack w-resize100 h-resize30px" style="font-size:0px; line-height:0px" width="16">
         </td>
         <td align="center" class="stack w-resize100" style="vertical-align:top" width="340">
          <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
           <tbody>
            <tr>
             <td align="center" class="resize100">
              <a style="color: #333333; text-decoration: none;" target="_blank">
               <img alt="" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Flive%252Fresource%252Fimg%252F6-7-20%252Fus200607-b2c1781-velox.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMgF:-Ba8rIr10JhRMmP4wZ5CvR3tfxASKGwA8e_JtOteUYc" style="display: block; " width="338"/>
              </a>
             </td>
            </tr>
            <tr>
             <td height="10" style="font-size:0px; line-height:0px">
             </td>
            </tr>
            <tr>
             <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
              Velox Aftermarket Wheels for Cars, Trucks and SUVs
             </td>
            </tr>
            <tr>
             <td height="4" style="font-size:0px; line-height:0px">
             </td>
            </tr>
            <tr>
             <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:12px; line-height:12px; color:#666666">
              Visualize wheels on your vehicle with online configurator.
             </td>
            </tr>
            <tr>
             <td height="6" style="font-size:0px; line-height:0px">
             </td>
            </tr>
            <tr>
             <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; color: #000000; font-weight: bold">
              $150 - $200 OFF*
             </td>
            </tr>
            <tr>
             <td height="4" style="font-size:0px; line-height:0px">
             </td>
            </tr>
            <tr>
             <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 11px; line-height: 12px; color: #666666">
              *Terms &amp; Conditions apply.
             </td>
            </tr>
           </tbody>
          </table>
         </td>
        </tr>
       </tbody>
      </table>
     </td>
    </tr>
    <tr>
     <td height="36" style="font-size:0px; line-height:0px">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" style="margin:0 auto; background-color:#d7e7f4;" width="696">
   <tbody>
    <tr>
     <td>
      <a style="color:#333333; text-decoration:none" target="_blank">
       <img alt="Buy more and SAVE" border="0" class="remove" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Fstaging%252Fresource%252Fimg%252F20w10122%252F20w10122-bms-apparel-email-v.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMgF:-Ba8rIr10JhRMmP4wZ5CvR3tfxASKGwA8e_JtOteUYc" style="display:block; margin:0 auto" width="696"/>
      </a>
      <div class="showHidden mobile-hero" style="display:none; width:0px; max-width:100%; max-height:0px; overflow:hidden; mso-hide:all">
       <a style="color:#333333; text-decoration:none" target="_blank">
        <img alt="Buy more and SAVE" border="0" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Fstaging%252Fresource%252Fimg%252F20w10122%252F20w10122-bms-apparel-email-v.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMgF:-Ba8rIr10JhRMmP4wZ5CvR3tfxASKGwA8e_JtOteUYc"/>
       </a>
      </div>
     </td>
    </tr>
    <tr>
     <td height="5" style="font-size:0px; line-height:0px">
     </td>
    </tr>
    <tr>
     <td align="center" style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;font-size: 20px; line-height:30px; ">
      <a style="color:#333333; text-decoration:none" target="_blank">
       Buy any clothing or shoe items for additional savings*
      </a>
     </td>
    </tr>
    <tr>
     <td align="center" style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;font-size: 20px; line-height:30px;; ">
      <a style="color:#333333; text-decoration:none" target="_blank">
       ONLINE-ONLY  |  Valid 6/15/20 - 7/6/20
      </a>
     </td>
    </tr>
    <tr>
     <td align="center" style="font-size: 12px; line-height:20px; font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;">
      <a style="color:#333333; text-decoration:none;" target="_blank">
       *Excluding socks, underwear, special events and Costco Next apparel
      </a>
     </td>
    </tr>
    <tr>
     <td height="5" style="font-size:0px; line-height:0px">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="Presentation" style="margin:0 auto; background-color: #d7e7f4;" width="696">
   <tbody>
    <tr>
     <td align="center">
      <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize90" width="696">
       <tbody>
        <tr>
         <td class="stack w-resize100 h-resize" style="font-size:0px; line-height:0px" width="50">
         </td>
         <td align="center" class="stack w-resize100" style="vertical-align:top" width="340">
          <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
           <tbody>
            <tr>
             <td align="center" style="background-color: #2e3094; width: 109px; font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:22px; line-height:30px; color:#ffffff;font-weight: bold;">
              Buy 5
             </td>
            </tr>
            <tr>
             <td height="2" style="font-size:0px; line-height:0px;background-color: #2e3094">
             </td>
            </tr>
            <tr>
             <td align="center" class="font-mobile" style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 28px; line-height: 33px; color:#4a4a4a;font-weight:bold;background-color:#ffffff" width="185">
              <span style="font-size:18px;">
               <sup>
                SAVE $
               </sup>
              </span>
              20
              <span style="font-size:18px;">
               <sup>
                Total
               </sup>
              </span>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
         <td class="stack w-resize100 h-resize" style="font-size:0px; line-height:0px" width="16">
         </td>
         <td align="center" class="stack w-resize100" style="vertical-align:top" width="340">
          <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
           <tbody>
            <tr>
             <td align="center" style="background-color: #2e3094; width: 109px; font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:22px; line-height:30px; color:#ffffff;font-weight: bold;">
              Buy 10
             </td>
            </tr>
            <tr>
             <td height="2" style="font-size:0px; line-height:0px;background-color: #2e3094">
             </td>
            </tr>
            <tr>
             <td align="center" class="font-mobile" style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 28px; line-height: 33px; color:#4a4a4a;font-weight:bold;background-color:#ffffff" width="185">
              <span style="font-size:18px;">
               <sup>
                SAVE $
               </sup>
              </span>
              50
              <span style="font-size:18px;">
               <sup>
                Total
               </sup>
              </span>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
         <td class="stack w-resize100 h-resize" style="font-size:0px; line-height:0px" width="50">
         </td>
        </tr>
       </tbody>
      </table>
     </td>
    </tr>
    <tr>
     <td height="10" style="font-size:0px; line-height:0px">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="Presentation" style="margin:0 auto; background-color: #d7e7f4;" width="696">
   <tbody>
    <tr>
     <td height="5" style="font-size:0px; line-height:0px;">
     </td>
    </tr>
    <tr>
     <td align="center" style="font-size: 16px; padding-left: 40px; padding-right: 40px;font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;">
      <a style="color:#333333; text-decoration:none; font-weight: bolder;" target="_blank">
       Shop Now | While supplies last
      </a>
     </td>
    </tr>
    <tr>
     <td height="15" style="font-size:0px; line-height:0px;">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="remove" width="696">
   <tbody>
    <tr>
     <td>
      <img alt="" height="1" src="https://inboxflows.com/_/image/http%253A%252F%252Fmedia.whatcounts.com%252Fwhatcounts_knickoles%252F160307_Modular_Template%252Fspcr.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRm1lZGlhLndoYXRjbyJ9:1kXMgF:V6PMuditNWDeQCN5N_Idncgj0LqbfT2rQWfquqgZKeg" style="display:block; min-height:1px; max-height:1px; width:696px; min-width:696px;" width="696"/>
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="Presentation" style="margin:0 auto" width="696">
   <tbody>
    <tr>
     <td height="20" style="font-size:0px; line-height:0px">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="Presentation" style="margin:0 auto" width="696">
   <tbody>
    <tr>
     <td align="center">
      <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize90" width="696">
       <tbody>
        <tr>
         <td align="center" class="stack w-resize100" style="vertical-align:top" width="348">
          <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
           <tbody>
            <tr>
             <td align="center" class="resize100">
              <a target="_blank">
               <img alt="" border="0" height="218" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Flive%252Fresource%252Fimg%252F6-19-20%252Fus200619-b2c1788-100535650.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMgF:-Ba8rIr10JhRMmP4wZ5CvR3tfxASKGwA8e_JtOteUYc" style="display: block;" width="218"/>
              </a>
             </td>
            </tr>
            <tr>
             <td height="10" style="font-size:0px; line-height:0px">
             </td>
            </tr>
            <tr>
             <td align="center">
              <table align="center" border="0" cellpadding="0" cellspacing="0" width="85%">
               <tbody>
                <tr>
                 <td class="T-Size-3" style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
                  32 Degrees Ladies' 2-Pack Lightweight Hoody with UPF 40+
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td class="T-Size-4" style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; color: #000000; font-weight: bold">
                  $21.99 Delivered
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
         <td class="stack w-resize100 h-resize40px" style="font-size:0px; line-height:0px" width="0">
         </td>
         <td align="center" class="stack w-resize100" style="vertical-align:top" width="348">
          <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
           <tbody>
            <tr>
             <td align="center" class="resize100">
              <a target="_blank">
               <img alt="" border="0" height="218" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Flive%252Fresource%252Fimg%252F6-19-20%252Fus200619-b2c1788-100514234-v.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMgF:-Ba8rIr10JhRMmP4wZ5CvR3tfxASKGwA8e_JtOteUYc" style="display: block;" width="218"/>
              </a>
             </td>
            </tr>
            <tr>
             <td height="10" style="font-size:0px; line-height:0px">
             </td>
            </tr>
            <tr>
             <td align="center">
              <table align="center" border="0" cellpadding="0" cellspacing="0" width="85%">
               <tbody>
                <tr>
                 <td class="T-Size-3" style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
                  Nicole Miller Ladies' Sleeveless Dress
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td class="T-Size-4" style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; color: #000000; font-weight: bold">
                  $18.99 Delivered
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
         <td class="stack w-resize100 h-resize40px" style="font-size:0px; line-height:0px" width="0">
         </td>
         <td align="center" class="stack w-resize100" style="vertical-align:top" width="348">
          <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
           <tbody>
            <tr>
             <td align="center" class="resize100">
              <a target="_blank">
               <img alt="" border="0" height="218" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Flive%252Fresource%252Fimg%252F6-19-20%252Fus200619-b2c1788-100425732.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMgF:-Ba8rIr10JhRMmP4wZ5CvR3tfxASKGwA8e_JtOteUYc" style="display: block;" width="218"/>
              </a>
             </td>
            </tr>
            <tr>
             <td height="10" style="font-size:0px; line-height:0px">
             </td>
            </tr>
            <tr>
             <td align="center">
              <table align="center" border="0" cellpadding="0" cellspacing="0" width="85%">
               <tbody>
                <tr>
                 <td class="T-Size-3" style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
                  Eddie Bauer Ladies' Rainier Capri
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td class="T-Size-4" style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; color: #000000; font-weight: bold">
                  $19.99 Delivered
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
        </tr>
       </tbody>
      </table>
     </td>
    </tr>
    <tr>
     <td height="36" style="font-size:0px; line-height:0px">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="Presentation" style="margin:0 auto" width="696">
   <tbody>
    <tr>
     <td align="center">
      <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize90" width="696">
       <tbody>
        <tr>
         <td align="center" class="stack w-resize100" style="vertical-align:top" width="340">
          <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" width="340">
           <tbody>
            <tr>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color: #333333; text-decoration: none;" target="_blank">
                   <img alt="" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Flive%252Fresource%252Fimg%252F6-19-20%252Fus200619-b2c1788-100522553-v.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMgF:-Ba8rIr10JhRMmP4wZ5CvR3tfxASKGwA8e_JtOteUYc" style="display: block; " width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="10" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
                  New Ladies' Summer Dresses
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
             <td style="font-size:0px; line-height:0px" width="16">
             </td>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color: #333333; text-decoration: none;" target="_blank">
                   <img alt="" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Flive%252Fresource%252Fimg%252F6-19-20%252Fus200619-b2c1788-100531143.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMgF:-Ba8rIr10JhRMmP4wZ5CvR3tfxASKGwA8e_JtOteUYc" style="display: block; " width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="10" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
                  Matty M Ladies' Button Front Skirt
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; color: #000000; font-weight: bold">
                  $19.99 Delivered
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
         <td class="stack w-resize100 h-resize30px" style="font-size:0px; line-height:0px" width="16">
         </td>
         <td align="center" class="stack w-resize100" style="vertical-align:top" width="340">
          <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" width="340">
           <tbody>
            <tr>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color: #333333; text-decoration: none;" target="_blank">
                   <img alt="" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fimages.costco-static.com%252FImageDelivery%252FimageService%253FprofileId%253D12026540%2526imageId%253D100527478-847__1%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMgF:2LeuO948OegA6aQE4fGNhqgWBDxyiy1mOdzvtJJGc_A" style="display: block; " width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="10" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
                  32 Degrees Men's Short, 2-Pack
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; color: #000000; font-weight: bold">
                  $21.99 Delivered
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
             <td style="font-size:0px; line-height:0px" width="16">
             </td>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color: #333333; text-decoration: none;" target="_blank">
                   <img alt="" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fimages.costco-static.com%252FImageDelivery%252FimageService%253FprofileId%253D12026540%2526imageId%253D100513855-847__1%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMgF:2LeuO948OegA6aQE4fGNhqgWBDxyiy1mOdzvtJJGc_A" style="display: block; " width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="10" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
                  Kirkland Signature Men's Jean
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; color: #000000; font-weight: bold">
                  $13.99 Delivered
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
        </tr>
       </tbody>
      </table>
     </td>
    </tr>
    <tr>
     <td height="36" style="font-size:0px; line-height:0px">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="Presentation" style="margin:0 auto" width="696">
   <tbody>
    <tr>
     <td align="center">
      <a target="_blank">
       <img alt="Summer Footwear. While supplies last. Shop Now." border="0" class="remove" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Flive%252Fresource%252Fimg%252F6-15-20%252Fd-b2c1792-200615-ban-footwear.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMgF:-Ba8rIr10JhRMmP4wZ5CvR3tfxASKGwA8e_JtOteUYc" style="display:block; margin: 0 auto; font-family:'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:16px;color:#000000;" width="696"/>
      </a>
      <div class="showHidden mobile-hero" style="display:none; width:0px; max-width:100%; max-height:0px; overflow:hidden; mso-hide:all">
       <a target="_blank">
        <img alt="Summer Footwear. While supplies last. Shop Now." border="0" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Flive%252Fresource%252Fimg%252F6-15-20%252Fm-b2c1792-200615-ban-footwear.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMgF:-Ba8rIr10JhRMmP4wZ5CvR3tfxASKGwA8e_JtOteUYc"/>
       </a>
      </div>
     </td>
    </tr>
    <tr>
     <td height="20" style="font-size:0px; line-height:0px">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="Presentation" style="margin:0 auto" width="696">
   <tbody>
    <tr>
     <td align="center">
      <a target="_blank">
       <img alt="Haba BM&amp;S" border="0" class="remove" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Flive%252Fresource%252Fimg%252Fhomepage%252Fd-20w10128-emailbanner-200615-haba-bms.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMgF:-Ba8rIr10JhRMmP4wZ5CvR3tfxASKGwA8e_JtOteUYc" style="display:block; margin: 0 auto; font-family:'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:16px;color:#000000;" width="696"/>
      </a>
      <div class="showHidden mobile-hero" style="display:none; width:0px; max-width:100%; max-height:0px; overflow:hidden; mso-hide:all">
       <a target="_blank">
        <img alt="Haba BM&amp;S" border="0" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Flive%252Fresource%252Fimg%252Fhomepage%252Fm-20w10128-emailbanner-200615-haba-bms.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMgF:-Ba8rIr10JhRMmP4wZ5CvR3tfxASKGwA8e_JtOteUYc"/>
       </a>
      </div>
     </td>
    </tr>
    <tr>
     <td height="20" style="font-size:0px; line-height:0px">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="Presentation" style="margin:0 auto" width="696">
   <tbody>
    <tr>
     <td align="center">
      <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize90" width="696">
       <tbody>
        <tr>
         <td align="center" class="stack w-resize100" style="vertical-align:top" width="348">
          <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
           <tbody>
            <tr>
             <td align="center" class="resize100">
              <a target="_blank">
               <img alt="" border="0" height="218" src="https://inboxflows.com/_/image/https%253A%252F%252Fimages.costco-static.com%252FImageDelivery%252FimageService%253FprofileId%253D12026540%2526imageId%253D1344769-847__1%2526recipeName%253D680/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMgF:2LeuO948OegA6aQE4fGNhqgWBDxyiy1mOdzvtJJGc_A" style="display: block;" width="218"/>
              </a>
             </td>
            </tr>
            <tr>
             <td height="10" style="font-size:0px; line-height:0px">
             </td>
            </tr>
            <tr>
             <td align="center">
              <table align="center" border="0" cellpadding="0" cellspacing="0" width="85%">
               <tbody>
                <tr>
                 <td class="T-Size-3" style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
                  DERMAdoctor Kakadu C 20% Vitamin C Serum, 2-Pack
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td class="T-Size-4" style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; color: #000000; font-weight: bold">
                  $29.99 Delivered
                  <br/>
                  After $17 OFF
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
         <td class="stack w-resize100 h-resize40px" style="font-size:0px; line-height:0px" width="0">
         </td>
         <td align="center" class="stack w-resize100" style="vertical-align:top" width="348">
          <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
           <tbody>
            <tr>
             <td align="center" class="resize100">
              <a target="_blank">
               <img alt="" border="0" height="218" src="https://inboxflows.com/_/image/https%253A%252F%252Fimages.costco-static.com%252FImageDelivery%252FimageService%253FprofileId%253D12026540%2526imageId%253D833727-847__1%2526recipeName%253D680/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMgF:2LeuO948OegA6aQE4fGNhqgWBDxyiy1mOdzvtJJGc_A" style="display: block;" width="218"/>
              </a>
             </td>
            </tr>
            <tr>
             <td height="10" style="font-size:0px; line-height:0px">
             </td>
            </tr>
            <tr>
             <td align="center">
              <table align="center" border="0" cellpadding="0" cellspacing="0" width="85%">
               <tbody>
                <tr>
                 <td class="T-Size-3" style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
                  SeroVital Dietary Supplement, 160-Count
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
         <td class="stack w-resize100 h-resize40px" style="font-size:0px; line-height:0px" width="0">
         </td>
         <td align="center" class="stack w-resize100" style="vertical-align:top" width="348">
          <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
           <tbody>
            <tr>
             <td align="center" class="resize100">
              <a target="_blank">
               <img alt="" border="0" height="218" src="https://inboxflows.com/_/image/https%253A%252F%252Fimages.costco-static.com%252FImageDelivery%252FimageService%253FprofileId%253D12026540%2526imageId%253D1039245-847__1%2526recipeName%253D680/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMgF:2LeuO948OegA6aQE4fGNhqgWBDxyiy1mOdzvtJJGc_A" style="display: block;" width="218"/>
              </a>
             </td>
            </tr>
            <tr>
             <td height="10" style="font-size:0px; line-height:0px">
             </td>
            </tr>
            <tr>
             <td align="center">
              <table align="center" border="0" cellpadding="0" cellspacing="0" width="85%">
               <tbody>
                <tr>
                 <td class="T-Size-3" style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
                  SK-II Facial Treatment Essence with Pump, 11.0 Fluid Ounces
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td class="T-Size-4" style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; color: #000000; font-weight: bold">
                  Free Shipping
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
        </tr>
       </tbody>
      </table>
     </td>
    </tr>
    <tr>
     <td height="36" style="font-size:0px; line-height:0px">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="Presentation" style="margin:0 auto" width="696">
   <tbody>
    <tr>
     <td align="center">
      <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize90" width="696">
       <tbody>
        <tr>
         <td align="center" class="stack w-resize100" style="vertical-align:top" width="340">
          <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" width="340">
           <tbody>
            <tr>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color: #333333; text-decoration: none;" target="_blank">
                   <img alt="" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fimages.costco-static.com%252FImageDelivery%252FimageService%253FprofileId%253D12026540%2526imageId%253D1374667-847__1%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMgF:2LeuO948OegA6aQE4fGNhqgWBDxyiy1mOdzvtJJGc_A" style="display: block; " width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="10" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
                  SK-II RNA Power Cream, 3.4 Ounces
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; color: #000000; font-weight: bold">
                  Free Shipping
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
             <td style="font-size:0px; line-height:0px" width="16">
             </td>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color: #333333; text-decoration: none;" target="_blank">
                   <img alt="" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fimages.costco-static.com%252FImageDelivery%252FimageService%253FprofileId%253D12026540%2526imageId%253D1416258-847__1%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMgF:2LeuO948OegA6aQE4fGNhqgWBDxyiy1mOdzvtJJGc_A" style="display: block; " width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="10" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
                  Nippes Solingen 7-Piece Manicure Set
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
         <td class="stack w-resize100 h-resize30px" style="font-size:0px; line-height:0px" width="16">
         </td>
         <td align="center" class="stack w-resize100" style="vertical-align:top" width="340">
          <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" width="340">
           <tbody>
            <tr>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color: #333333; text-decoration: none;" target="_blank">
                   <img alt="" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fimages.costco-static.com%252FImageDelivery%252FimageService%253FprofileId%253D12026540%2526imageId%253D1405933-847__1%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMgF:2LeuO948OegA6aQE4fGNhqgWBDxyiy1mOdzvtJJGc_A" style="display: block; " width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="10" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
                  Perricone MD Essential FX Acyl-Glutathione Smoothing &amp; Brightening Under-Eye Cream, 0.5 Fluid Ounces
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; color: #000000; font-weight: bold">
                  $39.99 Delivered
                  <br/>
                  After $20 OFF
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
             <td style="font-size:0px; line-height:0px" width="16">
             </td>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color: #333333; text-decoration: none;" target="_blank">
                   <img alt="" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fimages.costco-static.com%252FImageDelivery%252FimageService%253FprofileId%253D12026540%2526imageId%253D1268371-847__1%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMgF:2LeuO948OegA6aQE4fGNhqgWBDxyiy1mOdzvtJJGc_A" style="display: block; " width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="10" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
                  Further Food Collagen Peptides Protein Powder, 32 Ounces
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; color: #000000; font-weight: bold">
                  $38.99 Delivered
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
        </tr>
       </tbody>
      </table>
     </td>
    </tr>
    <tr>
     <td height="36" style="font-size:0px; line-height:0px">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="Presentation" style="margin:0 auto" width="696">
   <tbody>
    <tr>
     <td align="center">
      <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize90" width="696">
       <tbody>
        <tr>
         <td align="center" class="stack w-resize100" style="vertical-align:top" width="340">
          <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
           <tbody>
            <tr>
             <td align="center" class="resize100">
              <a style="color: #333333; text-decoration: none;" target="_blank">
               <img alt="" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Flive%252Fresource%252Fimg%252F6-19-20%252Fus200619-b2c1788-100539690.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMgF:-Ba8rIr10JhRMmP4wZ5CvR3tfxASKGwA8e_JtOteUYc" style="display: block; " width="338"/>
              </a>
             </td>
            </tr>
            <tr>
             <td height="10" style="font-size:0px; line-height:0px">
             </td>
            </tr>
            <tr>
             <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
              Olay Regenerist Retinol 24 Night Moisturizer, 2-Pack, 1.7 Ounces Each
             </td>
            </tr>
            <tr>
             <td height="4" style="font-size:0px; line-height:0px">
             </td>
            </tr>
            <tr>
             <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; color: #000000; font-weight: bold">
              $46.99 Delivered
             </td>
            </tr>
           </tbody>
          </table>
         </td>
         <td class="stack w-resize100 h-resize30px" style="font-size:0px; line-height:0px" width="16">
         </td>
         <td align="center" class="stack w-resize100" style="vertical-align:top" width="340">
          <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
           <tbody>
            <tr>
             <td align="center" class="resize100">
              <a style="color: #333333; text-decoration: none;" target="_blank">
               <img alt="" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Flive%252Fresource%252Fimg%252F6-19-20%252Fus200619-b2c1788-1324537.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMgF:-Ba8rIr10JhRMmP4wZ5CvR3tfxASKGwA8e_JtOteUYc" style="display: block; " width="338"/>
              </a>
             </td>
            </tr>
            <tr>
             <td height="10" style="font-size:0px; line-height:0px">
             </td>
            </tr>
            <tr>
             <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
              The Honest Company Truly Calming Lavender Shampoo + Body Wash, 2-Pack, 17 Fluid Ounces Each
             </td>
            </tr>
            <tr>
             <td height="4" style="font-size:0px; line-height:0px">
             </td>
            </tr>
            <tr>
             <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; color: #000000; font-weight: bold">
              $23.49 Delivered
             </td>
            </tr>
           </tbody>
          </table>
         </td>
        </tr>
       </tbody>
      </table>
     </td>
    </tr>
    <tr>
     <td height="36" style="font-size:0px; line-height:0px">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="Presentation" style="margin:0 auto" width="696">
   <tbody>
    <tr>
     <td align="center">
      <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize90" width="696">
       <tbody>
        <tr>
         <td align="center" class="stack w-resize100" style="vertical-align:top" width="348">
          <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
           <tbody>
            <tr>
             <td align="center" class="resize100">
              <a target="_blank">
               <img alt="" border="0" height="218" src="https://inboxflows.com/_/image/https%253A%252F%252Fimages.costco-static.com%252FImageDelivery%252FimageService%253FprofileId%253D12026540%2526imageId%253D100573419-847__1%2526recipeName%253D680/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMgF:2LeuO948OegA6aQE4fGNhqgWBDxyiy1mOdzvtJJGc_A" style="display: block;" width="218"/>
              </a>
             </td>
            </tr>
            <tr>
             <td height="10" style="font-size:0px; line-height:0px">
             </td>
            </tr>
            <tr>
             <td align="center">
              <table align="center" border="0" cellpadding="0" cellspacing="0" width="85%">
               <tbody>
                <tr>
                 <td class="T-Size-3" style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
                  Vital Proteins Collagen Water, 12-Pack, 12 Fluid Ounces Each
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td class="T-Size-4" style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; color: #000000; font-weight: bold">
                  $26.99 Delivered
                  <br/>
                  After $5 OFF
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
         <td class="stack w-resize100 h-resize40px" style="font-size:0px; line-height:0px" width="0">
         </td>
         <td align="center" class="stack w-resize100" style="vertical-align:top" width="348">
          <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
           <tbody>
            <tr>
             <td align="center" class="resize100">
              <a target="_blank">
               <img alt="" border="0" height="218" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Flive%252Fresource%252Fimg%252F6-19-20%252Fus200619-b2c1788-1246971-v.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMgF:-Ba8rIr10JhRMmP4wZ5CvR3tfxASKGwA8e_JtOteUYc" style="display: block;" width="218"/>
              </a>
             </td>
            </tr>
            <tr>
             <td height="10" style="font-size:0px; line-height:0px">
             </td>
            </tr>
            <tr>
             <td align="center">
              <table align="center" border="0" cellpadding="0" cellspacing="0" width="85%">
               <tbody>
                <tr>
                 <td class="T-Size-3" style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
                  La Roche-Posay Anthelios SPF 60 Sun Protection
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td class="T-Size-4" style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; color: #000000; font-weight: bold">
                  $39.99 Delivered
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
         <td class="stack w-resize100 h-resize40px" style="font-size:0px; line-height:0px" width="0">
         </td>
         <td align="center" class="stack w-resize100" style="vertical-align:top" width="348">
          <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
           <tbody>
            <tr>
             <td align="center" class="resize100">
              <a target="_blank">
               <img alt="" border="0" height="218" src="https://inboxflows.com/_/image/https%253A%252F%252Fimages.costco-static.com%252FImageDelivery%252FimageService%253FprofileId%253D12026540%2526imageId%253D1282338-847__1%2526recipeName%253D680/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMgF:2LeuO948OegA6aQE4fGNhqgWBDxyiy1mOdzvtJJGc_A" style="display: block;" width="218"/>
              </a>
             </td>
            </tr>
            <tr>
             <td height="10" style="font-size:0px; line-height:0px">
             </td>
            </tr>
            <tr>
             <td align="center">
              <table align="center" border="0" cellpadding="0" cellspacing="0" width="85%">
               <tbody>
                <tr>
                 <td class="T-Size-3" style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
                  Braun Series 8 Electric Shaver
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
        </tr>
       </tbody>
      </table>
     </td>
    </tr>
    <tr>
     <td height="36" style="font-size:0px; line-height:0px">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="Presentation" style="margin:0 auto;" width="696">
   <tbody>
    <tr>
     <td height="20" style="font-size:0px; line-height:0px">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="Presentation" style="margin:0 auto" width="696">
   <tbody>
    <tr>
     <td align="center">
      <a target="_blank">
       <img alt="Costco Auto Program" border="0" class="remove" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Flive%252Fresource%252Fimg%252F6-19-20%252Fd-b2c1788-200619-hero-services.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMgF:-Ba8rIr10JhRMmP4wZ5CvR3tfxASKGwA8e_JtOteUYc" style="display:block; margin:0 auto; font-family:'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:16px;color:#000000;" width="696"/>
      </a>
      <div class="showHidden mobile-hero" style="display:none; width:0px; max-width:100%; max-height:0px; overflow:hidden; mso-hide:all">
       <a target="_blank">
        <img alt="Costco Auto Program" border="0" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Flive%252Fresource%252Fimg%252F6-19-20%252Fm-b2c1788-200619-hero-services.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMgF:-Ba8rIr10JhRMmP4wZ5CvR3tfxASKGwA8e_JtOteUYc"/>
       </a>
      </div>
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="Presentation" style="margin:0 auto;" width="696">
   <tbody>
    <tr>
     <td height="20" style="font-size:0px; line-height:0px">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="Presentation" style="margin:0 auto" width="696">
   <tbody>
    <tr>
     <td align="center">
      <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize90" width="696">
       <tbody>
        <tr>
         <td align="center" class="stack w-resize100" style="vertical-align:top" width="348">
          <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
           <tbody>
            <tr>
             <td align="center" class="resize100">
              <a target="_blank">
               <img alt="" border="0" height="218" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Flive%252Fresource%252Fimg%252F6-19-20%252Fus200619-b2c1788-boudica.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMgF:-Ba8rIr10JhRMmP4wZ5CvR3tfxASKGwA8e_JtOteUYc" style="display: block;" width="218"/>
              </a>
             </td>
            </tr>
            <tr>
             <td height="10" style="font-size:0px; line-height:0px">
             </td>
            </tr>
            <tr>
             <td align="center">
              <table align="center" border="0" cellpadding="0" cellspacing="0" width="85%">
               <tbody>
                <tr>
                 <td class="T-Size-3" style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
                  Velocilinx Boudica Gaming Collection
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td class="T-Size-4" style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; color: #000000; font-weight: bold">
                  $42.99 - $94.99 Delivered
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
         <td class="stack w-resize100 h-resize40px" style="font-size:0px; line-height:0px" width="0">
         </td>
         <td align="center" class="stack w-resize100" style="vertical-align:top" width="348">
          <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
           <tbody>
            <tr>
             <td align="center" class="resize100">
              <a target="_blank">
               <img alt="" border="0" height="218" src="https://inboxflows.com/_/image/https%253A%252F%252Fimages.costco-static.com%252FImageDelivery%252FimageService%253FprofileId%253D12026540%2526imageId%253D100572108-847__1%2526recipeName%253D680/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMgF:2LeuO948OegA6aQE4fGNhqgWBDxyiy1mOdzvtJJGc_A" style="display: block;" width="218"/>
              </a>
             </td>
            </tr>
            <tr>
             <td height="10" style="font-size:0px; line-height:0px">
             </td>
            </tr>
            <tr>
             <td align="center">
              <table align="center" border="0" cellpadding="0" cellspacing="0" width="85%">
               <tbody>
                <tr>
                 <td class="T-Size-3" style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
                  UE Megaboom 2 Remix Bluetooth Speaker + PowerUp Charging Dock
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td class="T-Size-4" style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; color: #000000; font-weight: bold">
                  $149.99
                  <br/>
                  Free Shipping
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
         <td class="stack w-resize100 h-resize40px" style="font-size:0px; line-height:0px" width="0">
         </td>
         <td align="center" class="stack w-resize100" style="vertical-align:top" width="348">
          <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
           <tbody>
            <tr>
             <td align="center" class="resize100">
              <a target="_blank">
               <img alt="" border="0" height="218" src="https://inboxflows.com/_/image/https%253A%252F%252Fimages.costco-static.com%252FImageDelivery%252FimageService%253FprofileId%253D12026540%2526imageId%253D9965085-847__1%2526recipeName%253D680/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMgF:2LeuO948OegA6aQE4fGNhqgWBDxyiy1mOdzvtJJGc_A" style="display: block;" width="218"/>
              </a>
             </td>
            </tr>
            <tr>
             <td height="10" style="font-size:0px; line-height:0px">
             </td>
            </tr>
            <tr>
             <td align="center">
              <table align="center" border="0" cellpadding="0" cellspacing="0" width="85%">
               <tbody>
                <tr>
                 <td class="T-Size-3" style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
                  Samsung 65" Class - Q850T Series - 8K UHD QLED LCD TV
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td class="T-Size-4" style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; color: #000000; font-weight: bold">
                  $3,199.99
                  <br/>
                  Free Shipping
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td class="T-Size-5" style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 11px; line-height: 12px; color: #008000">
                  $100 SquareTrade Protection Plan Bundle Included
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
        </tr>
       </tbody>
      </table>
     </td>
    </tr>
    <tr>
     <td height="36" style="font-size:0px; line-height:0px">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="Presentation" style="margin:0 auto" width="696">
   <tbody>
    <tr>
     <td align="center">
      <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize90" width="696">
       <tbody>
        <tr>
         <td align="center" class="stack w-resize100" style="vertical-align:top" width="348">
          <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
           <tbody>
            <tr>
             <td align="center" class="resize100">
              <a target="_blank">
               <img alt="" border="0" height="218" src="https://inboxflows.com/_/image/https%253A%252F%252Fimages.costco-static.com%252FImageDelivery%252FimageService%253FprofileId%253D12026540%2526imageId%253D7650657-847__1%2526recipeName%253D680/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMgF:2LeuO948OegA6aQE4fGNhqgWBDxyiy1mOdzvtJJGc_A" style="display: block;" width="218"/>
              </a>
             </td>
            </tr>
            <tr>
             <td height="10" style="font-size:0px; line-height:0px">
             </td>
            </tr>
            <tr>
             <td align="center">
              <table align="center" border="0" cellpadding="0" cellspacing="0" width="85%">
               <tbody>
                <tr>
                 <td class="T-Size-3" style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
                  Vizio 65" Class - M-Series - 4K UHD Quantum LED LCD TV
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td class="T-Size-4" style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; color: #000000; font-weight: bold">
                  $599.99
                  <br/>
                  Free Shipping
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
         <td class="stack w-resize100 h-resize40px" style="font-size:0px; line-height:0px" width="0">
         </td>
         <td align="center" class="stack w-resize100" style="vertical-align:top" width="348">
          <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
           <tbody>
            <tr>
             <td align="center" class="resize100">
              <a target="_blank">
               <img alt="" border="0" height="218" src="https://inboxflows.com/_/image/https%253A%252F%252Fimages.costco-static.com%252FImageDelivery%252FimageService%253FprofileId%253D12026540%2526imageId%253D1380529-847__1%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMgF:2LeuO948OegA6aQE4fGNhqgWBDxyiy1mOdzvtJJGc_A" style="display: block;" width="218"/>
              </a>
             </td>
            </tr>
            <tr>
             <td height="10" style="font-size:0px; line-height:0px">
             </td>
            </tr>
            <tr>
             <td align="center">
              <table align="center" border="0" cellpadding="0" cellspacing="0" width="85%">
               <tbody>
                <tr>
                 <td class="T-Size-3" style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
                  Samsung Galaxy Active 2 Smartwatch
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td class="T-Size-4" style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; color: #000000; font-weight: bold">
                  $50 OFF
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
         <td class="stack w-resize100 h-resize40px" style="font-size:0px; line-height:0px" width="0">
         </td>
         <td align="center" class="stack w-resize100" style="vertical-align:top" width="348">
          <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
           <tbody>
            <tr>
             <td align="center" class="resize100">
              <a target="_blank">
               <img alt="" border="0" height="218" src="https://inboxflows.com/_/image/https%253A%252F%252Fimages.costco-static.com%252FImageDelivery%252FimageService%253FprofileId%253D12026540%2526imageId%253D3002222-847__1%2526recipeName%253D680/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMgF:2LeuO948OegA6aQE4fGNhqgWBDxyiy1mOdzvtJJGc_A" style="display: block;" width="218"/>
              </a>
             </td>
            </tr>
            <tr>
             <td height="10" style="font-size:0px; line-height:0px">
             </td>
            </tr>
            <tr>
             <td align="center">
              <table align="center" border="0" cellpadding="0" cellspacing="0" width="85%">
               <tbody>
                <tr>
                 <td class="T-Size-3" style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
                  Seagate Backup Plus Ultra Touch 2TB Portable Hard Drive with Rescue Data Recovery Services
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td class="T-Size-4" style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; color: #000000; font-weight: bold">
                  $64.99 After $5 OFF
                  <br/>
                  Free Shipping
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
        </tr>
       </tbody>
      </table>
     </td>
    </tr>
    <tr>
     <td height="36" style="font-size:0px; line-height:0px">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="Presentation" style="margin:0 auto" width="696">
   <tbody>
    <tr>
     <td align="center">
      <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize90" width="696">
       <tbody>
        <tr>
         <td align="center" class="stack w-resize100" style="vertical-align:top" width="340">
          <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
           <tbody>
            <tr>
             <td align="center" class="resize100">
              <a style="color: #333333; text-decoration: none;" target="_blank">
               <img alt="" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Flive%252Fresource%252Fimg%252F6-8-20%252Fus200608-b2c1782-1418073.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMgF:-Ba8rIr10JhRMmP4wZ5CvR3tfxASKGwA8e_JtOteUYc" style="display: block; " width="338"/>
              </a>
             </td>
            </tr>
            <tr>
             <td height="10" style="font-size:0px; line-height:0px">
             </td>
            </tr>
            <tr>
             <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
              LG gram 14" 1080p 2-in-1 Touchscreen Laptop with 10th Gen Intel Core i7 Processor
             </td>
            </tr>
            <tr>
             <td height="4" style="font-size:0px; line-height:0px">
             </td>
            </tr>
            <tr>
             <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; color: #000000; font-weight: bold">
              $1,399.99
              <br/>
              Plus S&amp;H
             </td>
            </tr>
           </tbody>
          </table>
         </td>
         <td class="stack w-resize100 h-resize30px" style="font-size:0px; line-height:0px" width="16">
         </td>
         <td align="center" class="stack w-resize100" style="vertical-align:top" width="340">
          <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
           <tbody>
            <tr>
             <td align="center" class="resize100">
              <a style="color: #333333; text-decoration: none;" target="_blank">
               <img alt="" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Flive%252Fresource%252Fimg%252F6-19-20%252Fus200619-b2c1788-1430612.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMgF:-Ba8rIr10JhRMmP4wZ5CvR3tfxASKGwA8e_JtOteUYc" style="display: block; " width="338"/>
              </a>
             </td>
            </tr>
            <tr>
             <td height="10" style="font-size:0px; line-height:0px">
             </td>
            </tr>
            <tr>
             <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
              Lenovo IdeaPad 3 15.6" Touchscreen Laptop with 10th Gen Intel Core i3 Processor, 12GB Memory and 1TB HDD
             </td>
            </tr>
            <tr>
             <td height="4" style="font-size:0px; line-height:0px">
             </td>
            </tr>
            <tr>
             <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; color: #000000; font-weight: bold">
              $549.99 Delivered
             </td>
            </tr>
           </tbody>
          </table>
         </td>
        </tr>
       </tbody>
      </table>
     </td>
    </tr>
    <tr>
     <td height="36" style="font-size:0px; line-height:0px">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="Presentation" style="margin:0 auto" width="696">
   <tbody>
    <tr>
     <td align="center">
      <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize90" width="696">
       <tbody>
        <tr>
         <td align="center" class="stack w-resize100" style="vertical-align:top" width="340">
          <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
           <tbody>
            <tr>
             <td align="center" class="resize100">
              <a style="color: #333333; text-decoration: none;" target="_blank">
               <img alt="" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Flive%252Fresource%252Fimg%252F6-19-20%252Fus200619-b2c1788-1373103.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMgF:-Ba8rIr10JhRMmP4wZ5CvR3tfxASKGwA8e_JtOteUYc" style="display: block; " width="338"/>
              </a>
             </td>
            </tr>
            <tr>
             <td height="10" style="font-size:0px; line-height:0px">
             </td>
            </tr>
            <tr>
             <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
              Dell XPS 15 Touchscreen Laptop with 9th Gen Intel Core i9 Processor, 32GB Memory, 1TB SSD and GeForce GTX 1650 Graphics
             </td>
            </tr>
            <tr>
             <td height="4" style="font-size:0px; line-height:0px">
             </td>
            </tr>
            <tr>
             <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; color: #000000; font-weight: bold">
              $2,499.99 After $100 OFF
              <br/>
              Plus S&amp;H
             </td>
            </tr>
           </tbody>
          </table>
         </td>
         <td class="stack w-resize100 h-resize30px" style="font-size:0px; line-height:0px" width="16">
         </td>
         <td align="center" class="stack w-resize100" style="vertical-align:top" width="340">
          <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
           <tbody>
            <tr>
             <td align="center" class="resize100">
              <a style="color: #333333; text-decoration: none;" target="_blank">
               <img alt="" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Flive%252Fresource%252Fimg%252F6-12-20%252Fus200612-b2c1784-1301987.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMgF:-Ba8rIr10JhRMmP4wZ5CvR3tfxASKGwA8e_JtOteUYc" style="display: block; " width="338"/>
              </a>
             </td>
            </tr>
            <tr>
             <td height="10" style="font-size:0px; line-height:0px">
             </td>
            </tr>
            <tr>
             <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
              DJI Mavic Mini Bundle, Gray
             </td>
            </tr>
            <tr>
             <td height="4" style="font-size:0px; line-height:0px">
             </td>
            </tr>
            <tr>
             <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; color: #000000; font-weight: bold">
              $20 OFF
              <br/>
              Free Shipping
             </td>
            </tr>
           </tbody>
          </table>
         </td>
        </tr>
       </tbody>
      </table>
     </td>
    </tr>
    <tr>
     <td height="36" style="font-size:0px; line-height:0px">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="Presentation" style="margin:0 auto" width="696">
   <tbody>
    <tr>
     <td align="center">
      <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize90" width="696">
       <tbody>
        <tr>
         <td align="center" class="stack w-resize100" style="vertical-align:top" width="340">
          <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
           <tbody>
            <tr>
             <td align="center" class="resize100">
              <a style="color: #333333; text-decoration: none;" target="_blank">
               <img alt="" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Flive%252Fresource%252Fimg%252F6-12-20%252Fus200612-b2c1784-1229939.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMgF:-Ba8rIr10JhRMmP4wZ5CvR3tfxASKGwA8e_JtOteUYc" style="display: block; " width="338"/>
              </a>
             </td>
            </tr>
            <tr>
             <td height="10" style="font-size:0px; line-height:0px">
             </td>
            </tr>
            <tr>
             <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
              Save on Bose Audio
             </td>
            </tr>
            <tr>
             <td height="4" style="font-size:0px; line-height:0px">
             </td>
            </tr>
            <tr>
             <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; color: #000000; font-weight: bold">
              Free Shipping
             </td>
            </tr>
           </tbody>
          </table>
         </td>
         <td class="stack w-resize100 h-resize30px" style="font-size:0px; line-height:0px" width="16">
         </td>
         <td align="center" class="stack w-resize100" style="vertical-align:top" width="340">
          <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
           <tbody>
            <tr>
             <td align="center" class="resize100">
              <a style="color: #333333; text-decoration: none;" target="_blank">
               <img alt="" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Flive%252Fresource%252Fimg%252F6-19-20%252Fus200619-b2c1788-100478510.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMgF:-Ba8rIr10JhRMmP4wZ5CvR3tfxASKGwA8e_JtOteUYc" style="display: block; " width="338"/>
              </a>
             </td>
            </tr>
            <tr>
             <td height="10" style="font-size:0px; line-height:0px">
             </td>
            </tr>
            <tr>
             <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
              Koda Security Camera with Motion-Activated Floodlight
             </td>
            </tr>
            <tr>
             <td height="4" style="font-size:0px; line-height:0px">
             </td>
            </tr>
            <tr>
             <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; color: #000000; font-weight: bold">
              $99.99 Delivered
              <br/>
              After $50 OFF
             </td>
            </tr>
           </tbody>
          </table>
         </td>
        </tr>
       </tbody>
      </table>
     </td>
    </tr>
    <tr>
     <td height="36" style="font-size:0px; line-height:0px">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="Presentation" style="margin:0 auto" width="696">
   <tbody>
    <tr>
     <td align="center">
      <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize90" width="696">
       <tbody>
        <tr>
         <td align="center" class="stack w-resize100" style="vertical-align:top" width="340">
          <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
           <tbody>
            <tr>
             <td align="center" class="resize100">
              <a style="color: #333333; text-decoration: none;" target="_blank">
               <img alt="" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Flive%252Fresource%252Fimg%252F6-19-20%252Fus200619-b2c1788-100505509.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMgF:-Ba8rIr10JhRMmP4wZ5CvR3tfxASKGwA8e_JtOteUYc" style="display: block; " width="338"/>
              </a>
             </td>
            </tr>
            <tr>
             <td height="10" style="font-size:0px; line-height:0px">
             </td>
            </tr>
            <tr>
             <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
              Nest Hello Video Doorbell or Nest Hub
             </td>
            </tr>
            <tr>
             <td height="4" style="font-size:0px; line-height:0px">
             </td>
            </tr>
            <tr>
             <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; color: #000000; font-weight: bold">
              $10 - $50 OFF
             </td>
            </tr>
           </tbody>
          </table>
         </td>
         <td class="stack w-resize100 h-resize30px" style="font-size:0px; line-height:0px" width="16">
         </td>
         <td align="center" class="stack w-resize100" style="vertical-align:top" width="340">
          <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
           <tbody>
            <tr>
             <td align="center" class="resize100">
              <a style="color: #333333; text-decoration: none;" target="_blank">
               <img alt="" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Flive%252Fresource%252Fimg%252F6-19-20%252Fus200619-b2c1788-100662796.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMgF:-Ba8rIr10JhRMmP4wZ5CvR3tfxASKGwA8e_JtOteUYc" style="display: block; " width="338"/>
              </a>
             </td>
            </tr>
            <tr>
             <td height="10" style="font-size:0px; line-height:0px">
             </td>
            </tr>
            <tr>
             <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
              Extension Cord Bundle with USB-Charging, 2-Pack
             </td>
            </tr>
            <tr>
             <td height="4" style="font-size:0px; line-height:0px">
             </td>
            </tr>
            <tr>
             <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; color: #000000; font-weight: bold">
              $24.99 Delivered
             </td>
            </tr>
           </tbody>
          </table>
         </td>
        </tr>
       </tbody>
      </table>
     </td>
    </tr>
    <tr>
     <td height="36" style="font-size:0px; line-height:0px">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="Presentation" style="margin:0 auto" width="696">
   <tbody>
    <tr>
     <td align="center">
      <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize90" width="696">
       <tbody>
        <tr>
         <td align="center" class="stack w-resize100" style="vertical-align:top" width="340">
          <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
           <tbody>
            <tr>
             <td align="center" class="resize100">
              <a style="color: #333333; text-decoration: none;" target="_blank">
               <img alt="" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Flive%252Fresource%252Fimg%252F6-17-20%252Fus200617-b2c1787-5144946.jpg%2520/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMgF:-Ba8rIr10JhRMmP4wZ5CvR3tfxASKGwA8e_JtOteUYc" style="display: block; " width="338"/>
              </a>
             </td>
            </tr>
            <tr>
             <td height="10" style="font-size:0px; line-height:0px">
             </td>
            </tr>
            <tr>
             <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
              Vizio SB46514-F6 46" 5.1.4 Channel Home Theater Sound System and Wireless Subwoofer with Dolby Atmos
             </td>
            </tr>
            <tr>
             <td height="4" style="font-size:0px; line-height:0px">
             </td>
            </tr>
            <tr>
             <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; color: #000000; font-weight: bold">
              $779.99
              <br/>
              Free Shipping
             </td>
            </tr>
           </tbody>
          </table>
         </td>
         <td class="stack w-resize100 h-resize30px" style="font-size:0px; line-height:0px" width="16">
         </td>
         <td align="center" class="stack w-resize100" style="vertical-align:top" width="340">
          <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" width="340">
           <tbody>
            <tr>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color: #333333; text-decoration: none;" target="_blank">
                   <img alt="" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fimages.costco-static.com%252FImageDelivery%252FimageService%253FprofileId%253D12026540%2526imageId%253D1399770-847__1%2526recipeName%253D680/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMgF:2LeuO948OegA6aQE4fGNhqgWBDxyiy1mOdzvtJJGc_A" style="display: block; " width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="10" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
                  Powerbeats Pro Totally Wireless Earphones with AppleCare+, Black
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; color: #000000; font-weight: bold">
                  $199.99 After $50 OFF
                  <br/>
                  Free Shipping
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
             <td style="font-size:0px; line-height:0px" width="16">
             </td>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color: #333333; text-decoration: none;" target="_blank">
                   <img alt="" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Flive%252Fresource%252Fimg%252F6-19-20%252Fus200619-b2c1788-tile.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMgF:-Ba8rIr10JhRMmP4wZ5CvR3tfxASKGwA8e_JtOteUYc" style="display: block; " width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="10" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
                  Tile Pro Bluetooth Tracker (2020) 2-Pack
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; color: #000000; font-weight: bold">
                  $49.99 Delivered
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
        </tr>
       </tbody>
      </table>
     </td>
    </tr>
    <tr>
     <td height="36" style="font-size:0px; line-height:0px">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="Presentation" style="margin:0 auto" width="696">
   <tbody>
    <tr>
     <td align="center">
      <a target="_blank">
       <img alt="Online-Only Special Events. Exciting products for a limited-time. While supplies last. Shop Now" border="0" class="remove" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Flive%252Fresource%252Fimg%252F6-19-20%252Fd-b2c1788-200617-ban-events.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMgF:-Ba8rIr10JhRMmP4wZ5CvR3tfxASKGwA8e_JtOteUYc" style="display:block; margin: 0 auto; font-family:'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:16px;color:#000000;" width="696"/>
      </a>
      <div class="showHidden mobile-hero" style="display:none; width:0px; max-width:100%; max-height:0px; overflow:hidden; mso-hide:all">
       <a target="_blank">
        <img alt="Online-Only Special Events. Exciting products for a limited-time. While supplies last. Shop Now" border="0" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Flive%252Fresource%252Fimg%252F6-19-20%252Fm-b2c1788-200617-ban-events.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMgF:-Ba8rIr10JhRMmP4wZ5CvR3tfxASKGwA8e_JtOteUYc"/>
       </a>
      </div>
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="Presentation" style="margin:0 auto; background-color: #333333;" width="696">
   <tbody>
    <tr>
     <td height="5" style="font-size:0px; line-height:0px">
     </td>
    </tr>
    <tr>
     <td align="center" style="font-size: 16px; mso-line-height-rule:exactly; line-height: 20px; font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; ">
      <a style="color: #ffffff; text-decoration: none" target="_blank">
       While Supplies Last.  |
       <strong>
        Shop Now
       </strong>
      </a>
     </td>
    </tr>
    <tr>
     <td height="5" style="font-size:0px; line-height:0px">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="Presentation" style="margin:0 auto" width="696">
   <tbody>
    <tr>
     <td height="20" style="font-size:0px; line-height:0px">
     </td>
    </tr>
    <tr>
     <td align="center">
      <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize90" width="696">
       <tbody>
        <tr>
         <td align="center" class="stack w-resize100" style="vertical-align:top" width="340">
          <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" width="340">
           <tbody>
            <tr>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color: #333333; text-decoration: none;" target="_blank">
                   <img alt="" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Flive%252Fresource%252Fimg%252F4-22-20%252Fus200422-b2c1771-100406208.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMgF:-Ba8rIr10JhRMmP4wZ5CvR3tfxASKGwA8e_JtOteUYc" style="display: block; " width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="10" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
                  MedMassager Body or Foot Massagers
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; color: #000000; font-weight: bold">
                  Starting at $189.99 Delivered
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
             <td style="font-size:0px; line-height:0px" width="16">
             </td>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color: #333333; text-decoration: none;" target="_blank">
                   <img alt="" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fimages.costco-static.com%252FImageDelivery%252FimageService%253FprofileId%253D12026540%2526imageId%253D100659648-847__1%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMgF:2LeuO948OegA6aQE4fGNhqgWBDxyiy1mOdzvtJJGc_A" style="display: block; " width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="10" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
                  Theragun G3 Massager
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
         <td class="stack w-resize100 h-resize30px" style="font-size:0px; line-height:0px" width="16">
         </td>
         <td align="center" class="stack w-resize100" style="vertical-align:top" width="340">
          <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" width="340">
           <tbody>
            <tr>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color: #333333; text-decoration: none;" target="_blank">
                   <img alt="" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fimages.costco-static.com%252FImageDelivery%252FimageService%253FprofileId%253D12026540%2526imageId%253D100536767-847__1%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMgF:2LeuO948OegA6aQE4fGNhqgWBDxyiy1mOdzvtJJGc_A" style="display: block; " width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="10" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
                  Yardline, Installed
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; color: #000000; font-weight: bold">
                  $2,199.99 - $7,999.99 Delivered
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
             <td style="font-size:0px; line-height:0px" width="16">
             </td>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color: #333333; text-decoration: none;" target="_blank">
                   <img alt="" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fimages.costco-static.com%252FImageDelivery%252FimageService%253FprofileId%253D12026540%2526imageId%253D100463439-847__1%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMgF:2LeuO948OegA6aQE4fGNhqgWBDxyiy1mOdzvtJJGc_A" style="display: block; " width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="10" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
                  ZWILLING Pro Cutlery or Sharpener
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; color: #000000; font-weight: bold">
                  Starting at $19.99 Delivered
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
        </tr>
       </tbody>
      </table>
     </td>
    </tr>
    <tr>
     <td height="36" style="font-size:0px; line-height:0px">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="Presentation" style="margin:0 auto" width="696">
   <tbody>
    <tr>
     <td align="center">
      <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize90" width="696">
       <tbody>
        <tr>
         <td align="center" class="stack w-resize100" style="vertical-align:top" width="340">
          <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
           <tbody>
            <tr>
             <td align="center" class="resize100">
              <a style="color: #333333; text-decoration: none;" target="_blank">
               <img alt="" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Flive%252Fresource%252Fimg%252F6-10-20%252Fus200610-b2c1783-100467571.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMgF:-Ba8rIr10JhRMmP4wZ5CvR3tfxASKGwA8e_JtOteUYc" style="display: block; " width="338"/>
              </a>
             </td>
            </tr>
            <tr>
             <td height="10" style="font-size:0px; line-height:0px">
             </td>
            </tr>
            <tr>
             <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
              InfiniteAloe Skincare Products
             </td>
            </tr>
            <tr>
             <td height="4" style="font-size:0px; line-height:0px">
             </td>
            </tr>
            <tr>
             <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; color: #000000; font-weight: bold">
              Starting at $59.99 Delivered
             </td>
            </tr>
           </tbody>
          </table>
         </td>
         <td class="stack w-resize100 h-resize30px" style="font-size:0px; line-height:0px" width="16">
         </td>
         <td align="center" class="stack w-resize100" style="vertical-align:top" width="340">
          <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
           <tbody>
            <tr>
             <td align="center" class="resize100">
              <a style="color: #333333; text-decoration: none;" target="_blank">
               <img alt="" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Flive%252Fresource%252Fimg%252F6-19-20%252Fus200619-b2c1788-100665505.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMgF:-Ba8rIr10JhRMmP4wZ5CvR3tfxASKGwA8e_JtOteUYc" style="display: block; " width="338"/>
              </a>
             </td>
            </tr>
            <tr>
             <td height="10" style="font-size:0px; line-height:0px">
             </td>
            </tr>
            <tr>
             <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
              Bullfrog Spas - A7 Series Spa
             </td>
            </tr>
            <tr>
             <td height="4" style="font-size:0px; line-height:0px">
             </td>
            </tr>
            <tr>
             <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px; line-height: 16px; color: #000000; font-weight: bold">
              $11,199.99 Delivered
             </td>
            </tr>
           </tbody>
          </table>
         </td>
        </tr>
       </tbody>
      </table>
     </td>
    </tr>
    <tr>
     <td height="36" style="font-size:0px; line-height:0px">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="Presentation" style="margin:0 auto" width="696">
   <tbody>
    <tr>
     <td align="center">
      <a target="_blank">
       <img alt="10-inch 2-Layer Cakes - Perfect for Graduation. Available in White or Chocolate at Your Local Costco" border="0" class="remove" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Flive%252Fresource%252Fimg%252Fhomepage%252Fd-20w10109-email-banner-graduation-cakes.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMgF:-Ba8rIr10JhRMmP4wZ5CvR3tfxASKGwA8e_JtOteUYc" style="display:block; margin: 0 auto; font-family:'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:16px;color:#000000;" width="696"/>
      </a>
      <div class="showHidden mobile-hero" style="display:none; width:0px; max-width:100%; max-height:0px; overflow:hidden; mso-hide:all">
       <a target="_blank">
        <img alt="10-inch 2-Layer Cakes - Perfect for Graduation. Available in White or Chocolate at Your Local Costco" border="0" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Flive%252Fresource%252Fimg%252Fhomepage%252Fm-20w10109-email-banner-graduation-cakes.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMgF:-Ba8rIr10JhRMmP4wZ5CvR3tfxASKGwA8e_JtOteUYc"/>
       </a>
      </div>
     </td>
    </tr>
    <tr>
     <td height="20" style="font-size:0px; line-height:0px">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="Presentation" style="margin:0 auto" width="696">
   <tbody>
    <tr>
     <td align="center">
      <a target="_blank">
       <img alt="Costco Photo Center" border="0" class="remove" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Flive%252Fresource%252Fimg%252Fstatic-email-temp-2017%252Fphoto-banner.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMgF:-Ba8rIr10JhRMmP4wZ5CvR3tfxASKGwA8e_JtOteUYc" style="display:block; margin: 0 auto; font-family:'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:16px;color:#000000;" width="696"/>
      </a>
      <div class="showHidden mobile-hero" style="display:none; width:0px; max-width:100%; max-height:0px; overflow:hidden; mso-hide:all">
       <a target="_blank">
        <img alt="Costco Photo Center" border="0" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Flive%252Fresource%252Fimg%252Fstatic-email-temp-2017%252Fphoto-banner-m.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMgF:-Ba8rIr10JhRMmP4wZ5CvR3tfxASKGwA8e_JtOteUYc"/>
       </a>
      </div>
     </td>
    </tr>
    <tr>
     <td height="20" style="font-size:0px; line-height:0px">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="Presentation" style="margin:0 auto" width="696">
   <tbody>
    <tr>
     <td align="center">
      <a target="_blank">
       <img alt="Canvas Prints Shop Now" border="0" class="remove" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Flive%252Fresource%252Fimg%252F6-17-20%252Fd-b2c1787-200617-ban-prints.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMgF:-Ba8rIr10JhRMmP4wZ5CvR3tfxASKGwA8e_JtOteUYc" style="display:block; margin: 0 auto; font-family:'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:16px;color:#000000;" width="696"/>
      </a>
      <div class="showHidden mobile-hero" style="display:none; width:0px; max-width:100%; max-height:0px; overflow:hidden; mso-hide:all">
       <a target="_blank">
        <img alt="Canvas Prints Shop Now" border="0" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Flive%252Fresource%252Fimg%252F6-17-20%252Fm-b2c1787-200617-ban-prints.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMgF:-Ba8rIr10JhRMmP4wZ5CvR3tfxASKGwA8e_JtOteUYc"/>
       </a>
      </div>
     </td>
    </tr>
    <tr>
     <td height="20" style="font-size:0px; line-height:0px">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="Presentation" style="margin:0 auto" width="696">
   <tbody>
    <tr>
     <td align="center">
      <a target="_blank">
       <img alt="Photo Books Shop Now" border="0" class="remove" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Flive%252Fresource%252Fimg%252F6-17-20%252Fd-b2c1787-200617-ban-books.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMgF:-Ba8rIr10JhRMmP4wZ5CvR3tfxASKGwA8e_JtOteUYc" style="display:block; margin: 0 auto; font-family:'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:16px;color:#000000;" width="696"/>
      </a>
      <div class="showHidden mobile-hero" style="display:none; width:0px; max-width:100%; max-height:0px; overflow:hidden; mso-hide:all">
       <a target="_blank">
        <img alt="Photo Books Shop Now" border="0" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Flive%252Fresource%252Fimg%252F6-17-20%252Fm-b2c1787-200617-ban-books.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMgF:-Ba8rIr10JhRMmP4wZ5CvR3tfxASKGwA8e_JtOteUYc"/>
       </a>
      </div>
     </td>
    </tr>
    <tr>
     <td height="20" style="font-size:0px; line-height:0px">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="Presentation" style="margin:0 auto" width="696">
   <tbody>
    <tr>
     <td align="center">
      <a target="_blank">
       <img alt="Blankets Shop Now" border="0" class="remove" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Flive%252Fresource%252Fimg%252F6-17-20%252Fd-b2c1787-200617-ban-blankets.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMgF:-Ba8rIr10JhRMmP4wZ5CvR3tfxASKGwA8e_JtOteUYc" style="display:block; margin: 0 auto; font-family:'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:16px;color:#000000;" width="696"/>
      </a>
      <div class="showHidden mobile-hero" style="display:none; width:0px; max-width:100%; max-height:0px; overflow:hidden; mso-hide:all">
       <a target="_blank">
        <img alt="Blankets Shop Now" border="0" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Flive%252Fresource%252Fimg%252F6-17-20%252Fm-b2c1787-200617-ban-blankets.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMgF:-Ba8rIr10JhRMmP4wZ5CvR3tfxASKGwA8e_JtOteUYc"/>
       </a>
      </div>
     </td>
    </tr>
    <tr>
     <td height="20" style="font-size:0px; line-height:0px">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="Presentation" style="margin:0 auto" width="696">
   <tbody>
    <tr>
     <td align="center">
      <a target="_blank">
       <img alt="Home Video and Photo Transfer Save $4 OFF Every $19.99 You Spend Promo Code: MOMENTS Shop Now" border="0" class="remove" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Flive%252Fresource%252Fimg%252F6-17-20%252Fd-b2c1787-200617-ban-video.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMgF:-Ba8rIr10JhRMmP4wZ5CvR3tfxASKGwA8e_JtOteUYc" style="display:block; margin: 0 auto; font-family:'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:16px;color:#000000;" width="696"/>
      </a>
      <div class="showHidden mobile-hero" style="display:none; width:0px; max-width:100%; max-height:0px; overflow:hidden; mso-hide:all">
       <a target="_blank">
        <img alt="Home Video and Photo Transfer Save $4 OFF Every $19.99 You Spend Promo Code: MOMENTS Shop Now" border="0" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Flive%252Fresource%252Fimg%252F6-17-20%252Fm-b2c1787-200617-ban-video.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMgF:-Ba8rIr10JhRMmP4wZ5CvR3tfxASKGwA8e_JtOteUYc"/>
       </a>
      </div>
     </td>
    </tr>
    <tr>
     <td height="20" style="font-size:0px; line-height:0px">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="Presentation" style="margin:0 auto" width="696">
   <tbody>
    <tr>
     <td align="center">
      <a target="_blank">
       <img alt="Costco Business Printing" border="0" class="remove" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Flive%252Fresource%252Fimg%252Fstatic-email-temp-2017%252Fbusinessbanner-d.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMgF:-Ba8rIr10JhRMmP4wZ5CvR3tfxASKGwA8e_JtOteUYc" style="display:block; margin: 0 auto; font-family:'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:16px;color:#000000;" width="696"/>
      </a>
      <div class="showHidden mobile-hero" style="display:none; width:0px; max-width:100%; max-height:0px; overflow:hidden; mso-hide:all">
       <a target="_blank">
        <img alt="Costco Business Printing" border="0" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Flive%252Fresource%252Fimg%252Fstatic-email-temp-2017%252Fbusinessbanner-m.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMgF:-Ba8rIr10JhRMmP4wZ5CvR3tfxASKGwA8e_JtOteUYc"/>
       </a>
      </div>
     </td>
    </tr>
    <tr>
     <td height="20" style="font-size:0px; line-height:0px">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="Presentation" style="margin:0 auto" width="696">
   <tbody>
    <tr>
     <td align="center">
      <a target="_blank">
       <img alt="Post Cards. Engage potential customers with striking Post Cards. From $49.99 for 250. Shop Now" border="0" class="remove" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Flive%252Fresource%252Fimg%252F6-17-20%252Fd-b2c1787-200617-ban-postcards.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMgF:-Ba8rIr10JhRMmP4wZ5CvR3tfxASKGwA8e_JtOteUYc" style="display:block; margin: 0 auto; font-family:'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:16px;color:#000000;" width="696"/>
      </a>
      <div class="showHidden mobile-hero" style="display:none; width:0px; max-width:100%; max-height:0px; overflow:hidden; mso-hide:all">
       <a target="_blank">
        <img alt="Post Cards. Engage potential customers with striking Post Cards. From $49.99 for 250. Shop Now" border="0" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Flive%252Fresource%252Fimg%252F6-17-20%252Fm-b2c1787-200617-ban-postcards.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMgF:-Ba8rIr10JhRMmP4wZ5CvR3tfxASKGwA8e_JtOteUYc"/>
       </a>
      </div>
     </td>
    </tr>
    <tr>
     <td height="20" style="font-size:0px; line-height:0px">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="Presentation" style="margin:0 auto" width="696">
   <tbody>
    <tr>
     <td align="center">
      <a target="_blank">
       <img alt="Banners Capture attention with custom banners for every occassion. From $24.99 Each. Shop Now" border="0" class="remove" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Flive%252Fresource%252Fimg%252F6-17-20%252Fd-b2c1787-200617-ban-banners.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMgF:-Ba8rIr10JhRMmP4wZ5CvR3tfxASKGwA8e_JtOteUYc" style="display:block; margin: 0 auto; font-family:'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:16px;color:#000000;" width="696"/>
      </a>
      <div class="showHidden mobile-hero" style="display:none; width:0px; max-width:100%; max-height:0px; overflow:hidden; mso-hide:all">
       <a target="_blank">
        <img alt="Banners Capture attention with custom banners for every occassion. From $24.99 Each. Shop Now" border="0" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Flive%252Fresource%252Fimg%252F6-17-20%252Fm-b2c1787-200617-ban-banners.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMgF:-Ba8rIr10JhRMmP4wZ5CvR3tfxASKGwA8e_JtOteUYc"/>
       </a>
      </div>
     </td>
    </tr>
    <tr>
     <td height="20" style="font-size:0px; line-height:0px">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="Presentation" style="margin:0 auto" width="696">
   <tbody>
    <tr>
     <td align="center">
      <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize90" width="696">
       <tbody>
        <tr>
         <td align="center" class="stack w-resize100" style="vertical-align:top" width="348">
          <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
           <tbody>
            <tr>
             <td align="center" class="resize90">
              <a target="_blank">
               <img alt="" border="0" height="180" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Flive%252Fresource%252Fimg%252Fstatic-email-fy20%252Fwhile-supplies-last.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMgF:-Ba8rIr10JhRMmP4wZ5CvR3tfxASKGwA8e_JtOteUYc" style="display:block" width="230"/>
              </a>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
         <td class="stack w-resize100 h-resize40px" style="font-size:0px; line-height:0px" width="0">
         </td>
         <td align="center" class="stack w-resize100" style="vertical-align:top" width="348">
          <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
           <tbody>
            <tr>
             <td align="center" class="resize90">
              <a target="_blank">
               <img alt="" border="0" height="180" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Flive%252Fresource%252Fimg%252Fstatic-email-fy20%252Ftreasure-hunt.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMgF:-Ba8rIr10JhRMmP4wZ5CvR3tfxASKGwA8e_JtOteUYc" style="display:block" width="230"/>
              </a>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
         <td class="stack w-resize100 h-resize40px" style="font-size:0px; line-height:0px" width="0">
         </td>
         <td align="center" class="stack w-resize100" style="vertical-align:top" width="348">
          <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
           <tbody>
            <tr>
             <td align="center" class="resize90">
              <a target="_blank">
               <img alt="" border="0" height="180" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Flive%252Fresource%252Fimg%252Fstatic-email-fy20%252Fwhats-new.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMgF:-Ba8rIr10JhRMmP4wZ5CvR3tfxASKGwA8e_JtOteUYc" style="display:block" width="230"/>
              </a>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
        </tr>
       </tbody>
      </table>
     </td>
    </tr>
    <tr>
     <td height="36" style="font-size:0px; line-height:0px">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="Presentation" style="margin:0 auto" width="696">
   <tbody>
    <tr>
     <td align="center">
      <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" width="696">
       <tbody>
        <tr>
         <td align="center" class="stack w-resize100" style="vertical-align:top; background-color: #008000;" width="348">
          <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
           <tbody>
            <tr>
             <td align="center">
              <table align="center" border="0" cellpadding="0" cellspacing="0" width="85%">
               <tbody>
                <tr>
                 <td height="36" style="font-size:0px; line-height:0px">
                  <a style="text-decoration: none; color:#ffffff;" target="_blank">
                  </a>
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:22px; mso-line-height-rule:exactly;line-height:25px; color:#ffffff; text-align: center; font-weight: bold;">
                  <a style="text-decoration: none; color:#ffffff;" target="_blank">
                   Use Express Checkout
                  </a>
                 </td>
                </tr>
                <tr>
                 <td style="font-weight:200; font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:22px; mso-line-height-rule:exactly;line-height:25px; color:#ffffff; text-align: center;">
                  <a style="text-decoration: none; color:#ffffff;" target="_blank">
                   To Quickly Place Orders Online
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="10" style="font-size:0px; line-height:0px">
                  <a style="text-decoration: none; color:#ffffff;" target="_blank">
                  </a>
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 16px; mso-line-height-rule:exactly;line-height: 18px; color: #ffffff; text-align: center;">
                  <a style="text-decoration: none; color:#ffffff;" target="_blank">
                   Learn More
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="15" style="font-size:0px; line-height:0px; background-color: #008000;">
                  <a style="text-decoration: none; color:#ffffff;" target="_blank">
                  </a>
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
         <td align="center" class="stack w-resize100" style="vertical-align:top; background-color: #0060aa" width="348">
          <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
           <tbody>
            <tr>
             <td height="8" style="font-size:0px; line-height:0px">
              <a style="text-decoration: none;" target="_blank">
              </a>
             </td>
            </tr>
            <tr>
             <td align="center">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="Presentation" style="margin:0 auto; background-color:#0060aa;" width="40">
               <tbody>
                <tr>
                 <td align="center" style="width:30px; background-color:#0060aa;" width="40">
                  <a target="_blank">
                   <img alt="" border="0" class="remove" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Flive%252Fresource%252Fimg%252Fstatic-email-temp-2017%252F19w1203-pick-up-logo.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMgF:-Ba8rIr10JhRMmP4wZ5CvR3tfxASKGwA8e_JtOteUYc" width="40"/>
                  </a>
                  <div class="showHidden mobile-hero" style="display:none; width:30px; overflow:hidden; mso-hide:all">
                   <a target="_blank">
                    <img alt="" border="0" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Flive%252Fresource%252Fimg%252Fstatic-email-temp-2017%252F19w1203-pick-up-logo.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMgF:-Ba8rIr10JhRMmP4wZ5CvR3tfxASKGwA8e_JtOteUYc" width="40"/>
                   </a>
                  </div>
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
            <tr>
             <td align="center">
              <table align="center" border="0" cellpadding="0" cellspacing="0" width="85%">
               <tbody>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 22px; mso-line-height-rule:exactly;line-height: 25px; color: #ffffff; text-align: center;">
                  <a style="color:#ffffff;text-decoration:none;" target="_blank">
                   Order
                   <strong>
                    Online
                   </strong>
                   and Pickup at your
                   <strong>
                    Local Costco.
                   </strong>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="8" style="font-size:0px; line-height:0px">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 16px; mso-line-height-rule:exactly;line-height: 18px; color: #ffffff; text-align: center;">
                  <a style="color:#ffffff;text-decoration:none;" target="_blank">
                   Shop Eligible Items
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="15" style="font-size:0px; line-height:0px; background-color: #0060aa;">
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
        </tr>
       </tbody>
      </table>
     </td>
    </tr>
    <tr>
     <td height="20" style="font-size:0px; line-height:0px">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="Presentation" style="margin:0 auto" width="696">
   <tbody>
    <tr>
     <td align="center">
      <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize90" width="696">
       <tbody>
        <tr>
         <td align="center" class="stack w-resize100" style="vertical-align:top" width="340">
          <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
           <tbody>
            <tr>
             <td align="center" class="resize100">
              <a style="color: #333333; text-decoration: none;" target="_blank">
               <img alt="Like us on Facebook and discover the latest on special events, warehouse openings, Costco Travel packages and much more!" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fwww.costco.com%252Fwcsstore%252FCostcoUSBCCatalogAssetStore%252Femail%252Fem-b2c-bnr-facebook.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZ3d3cuY29zdGNvLiJ9:1kXMgF:ah7VgYy5Sum5F0_7UUTQ8qspXxm6evQ4w-BmqE2XFWA" style="display: block;" width="340"/>
              </a>
             </td>
            </tr>
            <tr>
             <td height="10" style="font-size:0px; line-height:0px">
             </td>
            </tr>
            <tr>
             <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
              Like us on Facebook and discover the latest on special events, warehouse openings, Costco Travel packages and much more!
             </td>
            </tr>
           </tbody>
          </table>
         </td>
         <td class="stack w-resize100 h-resize30px" style="font-size:0px; line-height:0px" width="16">
         </td>
         <td align="center" class="stack w-resize100" style="vertical-align:top" width="340">
          <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
           <tbody>
            <tr>
             <td align="center" class="resize100">
              <a style="color: #333333; text-decoration: none;" target="_blank">
               <img alt="Connection" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fwww.costco.com%252Fwcsstore%252FCostcoUSBCCatalogAssetStore%252Femail%252Fem-b2c-bnr-connapp.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZ3d3cuY29zdGNvLiJ9:1kXMgF:ah7VgYy5Sum5F0_7UUTQ8qspXxm6evQ4w-BmqE2XFWA" style="display: block;" width="340"/>
              </a>
             </td>
            </tr>
            <tr>
             <td height="10" style="font-size:0px; line-height:0px">
             </td>
            </tr>
            <tr>
             <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
              Manage your Costco Connection subscription, or download the Newsstand Edition app for
              <a style="color: #006699; text-decoration: none;" target="_blank">
               Apple
              </a>
              and
              <a style="color: #006699; text-decoration: none;" target="_blank">
               Android
              </a>
              devices.
             </td>
            </tr>
           </tbody>
          </table>
         </td>
        </tr>
       </tbody>
      </table>
     </td>
    </tr>
    <tr>
     <td height="20" style="font-size:0px; line-height:0px">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="Presentation" style="margin:0 auto" width="696">
   <tbody>
    <tr>
     <td align="center">
      <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize90" width="696">
       <tbody>
        <tr>
         <td align="center" class="stack w-resize100" style="vertical-align:top" width="340">
          <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
           <tbody>
            <tr>
             <td align="left" style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 22px; color: #333333;" valign="top">
              The Costco Connection
              <br/>
              <span style="font-size: 18px;">
               This Month's Top Features:
              </span>
             </td>
            </tr>
            <tr>
             <td align="left" style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; color: #333333;" valign="top">
              <p>
               <a style="color:#069;text-decoration:none" target="_blank">
                Park Place
               </a>
              </p>
              <p>
               <a style="color:#069;text-decoration:none" target="_blank">
                Family Fitness
               </a>
              </p>
              <p>
               <a style="color:#069;text-decoration:none" target="_blank">
                Workbooks for Young Students
               </a>
              </p>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
         <td class="stack w-resize100 h-resize30px" style="font-size:0px; line-height:0px" width="16">
         </td>
         <td align="center" class="stack w-resize100" style="vertical-align:top" width="340">
          <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
           <tbody>
            <tr>
             <td align="center" class="resize100">
              <a style="color: #333333; text-decoration: none;" target="_blank">
               <img alt="Connection" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Flive%252Fresource%252Fimg%252F6-1-20%252Fus200601-b2c1797-conn.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMgF:-Ba8rIr10JhRMmP4wZ5CvR3tfxASKGwA8e_JtOteUYc" style="display: block;" width="340"/>
              </a>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
        </tr>
       </tbody>
      </table>
     </td>
    </tr>
    <tr>
     <td height="20" style="font-size:0px; line-height:0px">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize90" role="Presentation" style="margin:0 auto" width="696">
   <tbody>
    <tr>
     <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:12px; line-height:14px; color:#333333">
      <!--start legal-->
      <div>
       <p>
        Citi and Citi and Arc Design are registered service marks of Citigroup Inc.
       </p>
       <p>
        Not all items are available at all Costco locations and selection and pricing may vary. Prices in Alaska and Hawaii may be higher than the advertised price. Items shipped to Alaska or Hawaii will include an additional shipping and handling fee. Reflects the customer average rating as of 6/19/2020. See Costco.com for the most current information.
       </p>
       <p>
        Most online instant savings at
        <a target="_blank">
         Costco.com
        </a>
        are manufacturer's savings, which will automatically be applied at checkout. See specific product page for promotion valid dates. State sales tax may be due on the pre-discounted price of the item. These taxes, if any, are in addition to the the amount that you are paying for the product.
       </p>
       <p>
        In the past you provided Costco with your email address [6410071d@uifeed.com]. Occasionally, you will receive brief advertising announcements regarding special items and services. If you no longer want to receive these advertisements, please click
        <a style="text-decoration: underline;color:#069">
         unsubscribe
        </a>
        . Please DO NOT CLICK REPLY, as the email will not be read.
       </p>
       <p>
        To contact us please
        <a style="text-decoration: underline;color:#069">
         click here
        </a>
        .
        <br/>
        Costco Wholesale, Customer Service | P.O. Box 34535 -- Seattle, WA 98124-1535
        <br/>
        © 1998-2020 Costco Wholesale Corporation. All rights reserved.
        <a style="text-decoration: underline;color:#069">
         Privacy Statement
        </a>
        <a style="text-decoration: underline;color:#069">
         Terms and Conditions
        </a>
       </p>
      </div>
      <!--end legal-->
     </td>
    </tr>
    <tr>
     <td height="30" style="font-size:0px; line-height:0px">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="remove" role="Presentation" width="696">
   <tbody>
    <tr>
     <td>
      <img alt="" height="1" src="https://inboxflows.com/_/image/http%253A%252F%252Fmedia.whatcounts.com%252Fwhatcounts_knickoles%252F160307_Modular_Template%252Fspcr.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRm1lZGlhLndoYXRjbyJ9:1kXMgF:V6PMuditNWDeQCN5N_Idncgj0LqbfT2rQWfquqgZKeg" style="display:block; min-height:1px; max-height:1px; width:696px; min-width:696px;" width="696"/>
     </td>
    </tr>
   </tbody>
  </table>
  <br/>
 </body>
 <!--STARTTTAG-->
 <img border="0" height="1" src="https://inboxflows.com/_/image/https%253A%252F%252Fclick.online.costco.com%252Ft%253Fc%253D149167%2526r%253D2%2526l%253D121%2526t%253D10%2526e%253D1969488BD4D878BE730DE44F1D6F54D14BAD797B5EF9BCDE/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZjbGljay5vbmxpbiJ9:1kXMgF:uLVo6_-oERIbEUEyOspzNUN4kihQnIQ7BZtC5yP2ssw" width="1"/>
 <!--ENDTTAG-->
</html>