Inboxes

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

+New inbox

012345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371<!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>
   Preview Savings NOW! April Savings Book Starts Tomorrow, 4/15!
  </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} }
  </style>
 </head>
 <body>
  <style type="text/css">
   div.preheader { display: none !important; }
  </style>
  <div class="preheader" style="font-size: 1px; display: none !important;">
   $30 OFF SeroVital, $70 OFF Ring video doorbell, $100 OFF Dyson fan 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:1kXMpp:a_QD19FfN38IiJGWeZ0SgPEHSV4u2YGYAg4bugBjF_Y" 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 height="10" style="font-size:0px; line-height:0px; background: #333333;">
     </td>
    </tr>
    <tr>
     <td align="center" style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 15px; background: #333333; color: #ffffff; line-height: 18px; font-weight: normal;">
      Warehouse merchandise availability is subject to
      <br/>
      limitations or prohibitions imposed by applicable emergency orders.
     </td>
    </tr>
    <tr>
     <td height="10" style="font-size:0px; line-height:0px; background: #333333;">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="Presentation" style="margin:0 auto;" width="696">
  </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="Starts Today! Member-Only Savings. Valid 4/15/20 - 5/10/20. Shop Now" border="0" class="remove" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Flive%252Fresource%252Fimg%252F20w0811-april-mvm%252Fd-20w0811-april-mvm-hero-start-tomorrow.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMpp:a_QD19FfN38IiJGWeZ0SgPEHSV4u2YGYAg4bugBjF_Y" 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="Starts Today! Member-Only Savings. Valid 4/15/20 - 5/10/20. Shop Now" border="0" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Flive%252Fresource%252Fimg%252F20w0811-april-mvm%252Fd-20w0811-april-mvm-hero-start-tomorrow.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMpp:a_QD19FfN38IiJGWeZ0SgPEHSV4u2YGYAg4bugBjF_Y"/>
       </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="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%253D908881-847__2%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMpp:CDn5uyrGYtwgF5jShbTwuT98WH8zyvHn8wy8b3YeI8k" 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">
                  Coleman 13' x 13' Shelter
                 </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">
                  $109.99 Delivered
                  <br/>
                  After $30 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">
                  LIMIT 10
                 </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%253D1352108-847__1%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMpp:CDn5uyrGYtwgF5jShbTwuT98WH8zyvHn8wy8b3YeI8k" 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">
                  Cascade Mountain Tech Inflatable Sleeping Pad with Pillow
                 </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">
                  $31.99 Delivered
                  <br/>
                  After $8 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">
                  LIMIT 10
                 </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%2526itemId%253D1128122-847%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMpp:CDn5uyrGYtwgF5jShbTwuT98WH8zyvHn8wy8b3YeI8k" 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:15px; color: #da1735; padding-bottom: 4px; font-weight: bold;">
                  Warehouse-Only
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
                  OFF! Deep Woods Bug Repellent Dry Spray
                 </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:12px; line-height:12px; color:#666666">
                  2/6 oz + 2.5 oz + Repellent Wipes 8 ct
                 </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">
                  $5 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">
                  LIMIT 5
                 </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%252F20w0813-april-2020-app-us%252F350-april-mvm-solarescape.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMpp:a_QD19FfN38IiJGWeZ0SgPEHSV4u2YGYAg4bugBjF_Y" 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">
                  Solar Escape Sun Hats
                 </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.99 Delivered
                  <br/>
                  After $5 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">
                  LIMIT 10
                 </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%252F20w0813-april-2020-app-us%252F350-april-mvm-michelin.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMpp:a_QD19FfN38IiJGWeZ0SgPEHSV4u2YGYAg4bugBjF_Y" 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">
                  Save $149.92 Instantly
                 </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">
                  ($70 OFF any set of 4 tires + 1¢ installation per tire)
                 </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">
                  NO LIMIT
                  <br/>
                  Valid 4/15/20 - 4/28/20
                 </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%252F20w0813-april-2020-app-us%252F350-april-mvm-1330878.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMpp:a_QD19FfN38IiJGWeZ0SgPEHSV4u2YGYAg4bugBjF_Y" 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:15px; color: #da1735; padding-bottom: 4px; font-weight: bold;">
                  Warehouse-Only
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
                  Titan 40-Can Soft-Sided Cooler
                 </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">
                  $5 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">
                  LIMIT 10
                 </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%252F20w0813-april-2020-app-us%252F350-april-mvm-spf.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMpp:a_QD19FfN38IiJGWeZ0SgPEHSV4u2YGYAg4bugBjF_Y" 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:15px; color: #da1735; padding-bottom: 4px; font-weight: bold;">
                  Warehouse-Only
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
                  Neutrogena Beach Defense SPF 60+ 2/8.5 oz AND/OR Alba Botanica Hawaiian Sunscreen SPF 50 2/7.5 oz
                 </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 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">
                  LIMIT 2 Each
                 </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%253D100510946-847__1%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMpp:CDn5uyrGYtwgF5jShbTwuT98WH8zyvHn8wy8b3YeI8k" 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">
                  Unionbay Men's Cargo Short
                 </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">
                  $12.99 Delivered
                  <br/>
                  After $5 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">
                  LIMIT 10
                 </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%252F20w0813-april-2020-app-us%252F350-april-mvm-1309716.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMpp:a_QD19FfN38IiJGWeZ0SgPEHSV4u2YGYAg4bugBjF_Y" 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; background-color: #f27927; color: white; font-weight: bold; text-align: center; padding-top: 2px; padding-bottom: 2px;">
                  TREASURE HUNT
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
                  Jessica Simpson Ladies' Soft Pant
                 </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">
                  $12.99 Delivered
                 </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">
                  LIMIT 10
                 </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%253D100507064-847__1%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMpp:CDn5uyrGYtwgF5jShbTwuT98WH8zyvHn8wy8b3YeI8k" 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">
                  Hilary Radley Seersucker Pant
                 </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
                  <br/>
                  After $3 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">
                  LIMIT 10
                 </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%252F20w0811-april-mvm%252Fus200415-b2c20w0811-carter.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMpp:a_QD19FfN38IiJGWeZ0SgPEHSV4u2YGYAg4bugBjF_Y" 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">
                  Carter’s 6-Piece Kids' Cotton Pajamas
                 </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">
                  $14.99 Delivered
                  <br/>
                  After $5 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">
                  LIMIT 10. 4-piece also available in warehouse for $3 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%252Fmobilecontent.costco.com%252Flive%252Fresource%252Fimg%252F20w0813-april-2020-app-us%252F350-april-mvm-dkny.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMpp:a_QD19FfN38IiJGWeZ0SgPEHSV4u2YGYAg4bugBjF_Y" 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">
                  DKNY Sport Ladies' 1/2-Zip Pullover AND/OR DKNY Jeans Bermuda Short
                 </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">
                  $5 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">
                  LIMIT 10
                 </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="32 Degrees Cool Performance" border="0" class="remove" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Flive%252Fresource%252Fimg%252F20w0812%252Fd-20w0812-em-mvm-hero-32degrees.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMpp:a_QD19FfN38IiJGWeZ0SgPEHSV4u2YGYAg4bugBjF_Y" 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="32 Degrees Cool Performance" border="0" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Flive%252Fresource%252Fimg%252F20w0812%252Fm-20w0812-em-mvm-hero-32degrees.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMpp:a_QD19FfN38IiJGWeZ0SgPEHSV4u2YGYAg4bugBjF_Y"/>
       </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:#727274;" width="696">
   <tbody>
    <tr>
     <td height="5" style="font-size:0px; mso-line-height-rule:exactly;line-height:0px">
     </td>
    </tr>
    <tr>
     <td align="center" style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px;line-height:16px;" valign="top">
      <a style="color:#ffffff; text-decoration: none;" target="_blank">
       Limit 10 Each | Valid 4/15/20 - 5/10/20 |
       <strong>
        Shop Now
       </strong>
      </a>
     </td>
    </tr>
    <tr>
     <td height="10" style="font-size:0px; mso-line-height-rule:exactly;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">
      <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%2526itemId%253D1309952-847%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMpp:CDn5uyrGYtwgF5jShbTwuT98WH8zyvHn8wy8b3YeI8k" 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® Premier Professional 13-Piece Hard Anodized Cookware 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">
                  $149.99 Delivered
                  <br/>
                  After $50 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">
                  LIMIT 5
                 </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%252F20w0813-april-2020-app-us%252F350-april-mvm-1372916.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMpp:a_QD19FfN38IiJGWeZ0SgPEHSV4u2YGYAg4bugBjF_Y" 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">
                  Scotts Green Max Lawn Food
                 </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:12px; line-height:12px; color:#666666">
                  Covers 14,000 sq ft.
                 </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
                  <br/>
                  After $10 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">
                  LIMIT 10
                 </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%2526itemId%253D1373657-847%2526recipeName%253D680/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMpp:CDn5uyrGYtwgF5jShbTwuT98WH8zyvHn8wy8b3YeI8k" 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">
                  Scotts Turf Builder
                 </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">
                  $42.99 Delivered
                  <br/>
                  After $10 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">
                  LIMIT 10
                 </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%253D1399426-847__1%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMpp:CDn5uyrGYtwgF5jShbTwuT98WH8zyvHn8wy8b3YeI8k" 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:15px; color: #da1735; padding-bottom: 4px; font-weight: bold;">
                  Warehouse-Only
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
                  Scotts Turf Builder Bonus S
                 </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 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">
                  LIMIT 10
                 </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%2526itemId%253D830060-847%2526recipeName%253D680/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMpp:CDn5uyrGYtwgF5jShbTwuT98WH8zyvHn8wy8b3YeI8k" 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">
                  $100 Nutrisystem Gift Card
                 </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:12px; line-height:12px; color:#666666">
                  More than 150 food options. Pick your plan.
                 </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 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">
                  LIMIT 5
                 </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%2526itemId%253D9757565-847%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMpp:CDn5uyrGYtwgF5jShbTwuT98WH8zyvHn8wy8b3YeI8k" 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">
                  Samsung 75" Class - Q6D Series - 4K UHD QLED LCD TV
                 </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,299.99
                  <br/>
                  Free Shipping
                 </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: #008000">
                  5-Year Manufacturer's Warranty
                 </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">
                  LIMIT 3
                 </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%252F20w0813-april-2020-app-us%252F350-april-mvm-hpink.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMpp:a_QD19FfN38IiJGWeZ0SgPEHSV4u2YGYAg4bugBjF_Y" 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">
                  Buy Any Two HP Ink Cartridge Packs
                 </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:12px; line-height:12px; color:#666666">
                  Pack = 1 sell unit
                 </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">
                  Get $23 OFF Your Total Purchase
                 </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">
                  LIMIT 2
                 </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%2526itemId%253D1373588-847%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMpp:CDn5uyrGYtwgF5jShbTwuT98WH8zyvHn8wy8b3YeI8k" 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">
                  HP Pavilion 15.6" 1080p Touchscreen Laptop
                 </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:12px; line-height:12px; color:#666666">
                  10th Generation Intel® Core™ i7 Processor. 4GB NVIDIA MX250 Graphics Card.
                 </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 After $200 OFF
                  <br/>
                  Plus S&amp;H
                 </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">
                  LIMIT 2
                 </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%2526itemId%253D9887343-847%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMpp:CDn5uyrGYtwgF5jShbTwuT98WH8zyvHn8wy8b3YeI8k" 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">
                  LG 43" Class - 7 Series - 4K UHD LED LCD TV
                 </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">
                  $239.99
                  <br/>
                  Free Shipping
                 </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">
                  LIMIT 3
                 </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%2526itemId%253D100427291-847%2526recipeName%253D680/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMpp:CDn5uyrGYtwgF5jShbTwuT98WH8zyvHn8wy8b3YeI8k" 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">
                  iRobot Roomba e6 6198 Wi-Fi Connected Robot Vacuum
                 </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 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">
                  LIMIT 5
                 </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%2526itemId%253D9657500-847%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMpp:CDn5uyrGYtwgF5jShbTwuT98WH8zyvHn8wy8b3YeI8k" 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:15px; color: #da1735; padding-bottom: 4px; font-weight: bold;">
                  Early Start, 4/13!
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
                  Samsung 65" Class - Q7D Series - 4K UHD QLED LCD TV
                 </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
                  <br/>
                  Free Shipping
                 </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: #008000">
                  5-Year Manufacturer's Warranty
                 </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">
                  LIMIT 3
                 </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%2526itemId%253D1224973-847%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMpp:CDn5uyrGYtwgF5jShbTwuT98WH8zyvHn8wy8b3YeI8k" 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">
                  Arlo Pro3 2K QHD Wire-Free Security Camera System, 3 Camera Kit
                 </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 After $100 OFF
                  <br/>
                  Free Shipping
                 </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">
                  LIMIT 3
                 </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%253D3115500-847__1%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMpp:CDn5uyrGYtwgF5jShbTwuT98WH8zyvHn8wy8b3YeI8k" 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">
                  De'Longhi 500 sq ft 4-in-1 Portable Air Conditioner, Heater, Dehumidifier &amp; 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">
                  $80 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">
                  LIMIT 3
                 </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%2526itemId%253D1267852-847%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMpp:CDn5uyrGYtwgF5jShbTwuT98WH8zyvHn8wy8b3YeI8k" 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">
                  Dyson Pure Cool™ Link Purifying Fan – TP02
                 </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">
                  $100 OFF
                  <br/>
                  Free Shipping
                 </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">
                  LIMIT 5
                 </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%2526itemId%253D1600237-847%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMpp:CDn5uyrGYtwgF5jShbTwuT98WH8zyvHn8wy8b3YeI8k" 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">
                  Vornado Air Circulator with Tilt
                 </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 $10 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">
                  LIMIT 5
                 </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%253D100519986-847__4%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMpp:CDn5uyrGYtwgF5jShbTwuT98WH8zyvHn8wy8b3YeI8k" 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">
                  Delta Berkley Pull-down Kitchen Faucet with Soap Dispenser
                 </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">
                  $139.99 Delivered
                  <br/>
                  After $40 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">
                  LIMIT 5
                 </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="Spring Essentials" border="0" class="remove" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Flive%252Fresource%252Fimg%252F20w0812%252Fd-20w0812-em-mvm-hero-spring-essentials.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMpp:a_QD19FfN38IiJGWeZ0SgPEHSV4u2YGYAg4bugBjF_Y" 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="Spring Essentials" border="0" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Flive%252Fresource%252Fimg%252F20w0812%252Fm-20w0812-em-mvm-hero-spring-essentials.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMpp:a_QD19FfN38IiJGWeZ0SgPEHSV4u2YGYAg4bugBjF_Y"/>
       </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:#727274;" width="696">
   <tbody>
    <tr>
     <td height="5" style="font-size:0px; mso-line-height-rule:exactly;line-height:0px">
     </td>
    </tr>
    <tr>
     <td align="center" style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px;line-height:16px;" valign="top">
      <a style="color:#ffffff; text-decoration: none;" target="_blank">
       Limit 10 Each | Valid 4/15/20 - 5/10/20 |
       <strong>
        Shop Now
       </strong>
      </a>
     </td>
    </tr>
    <tr>
     <td height="10" style="font-size:0px; mso-line-height-rule:exactly;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">
      <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%252F20w0813-april-2020-app-us%252F350-april-mvm-firstalert.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMpp:a_QD19FfN38IiJGWeZ0SgPEHSV4u2YGYAg4bugBjF_Y" 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:15px; color: #da1735; padding-bottom: 4px; font-weight: bold;">
                  Warehouse-Only
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:14px; line-height:16px; color:#333333">
                  First Alert® Fire Safety 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">
                  $10 - $20 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">
                  LIMIT 10. Additional selection available online.
                 </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%2526itemId%253D1316389-847%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMpp:CDn5uyrGYtwgF5jShbTwuT98WH8zyvHn8wy8b3YeI8k" 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">
                  Kohler Cater Stainless Steel Sink with Accessories
                 </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 $100 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">
                  LIMIT 5
                 </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%253D100494013-847__1%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMpp:CDn5uyrGYtwgF5jShbTwuT98WH8zyvHn8wy8b3YeI8k" 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">
                  Ring Video Doorbell 2 with 1-Year Protect Plus
                 </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 $70 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">
                  LIMIT 2
                 </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%2526itemId%253D1600244-847%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMpp:CDn5uyrGYtwgF5jShbTwuT98WH8zyvHn8wy8b3YeI8k" 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">
                  Husqvarna 3100 PSI Gas Pressure Washer
                 </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">
                  $269.99 Delivered
                  <br/>
                  After $80 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">
                  LIMIT 10
                 </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%2526itemId%253D2881975-847%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMpp:CDn5uyrGYtwgF5jShbTwuT98WH8zyvHn8wy8b3YeI8k" 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•Elite™ C Coffee Maker
                 </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 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">
                  LIMIT 5
                 </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%252F20w0813-april-2020-app-us%252F350-april-mvm-ks-kcup.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMpp:a_QD19FfN38IiJGWeZ0SgPEHSV4u2YGYAg4bugBjF_Y" 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 Organic &amp; Recyclable K-Cup Pods, 120 ct
                 </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">
                  $5 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">
                  LIMIT 5
                 </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%252F20w0811-april-mvm%252Fus200415-b2c20w0811-starbucks.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMpp:a_QD19FfN38IiJGWeZ0SgPEHSV4u2YGYAg4bugBjF_Y" 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">
                  Starbucks® Medium Roast Pike Place® AND/OR French Roast K-Cup® Pods
                 </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">
                  $7 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">
                  LIMIT 5
                 </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%253D100485356-847_red_1%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMpp:CDn5uyrGYtwgF5jShbTwuT98WH8zyvHn8wy8b3YeI8k" 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">
                  KitchenAid® 6-quart Professional Series Bowl-Lift Stand Mixer
                 </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">
                  $249.99 After $80 OFF
                  <br/>
                  Free Shipping
                 </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">
                  LIMIT 5
                 </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%2526itemId%253D100510293-847%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMpp:CDn5uyrGYtwgF5jShbTwuT98WH8zyvHn8wy8b3YeI8k" 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">
                  Vitamix® Explorian Series 320 Blender with Personal Cups and Adapter
                 </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">
                  $299.99 Delivered
                  <br/>
                  After $100 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">
                  LIMIT 5
                 </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%2526itemId%253D3871951-847%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMpp:CDn5uyrGYtwgF5jShbTwuT98WH8zyvHn8wy8b3YeI8k" 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">
                  Oster® Digital Stainless Steel Countertop 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">
                  $79.99 Delivered
                  <br/>
                  After $20 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">
                  LIMIT 5
                 </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%252F20w0813-april-2020-app-us%252F350-april-mvm-1103106.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMpp:a_QD19FfN38IiJGWeZ0SgPEHSV4u2YGYAg4bugBjF_Y" 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">
                  Snapware 18-piece Pyrex Glass Food Storage 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 Delivered
                  <br/>
                  After $5 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">
                  LIMIT 5
                 </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%252F20w0813-april-2020-app-us%252F350-april-mvm-novaform.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMpp:a_QD19FfN38IiJGWeZ0SgPEHSV4u2YGYAg4bugBjF_Y" 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">
                  Novaform® 14" ComfortGrande™ Gel Memory Foam Mattress Featuring EVENcor GelPlus™
                 </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">
                  $100 - $120 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">
                  LIMIT 10
                 </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:#9ad7c6;" width="696">
   <tbody>
    <tr>
     <td height="20" style="font-size:0px; mso-line-height-rule:exactly;line-height:0px">
     </td>
    </tr>
    <tr>
     <td align="center" style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 36px; line-height:40px; letter-spacing: 1;" valign="top">
      <a style="color:#444444; text-decoration: none;" target="_blank">
       Receive a
       <br class="showHidden mobile-hero" style="display:none; width:0px; max-width:100%; max-height:0px; overflow:hidden; mso-hide:all"/>
       Costco Shop Card worth
      </a>
     </td>
    </tr>
    <tr>
     <td height="5" style="font-size:0px; mso-line-height-rule:exactly;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:#9ad7c6; background: linear-gradient(to bottom, #9ad7c6, #6cb5a3)" width="696">
   <tbody>
    <tr>
     <td align="center">
      <a target="_blank">
       <img alt="15% of your purchase when you buy a qualifying Lennox home comfort system." border="0" class="remove" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Flive%252Fresource%252Fimg%252F20w0812%252Fd-20w0812-em-mvm-hero-lennox.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMpp:a_QD19FfN38IiJGWeZ0SgPEHSV4u2YGYAg4bugBjF_Y" 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="15% of your purchase when you buy a qualifying Lennox home comfort system." border="0" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Flive%252Fresource%252Fimg%252F20w0812%252Fm-20w0812-em-mvm-hero-lennox.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMpp:a_QD19FfN38IiJGWeZ0SgPEHSV4u2YGYAg4bugBjF_Y"/>
       </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:#6cb5a3;" width="696">
   <tbody>
    <tr>
     <td align="center" style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 23px;line-height:25px;" valign="top">
      <a style="color:#444444; text-decoration: none;" target="_blank">
       Call 1-877-483-6226 or
       <strong>
        SHOP NOW
       </strong>
      </a>
     </td>
    </tr>
    <tr>
     <td height="7" style="font-size:0px; mso-line-height-rule:exactly;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:#727274;" width="696">
   <tbody>
    <tr>
     <td height="5" style="font-size:0px; mso-line-height-rule:exactly;line-height:0px">
     </td>
    </tr>
    <tr>
     <td align="center" style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px;line-height:16px;" valign="top">
      <a style="color:#ffffff; text-decoration: none;" target="_blank">
       Valid 4/15/20 - 5/10/20
      </a>
     </td>
    </tr>
    <tr>
     <td height="10" style="font-size:0px; mso-line-height-rule:exactly;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">
      <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%2526itemId%253D1285702-847%2526recipeName%253D680/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMpp:CDn5uyrGYtwgF5jShbTwuT98WH8zyvHn8wy8b3YeI8k" 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">
                  Colgate Total SF Advanced Whitening Toothpaste 5/6.4 oz
                 </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">
                  $5.50 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">
                  LIMIT 2
                 </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%253D100402976-847__1%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMpp:CDn5uyrGYtwgF5jShbTwuT98WH8zyvHn8wy8b3YeI8k" 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">
                  Philips Sonicare DiamondClean Rechargeable Toothbrush, 2 pk
                 </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">
                  $90 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">
                  LIMIT 2
                 </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%252F20w0813-april-2020-app-us%252F350-april-mvm-1391040.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMpp:a_QD19FfN38IiJGWeZ0SgPEHSV4u2YGYAg4bugBjF_Y" 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">
                  Ricardo Beverly Hills 3-piece Hardside Luggage 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">
                  $159.99 Delivered
                  <br/>
                  After $40 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">
                  LIMIT 10
                 </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%2526itemId%253D833727-847%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMpp:CDn5uyrGYtwgF5jShbTwuT98WH8zyvHn8wy8b3YeI8k" 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">
                  SeroVital Dietary Supplement
                 </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:12px; line-height:12px; color:#666666">
                  40-Day supply, 160 ct
                 </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
                  <br/>
                  After $30 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">
                  LIMIT 5
                 </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%252F20w0813-april-2020-app-us%252F350-april-mvm-sonicare-heads.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMpp:a_QD19FfN38IiJGWeZ0SgPEHSV4u2YGYAg4bugBjF_Y" 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">
                  Philips Sonicare Replacement Brush Heads
                 </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:12px; line-height:12px; color:#666666">
                  Premium Plaque Control, DiamondClean 6 pk AND/OR e-Series 8 pk
                 </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 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">
                  LIMIT 2
                 </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%252F20w0813-april-2020-app-us%252F350-april-mvm-2952050.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMpp:a_QD19FfN38IiJGWeZ0SgPEHSV4u2YGYAg4bugBjF_Y" 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">
                  Philips Sonicare 7000 ExpertResults Rechargeable Toothbrush, 2 pk
                 </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 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">
                  LIMIT 2
                 </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%252F20w0813-april-2020-app-us%252F350-april-mvm-527640.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMpp:a_QD19FfN38IiJGWeZ0SgPEHSV4u2YGYAg4bugBjF_Y" 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">
                  ROC Retinol Correxion Day OR Night Cream
                 </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
                  <br/>
                  After $10 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">
                  LIMIT 3
                 </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%252F20w0813-april-2020-app-us%252F350-april-mvm-petarmor.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMpp:a_QD19FfN38IiJGWeZ0SgPEHSV4u2YGYAg4bugBjF_Y" 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">
                  PetArmor Max for Dogs AND/OR PetArmor Advanced 2 for Cats Flea Treatment for Pets
                 </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:12px; line-height:12px; color:#666666">
                  Multiple sizes available. 6 ct/6-month supply.
                 </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">
                  $7 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">
                  LIMIT 4 Each
                 </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%2526itemId%253D1144335-847%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMpp:CDn5uyrGYtwgF5jShbTwuT98WH8zyvHn8wy8b3YeI8k" 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">
                  Flonase Nasal Spray, 3/144 sprays
                 </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 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">
                  LIMIT 4
                 </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%2526itemId%253D1095721-847%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMpp:CDn5uyrGYtwgF5jShbTwuT98WH8zyvHn8wy8b3YeI8k" 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">
                  Flonase Sensimist Allergy Spray, 3/120 sprays
                 </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 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">
                  LIMIT 4
                 </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%2526itemId%253D955263-847%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMpp:CDn5uyrGYtwgF5jShbTwuT98WH8zyvHn8wy8b3YeI8k" 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">
                  Align Daily Probiotic Supplement, 84 ct
                 </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 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">
                  LIMIT 4
                 </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%2526itemId%253D1148964-847%2526recipeName%253D680/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMpp:CDn5uyrGYtwgF5jShbTwuT98WH8zyvHn8wy8b3YeI8k" 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">
                  Bausch + Lomb PreserVision AREDS 2, 210 ct
                 </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">
                  $7 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">
                  LIMIT 15
                 </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="Make Every Shower a Spa Day" border="0" class="remove" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Flive%252Fresource%252Fimg%252F20w0812%252Fd-20w0812-em-mvm-hero-spa-day.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMpp:a_QD19FfN38IiJGWeZ0SgPEHSV4u2YGYAg4bugBjF_Y" 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="Make Every Shower a Spa Day" border="0" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Flive%252Fresource%252Fimg%252F20w0812%252Fm-20w0812-em-mvm-hero-spa-day.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMpp:a_QD19FfN38IiJGWeZ0SgPEHSV4u2YGYAg4bugBjF_Y"/>
       </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:#727274;" width="696">
   <tbody>
    <tr>
     <td height="5" style="font-size:0px; mso-line-height-rule:exactly;line-height:0px">
     </td>
    </tr>
    <tr>
     <td align="center" style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px;line-height:16px;" valign="top">
      <a style="color:#ffffff; text-decoration: none;" target="_blank">
       Limit 2 Each | Valid 4/15/20 - 5/10/20 |
       <strong>
        Shop Now
       </strong>
      </a>
     </td>
    </tr>
    <tr>
     <td height="10" style="font-size:0px; mso-line-height-rule:exactly;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">
      <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%2526itemId%253D1209115-847%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMpp:CDn5uyrGYtwgF5jShbTwuT98WH8zyvHn8wy8b3YeI8k" 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">
                  Qunol Liquid Turmeric, 1,000 mg, 30.4 fl oz
                 </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">
                  $7 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">
                  LIMIT 15
                 </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%2526itemId%253D573854-847%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMpp:CDn5uyrGYtwgF5jShbTwuT98WH8zyvHn8wy8b3YeI8k" 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">
                  Qunol Mega CoQ10, 100 mg, 120 ct
                 </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">
                  $7 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">
                  LIMIT 15
                 </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%2526itemId%253D1105926-847%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMpp:CDn5uyrGYtwgF5jShbTwuT98WH8zyvHn8wy8b3YeI8k" 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">
                  Nature's Bounty Quick Dissolve Vitamin B-12, 300 ct
                 </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 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">
                  LIMIT 15
                 </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%2526itemId%253D1106007-847%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMpp:CDn5uyrGYtwgF5jShbTwuT98WH8zyvHn8wy8b3YeI8k" 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">
                  Nature's Bounty Vitamin D3 125 mcg (5000 IU), 400 ct
                 </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 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">
                  LIMIT 15
                 </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%2526itemId%253D553486-847%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMpp:CDn5uyrGYtwgF5jShbTwuT98WH8zyvHn8wy8b3YeI8k" 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">
                  Nature's Bounty Hair, Skin &amp; Nails Softgels, 250 ct
                 </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 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">
                  LIMIT 15
                 </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%2526itemId%253D40310-847%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMpp:CDn5uyrGYtwgF5jShbTwuT98WH8zyvHn8wy8b3YeI8k" 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">
                  Refresh Plus, 100 ct
                 </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.50 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">
                  LIMIT 5
                 </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%2526itemId%253D529110-847%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMpp:CDn5uyrGYtwgF5jShbTwuT98WH8zyvHn8wy8b3YeI8k" 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">
                  Refresh Tears, 4/15 mL + 5mL
                 </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.50 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">
                  LIMIT 5
                 </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%2526itemId%253D1316229-847%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMpp:CDn5uyrGYtwgF5jShbTwuT98WH8zyvHn8wy8b3YeI8k" 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">
                  Bausch + Lomb Biotrue Multi-Purpose Solution, 2/16 fl oz + 2 fl oz
                 </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.50 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">
                  LIMIT 5
                 </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%2526itemId%253D604198-847%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMpp:CDn5uyrGYtwgF5jShbTwuT98WH8zyvHn8wy8b3YeI8k" 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">
                  Citrucel Fiber Caplets, 240 ct
                 </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">
                  $5 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">
                  LIMIT 10
                 </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%2526itemId%253D945005-847%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMpp:CDn5uyrGYtwgF5jShbTwuT98WH8zyvHn8wy8b3YeI8k" 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">
                  Prilosec OTC Tablets, 3/14 ct
                 </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">
                  $5 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">
                  LIMIT 10
                 </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%2526itemId%253D851753-847%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMpp:CDn5uyrGYtwgF5jShbTwuT98WH8zyvHn8wy8b3YeI8k" 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">
                  Nexium 24HR, 3/14 ct
                 </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">
                  $5 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">
                  LIMIT 10
                 </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%2526itemId%253D681421-847%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMpp:CDn5uyrGYtwgF5jShbTwuT98WH8zyvHn8wy8b3YeI8k" 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">
                  Dulcolax Laxative, 200 ct
                 </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">
                  $5 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">
                  LIMIT 10
                 </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="Nearly 50 Years of Trusted Quality" border="0" class="remove" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Flive%252Fresource%252Fimg%252F20w0812%252Fd-20w0812-em-hero-pharmacist.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMpp:a_QD19FfN38IiJGWeZ0SgPEHSV4u2YGYAg4bugBjF_Y" 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="Nearly 50 Years of Trusted Quality" border="0" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Flive%252Fresource%252Fimg%252F20w0812%252Fm-20w0812-em-hero-pharmacist.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMpp:a_QD19FfN38IiJGWeZ0SgPEHSV4u2YGYAg4bugBjF_Y"/>
       </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:#727274;" width="696">
   <tbody>
    <tr>
     <td height="5" style="font-size:0px; mso-line-height-rule:exactly;line-height:0px">
     </td>
    </tr>
    <tr>
     <td align="center" style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 14px;line-height:16px;" valign="top">
      <a style="color:#ffffff; text-decoration: none;" target="_blank">
       Limit 15 Each | Valid 4/15/20 - 5/10/20 |
       <strong>
        Shop Now
       </strong>
      </a>
     </td>
    </tr>
    <tr>
     <td height="10" style="font-size:0px; mso-line-height-rule:exactly;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">
      <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%2526itemId%253D1320303-847%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMpp:CDn5uyrGYtwgF5jShbTwuT98WH8zyvHn8wy8b3YeI8k" 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">
                  Centrum Silver Men 50+, 275 ct
                 </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 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">
                  LIMIT 5
                 </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%2526itemId%253D1320304-847%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMpp:CDn5uyrGYtwgF5jShbTwuT98WH8zyvHn8wy8b3YeI8k" 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">
                  Centrum Women's 50+ Multivitamin, 275 ct
                 </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 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">
                  LIMIT 5
                 </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%2526itemId%253D989874-847%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMpp:CDn5uyrGYtwgF5jShbTwuT98WH8zyvHn8wy8b3YeI8k" 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">
                  Caltrate 600 mg + D3 Plus Minerals, 320 ct
                 </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 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">
                  LIMIT 5
                 </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%2526itemId%253D667287-847%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMpp:CDn5uyrGYtwgF5jShbTwuT98WH8zyvHn8wy8b3YeI8k" 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">
                  Aleve, 220 mg, 320 ct
                 </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 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">
                  LIMIT 5
                 </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%2526itemId%253D590598-847%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMpp:CDn5uyrGYtwgF5jShbTwuT98WH8zyvHn8wy8b3YeI8k" 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">
                  Nature Made SAM-e Complete, 400 mg, 60 ct
                 </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">
                  $8 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">
                  LIMIT 15
                 </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%2526itemId%253D864024-847%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMpp:CDn5uyrGYtwgF5jShbTwuT98WH8zyvHn8wy8b3YeI8k" 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">
                  Nature Made CoQ10, 200 mg, 140 ct
                 </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">
                  $8 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">
                  LIMIT 15
                 </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%2526itemId%253D1199830-847%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMpp:CDn5uyrGYtwgF5jShbTwuT98WH8zyvHn8wy8b3YeI8k" 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">
                  Nature Made Triple Flex Triple Strength, 200 ct
                 </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">
                  $8 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">
                  LIMIT 15
                 </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%2526itemId%253D810143-847%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMpp:CDn5uyrGYtwgF5jShbTwuT98WH8zyvHn8wy8b3YeI8k" 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">
                  Claritin Tablets, 10 mg, 45 ct + 60 ct
                 </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">
                  $8 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">
                  LIMIT 10
                 </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%253D100400532-847__1%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMpp:CDn5uyrGYtwgF5jShbTwuT98WH8zyvHn8wy8b3YeI8k" 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">
                  Zyrtec Tablets, 10 mg, 2/50 ct
                 </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">
                  $8 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">
                  LIMIT 10
                 </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%2526itemId%253D807862-847%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMpp:CDn5uyrGYtwgF5jShbTwuT98WH8zyvHn8wy8b3YeI8k" 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">
                  Nasacort 24-HR, 3/120 sprays
                 </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">
                  $8 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">
                  LIMIT 10
                 </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%253D594518-847__1%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMpp:CDn5uyrGYtwgF5jShbTwuT98WH8zyvHn8wy8b3YeI8k" 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">
                  Culturelle Digestive Daily Probiotic, 80 ct
                 </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">
                  $6 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">
                  LIMIT 15
                 </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%2526itemId%253D800715-847%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMpp:CDn5uyrGYtwgF5jShbTwuT98WH8zyvHn8wy8b3YeI8k" 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">
                  Culturelle Kids Chewables Probiotic, 60 ct
                 </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">
                  $6 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">
                  LIMIT 15
                 </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%2526itemId%253D1347914-847%2526recipeName%253D680/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMpp:CDn5uyrGYtwgF5jShbTwuT98WH8zyvHn8wy8b3YeI8k" 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">
                  Claritin Children's Chewable
                 </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:12px; line-height:12px; color:#666666">
                  72 ct
                 </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">
                  $6 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">
                  LIMIT 15
                 </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%2526itemId%253D1347960-847%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMpp:CDn5uyrGYtwgF5jShbTwuT98WH8zyvHn8wy8b3YeI8k" 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">
                  Claritin RediTabs, 10 mg, 70 ct
                 </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">
                  $6 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">
                  LIMIT 15
                 </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%2526itemId%253D1104639-847%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMpp:CDn5uyrGYtwgF5jShbTwuT98WH8zyvHn8wy8b3YeI8k" 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">
                  trunature Grape Seed and Resveratrol, 75 mg, 150 ct
                 </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 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">
                  LIMIT 15
                 </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%253D100463241-847__1%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMpp:CDn5uyrGYtwgF5jShbTwuT98WH8zyvHn8wy8b3YeI8k" 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">
                  trunature Cranberry, 650 mg, 140 ct
                 </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 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">
                  LIMIT 15
                 </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%2526itemId%253D1233864-847%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMpp:CDn5uyrGYtwgF5jShbTwuT98WH8zyvHn8wy8b3YeI8k" 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">
                  Nature Made Magnesium Citrate, 250 mg, 180 ct
                 </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 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">
                  LIMIT 15
                 </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%253D580664-847__1%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMpp:CDn5uyrGYtwgF5jShbTwuT98WH8zyvHn8wy8b3YeI8k" 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">
                  Nature Made Prenatal Multi + DHA, 150 ct
                 </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 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">
                  LIMIT 15
                 </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%252F20w0813-april-2020-app-us%252F350-april-mvm-estroven.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMpp:a_QD19FfN38IiJGWeZ0SgPEHSV4u2YGYAg4bugBjF_Y" 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">
                  Estroven Maximum Strength, 60 ct
                 </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">
                  $5 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">
                  LIMIT 15
                 </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%2526itemId%253D1199824-847%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMpp:CDn5uyrGYtwgF5jShbTwuT98WH8zyvHn8wy8b3YeI8k" 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">
                  Nature Made CholestOff Plus, 210 ct
                 </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">
                  $5 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">
                  LIMIT 15
                 </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%2526itemId%253D864070-847%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMpp:CDn5uyrGYtwgF5jShbTwuT98WH8zyvHn8wy8b3YeI8k" 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">
                  Nature Made Vitamin B-12, 1,000 mcg, 400 ct
                 </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">
                  $5 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">
                  LIMIT 15
                 </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%2526itemId%253D1017650-847%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMpp:CDn5uyrGYtwgF5jShbTwuT98WH8zyvHn8wy8b3YeI8k" 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 Triple Action Joint Health, 110 ct
                 </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">
                  $5 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">
                  LIMIT 15
                 </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%2526itemId%253D1241036-847%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMpp:CDn5uyrGYtwgF5jShbTwuT98WH8zyvHn8wy8b3YeI8k" 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">
                  Nature's Truth Apple Cider Vinegar Capsules, 1,200 mg, 180 ct
                 </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 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">
                  LIMIT 15
                 </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%2526itemId%253D853467-847%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMpp:CDn5uyrGYtwgF5jShbTwuT98WH8zyvHn8wy8b3YeI8k" 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">
                  One A Day Men's Multivitamin, 300 ct
                 </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 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">
                  LIMIT 15
                 </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%2526itemId%253D853472-847%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMpp:CDn5uyrGYtwgF5jShbTwuT98WH8zyvHn8wy8b3YeI8k" 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">
                  One A Day Women's Multivitamin, 300 ct
                 </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 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">
                  LIMIT 15
                 </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%2526itemId%253D677823-847%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMpp:CDn5uyrGYtwgF5jShbTwuT98WH8zyvHn8wy8b3YeI8k" 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">
                  SmartyPants Kids Formula Multivitamin, 180 ct
                 </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 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">
                  LIMIT 15
                 </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%253D370945-847__1%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMpp:CDn5uyrGYtwgF5jShbTwuT98WH8zyvHn8wy8b3YeI8k" 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">
                  Bausch + Lomb Ocuvite Adult 50+, 150 ct
                 </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">
                  $5 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">
                  LIMIT 15
                 </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%2526itemId%253D402146-847%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMpp:CDn5uyrGYtwgF5jShbTwuT98WH8zyvHn8wy8b3YeI8k" 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">
                  Nature's Way Joint Movement Glucosamine, 33.8 fl oz
                 </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">
                  $5 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">
                  LIMIT 15
                 </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%2526itemId%253D1129574-847%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMpp:CDn5uyrGYtwgF5jShbTwuT98WH8zyvHn8wy8b3YeI8k" 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">
                  SmartyPants Women's Formula, 240 ct
                 </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">
                  $5 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">
                  LIMIT 15
                 </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%2526itemId%253D572310-847%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMpp:CDn5uyrGYtwgF5jShbTwuT98WH8zyvHn8wy8b3YeI8k" 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">
                  Nature Made Vitamin D3, 25 mcg, 650 ct
                 </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">
                  $3 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">
                  LIMIT 15
                 </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%2526itemId%253D617550-847%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMpp:CDn5uyrGYtwgF5jShbTwuT98WH8zyvHn8wy8b3YeI8k" 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">
                  Nature Made Flaxseed Oil, 1,400 mg, 300 ct
                 </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">
                  $3 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">
                  LIMIT 15
                 </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%2526itemId%253D424976-847%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMpp:CDn5uyrGYtwgF5jShbTwuT98WH8zyvHn8wy8b3YeI8k" 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 Mature Multivitamin, 400 ct
                 </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">
                  $3 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">
                  LIMIT 15
                 </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%2526itemId%253D202918-847%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMpp:CDn5uyrGYtwgF5jShbTwuT98WH8zyvHn8wy8b3YeI8k" 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">
                  Green Tea Fat Burner, 200 ct
                 </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">
                  $3 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">
                  LIMIT 15
                 </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%2526itemId%253D502046-847%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMpp:CDn5uyrGYtwgF5jShbTwuT98WH8zyvHn8wy8b3YeI8k" 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">
                  Zyrtec Liquid Gels, 10 mg, 65 ct
                 </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">
                  $7 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">
                  LIMIT 5
                 </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%2526itemId%253D1089974-847%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMpp:CDn5uyrGYtwgF5jShbTwuT98WH8zyvHn8wy8b3YeI8k" 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">
                  Xyzal Allergy Tabs, 2/55 ct
                 </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">
                  $7 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">
                  LIMIT 5
                 </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="162">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                 </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">
                 </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>
            </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 bgcolor="#006cb6" height="10" style="font-size:0px; line-height:0px">
     </td>
    </tr>
    <tr>
     <td align="center" bgcolor="#006cb6" style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 25px; color:#ffffff;" valign="top">
      <strong>
       Online-Only
      </strong>
     </td>
    </tr>
    <tr>
     <td bgcolor="#006cb6" 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 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%253D1152014-847__1%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMpp:CDn5uyrGYtwgF5jShbTwuT98WH8zyvHn8wy8b3YeI8k" 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">
                  Aquaterra Spas Fairfax 80-Jet Spa
                 </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">
                  $4,999.99 Delivered
                  <br/>
                  After $1,500 OFF
                 </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: #666666">
                  LIMIT 5
                 </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%2526itemId%253D1373832-847%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMpp:CDn5uyrGYtwgF5jShbTwuT98WH8zyvHn8wy8b3YeI8k" 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">
                  HP 17.3" Touchscreen Laptop
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:12px; line-height:15px; color:#666666;">
                  <span style="color:#333333; text-decoration:none">
                   10th Generation Intel® Core™ i5 Processor.
                  </span>
                 </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">
                  $499.99 After $150 OFF
                  <br/>
                  Plus S&amp;H
                 </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: #666666">
                  LIMIT 2
                 </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%253D1277780-847__1%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMpp:CDn5uyrGYtwgF5jShbTwuT98WH8zyvHn8wy8b3YeI8k" 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">
                  Select Whirlpool &amp; Maytag Refrigerators
                 </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">
                  $150 - $600 OFF
                 </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: #666666">
                  LIMIT 5
                 </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%252F20w0813-april-2020-app-us%252F350-april-mvm-samsung.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMpp:a_QD19FfN38IiJGWeZ0SgPEHSV4u2YGYAg4bugBjF_Y" 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">
                  Select Samsung Large Capacity Front Load and Top Load Laundry Pairs
                 </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">
                  $480 - $700 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">
                  LIMIT 5
                 </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%2526itemId%253D1403965-847%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMpp:CDn5uyrGYtwgF5jShbTwuT98WH8zyvHn8wy8b3YeI8k" 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">
                  Lenovo S340 15.6" 1080p Touchscreen Laptop
                 </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:12px; line-height:12px; color:#666666">
                  10th Generation 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">
                  $599.99 After $100 OFF
                  <br/>
                  Plus S&amp;H
                 </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">
                  LIMIT 2
                 </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%253D1222659-847__1%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMpp:CDn5uyrGYtwgF5jShbTwuT98WH8zyvHn8wy8b3YeI8k" 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">
                  Allington 4-piece Leather Sectional
                 </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:12px; line-height:12px; color:#666666">
                  Available in Brown or Eggshell White.
                 </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">
                  $3,999.99 Delivered
                  <br/>
                  After $1,000 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">
                  LIMIT 10
                 </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%253D100018793-847__1%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMpp:CDn5uyrGYtwgF5jShbTwuT98WH8zyvHn8wy8b3YeI8k" 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">
                  Zipfizz Healthy Energy Drink Mix
                 </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:12px; line-height:12px; color:#666666">
                  30 Tubes, assorted flavors
                 </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.99 Delivered
                  <br/>
                  After $6 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">
                  LIMIT 15
                 </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="Backyard Savings. Online-Only. Valid 4/15/20 - 5/10/20. Shop All" border="0" class="remove" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Flive%252Fresource%252Fimg%252F20w0811-april-mvm%252Fd-us200415-b2c20w0811-backyard.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMpp:a_QD19FfN38IiJGWeZ0SgPEHSV4u2YGYAg4bugBjF_Y" 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="Backyard Savings. Online-Only. Valid 4/15/20 - 5/10/20. Shop All" border="0" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Flive%252Fresource%252Fimg%252F20w0811-april-mvm%252Fm-us200415-b2c20w0811-backyard.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMpp:a_QD19FfN38IiJGWeZ0SgPEHSV4u2YGYAg4bugBjF_Y"/>
       </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="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%252F20w0811-april-mvm%252Fus200415-b2c20w0811-b1.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMpp:a_QD19FfN38IiJGWeZ0SgPEHSV4u2YGYAg4bugBjF_Y" 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;">
                  12' x 16' Cedar Gazebo with Aluminum Roof
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:8px; line-height:8px; color:#666666;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 16px; line-height: 16px; color: #000000; font-weight: bold">
                  $2,199.99 Delivered
                  <br/>
                  After $500 OFF
                 </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:12px; line-height:12px; color:#666666">
                  LIMIT 5
                 </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%252F20w0811-april-mvm%252Fus200415-b2c20w0811-b2.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSJ9:1kXMpp:a_QD19FfN38IiJGWeZ0SgPEHSV4u2YGYAg4bugBjF_Y" 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;">
                  Casual 7-Piece Seating Set
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size:8px; line-height:8px; color:#666666;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 16px; line-height: 16px; color: #000000; font-weight: bold">
                  $2,399.99 Delivered
                  <br/>
                  After $500 OFF
                 </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:12px; line-height:12px; color:#666666">
                  LIMIT 5
                 </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%253D1353879-847__1%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMpp:CDn5uyrGYtwgF5jShbTwuT98WH8zyvHn8wy8b3YeI8k" 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">
                  Ridgepointe 8' x 12' Wood Storage Shed
                 </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
                  <br/>
                  After $500 OFF
                 </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: #666666">
                  LIMIT 5
                 </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%253D100470339-847__1%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMpp:CDn5uyrGYtwgF5jShbTwuT98WH8zyvHn8wy8b3YeI8k" 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">
                  Long Beach Folding Adirondack Chair
                 </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 Delivered
                  <br/>
                  After $50 OFF
                 </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: #666666">
                  LIMIT 5
                 </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%253D100568351-847_green_1%2526recipeName%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuY29zdCJ9:1kXMpp:CDn5uyrGYtwgF5jShbTwuT98WH8zyvHn8wy8b3YeI8k" 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">
                  Naples 7'10" x 10' Indoor/Outdoor Rug
                 </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">
                  $99.99 Delivered
                  <br/>
                  After $50 OFF
                 </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: #666666">
                  LIMIT 10
                 </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-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>
        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 4/14/2020. See Costco.com for the most current information.
       </p>
       <p>
        Most online instant coupons at
        <a style="text-decoration: underline;color:#069" target="_blank">
         costco.com
        </a>
        are manufacturer's coupons, which will automatically be applied at checkout. See specific item page for promotion valid dates. State sales tax may be due on the pre-discounted price of the item when purchased using an online coupon. These taxes, if any, are in addition to 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:1kXMpp:TiD5bujO8c3F9xhIU0TNWO6btvhgYP5R2-PJy0_fQWg" 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%253D147531%2526r%253D2%2526l%253D121%2526t%253D10%2526e%253D1969488BD4D878BE90329138EC8230164BAD797B5EF9BCDE/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZjbGljay5vbmxpbiJ9:1kXMpp:DeL_VZiR3BlI88OoD4JH3eoHUCp3sfzdAbt3EuYNPFo" width="1"/>
 <!--ENDTTAG-->
</html>