Inboxes

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

+New inbox

0123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "//www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="//www.w3.org/1999/xhtml" xmlns:o="urn:schemas-microsoft-com:office:office">
 <head>
  <meta content="text/html; charset=utf-8" http-equiv="Content-Type"/>
  <meta content="width=device-width, initial-scale=1.0" name="viewport"/>
  <meta name="x-apple-disable-message-reformatting"/>
  <meta content="Check out these great deals from World Market!" property="og:title"/>
  <meta content="World Market" property="og:description"/>
  <meta content="https://a248.e.akamai.net/f/248/112531/14d/ig.rsys5.net/responsysimages/content/costplus/logo.png" property="og:image"/>
  <meta content="IE=9;IE=8;IE=7;IE=edge" http-equiv="X-UA-Compatible"/>
  <!--[if gte mso 9]><xml>
<o:OfficeDocumentSettings>
  <o:AllowPNG/>
  <o:PixelsPerInch>96</o:PixelsPerInch>
</o:OfficeDocumentSettings>
</xml><![endif]-->
  <title>
   World Market
  </title>
  <!--[if gte mso 9]>
<meta name="supported-color-schemes" content="light dark">
<![endif]-->
  <!--[if !mso]><!-->
  <meta content="light" name="color-scheme"/>
  <meta content="light" name="supported-color-schemes"/>
  <!--<![endif]-->
  <!--[if !mso]><!-->
  <link href="https://use.typekit.net/cbt2azx.css" rel="stylesheet"/>
  <!--<![endif]-->
 </head>
 <body align="center" style="font-family:'sofia-pro',Helvetica,Arial,sans-serif;font-size:1px;line-height:1px;padding:0;background-color:#FFFFFF;" width="100%">
  <table cellpadding="0" cellspacing="0" style="border: 0px; padding: 0px; margin: 0px; position: absolute; display: none; float: left">
   <tr>
    <td height="1" style="font-size: 1px; line-height: 1px; padding: 0px;">
     <img src="https://inboxflows.com/_/image/https%253A%252F%252Femailworldmarket.com%252Fpub%252Fas%253F_ri_%253DX0Gzc2X%253DAQjkPkSUUQGXsthrHDsfzgCzcrzdERvHL1Wdpwb6uPeWE7zgFil9zc4sa1zcJzeWUGTsVXHkMX%253Dw%2526_ei_%253DEMpcBUXVURZx7pzVKI2zOFlDaohBYMHZ0ZmDrBZ21SnaPsvpIpfKls_7NkGIzBnCdU4LxsrtzF5P7B7PnROzNjQGp0OaOyX9OyEVhv-AYEHlfuyG4LxPME2FXBaE2rmntu0iZ-AODqhr./?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHdvcmxkbSIsInRpbWUiOjE3NDQyOTE5NTQuMjU3ODA1M30:1u2s1C:eGTDvYjySiHmh7hahoFqiNg1XnWALvLWb2Y1sAdqIlQ"/>
    </td>
   </tr>
  </table>
  <style type="text/css">
   @font-face {
  font-family:"sofia-pro";
  src:url("https://inboxflows.com/_/image/https%253A%252F%252Fuse.typekit.net%252Faf%252F773a22%252F00000000000000007735f996%252F30%252Fl%253Fprimer%253D7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191%2526fvd%253Dn9%2526v%253D3/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZ1c2UudHlwZWtpdCIsInRpbWUiOjE3NDQyOTE5NTQuMjEzMDEyNX0:1u2s1C:wTGAmy-13b0mk1QjGDYr8uOR0G3WyxRMuZXpEavFBnk") format("woff2"),url("https://inboxflows.com/_/image/https%253A%252F%252Fuse.typekit.net%252Faf%252F773a22%252F00000000000000007735f996%252F30%252Fd%253Fprimer%253D7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191%2526fvd%253Dn9%2526v%253D3/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZ1c2UudHlwZWtpdCIsInRpbWUiOjE3NDQyOTE5NTQuMjE0MDM4MX0:1u2s1C:-Ra5VAolgIFXPGajgHbkgr89ifSBdUtP1BQN_kS0t98") format("woff"),url("https://inboxflows.com/_/image/https%253A%252F%252Fuse.typekit.net%252Faf%252F773a22%252F00000000000000007735f996%252F30%252Fa%253Fprimer%253D7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191%2526fvd%253Dn9%2526v%253D3/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZ1c2UudHlwZWtpdCIsInRpbWUiOjE3NDQyOTE5NTQuMjE0MzQ1Mn0:1u2s1C:KIFaKM9SzVTKmQzq4A35P2xvVcSJG_UHGaaWASaz_u8") format("opentype");
  font-display:auto;font-style:normal;font-weight:900;font-stretch:normal;
  mso-generic-font-family: swiss;
      mso-font-alt: 'Arial';
      
  }

  @font-face {
  font-family:"sofia-pro";
  src:url("https://inboxflows.com/_/image/https%253A%252F%252Fuse.typekit.net%252Faf%252F2cf3cc%252F00000000000000007735f991%252F30%252Fl%253Fprimer%253D7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191%2526fvd%253Di9%2526v%253D3/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZ1c2UudHlwZWtpdCIsInRpbWUiOjE3NDQyOTE5NTQuMjE0NjI2M30:1u2s1C:mgF5ccDDY_en2GCQypfj1iEvianN91BPycWEshFKig0") format("woff2"),url("https://inboxflows.com/_/image/https%253A%252F%252Fuse.typekit.net%252Faf%252F2cf3cc%252F00000000000000007735f991%252F30%252Fd%253Fprimer%253D7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191%2526fvd%253Di9%2526v%253D3/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZ1c2UudHlwZWtpdCIsInRpbWUiOjE3NDQyOTE5NTQuMjE0OTI1M30:1u2s1C:4PxJJJEiG2cn4eR5iJ3N8VDAfe12AIo2ht5fo6iyRbA") format("woff"),url("https://inboxflows.com/_/image/https%253A%252F%252Fuse.typekit.net%252Faf%252F2cf3cc%252F00000000000000007735f991%252F30%252Fa%253Fprimer%253D7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191%2526fvd%253Di9%2526v%253D3/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZ1c2UudHlwZWtpdCIsInRpbWUiOjE3NDQyOTE5NTQuMjE1MjkxNX0:1u2s1C:uGodh2cn_VUEaA3lxSendDdcOBF44lr7DFOhzfvFhx4") format("opentype");
  font-display:auto;font-style:italic;font-weight:900;font-stretch:normal;
  mso-generic-font-family: swiss;
      mso-font-alt: 'Arial';
  }

  @font-face {
  font-family:"sofia-pro";
  src:url("https://inboxflows.com/_/image/https%253A%252F%252Fuse.typekit.net%252Faf%252F5d97ff%252F00000000000000007735f999%252F30%252Fl%253Fprimer%253D7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191%2526fvd%253Dn8%2526v%253D3/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZ1c2UudHlwZWtpdCIsInRpbWUiOjE3NDQyOTE5NTQuMjE1NTY2fQ:1u2s1C:hscC6USc6dTvWTu_Oz4_fEZFMF38gHmRDAXyzmnDTgk") format("woff2"),url("https://inboxflows.com/_/image/https%253A%252F%252Fuse.typekit.net%252Faf%252F5d97ff%252F00000000000000007735f999%252F30%252Fd%253Fprimer%253D7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191%2526fvd%253Dn8%2526v%253D3/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZ1c2UudHlwZWtpdCIsInRpbWUiOjE3NDQyOTE5NTQuMjE1ODk0Mn0:1u2s1C:XJfhqOM9YDC0ZjbYrXZQxKizWWhsrdzIRa3ewsnnDNM") format("woff"),url("https://inboxflows.com/_/image/https%253A%252F%252Fuse.typekit.net%252Faf%252F5d97ff%252F00000000000000007735f999%252F30%252Fa%253Fprimer%253D7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191%2526fvd%253Dn8%2526v%253D3/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZ1c2UudHlwZWtpdCIsInRpbWUiOjE3NDQyOTE5NTQuMjE2MjUwMn0:1u2s1C:AQCKDHionFrAiB-8RfwzvWQ2hTJuxwat_4Vr161fQ3c") format("opentype");
  font-display:auto;font-style:normal;font-weight:800;font-stretch:normal;
  mso-generic-font-family: swiss;
      mso-font-alt: 'Arial';
  }

  @font-face {
  font-family:"sofia-pro";
  src:url("https://inboxflows.com/_/image/https%253A%252F%252Fuse.typekit.net%252Faf%252F66e20c%252F00000000000000007735f993%252F30%252Fl%253Fprimer%253D7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191%2526fvd%253Di8%2526v%253D3/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZ1c2UudHlwZWtpdCIsInRpbWUiOjE3NDQyOTE5NTQuMjE2NTAyN30:1u2s1C:2tvU-hXwKJUZOorERKwAURVO0HF-thzkngk3UVzaRZs") format("woff2"),url("https://inboxflows.com/_/image/https%253A%252F%252Fuse.typekit.net%252Faf%252F66e20c%252F00000000000000007735f993%252F30%252Fd%253Fprimer%253D7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191%2526fvd%253Di8%2526v%253D3/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZ1c2UudHlwZWtpdCIsInRpbWUiOjE3NDQyOTE5NTQuMjE2NzkyfQ:1u2s1C:-53EF6C_PYk-ivnsD8HNDr-F3LnM69mpWGrH514dzdE") format("woff"),url("https://inboxflows.com/_/image/https%253A%252F%252Fuse.typekit.net%252Faf%252F66e20c%252F00000000000000007735f993%252F30%252Fa%253Fprimer%253D7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191%2526fvd%253Di8%2526v%253D3/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZ1c2UudHlwZWtpdCIsInRpbWUiOjE3NDQyOTE5NTQuMjE3MDQ2NX0:1u2s1C:WRGXIxRw0OjcCIeKDSuH9M050pvtFFWAKuoPV1LEdXU") format("opentype");
  font-display:auto;font-style:italic;font-weight:800;font-stretch:normal;
  mso-generic-font-family: swiss;
      mso-font-alt: 'Arial';
  }

  @font-face {
  font-family:"sofia-pro";
  src:url("https://inboxflows.com/_/image/https%253A%252F%252Fuse.typekit.net%252Faf%252Fbb213c%252F00000000000000007735f995%252F30%252Fl%253Fprimer%253D7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191%2526fvd%253Dn2%2526v%253D3/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZ1c2UudHlwZWtpdCIsInRpbWUiOjE3NDQyOTE5NTQuMjE3MjkxOH0:1u2s1C:RrR9CoKq4-pcnMZeABZZ6aUHLNq__F_zhylelhGhBfo") format("woff2"),url("https://inboxflows.com/_/image/https%253A%252F%252Fuse.typekit.net%252Faf%252Fbb213c%252F00000000000000007735f995%252F30%252Fd%253Fprimer%253D7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191%2526fvd%253Dn2%2526v%253D3/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZ1c2UudHlwZWtpdCIsInRpbWUiOjE3NDQyOTE5NTQuMjE3NTU1M30:1u2s1C:XPdWcLPWFmTtTeUXirOlSLCsR4WUyd7ShBWekVJtlGk") format("woff"),url("https://inboxflows.com/_/image/https%253A%252F%252Fuse.typekit.net%252Faf%252Fbb213c%252F00000000000000007735f995%252F30%252Fa%253Fprimer%253D7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191%2526fvd%253Dn2%2526v%253D3/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZ1c2UudHlwZWtpdCIsInRpbWUiOjE3NDQyOTE5NTQuMjE3ODE1OX0:1u2s1C:nLnrx6B9023uIscGt0qgd5qVhLLyn0dXA1DnbiLrCXU") format("opentype");
  font-display:auto;font-style:normal;font-weight:200;font-stretch:normal;
  mso-generic-font-family: swiss;
      mso-font-alt: 'Arial';
  }

  @font-face {
  font-family:"sofia-pro";
  src:url("https://inboxflows.com/_/image/https%253A%252F%252Fuse.typekit.net%252Faf%252Fceaf1c%252F00000000000000007735f98f%252F30%252Fl%253Fprimer%253D7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191%2526fvd%253Di2%2526v%253D3/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZ1c2UudHlwZWtpdCIsInRpbWUiOjE3NDQyOTE5NTQuMjE4MDcxNX0:1u2s1C:PdgBkED5b4phHuMKqh84wVJxolXG6cQhU9M5yR8mcnA") format("woff2"),url("https://inboxflows.com/_/image/https%253A%252F%252Fuse.typekit.net%252Faf%252Fceaf1c%252F00000000000000007735f98f%252F30%252Fd%253Fprimer%253D7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191%2526fvd%253Di2%2526v%253D3/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZ1c2UudHlwZWtpdCIsInRpbWUiOjE3NDQyOTE5NTQuMjE4MzcyM30:1u2s1C:KTD2RmXBNpTBKDPvE5HUGFmNkx9W4omYfoxaSxcnUJM") format("woff"),url("https://inboxflows.com/_/image/https%253A%252F%252Fuse.typekit.net%252Faf%252Fceaf1c%252F00000000000000007735f98f%252F30%252Fa%253Fprimer%253D7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191%2526fvd%253Di2%2526v%253D3/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZ1c2UudHlwZWtpdCIsInRpbWUiOjE3NDQyOTE5NTQuMjE4NjgwNn0:1u2s1C:eZUXsyOvz0yow3vXiJQ5MHOUWclcQ5ml_KXCPIAgmkw") format("opentype");
  font-display:auto;font-style:italic;font-weight:200;font-stretch:normal;
  mso-generic-font-family: swiss;
      mso-font-alt: 'Arial';
  }

  @font-face {
  font-family:"sofia-pro";
  src:url("https://inboxflows.com/_/image/https%253A%252F%252Fuse.typekit.net%252Faf%252F2e2409%252F00000000000000007735f990%252F30%252Fl%253Fprimer%253D7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191%2526fvd%253Dn3%2526v%253D3/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZ1c2UudHlwZWtpdCIsInRpbWUiOjE3NDQyOTE5NTQuMjE4OTI5OH0:1u2s1C:q2Ba7waDuEAYcD_nB13CCWL_bQwPmIo4rDQ74vvMTyU") format("woff2"),url("https://inboxflows.com/_/image/https%253A%252F%252Fuse.typekit.net%252Faf%252F2e2409%252F00000000000000007735f990%252F30%252Fd%253Fprimer%253D7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191%2526fvd%253Dn3%2526v%253D3/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZ1c2UudHlwZWtpdCIsInRpbWUiOjE3NDQyOTE5NTQuMjE5MjU4OH0:1u2s1C:MebA0SIFMpWxehmChIP_rSX0lFMHHWZ6HVZ8YVoTx7s") format("woff"),url("https://inboxflows.com/_/image/https%253A%252F%252Fuse.typekit.net%252Faf%252F2e2409%252F00000000000000007735f990%252F30%252Fa%253Fprimer%253D7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191%2526fvd%253Dn3%2526v%253D3/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZ1c2UudHlwZWtpdCIsInRpbWUiOjE3NDQyOTE5NTQuMjE5NTMxOH0:1u2s1C:H7XB7hKVmvSw4OTvlTfRcdkvbjF0gE4wlxPhx-QiK1U") format("opentype");
  font-display:auto;font-style:normal;font-weight:300;font-stretch:normal;
  mso-generic-font-family: swiss;
      mso-font-alt: 'Arial';
  }

  @font-face {
  font-family:"sofia-pro";
  src:url("https://inboxflows.com/_/image/https%253A%252F%252Fuse.typekit.net%252Faf%252F0ab956%252F00000000000000007735f998%252F30%252Fl%253Fprimer%253D7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191%2526fvd%253Di3%2526v%253D3/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZ1c2UudHlwZWtpdCIsInRpbWUiOjE3NDQyOTE5NTQuMjE5OTMzN30:1u2s1C:c3epDXSkHty8I4RqGagnshjzVN0rSPxXdBSvhFiXk_k") format("woff2"),url("https://inboxflows.com/_/image/https%253A%252F%252Fuse.typekit.net%252Faf%252F0ab956%252F00000000000000007735f998%252F30%252Fd%253Fprimer%253D7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191%2526fvd%253Di3%2526v%253D3/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZ1c2UudHlwZWtpdCIsInRpbWUiOjE3NDQyOTE5NTQuMjIwMjYyfQ:1u2s1C:42H5VqNs_hx_Q7JBt_3WLVP9t-PCRgFdzFq3CDkyPWg") format("woff"),url("https://inboxflows.com/_/image/https%253A%252F%252Fuse.typekit.net%252Faf%252F0ab956%252F00000000000000007735f998%252F30%252Fa%253Fprimer%253D7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191%2526fvd%253Di3%2526v%253D3/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZ1c2UudHlwZWtpdCIsInRpbWUiOjE3NDQyOTE5NTQuMjIwNDk4OH0:1u2s1C:vb7baKDrS9jLxxAxjyHoNkdQA9ENIKi7quwlqKn25-c") format("opentype");
  font-display:auto;font-style:italic;font-weight:300;font-stretch:normal;
  mso-generic-font-family: swiss;
      mso-font-alt: 'Arial';
  }

  @font-face {
  font-family:"sofia-pro";
  src:url("https://inboxflows.com/_/image/https%253A%252F%252Fuse.typekit.net%252Faf%252F19ced7%252F00000000000000007735f992%252F30%252Fl%253Fprimer%253D7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191%2526fvd%253Dn5%2526v%253D3/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZ1c2UudHlwZWtpdCIsInRpbWUiOjE3NDQyOTE5NTQuMjIwNzgxfQ:1u2s1C:Chn2OqH9G4_kYyrJ28cD5Vqff-pg6-El2PjZcYpEb9Y") format("woff2"),url("https://inboxflows.com/_/image/https%253A%252F%252Fuse.typekit.net%252Faf%252F19ced7%252F00000000000000007735f992%252F30%252Fd%253Fprimer%253D7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191%2526fvd%253Dn5%2526v%253D3/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZ1c2UudHlwZWtpdCIsInRpbWUiOjE3NDQyOTE5NTQuMjIxMDYzNn0:1u2s1C:XQbjtdxss-sAUSDe897MWVg3ddUBLTHuOwswnwlcLoI") format("woff"),url("https://inboxflows.com/_/image/https%253A%252F%252Fuse.typekit.net%252Faf%252F19ced7%252F00000000000000007735f992%252F30%252Fa%253Fprimer%253D7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191%2526fvd%253Dn5%2526v%253D3/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZ1c2UudHlwZWtpdCIsInRpbWUiOjE3NDQyOTE5NTQuMjIxMzQwN30:1u2s1C:IaGkk-OeKnh4P_MCV2femJ-EUnHcoLC7lR5S3K8r_TM") format("opentype");
  font-display:auto;font-style:normal;font-weight:500;font-stretch:normal;
  mso-generic-font-family: swiss;
      mso-font-alt: 'Arial';
  }

  @font-face {
  font-family:"sofia-pro";
  src:url("https://inboxflows.com/_/image/https%253A%252F%252Fuse.typekit.net%252Faf%252F33e8a4%252F00000000000000007735f99b%252F30%252Fl%253Fprimer%253D7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191%2526fvd%253Di5%2526v%253D3/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZ1c2UudHlwZWtpdCIsInRpbWUiOjE3NDQyOTE5NTQuMjIxNTY3fQ:1u2s1C:59NvRKvG9Ij-8_gVtqQtjtZmRaAhXtomDafC7R9mOso") format("woff2"),url("https://inboxflows.com/_/image/https%253A%252F%252Fuse.typekit.net%252Faf%252F33e8a4%252F00000000000000007735f99b%252F30%252Fd%253Fprimer%253D7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191%2526fvd%253Di5%2526v%253D3/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZ1c2UudHlwZWtpdCIsInRpbWUiOjE3NDQyOTE5NTQuMjIxNzgxM30:1u2s1C:QVobP-i0X9guTZumUd93WidSgi82NZvO-2-YbgLfA3M") format("woff"),url("https://inboxflows.com/_/image/https%253A%252F%252Fuse.typekit.net%252Faf%252F33e8a4%252F00000000000000007735f99b%252F30%252Fa%253Fprimer%253D7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191%2526fvd%253Di5%2526v%253D3/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZ1c2UudHlwZWtpdCIsInRpbWUiOjE3NDQyOTE5NTQuMjIyNDQ0NX0:1u2s1C:8urpS_csMxQogAgN1_3UvLGkrq-07ThMWwmzuUPz_Ec") format("opentype");
  font-display:auto;font-style:italic;font-weight:500;font-stretch:normal;
  mso-generic-font-family: swiss;
      mso-font-alt: 'Arial';
  }

  @font-face {
  font-family:"sofia-pro";
  src:url("https://inboxflows.com/_/image/https%253A%252F%252Fuse.typekit.net%252Faf%252Fb718ff%252F00000000000000007735f98d%252F30%252Fl%253Fprimer%253D7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191%2526fvd%253Dn4%2526v%253D3/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZ1c2UudHlwZWtpdCIsInRpbWUiOjE3NDQyOTE5NTQuMjIyNzc0fQ:1u2s1C:otrr5oq1AnmKICz1RF7HejxyjkMtRjpak5iJLqvBFLo") format("woff2"),url("https://inboxflows.com/_/image/https%253A%252F%252Fuse.typekit.net%252Faf%252Fb718ff%252F00000000000000007735f98d%252F30%252Fd%253Fprimer%253D7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191%2526fvd%253Dn4%2526v%253D3/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZ1c2UudHlwZWtpdCIsInRpbWUiOjE3NDQyOTE5NTQuMjIzMjI1Nn0:1u2s1C:2HEFgYK8Zn4htEV8wgmj-tQcI2AwBhWwi6FDapJCEJg") format("woff"),url("https://inboxflows.com/_/image/https%253A%252F%252Fuse.typekit.net%252Faf%252Fb718ff%252F00000000000000007735f98d%252F30%252Fa%253Fprimer%253D7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191%2526fvd%253Dn4%2526v%253D3/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZ1c2UudHlwZWtpdCIsInRpbWUiOjE3NDQyOTE5NTQuMjIzNTM1M30:1u2s1C:KmBi5OlJukKVe5v6T2hqBhMKJO8WYzz9sfsBm8RDfug") format("opentype");
  font-display:auto;font-style:normal;font-weight:400;font-stretch:normal;
  mso-generic-font-family: swiss;
      mso-font-alt: 'Arial';
  }

  @font-face {
  font-family:"sofia-pro";
  src:url("https://inboxflows.com/_/image/https%253A%252F%252Fuse.typekit.net%252Faf%252Fc09857%252F00000000000000007735f98c%252F30%252Fl%253Fprimer%253D7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191%2526fvd%253Di4%2526v%253D3/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZ1c2UudHlwZWtpdCIsInRpbWUiOjE3NDQyOTE5NTQuMjIzODE0N30:1u2s1C:W1g1vvinVzze07LxFnb12KvBUc-11N_xpVhDPFVEx-E") format("woff2"),url("https://inboxflows.com/_/image/https%253A%252F%252Fuse.typekit.net%252Faf%252Fc09857%252F00000000000000007735f98c%252F30%252Fd%253Fprimer%253D7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191%2526fvd%253Di4%2526v%253D3/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZ1c2UudHlwZWtpdCIsInRpbWUiOjE3NDQyOTE5NTQuMjI0MDc0Nn0:1u2s1C:7hNpPW3pkXV0I1HAGDwEY_elGXbd5vWsXwJDFG7dyFU") format("woff"),url("https://inboxflows.com/_/image/https%253A%252F%252Fuse.typekit.net%252Faf%252Fc09857%252F00000000000000007735f98c%252F30%252Fa%253Fprimer%253D7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191%2526fvd%253Di4%2526v%253D3/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZ1c2UudHlwZWtpdCIsInRpbWUiOjE3NDQyOTE5NTQuMjI0MzMwNH0:1u2s1C:ElksNw_s08_sm1d3ox2X_FumIgf9vCzbcvQgL9Iyep4") format("opentype");
  font-display:auto;font-style:italic;font-weight:400;font-stretch:normal;
  mso-generic-font-family: swiss;
      mso-font-alt: 'Arial';
  }

  @font-face {
  font-family:"sofia-pro";
  src:url("https://inboxflows.com/_/image/https%253A%252F%252Fuse.typekit.net%252Faf%252F262452%252F00000000000000007735f99a%252F30%252Fl%253Fprimer%253D7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191%2526fvd%253Dn7%2526v%253D3/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZ1c2UudHlwZWtpdCIsInRpbWUiOjE3NDQyOTE5NTQuMjI0NTMxMn0:1u2s1C:hiE0eVNxNSTfOBkTtrnam_jjqSikeskVAKf3hznblTU") format("woff2"),url("https://inboxflows.com/_/image/https%253A%252F%252Fuse.typekit.net%252Faf%252F262452%252F00000000000000007735f99a%252F30%252Fd%253Fprimer%253D7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191%2526fvd%253Dn7%2526v%253D3/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZ1c2UudHlwZWtpdCIsInRpbWUiOjE3NDQyOTE5NTQuMjI0ODE5N30:1u2s1C:iMHuQDwGnI28W_rT73OrcdyWWmRqCpVMKKfILlqssLg") format("woff"),url("https://inboxflows.com/_/image/https%253A%252F%252Fuse.typekit.net%252Faf%252F262452%252F00000000000000007735f99a%252F30%252Fa%253Fprimer%253D7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191%2526fvd%253Dn7%2526v%253D3/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZ1c2UudHlwZWtpdCIsInRpbWUiOjE3NDQyOTE5NTQuMjI1MDI0N30:1u2s1C:PLYjPfsoYf6B3YxhMImyqshsyqi2WoLl5oEoEVKVa6A") format("opentype");
  font-display:auto;font-style:normal;font-weight:700;font-stretch:normal;
  mso-generic-font-family: swiss;
      mso-font-alt: 'Arial';
  }

  @font-face {
  font-family:"sofia-pro";
  src:url("https://inboxflows.com/_/image/https%253A%252F%252Fuse.typekit.net%252Faf%252F2dec1e%252F00000000000000007735f997%252F30%252Fl%253Fprimer%253D7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191%2526fvd%253Dn1%2526v%253D3/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZ1c2UudHlwZWtpdCIsInRpbWUiOjE3NDQyOTE5NTQuMjI1MTkxOH0:1u2s1C:C_528ncC_ZPOAYArxfoJ3VnWmMHPX89ymmcVnjMFiik") format("woff2"),url("https://inboxflows.com/_/image/https%253A%252F%252Fuse.typekit.net%252Faf%252F2dec1e%252F00000000000000007735f997%252F30%252Fd%253Fprimer%253D7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191%2526fvd%253Dn1%2526v%253D3/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZ1c2UudHlwZWtpdCIsInRpbWUiOjE3NDQyOTE5NTQuMjI1MzU5fQ:1u2s1C:6jnryKtgFdoYgDc0yBjIdxTUXEO6ItC2nT3sW99L6f0") format("woff"),url("https://inboxflows.com/_/image/https%253A%252F%252Fuse.typekit.net%252Faf%252F2dec1e%252F00000000000000007735f997%252F30%252Fa%253Fprimer%253D7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191%2526fvd%253Dn1%2526v%253D3/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZ1c2UudHlwZWtpdCIsInRpbWUiOjE3NDQyOTE5NTQuMjI1NTY3Nn0:1u2s1C:GSvE8ZVnsqAfIXvpKMoGRuPblYf8NRkHtoajx3Z4x2Q") format("opentype");
  font-display:auto;font-style:normal;font-weight:100;font-stretch:normal;
  mso-generic-font-family: swiss;
      mso-font-alt: 'Arial';
  }

  @font-face {
  font-family:"sofia-pro";
  src:url("https://inboxflows.com/_/image/https%253A%252F%252Fuse.typekit.net%252Faf%252Fed1bc0%252F00000000000000007735f98e%252F30%252Fl%253Fprimer%253D7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191%2526fvd%253Di1%2526v%253D3/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZ1c2UudHlwZWtpdCIsInRpbWUiOjE3NDQyOTE5NTQuMjI1ODA3NH0:1u2s1C:DB_l_Pc8aQ5H9q3O3SDy7xP6AGgE6i5j5eoGFGVn4wg") format("woff2"),url("https://inboxflows.com/_/image/https%253A%252F%252Fuse.typekit.net%252Faf%252Fed1bc0%252F00000000000000007735f98e%252F30%252Fd%253Fprimer%253D7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191%2526fvd%253Di1%2526v%253D3/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZ1c2UudHlwZWtpdCIsInRpbWUiOjE3NDQyOTE5NTQuMjI2MDI4N30:1u2s1C:5R63SNWX-Lpuuj-WKsfw2dV6X_F9DFFILQIXj_sabro") format("woff"),url("https://inboxflows.com/_/image/https%253A%252F%252Fuse.typekit.net%252Faf%252Fed1bc0%252F00000000000000007735f98e%252F30%252Fa%253Fprimer%253D7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191%2526fvd%253Di1%2526v%253D3/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZ1c2UudHlwZWtpdCIsInRpbWUiOjE3NDQyOTE5NTQuMjI2MjA0OX0:1u2s1C:s2e5ivt69iD5shSANNEqiDuDtXJ_iyVBr7Q56Bq_WiE") format("opentype");
  font-display:auto;font-style:italic;font-weight:100;font-stretch:normal;
  mso-generic-font-family: swiss;
      mso-font-alt: 'Arial';
  }

  @font-face {
  font-family:"sofia-pro";
  src:url("https://inboxflows.com/_/image/https%253A%252F%252Fuse.typekit.net%252Faf%252F36f509%252F00000000000000007735f994%252F30%252Fl%253Fprimer%253D7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191%2526fvd%253Di7%2526v%253D3/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZ1c2UudHlwZWtpdCIsInRpbWUiOjE3NDQyOTE5NTQuMjI2NDg1fQ:1u2s1C:tdxWKZmzDWVBB44XX-cJxXEY3S9AgvaZd3Dr25nVWCQ") format("woff2"),url("https://inboxflows.com/_/image/https%253A%252F%252Fuse.typekit.net%252Faf%252F36f509%252F00000000000000007735f994%252F30%252Fd%253Fprimer%253D7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191%2526fvd%253Di7%2526v%253D3/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZ1c2UudHlwZWtpdCIsInRpbWUiOjE3NDQyOTE5NTQuMjI2NzYwMX0:1u2s1C:862vbrgKpw7Ma9u7zSvGBGkCq0-vjbbdQEW-YNWDwzw") format("woff"),url("https://inboxflows.com/_/image/https%253A%252F%252Fuse.typekit.net%252Faf%252F36f509%252F00000000000000007735f994%252F30%252Fa%253Fprimer%253D7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191%2526fvd%253Di7%2526v%253D3/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZ1c2UudHlwZWtpdCIsInRpbWUiOjE3NDQyOTE5NTQuMjI3MDMyN30:1u2s1C:XNBtf7X__Iygwg3wXrAdlKlbaRc0W9d8zDzDqAi4C84") format("opentype");
  font-display:auto;font-style:italic;font-weight:700;font-stretch:normal;
  mso-generic-font-family: swiss;
      mso-font-alt: 'Arial';
  }

  @font-face {
  font-family:"questa-grande";
  src:url("https://inboxflows.com/_/image/https%253A%252F%252Fuse.typekit.net%252Faf%252Fdd68ef%252F00000000000000007735af3a%252F30%252Fl%253Fprimer%253D7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191%2526fvd%253Dn3%2526v%253D3/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZ1c2UudHlwZWtpdCIsInRpbWUiOjE3NDQyOTE5NTQuMjI3MjYyfQ:1u2s1C:hRFuKHPTSIa96vLhUq938nnEgdejWYuONd_y9PllpU0") format("woff2"),url("https://inboxflows.com/_/image/https%253A%252F%252Fuse.typekit.net%252Faf%252Fdd68ef%252F00000000000000007735af3a%252F30%252Fd%253Fprimer%253D7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191%2526fvd%253Dn3%2526v%253D3/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZ1c2UudHlwZWtpdCIsInRpbWUiOjE3NDQyOTE5NTQuMjI3NDc2Nn0:1u2s1C:YcrZOnbiuzT3uWcImy6iZYdAzcVjKCkJNnrOBaNum7E") format("woff"),url("https://inboxflows.com/_/image/https%253A%252F%252Fuse.typekit.net%252Faf%252Fdd68ef%252F00000000000000007735af3a%252F30%252Fa%253Fprimer%253D7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191%2526fvd%253Dn3%2526v%253D3/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZ1c2UudHlwZWtpdCIsInRpbWUiOjE3NDQyOTE5NTQuMjI3Njc1fQ:1u2s1C:_i4zi-RK6X_1PBWm6-usNuY86gwfyouhM0udl1X3gV4") format("opentype");
  font-display:auto;font-style:normal;font-weight:300;font-stretch:normal;
  mso-generic-font-family: roman;
      mso-font-alt: times-new-roman;
  }

  @font-face {
  font-family:"questa-grande";
  src:url("https://inboxflows.com/_/image/https%253A%252F%252Fuse.typekit.net%252Faf%252F25168f%252F00000000000000007735af3e%252F30%252Fl%253Fprimer%253D7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191%2526fvd%253Di3%2526v%253D3/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZ1c2UudHlwZWtpdCIsInRpbWUiOjE3NDQyOTE5NTQuMjI3ODY4fQ:1u2s1C:ehZE6379He2pA8xYAK7pM5XUwQJCeVLjz96hMAQX8FY") format("woff2"),url("https://inboxflows.com/_/image/https%253A%252F%252Fuse.typekit.net%252Faf%252F25168f%252F00000000000000007735af3e%252F30%252Fd%253Fprimer%253D7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191%2526fvd%253Di3%2526v%253D3/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZ1c2UudHlwZWtpdCIsInRpbWUiOjE3NDQyOTE5NTQuMjI4MTIyNX0:1u2s1C:bYbLxMJHRrc4CyQQxwpXEGGtzDoE1D8fRkq6JVUvOgA") format("woff"),url("https://inboxflows.com/_/image/https%253A%252F%252Fuse.typekit.net%252Faf%252F25168f%252F00000000000000007735af3e%252F30%252Fa%253Fprimer%253D7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191%2526fvd%253Di3%2526v%253D3/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZ1c2UudHlwZWtpdCIsInRpbWUiOjE3NDQyOTE5NTQuMjI4NDAwN30:1u2s1C:ImX3kepYQxWe7rKW0IjCMt62xBo6ssndmi-fPcaLzio") format("opentype");
  font-display:auto;font-style:italic;font-weight:300;font-stretch:normal;
  mso-generic-font-family: roman;
      mso-font-alt: times-new-roman;
  }

  @font-face {
  font-family:"questa-grande";
  src:url("https://inboxflows.com/_/image/https%253A%252F%252Fuse.typekit.net%252Faf%252Fd6720c%252F00000000000000007735af41%252F30%252Fl%253Fprimer%253D7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191%2526fvd%253Di4%2526v%253D3/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZ1c2UudHlwZWtpdCIsInRpbWUiOjE3NDQyOTE5NTQuMjI4NTk0fQ:1u2s1C:1rdv18nQ3nnF5k_il_H3WbhQZemAjyxCG1UwX8af-BE") format("woff2"),url("https://inboxflows.com/_/image/https%253A%252F%252Fuse.typekit.net%252Faf%252Fd6720c%252F00000000000000007735af41%252F30%252Fd%253Fprimer%253D7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191%2526fvd%253Di4%2526v%253D3/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZ1c2UudHlwZWtpdCIsInRpbWUiOjE3NDQyOTE5NTQuMjI4ODMxNX0:1u2s1C:HEH2igpd0aRABJ-N9pJGahidfHu75LcsBTJRPi7_d-8") format("woff"),url("https://inboxflows.com/_/image/https%253A%252F%252Fuse.typekit.net%252Faf%252Fd6720c%252F00000000000000007735af41%252F30%252Fa%253Fprimer%253D7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191%2526fvd%253Di4%2526v%253D3/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZ1c2UudHlwZWtpdCIsInRpbWUiOjE3NDQyOTE5NTQuMjI5MDE5Nn0:1u2s1C:-o-87ryg7xC421Eivtpheh-6aCWO__OZDhfUgdOirBM") format("opentype");
  font-display:auto;font-style:italic;font-weight:400;font-stretch:normal;
  mso-generic-font-family: roman;
      mso-font-alt: times-new-roman;
  }

  @font-face {
  font-family:"questa-grande";
  src:url("https://inboxflows.com/_/image/https%253A%252F%252Fuse.typekit.net%252Faf%252F0b23d1%252F00000000000000007735af42%252F30%252Fl%253Fprimer%253D7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191%2526fvd%253Dn4%2526v%253D3/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZ1c2UudHlwZWtpdCIsInRpbWUiOjE3NDQyOTE5NTQuMjI5MTk0Mn0:1u2s1C:SD0u1bErzj9LwcuhTe4gdEB-GFJ-X6PcO_mF_A0kc54") format("woff2"),url("https://inboxflows.com/_/image/https%253A%252F%252Fuse.typekit.net%252Faf%252F0b23d1%252F00000000000000007735af42%252F30%252Fd%253Fprimer%253D7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191%2526fvd%253Dn4%2526v%253D3/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZ1c2UudHlwZWtpdCIsInRpbWUiOjE3NDQyOTE5NTQuMjI5MzkzfQ:1u2s1C:EJevHgcPGxt0NfZ5ZMDU2WcJcD7bmIAAU1ECQaeCCCA") format("woff"),url("https://inboxflows.com/_/image/https%253A%252F%252Fuse.typekit.net%252Faf%252F0b23d1%252F00000000000000007735af42%252F30%252Fa%253Fprimer%253D7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191%2526fvd%253Dn4%2526v%253D3/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZ1c2UudHlwZWtpdCIsInRpbWUiOjE3NDQyOTE5NTQuMjI5NTg2OH0:1u2s1C:SOlVZBOuO_fxbjM3OmI7tq2-FDeARrBrEFwXZoubqr8") format("opentype");
  font-display:auto;font-style:normal;font-weight:400;font-stretch:normal;
  mso-generic-font-family: roman;
      mso-font-alt: times-new-roman;
  }

  @font-face {
  font-family:"questa-grande";
  src:url("https://inboxflows.com/_/image/https%253A%252F%252Fuse.typekit.net%252Faf%252F675235%252F00000000000000007735af44%252F30%252Fl%253Fprimer%253D7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191%2526fvd%253Dn5%2526v%253D3/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZ1c2UudHlwZWtpdCIsInRpbWUiOjE3NDQyOTE5NTQuMjI5ODAyfQ:1u2s1C:qYronjAvqc38N82nX_mrhiX_X9X6EreckwXwJCVHrOo") format("woff2"),url("https://inboxflows.com/_/image/https%253A%252F%252Fuse.typekit.net%252Faf%252F675235%252F00000000000000007735af44%252F30%252Fd%253Fprimer%253D7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191%2526fvd%253Dn5%2526v%253D3/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZ1c2UudHlwZWtpdCIsInRpbWUiOjE3NDQyOTE5NTQuMjMwMDExN30:1u2s1C:xpBCOSRmp2GhmQJ61uBlQMFVP4xzUIEc2JgkhWgAMkc") format("woff"),url("https://inboxflows.com/_/image/https%253A%252F%252Fuse.typekit.net%252Faf%252F675235%252F00000000000000007735af44%252F30%252Fa%253Fprimer%253D7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191%2526fvd%253Dn5%2526v%253D3/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZ1c2UudHlwZWtpdCIsInRpbWUiOjE3NDQyOTE5NTQuMjMwMjI0OH0:1u2s1C:zoqbbV4CCe5BiXopkPnbiHklDrHS2CW-sBkY6O4JtrM") format("opentype");
  font-display:auto;font-style:normal;font-weight:500;font-stretch:normal;
  mso-generic-font-family: roman;
      mso-font-alt: times-new-roman;
  }

  @font-face {
  font-family:"questa-grande";
  src:url("https://inboxflows.com/_/image/https%253A%252F%252Fuse.typekit.net%252Faf%252F9d4595%252F00000000000000007735af45%252F30%252Fl%253Fprimer%253D7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191%2526fvd%253Di5%2526v%253D3/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZ1c2UudHlwZWtpdCIsInRpbWUiOjE3NDQyOTE5NTQuMjMwNDE0NH0:1u2s1C:AnLFV3FjTsDSJlYj3eOgHHR30nTH_-Aq6CPNDlJJSKc") format("woff2"),url("https://inboxflows.com/_/image/https%253A%252F%252Fuse.typekit.net%252Faf%252F9d4595%252F00000000000000007735af45%252F30%252Fd%253Fprimer%253D7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191%2526fvd%253Di5%2526v%253D3/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZ1c2UudHlwZWtpdCIsInRpbWUiOjE3NDQyOTE5NTQuMjMwNjM3OH0:1u2s1C:1o9-QT4RI16l6tbGACvWnBJtdYrU18QySuZkL1KYq74") format("woff"),url("https://inboxflows.com/_/image/https%253A%252F%252Fuse.typekit.net%252Faf%252F9d4595%252F00000000000000007735af45%252F30%252Fa%253Fprimer%253D7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191%2526fvd%253Di5%2526v%253D3/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZ1c2UudHlwZWtpdCIsInRpbWUiOjE3NDQyOTE5NTQuMjMwODk0fQ:1u2s1C:cscKTeQt_8Qx-r4ZlgZxlrlMyNojtuJ0T76rGmexa4s") format("opentype");
  font-display:auto;font-style:italic;font-weight:500;font-stretch:normal;
  mso-generic-font-family: roman;
      mso-font-alt: times-new-roman;
  }

  @font-face {
  font-family:"questa-grande";
  src:url("https://inboxflows.com/_/image/https%253A%252F%252Fuse.typekit.net%252Faf%252F4a69b1%252F00000000000000007735af46%252F30%252Fl%253Fprimer%253D7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191%2526fvd%253Dn7%2526v%253D3/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZ1c2UudHlwZWtpdCIsInRpbWUiOjE3NDQyOTE5NTQuMjMxMTUwNH0:1u2s1C:hqRmobU6E64qwZasfoABj14XF6LHblqYKnsArchtnlo") format("woff2"),url("https://inboxflows.com/_/image/https%253A%252F%252Fuse.typekit.net%252Faf%252F4a69b1%252F00000000000000007735af46%252F30%252Fd%253Fprimer%253D7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191%2526fvd%253Dn7%2526v%253D3/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZ1c2UudHlwZWtpdCIsInRpbWUiOjE3NDQyOTE5NTQuMjMxMzcxMn0:1u2s1C:Eo5BC4Vb-ym-tthQhBcHyYLphDt9MVUapGQ3rIEmU0g") format("woff"),url("https://inboxflows.com/_/image/https%253A%252F%252Fuse.typekit.net%252Faf%252F4a69b1%252F00000000000000007735af46%252F30%252Fa%253Fprimer%253D7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191%2526fvd%253Dn7%2526v%253D3/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZ1c2UudHlwZWtpdCIsInRpbWUiOjE3NDQyOTE5NTQuMjMxNTcyfQ:1u2s1C:W1dIosZI2gU4j1JYfOFfapvcnN_SRxPx9m3gmdkMcmo") format("opentype");
  font-display:auto;font-style:normal;font-weight:700;font-stretch:normal;
  mso-generic-font-family: roman;
      mso-font-alt: times-new-roman;
  }

  @font-face {
  font-family:"questa-grande";
  src:url("https://inboxflows.com/_/image/https%253A%252F%252Fuse.typekit.net%252Faf%252Fd33d64%252F00000000000000007735af47%252F30%252Fl%253Fprimer%253D7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191%2526fvd%253Di7%2526v%253D3/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZ1c2UudHlwZWtpdCIsInRpbWUiOjE3NDQyOTE5NTQuMjMxNzk3Mn0:1u2s1C:GFtpPPZoi_oANVr5IEWGib4ZLS0N1g_UwdOfRm-vC1Y") format("woff2"),url("https://inboxflows.com/_/image/https%253A%252F%252Fuse.typekit.net%252Faf%252Fd33d64%252F00000000000000007735af47%252F30%252Fd%253Fprimer%253D7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191%2526fvd%253Di7%2526v%253D3/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZ1c2UudHlwZWtpdCIsInRpbWUiOjE3NDQyOTE5NTQuMjMyMDEyNX0:1u2s1C:fGS9Jm6e7ZaAerijLZVB337HYfEjciGzTwS2a35KoNg") format("woff"),url("https://inboxflows.com/_/image/https%253A%252F%252Fuse.typekit.net%252Faf%252Fd33d64%252F00000000000000007735af47%252F30%252Fa%253Fprimer%253D7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191%2526fvd%253Di7%2526v%253D3/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZ1c2UudHlwZWtpdCIsInRpbWUiOjE3NDQyOTE5NTQuMjMyMzE3fQ:1u2s1C:X9k7fyL31-bRxAT-KeyLv3g63bZDBywmu9Wdq-BbdLc") format("opentype");
  font-display:auto;font-style:italic;font-weight:700;font-stretch:normal;
  mso-generic-font-family: roman;
      mso-font-alt: times-new-roman;
  }

  @font-face {
  font-family:"questa-grande";
  src:url("https://inboxflows.com/_/image/https%253A%252F%252Fuse.typekit.net%252Faf%252F3ceb34%252F00000000000000007735af48%252F30%252Fl%253Fprimer%253D7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191%2526fvd%253Di9%2526v%253D3/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZ1c2UudHlwZWtpdCIsInRpbWUiOjE3NDQyOTE5NTQuMjMyNTM5NH0:1u2s1C:PBMnfAUp9MtsI0LPCWYhXacgNHUWUfqqGu0tzaY0K-8") format("woff2"),url("https://inboxflows.com/_/image/https%253A%252F%252Fuse.typekit.net%252Faf%252F3ceb34%252F00000000000000007735af48%252F30%252Fd%253Fprimer%253D7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191%2526fvd%253Di9%2526v%253D3/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZ1c2UudHlwZWtpdCIsInRpbWUiOjE3NDQyOTE5NTQuMjMyNzc3OH0:1u2s1C:qc8wTnZNrAQLCPaK7EkS6I3LOQQTyu-RkFLTbWS-AKc") format("woff"),url("https://inboxflows.com/_/image/https%253A%252F%252Fuse.typekit.net%252Faf%252F3ceb34%252F00000000000000007735af48%252F30%252Fa%253Fprimer%253D7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191%2526fvd%253Di9%2526v%253D3/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZ1c2UudHlwZWtpdCIsInRpbWUiOjE3NDQyOTE5NTQuMjMyOTk2N30:1u2s1C:THkERgz_CixrHGDt8w6YnP0AF6DdmVnSNa8M2OvLPio") format("opentype");
  font-display:auto;font-style:italic;font-weight:900;font-stretch:normal;
  mso-generic-font-family: roman;
      mso-font-alt: times-new-roman;
  }

  @font-face {
  font-family:"questa-grande";
  src:url("https://inboxflows.com/_/image/https%253A%252F%252Fuse.typekit.net%252Faf%252Fe810c8%252F00000000000000007735af49%252F30%252Fl%253Fprimer%253D7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191%2526fvd%253Dn9%2526v%253D3/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZ1c2UudHlwZWtpdCIsInRpbWUiOjE3NDQyOTE5NTQuMjMzMjV9:1u2s1C:oQbYi3KkzjG5OeJPei9hLg5mO-J7J-W5a0Q_0UWWpFQ") format("woff2"),url("https://inboxflows.com/_/image/https%253A%252F%252Fuse.typekit.net%252Faf%252Fe810c8%252F00000000000000007735af49%252F30%252Fd%253Fprimer%253D7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191%2526fvd%253Dn9%2526v%253D3/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZ1c2UudHlwZWtpdCIsInRpbWUiOjE3NDQyOTE5NTQuMjMzNDU4OH0:1u2s1C:OSc-aEEj36lM-pmYfAUxY0cvIr7lMH8CINdGiV840EE") format("woff"),url("https://inboxflows.com/_/image/https%253A%252F%252Fuse.typekit.net%252Faf%252Fe810c8%252F00000000000000007735af49%252F30%252Fa%253Fprimer%253D7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191%2526fvd%253Dn9%2526v%253D3/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZ1c2UudHlwZWtpdCIsInRpbWUiOjE3NDQyOTE5NTQuMjMzNzIxM30:1u2s1C:zCD_MVH0Nqj_MiHfKBIkC222cjTMcnTuQD7iFn1ruDs") format("opentype");
  font-display:auto;font-style:normal;font-weight:900;font-stretch:normal;
  mso-generic-font-family: roman;
      mso-font-alt: times-new-roman;
  }


  .tk-sofia-pro { font-family: "sofia-pro",sans-serif; }
  .tk-questa-grande { font-family: "questa-grande",serif; }strong {font-weight:900 !important;}
p {
margin-block-start: 0px  !important;
margin-block-end: 0px  !important;
margin:0px !important;
/*background-color:red ;*/
/*border:red solid 3px !important;*/
padding:0px !important;

}
sup {
  font-size:inherit;
}
.dark-only {
  display:none  !important;
  visibility:hidden !important;
}

.light-only {
  display:block  !important;
  visibility:visible !important;
}

.dark-text {
  
}

.light-text {
  
}


.mobile-only {
  display:block  !important;
  visibility:visible !important;
/*  max-width:480px !important;*/
/*  min-width:480px !important;*/
/*  width:480px !important;*/
}
.desktop-only {
  display:none  !important;
  visibility:hidden !important;
/*    max-width:600px !important;*/
/*  min-width:600px !important;*/
/*  width:600px !important;*/
}
.full-width-mobile-only {
  display:block  !important;
  visibility:visible !important;
  max-width:480px !important;
  width:480px;
}
.full-width-desktop-only {
  display:none  !important;
  visibility:hidden !important;
  max-width:600px !important;
  width:600px;
}

.mo-show {
            display:none  !important;
            visibility:hidden !important;
            
        }
	.mo-bottom {
	    border-bottom:none !important;
	}
  
  
  
  /* 
    mobile / default
  */
  
  .f100 {font-size: 80px !important;}      
  .f96 {font-size: 77px !important;}      
  .f92 {font-size: 74px !important;}    
  .f88 {font-size: 70px !important;}    
  .f84 {font-size: 66px !important;}      
  .f80 {font-size: 62px !important;}      
  .f76 {font-size: 60px !important;}      
  .f72 {font-size: 58px !important;}    
  .f68 {font-size: 54px !important;}    
  .f64 {font-size: 52px !important;}    
  .f60 {font-size: 48px !important;}    
  .f58 {font-size: 46px !important;}
  .f56 {font-size: 44px !important;}
  .f54 {font-size: 43px !important;}
  .f52 {font-size: 42px !important;}
  .f50 {font-size: 40px !important;}
  .f48 {font-size: 38px !important;}
  .f46 {font-size: 37px !important;}
  .f44 {font-size: 35px !important;}
  .f42 {font-size: 34px !important;}
  .f40 {font-size: 32px !important;}
  .f38 {font-size: 30px !important;} 
  .f36 {font-size: 29px !important;} 
  .f34 {font-size: 27px !important;} 
  .f32 {font-size: 26px !important;} 
  .f30 {font-size: 24px !important;} 
  .f28 {font-size: 22px !important;} 
  .f26 {font-size: 21px !important;} 
  .f24 {font-size: 20px !important;} 
  .f22 {font-size: 18px !important;} 
  .f20 {font-size: 16px !important;} 
  .f18 {font-size: 15px !important;} 
  .f16 {font-size: 13px !important;} 
  .f15 {font-size: 12px !important;} 
  .f14 {font-size: 12px !important;} 
  .f13 {font-size: 11px !important;} 
  .f12 {font-size: 11px !important;} 
  
  
  
  .cta-btn-15 {
  font-size: 12px !important;
  padding: 8px 12pxm !important;
  }
  .off-round-box {
    width:360px;
  }

  		.mo-hide {
  		    display:none !important;
  		}
  		.mo-show {
  		    display:block  !important;
  		    visibility:visible !important;
          max-width:480px;
  		}
  		.no-bottom {
  		    border-bottom:none !important;
  		}
  		.mo-bottom {
  		    border-bottom:2px solid #ececec !important;
  		}
      .w600 {width:480px;min-width:480px;max-width:480px;}
      .w530 {width:424px;min-width:424px;max-width:424px;}
      .w520 {width:416px;min-width:416px;max-width:416px;}
      .w500 {width:400px;min-width:400px;max-width:400px;}
      .w480 {width:384px;min-width:384px;max-width:384px;} 
      .w460 {width:368px;min-width:368px;max-width:368px;} 
      .w450 {width:360px;min-width:360px;max-width:360px;} 
      .w400 {width:320px;min-width:320px;max-width:320px;} 
      .w350 {width:280px;min-width:280px;max-width:280px;} 
      .w340 {width:272px;min-width:272px;max-width:272px;} 
      .w325 {width:260px;min-width:260px;max-width:260px;} 
      .w320 {width:256px;min-width:256px;max-width:256px;} 
      .w300 {width:240px;min-width:240px;max-width:240px;} 
      //w300 = half-width 240
      //w280 = half-width-inner 225
      .w280 {width:224px;min-width:224px;max-width:224px;} 
      .w270 {width:216px;min-width:216px;max-width:216px;} 
      .w250 {width:200px;min-width:200px;max-width:200px;} 
      .w240 {width:192px;min-width:192px;max-width:192px;}
      .w220 {width:176px;min-width:176px;max-width:176px;}
      //w200 = third-width 160
      //w180 = third-width-inner 145
      //w150 = quarter-width 120
      .w200 {width:160px;min-width:160px;max-width:160px;}
      .w190 {width:152px;min-width:152px;max-width:152px;}
      .w180 {width:144px;min-width:144px;max-width:144px;}
      .w150 {width:120px;min-width:120px;max-width:120px;}
      .w110 {width:88px;min-width:88px;max-width:88px;} 
      .w100 {width:80px;min-width:80px;max-width:80px;} 
      .w80  {width:64px;min-width:64px;max-width:64px;} 
      .w60  {width:48px;min-width:48px;max-width:48px;} 
      .w50 {width:40px;min-width:40px;max-width:40px;} 
      .w40  {width:32px;min-width:32px;max-width:32px;} 
      .w30  {width:24px;min-width:24px;max-width:24px;} 
  
      
      
      
      
      
      .full-width {
        max-width:480px !important;
        min-width:480px !important;
        width:480px!important;
        background-size: 480px auto !important;
        
      }
      .full-width-bordered {
        max-width:478px !important;
        min-width:478px !important;
        width:478px!important;
        background-size: 478px auto !important;
        
      }
      .full-width-inner {
        max-width:460px !important;
        min-width:460px !important;
        width:460px!important;
        background-size: 460px auto !important;
        
      }
      .half-width {
        max-width:240px !important;
        width:240px;
      }
      .half-width-bordered-1 {
        max-width:239px !important;
        width:239px;
      }
      .half-width-bordered-2 {
        max-width:238px !important;
        width:238px;
      }
      .half-width-square {
        max-width:240px !important;
        width:240px;
        height:240px;
        min-height:240px;
        background-size:240px 240px !important;
      }
      .full-width-headline {
/*        max-width:360px !important;*/
        width:360px;
      }
      .full-width-subhead {
        max-width:230px !important;
        width:230px;
      }
      .rewards-block-half-width {
        max-width:240px !important;
        width:240px;
        font-size:15px;
        line-height:24px;
      }
      .half-width-inner {
        max-width:225px !important;
        min-width:225px !important;
        width:225px !important;
      }
      .half-width-inner-square {
        max-width:225px !important;
        min-width:225px !important;
        width:225px !important;
        height:225px;
        min-height:225px;
      }
      .third-width {
        max-width:160px !important;
        min-width:160px !important;
        width:160px;
      }
      .third-width-inner {
        max-width:145px !important;
        min-width:145px !important;
        width:145px;
      }
      .third-width-inner-square {
        max-width:145px !important;
        min-width:145px !important;
        width:145px;
        height:145px;
        min-height:145px;
      }
      .quarter-width {
        max-width:120px !important;
        width:120px !important;
      }
      
      
      
      #logoRowTbl {
        padding-bottom:0px;
      }
      p.description {
        padding-bottom:18px;
        padding-top:18px;
      }
      p.sbs-header {
        padding-top:12px;
        padding-bottom:12px;
      }
      p.hero-block-headline {
        padding-bottom:25px;
        padding-top:45px;
      }
      .omniture-header {
        font-size:27px !important;
        max-width:480px;
        font-family:questa-grande,Times,serif !important;
      }
      .secondary-box {
        padding-top: 60px;
        padding-bottom: 65px;
      }
      .full-width-secondary-box {
        padding-top: 60px;
        padding-bottom: 65px;
        max-width:480px !important;
        width:480px;
      }
      .free-gift-c1 {
        width:26px;
        min-width:26px;
        max-width:26px;
      }
      .free-gift-img {
        width:238px;
        min-width:238px;
        max-width:238px;
      }
      // .free-gift-left {
//         max-width:245px !important;
//         width:245px;
//       }
      .free-gift-right {
        max-width:216px !important;
        min-width:216px !important;
        width:216px;
      }
  /* 
    desktop 
  */
  @media screen and (min-width: 600px)  {
    .f100 {font-size: 100px !important;}      
    .f96 {font-size: 96px !important;}      
    .f92 {font-size: 92px !important;}    
    .f88 {font-size: 88px !important;}    
    .f84 {font-size: 84px !important;}      
    .f80 {font-size: 80px !important;}      
    .f76 {font-size: 76px !important;}      
    .f72 {font-size: 72px !important;}    
    .f68 {font-size: 68px !important;}    
    .f64 {font-size: 64px !important;}    
    .f60 {font-size: 60px !important;}    
    .f58 {font-size: 58px !important;}
    .f56 {font-size: 56px !important;}
    .f54 {font-size: 54px !important;}
    .f52 {font-size: 52px !important;}
    .f50 {font-size: 50px !important;}
    .f48 {font-size: 48px !important;}
    .f46 {font-size: 46px !important;}
    .f44 {font-size: 44px !important;}
    .f42 {font-size: 42px !important;}
    .f40 {font-size: 40px !important;}
    .f38 {font-size: 38px !important;} 
    .f36 {font-size: 36px !important;} 
    .f34 {font-size: 34px !important;} 
    .f32 {font-size: 32px !important;} 
    .f30 {font-size: 30px !important;} 
    .f28 {font-size: 28px !important;} 
    .f26 {font-size: 26px !important;} 
    .f24 {font-size: 24px !important;} 
    .f22 {font-size: 22px !important;} 
    .f20 {font-size: 20px !important;} 
    .f18 {font-size: 18px !important;} 
    .f16 {font-size: 16px !important;} 
    .f15 {font-size: 15px !important;} 
    .f14 {font-size: 14px !important;} 
    .f13 {font-size: 13px !important;} 
    .f12 {font-size: 12px !important;} 
  
 
    .mobile-only {
      display:none  !important;
      visibility:hidden !important;
      /*max-width:480px !important;
      min-width:480px !important;
      width:480px !important;*/
    }
    .desktop-only {
      display:block  !important;
      visibility:visible !important;
/*      max-width:600px !important;*/
/*      min-width:600px !important;*/
/*      width:600px !important;*/
    }
  .full-width-mobile-only {
    display:none  !important;
    visibility:hidden !important;
    max-width:480px !important;
    width:480px;
  }
  .full-width-desktop-only {
    display:block  !important;
    visibility:visible !important;
    max-width:600px !important;
    width:600px;
  }
  
  .cta-btn-15 {
  font-size: 15px !important;
  padding: 10px 15px !important;
  }
  
  .off-round-box {
    width:450px;
  }
  .w600 {width:600px;min-width:600px;max-width:600px;}
  .w530 {width:530px;min-width:530px;max-width:530px;}  
  .w520 {width:520px;min-width:520px;max-width:520px;}
  .w500 {width:500px;min-width:500px;max-width:500px;}
  .w480 {width:480px;min-width:480px;max-width:480px;} 
  .w460 {width:460px;min-width:460px;max-width:460px;} 
  .w450 {width:450px;min-width:450px;max-width:450px;} 
  .w400 {width:400px;min-width:400px;max-width:400px;} 
  .w350 {width:350px;min-width:350px;max-width:350px;} 
  .w340 {width:340px;min-width:340px;max-width:340px;} 
  .w325 {width:325px;min-width:325px;max-width:325px;} 
  .w320 {width:320px;min-width:320px;max-width:320px;} 
  .w300 {width:300px;min-width:300px;max-width:300px;} 
  //w300 = half-width
  //w280 = half-width-inner
  .w280 {width:280px;min-width:280px;max-width:280px;} 
  .w270 {width:270px;min-width:270px;max-width:270px;} 
  
  .w250 {width:250px;min-width:250px;max-width:250px;}
  .w240 {width:240px;min-width:240px;max-width:240px;}
  .w220 {width:220px;min-width:220px;max-width:220px;}
  .w200 {width:200px;min-width:200px;max-width:200px;}
  //w200 = third-width
  //w180 = third-width-inner
  //w150 = quarter-width
  .w190 {width:190px;min-width:190px;max-width:190px;}
  .w180 {width:180px;min-width:180px;max-width:180px;}
  .w150 {width:150px;min-width:150px;max-width:150px;}
  .w110 {width:110px;min-width:110px;max-width:110px;} 
  .w100 {width:100px;min-width:100px;max-width:100px;} 
  .w80 {width:80px;min-width:80px;max-width:80px;} 
  .w60 {width:60px;min-width:60px;max-width:60px;} 
  .w50 {width:50px;min-width:50px;max-width:50px;} 
  .w40 {width:40px;min-width:40px;max-width:40px;} 
  .w30 {width:30px;min-width:30px;max-width:30px;} 
  
  
  .full-width {
    max-width:600px !important;
    min-width:600px !important;
    width:600px !important;
    background-size: 600px auto !important;
  }
  .full-width-bordered {
    max-width:598px !important;
    min-width:598px !important;
    width:598px!important;
    background-size: 598px auto !important;
    
  }
  .full-width-inner {
    max-width:570px !important;
    min-width:570px !important;
    width:570px!important;
    background-size: 570px auto !important;
  }
  .half-width {
    max-width:300px !important;
    min-width:300px !important;
    width:300px !important;
  }
  
  .half-width-bordered-1 {
    max-width:299px !important;
    width:299px;
  }
  
  .half-width-bordered-2 {
    max-width:298px !important;
    width:298px;
  }
  
  .half-width-square {
    max-width:300px !important;
    min-width:300px !important;
    width:300px !important;
    height:300px !important;
    min-height:300px !important;
    max-height:300px !important;
    background-size:300px 300px !important;
  }
  
  .full-width-headline {
/*    max-width:500px !important;*/
/*    width:500px;*/
  }
  .full-width-subhead {
    max-width:300px !important;
    width:300px;
  }
  .rewards-block-half-width {
    max-width:300px !important;
    min-width:300px !important;
    width:300px !important;
    font-size:20px;
    line-height:30px;
  }
  .half-width-inner {
    max-width:280px !important;
    min-width:280px !important;
    width:280px !important;
    
  }
  .half-width-inner-square {
    max-width:280px !important;
    min-width:280px !important;
    width:280px !important;
    height:280px !important;
    min-height:280px !important;
    max-height:280px !important;
  }
  .third-width {
    max-width:200px !important;
    width:200px;
  }
  
  .third-width-inner {
    max-width:180px !important;
    min-width:180px !important;
    width:180px;
  }
  .third-width-inner-square {
    max-width:180px !important;
    min-width:180px !important;
    width:180px;
    height:180px;
    min-height:180px;
  }
  .quarter-width {
    max-width:150px !important;
    width:150px !important;
  }
  #logoRowTbl {
    padding-bottom:12px;
  }
  p.description {
    padding-bottom:15px;
    padding-top:15px;
  }
  p.sbs-header {
    padding-top:24px;
    padding-bottom:24px;
  }
  p.hero-block-headline {
    padding-bottom:12px;
    padding-top:25px;
  }
  .omniture-header {
    font-size:29px !important;
/*     padding-bottom:25px;*/
     max-width:600px;
     font-family:questa-grande,Times,serif !important;
     
  }
  /*p.headline {
    padding-bottom:15px;
    padding-top:15px;
  }*/
  .secondary-box {
    padding-top: 49px;
    padding-bottom: 45px;
  }
  .full-width-secondary-box {
    padding-top: 49px;
    padding-bottom: 45px;
    max-width:600px !important;
    width:600px;
  }
  .free-gift-c1 {
    width:33px;
    min-width:33px;
    max-width:33px;
  }
  .free-gift-img {
    width:297px;
    min-width:297px;
    max-width:297px;
  }
  // .free-gift-left {
//     max-width:325px !important;
//     width:325px;
//   }
  .free-gift-right {
    max-width:270px !important;
    min-width:270px !important;
    width:270px;
  }
}

	
			
/* Force hotmail/outlook.com to display at full width (outer div) */
	.ReadMsgBody { width:100%; }
	/* Force hotmail/outlook.com to display at full width (inner div) */				
	.ExternalClass { width:100%; } 
	.ExternalClass * { line-height: 100%; }
	/* Stop Wekbit and Windows Phone changing the font size */
	body { width:100% !important; -webkit-scale:100%; -ms-scale:100%; margin:0; padding:0; }  
	html { -webkit-scale:none; -ms-scale:none; -moz-scale:none;  }
	/* Outlook Background Image Fix */
	table th { margin:0 !important; padding:0 !important; vertical-align:top !important;}
	v\:* { behavior: url(https://inboxflows.com/_/image/%2523default%2523VML/?inbox_flows_img_sig=eyJwYXRoIjoiJTIzZGVmYXVsdCUyM1ZNTCIsInRpbWUiOjE3NDQyOTE5NTQuMjMzOTY4fQ:1u2s1C:-vNXdryut_U3t-AcW5-bORlNWrGvE7NvJ9vV2xSPjAs); display:block;}
   	@-ms-viewport { width: device-width; }
	/* iOS Links - Prevent color of certain content being changed (ie: dates/times) */
	.appleLinksWhite a, .appleLinksBlack a, .appleLinksGray a, .appleLinksPurple a, .appleLinksPink a { text-decoration:none !important; }
	.appleLinksWhite a { color:#ffffff !important; }
	.appleLinksBlack a { color:#000000 !important; }
	.appleLinksGray a { color:#a1a0a4 !important; }
	.appleLinksPurple a { color:#5c068c !important; }
	.appleLinksPink a { color:#c5299b !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;
	}


    /* What it does: A work-around for Gmail meddling in triggered links. */
    .x-gmail-data-detectors,
    .x-gmail-data-detectors *,
    .aBn {
        border-bottom: 0 !important;
        cursor: default !important;
    }
	
  a {
    color:inherit;
    text-decoration:none;
  }
  
a:hover {
	text-decoration:underline !important;
}
/*  a:not(.price):hover {
    color:#333 !important;
  }*/
/*  a.teal:hover {
    color:#3bb0bf !important;
  }*/
/*  a.white:hover {
    color:#ffffff !important;
  }*/
@media screen and (-webkit-min-device-pixel-ratio: 2) {
       #smslink-ios {
				 display:table-row !important;
       }     
			 #smslink-android {
			 	display:none !important;
			 }
      }   
			
#rewards-container a {
	color:inherit !important;
	text-decoration:none !important;
}		

pre {
	font-size:16px;
	line-height:18px;
}

/* handle SMS link */
#smslink-ios {
	content:'sms:95730?&body=MOBILE';
}

#smslink-android {
	content:'sms:95730?&body=MOBILE';
}
  </style>
  <!--[if (gte mso 9)]>
<style>
vml-p {margin:0;font-size:0;line-height:0;} 
v\:* {behavior:url(https://inboxflows.com/_/image/%2523default%2523VML/?inbox_flows_img_sig=eyJwYXRoIjoiJTIzZGVmYXVsdCUyM1ZNTCIsInRpbWUiOjE3NDQyOTE5NTQuMjMzOTY4fQ:1u2s1C:-vNXdryut_U3t-AcW5-bORlNWrGvE7NvJ9vV2xSPjAs);}
body, table, td {font-family: Arial, Helvetica, sans-serif;}
.lhfix{ mso-line-height-rule: exactly;}
.supFix{ mso-text-raise: 60%;}
</style>
<![endif]-->
  <!--[if gte mso 9]>
<style>@media (Prefers-color-scheme: dark) { 
  .light-only {
    display:none  !important;
    visibility:hidden !important;
  }

  .dark-only {
    display:block  !important;
    visibility:visible !important;
  }
  
  .dark-text {
    color:#ffffff;
    background-color:#000000;
  }

  .light-text {
   color:#262626;
   background-color:#ffffff;
  }
}
</style>
<![endif]-->
  <!--[if gte mso 9]>
<style>:root { supported-color-schemes: light dark; }</style>
<![endif]-->
  <!--
container
-->
  <table align="center" bgcolor="white" border="0" cellpadding="0" cellspacing="0" id="bodyfiller" width="100%">
   <tbody>
    <tr>
     <td align="center" bgcolor="white" width="100%">
      <table align="center" bgcolor="white" border="0" cellpadding="0" cellspacing="0" id="alignablecontainer" style="margin:0px 5px;">
       <tbody>
        <tr>
         <td align="center" bgcolor="white" class="full-width" width="480">
          <!--
/END PAGEOPEN
-->
          <!--
MODULE START SSL
-->
          <table align="center" border="0" cellpadding="0" cellspacing="0" class="full-width" id="sslRowTbl">
           <tbody>
            <tr>
             <td align="center" class="full-width" style="font-size:13px;line-height:18px;color:#666;font-family:'sofia-pro',Helvetica,Arial,sans-serif;">
              <div class="lhfix" style="line-height:25px;height:25px;min-height:25px;max-width:100%;overflow:hidden;display:block;">
              </div>
              <div class="full-width">
               <a style="font-size:13px;text-decoration:underline;line-height:18px;color:#666;font-family:'sofia-pro',Helvetica,Arial,sans-serif;">
                🌷 We’ve hatched some huge deals, and they’re going FAST.
               </a>
               <span style="display:none;font-size:1px;line-height:1px;max-height:0px;max-width:0px;opacity:0;overflow:hidden;mso-hide:all;font-family: sans-serif;">
                ­ ‌  ­ ‌  ­ ‌  ­ ‌  ­ ‌  ­ ‌  ­ ‌  ­ ‌  ­ ‌  ­ ‌ 
 ­ ‌  ­ ‌  ­ ‌  ­ ‌  ­ ‌  ­ ‌  ­ ‌  ­ ‌  ­ ‌  ­ ‌ 
 ­ ‌  ­ ‌  ­ ‌  ­ ‌  ­ ‌  ­ ‌  ­ ‌  ­ ‌  ­ ‌  ­ ‌ 
 ­ ‌  ­ ‌  ­ ‌  ­ ‌  ­ ‌  ­ ‌  ­ ‌  ­ ‌  ­ ‌  ­ ‌ 
 ­ ‌  ­ ‌  ­ ‌  ­ ‌  ­ ‌  ­ ‌  ­ ‌  ­ ‌  ­ ‌  ­ ‌ 
 ­ ‌  ­ ‌  ­ ‌  ­ ‌  ­ ‌  ­ ‌  ­ ‌  ­ ‌  ­ ‌  ­ ‌ 
 ­ ‌  ­ ‌  ­ ‌  ­ ‌  ­ ‌  ­ ‌  ­ ‌  ­ ‌  ­ ‌  ­ ‌ 
 ­ ‌  ­ ‌  ­ ‌  ­ ‌  ­ ‌  ­ ‌  ­ ‌  ­ ‌  ­ ‌  ­ ‌ 
 ­ ‌  ­ ‌  ­ ‌  ­ ‌  ­ ‌  ­ ‌  ­ ‌  ­ ‌  ­ ‌  ­ ‌ 
 ­ ‌  ­ ‌  ­ ‌  ­ ‌  ­ ‌  ­ ‌  ­ ‌  ­ ‌  ­ ‌  ­ ‌
               </span>
              </div>
              <div class="lhfix" style="line-height:0px;height:0px;min-height:0px;max-width:100%;overflow:hidden;display:block;">
              </div>
             </td>
            </tr>
           </tbody>
          </table>
          <!--
/MODULE END SSL
-->
          <!--
MODULE START LogoRow
-->
          <table align="center" border="0" cellpadding="0" cellspacing="0" class="full-width" id="logoRowTbl" style="color:#262626;background-color:#FFFFFF;font-size:16px;line-height:18px;">
           <tbody>
            <tr>
             <td style="min-height:25px;height:25px;line-height:25px;font-size:1px;overflow:hidden;">
              <div class="lhfix" style="line-height:25px;height:25px;min-height:25px;max-width:100%;overflow:hidden;display:block;">
              </div>
             </td>
            </tr>
            <tr>
             <td align="center" style="width:100%;line-height:0px;" width="100%">
              <a style="color:inherit !important;text-decoration:none !important;">
               <img alt=" WORLD MARKET" border="0" src="https://inboxflows.com/_/image/https%253A%252F%252Fd3591x4z0o61mp.cloudfront.net%252Fimages%252Ftpl%252FNewArch%252FHeader%252FLogoRow%252FWorldMarketREG.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZkMzU5MXg0ejBvNiIsInRpbWUiOjE3NDQyOTE5NTQuMjU4MTE3NH0:1u2s1C:Av2JPHpc6Kc1Qp3q6Muv2dIhHXOp_qZ9pT_uZeeqL88" style="display:block;border:0px;margin:0px;font-weight:900;font-size:30px;color:#b4292f;font-family:'questa-grande',times-new-roman,Times,serif;text-transform:uppercase;line-height:normal;" width="263"/>
              </a>
             </td>
            </tr>
           </tbody>
          </table>
          <!--
/MODULE END LogoRow
-->
          <!--
MODULE START TopNav
-->
          <table align="center" border="0" cellpadding="0" cellspacing="0" id="topNavRow">
           <tbody>
            <tr>
             <td>
              <a style="color:inherit !important;text-decoration:none !important;">
               <img alt=" Furniture" border="0" src="https://inboxflows.com/_/image/https%253A%252F%252Fd3591x4z0o61mp.cloudfront.net%252Fimages%252Ftpl%252FNewArch%252FHeader%252FTopNav%252FFurniture.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZkMzU5MXg0ejBvNiIsInRpbWUiOjE3NDQyOTE5NTQuMjU4MzQwMX0:1u2s1C:Rf7mZd-SjV8S1wK72hOkzyfEyxYLxhZN7BlyDNlt-Ek" style="display:block;border:0px;margin:0px;font-weight:bold;font-size:16px;color:#262626;line-height:normal;" width="107"/>
              </a>
             </td>
             <td>
              <a style="color:inherit !important;text-decoration:none !important;">
               <img alt=" Decor" border="0" src="https://inboxflows.com/_/image/https%253A%252F%252Fd3591x4z0o61mp.cloudfront.net%252Fimages%252Ftpl%252FNewArch%252FHeader%252FTopNav%252FDecor.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZkMzU5MXg0ejBvNiIsInRpbWUiOjE3NDQyOTE5NTQuMjU4NTMwNn0:1u2s1C:3WHAjVmLJIrgAmAW12O6sDrzbV2GOorz-uy7KK3ft-I" style="display:block;border:0px;margin:0px;font-weight:bold;font-size:16px;color:#262626;line-height:normal;" width="79"/>
              </a>
             </td>
             <td>
              <a style="color:inherit !important;text-decoration:none !important;">
               <img alt=" Food" border="0" src="https://inboxflows.com/_/image/https%253A%252F%252Fd3591x4z0o61mp.cloudfront.net%252Fimages%252Ftpl%252FNewArch%252FHeader%252FTopNav%252FFood.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZkMzU5MXg0ejBvNiIsInRpbWUiOjE3NDQyOTE5NTQuMjU4NzE0NH0:1u2s1C:gIfkihmwzUzG39BdCO442ZOKM_zkzKCDv9TtmH8e3VQ" style="display:block;border:0px;margin:0px;font-weight:bold;font-size:16px;color:#262626;line-height:normal;" width="70"/>
              </a>
             </td>
             <td>
              <a style="color:inherit !important;text-decoration:none !important;">
               <img alt=" Gifts" border="0" src="https://inboxflows.com/_/image/https%253A%252F%252Fd3591x4z0o61mp.cloudfront.net%252Fimages%252Ftpl%252FNewArch%252FHeader%252FTopNav%252FGifts.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZkMzU5MXg0ejBvNiIsInRpbWUiOjE3NDQyOTE5NTQuMjU4ODkzNX0:1u2s1C:0SUSMQXuGriCwWShecVrrEXlWqXVW7ezyc2mEJyXtQQ" style="display:block;border:0px;margin:0px;font-weight:bold;font-size:16px;color:#262626;line-height:normal;" width="68"/>
              </a>
             </td>
             <td>
              <a style="color:inherit !important;text-decoration:none !important;">
               <img alt=" Sale" border="0" src="https://inboxflows.com/_/image/https%253A%252F%252Fd3591x4z0o61mp.cloudfront.net%252Fimages%252Ftpl%252FNewArch%252FHeader%252FTopNav%252FSale.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZkMzU5MXg0ejBvNiIsInRpbWUiOjE3NDQyOTE5NTQuMjU5MTAyOH0:1u2s1C:tAAD7Bt70uYRe5lxOC_gZAOpHV3XIX2a-D6qFba01pg" style="display:block;border:0px;margin:0px;font-weight:bold;font-size:16px;color:#b4292f;line-height:normal;" width="76"/>
              </a>
             </td>
            </tr>
           </tbody>
          </table>
          <!--
/MODULE END TopNav
-->
          <!--
MODULE START RewardsBlock
-->
          <!--
/MODULE END RewardsBlock
-->
          <!--
MAIN CONTENT
-->
          <!--
MODULE START EasterWoolCritterGift
-->
          <div class="mobile-only">
           <table align="center" border="0" cellpadding="0" cellspacing="0" class="full-width" style="background-color:#fbf5e1;" width="480">
            <tbody>
             <tr>
              <td class="free-gift-c1" style="width:26px;" width="26">
              </td>
              <td class="free-gift-img" style="width:238px;" valign="middle" width="238">
               <div class="lhfix" style="line-height:16px;height:16px;min-height:16px;max-width:100%;overflow:hidden;display:block;">
               </div>
               <a style="color:inherit !important;text-decoration:none !important;">
                <img alt=" Easter Wool Critter" border="0" class="free-gift-img" src="https://inboxflows.com/_/image/https%253A%252F%252Fd3591x4z0o61mp.cloudfront.net%252Fimages%252Fmod%252Fcpn%252FcpnEasterWoolCritterGift%252FEasterWoolCritter.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZkMzU5MXg0ejBvNiIsInRpbWUiOjE3NDQyOTE5NTQuMjU5MjgzNX0:1u2s1C:T8cpFji_h1VM_aAxv6WKJzJI76feSlh5TK82hdGGr9Q" style="display:block;border:0px;margin:0px;font-size:16px;color:#262626;line-height:normal;" width="238"/>
               </a>
              </td>
              <td align="center" class="w270" style="width:216px;" valign="middle" width="216">
               <div class="lhfix" style="line-height:15px;height:15px;min-height:15px;max-width:100%;overflow:hidden;display:block;">
               </div>
               <div class="f22" style="font-size:18px ;line-height:1.2;font-weight:900;color:#262626;font-style:italic;font-family:'questa-grande',times-new-roman,Times,serif;">
                <!--[if gte mso 9]>
<p  class="f22"   style="font-size:18px ;line-height:1.2;font-weight:900;color:#262626;font-style:italic;font-family:'questa-grande',times-new-roman,Times,serif;" ><font face="font-family:Georgia,"Times New Roman",Times,serif;">
<![endif]-->
                Member Exclusive
                <!--[if gte mso 9]>
</font></p>
<![endif]-->
               </div>
               <div class="f36" style="font-size:29px ;line-height:1.1;font-weight:900;color:#262626;font-family:'sofia-pro',Helvetica,Arial,sans-serif;">
                <!--[if gte mso 9]>
<p  class="f36"   style="font-size:29px ;line-height:1.1;font-weight:900;color:#262626;font-family:'sofia-pro',Helvetica,Arial,sans-serif;" ><font face="font-family:Helvetica, Arial, sans-serif;">
<![endif]-->
                FREE GIFT
                <!--[if gte mso 9]>
</font></p>
<![endif]-->
               </div>
               <div class="f14" style="font-size:12px ;line-height:1.28;font-weight:400;color:#262626;font-family:'sofia-pro',Helvetica,Arial,sans-serif;">
                <!--[if gte mso 9]>
<p  class="f14"   style="font-size:12px ;line-height:1.28;font-weight:400;color:#262626;font-family:'sofia-pro',Helvetica,Arial,sans-serif;" ><font face="font-family:Helvetica, Arial, sans-serif;">
<![endif]-->
                With in-store purchase*
                <!--[if gte mso 9]>
</font></p>
<![endif]-->
               </div>
               <div class="lhfix" style="line-height:10px;height:10px;min-height:10px;max-width:100%;overflow:hidden;display:block;">
               </div>
               <img align="left" alt=" Easter Wool Critter" border="0" src="https://inboxflows.com/_/image/https%253A%252F%252Fd3591x4z0o61mp.cloudfront.net%252Fimages%252Fmod%252Fcpn%252FcpnEasterWoolCritterGift%252FEasterWoolCritter_TXT.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZkMzU5MXg0ejBvNiIsInRpbWUiOjE3NDQyOTE5NTQuMjU5NTA3NH0:1u2s1C:f-RLUeSLupx-FZ09K75D5AH50bdh5vrQW8q494uvi4U" style="display:block;border:0px;margin:0px;font-weight:bold;font-size:14px;color:#262626;padding-bottom:5px;line-height:normal;" width="216"/>
               <div class="lhfix" style="line-height:1px;height:1px;min-height:1px;max-width:100%;overflow:hidden;display:block;">
               </div>
               <div class="lhfix" style="line-height:20px;height:20px;min-height:20px;max-width:100%;overflow:hidden;display:block;">
               </div>
               <div style="font-size:14px ;line-height:1.28;font-weight:400;color:#262626;font-family:'sofia-pro',Helvetica,Arial,sans-serif;">
                <!--[if gte mso 9]>
<p   style="font-size:14px ;line-height:1.28;font-weight:400;color:#262626;font-family:'sofia-pro',Helvetica,Arial,sans-serif;" ><font face="font-family:Helvetica, Arial, sans-serif;">
<![endif]-->
                Join World Market Rewards
                <br/>
                in store to get your coupon.
                <br/>
                See associate for details.
                <!--[if gte mso 9]>
</font></p>
<![endif]-->
               </div>
               <div class="lhfix" style="line-height:15px;height:15px;min-height:15px;max-width:100%;overflow:hidden;display:block;">
               </div>
               <table style="background-color:transparent;">
                <tbody>
                 <tr>
                  <td align="center" style="background-color:transparent;">
                   <table align="center" border="0" cellpadding="0" cellspacing="0" style="background-color:#b4292f;border-radius:4px;opacity:1 !important;">
                    <tbody>
                     <tr>
                      <td class="cta-btn-15" style="padding: 8px 12px;opacity:1 !important;background-color:#b4292f;border-radius:4px;">
                       <a style="white-space: nowrap;font-family:'sofia-pro',Helvetica,Arial,sans-serif;text-transform: uppercase;font-size:12px ;line-height:1.3;font-weight:bold;color:#FFFFFF !important;">
                        <!--[if gte mso 9]>
<font color="#ffffff" style="color:#ffffff !important;"text-decoration:none !important;>
<![endif]-->
                        <b>
                         <span class="f15" style="color:#FFFFFF;text-decoration:none !important;">
                          FIND A STORE
                         </span>
                        </b>
                        <!--[if gte mso 9]>
</font>
<![endif]-->
                       </a>
                      </td>
                     </tr>
                    </tbody>
                   </table>
                  </td>
                 </tr>
                </tbody>
               </table>
              </td>
             </tr>
             <tr>
              <td align="center" colspan="3" style="width:100%;" width="100%">
               <div class="lhfix" style="line-height:10px;height:10px;min-height:10px;max-width:100%;overflow:hidden;display:block;">
               </div>
               <div style="font-size:12px ;line-height:1.3;font-weight:400;color:#262626;font-family:'sofia-pro',Helvetica,Arial,sans-serif;">
                <!--[if gte mso 9]>
<p   style="font-size:12px ;line-height:1.3;font-weight:400;color:#262626;font-family:'sofia-pro',Helvetica,Arial,sans-serif;" ><font face="font-family:Helvetica, Arial, sans-serif;">
<![endif]-->
                Limit 1 per customer. Exclusions apply. See details  below.
                <!--[if gte mso 9]>
</font></p>
<![endif]-->
               </div>
               <div class="lhfix" style="line-height:15px;height:15px;min-height:15px;max-width:100%;overflow:hidden;display:block;">
               </div>
              </td>
             </tr>
            </tbody>
           </table>
          </div>
          <!--[if !mso]><!-->
          <div class="desktop-only" style="display:none;visibility:hidden;">
           <table align="center" border="0" cellpadding="0" cellspacing="0" class="full-width" style="background-color:#fbf5e1;" width="600">
            <tbody>
             <tr>
              <td style="width:33px;min-width:33px;" width="33">
              </td>
              <td style="width:297px;" valign="middle" width="297">
               <div class="lhfix" style="line-height:20px;height:20px;min-height:20px;max-width:100%;overflow:hidden;display:block;">
               </div>
               <a style="color:inherit !important;text-decoration:none !important;">
                <img alt=" Easter Wool Critter" border="0" src="https://inboxflows.com/_/image/https%253A%252F%252Fd3591x4z0o61mp.cloudfront.net%252Fimages%252Fmod%252Fcpn%252FcpnEasterWoolCritterGift%252FEasterWoolCritter.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZkMzU5MXg0ejBvNiIsInRpbWUiOjE3NDQyOTE5NTQuMjU5NzA5NH0:1u2s1C:6UR-Z1nQuR0pnRb_-v8J6GHu1ZrrPDtW3XAiz4mZqBk" style="display:block;border:0px;margin:0px;font-size:16px;color:#262626;line-height:normal;" width="297"/>
               </a>
              </td>
              <td align="center" class="w270" style="width:216px;" valign="middle" width="216">
               <div class="lhfix" style="line-height:15px;height:15px;min-height:15px;max-width:100%;overflow:hidden;display:block;">
               </div>
               <div class="f22" style="font-size:22px ;line-height:1.5;font-weight:900;color:#262626;font-style:italic;font-family:'questa-grande',times-new-roman,Times,serif;">
                <!--[if gte mso 9]>
<p  class="f22"   style="font-size:22px ;line-height:1.5;font-weight:900;color:#262626;font-style:italic;font-family:'questa-grande',times-new-roman,Times,serif;" ><font face="font-family:Georgia,"Times New Roman",Times,serif;">
<![endif]-->
                Member Exclusive
                <!--[if gte mso 9]>
</font></p>
<![endif]-->
               </div>
               <div style="font-size:36px ;line-height:1.1;font-weight:900;color:#262626;font-family:'sofia-pro',Helvetica,Arial,sans-serif;">
                <!--[if gte mso 9]>
<p   style="font-size:36px ;line-height:1.1;font-weight:900;color:#262626;font-family:'sofia-pro',Helvetica,Arial,sans-serif;" ><font face="font-family:Helvetica, Arial, sans-serif;">
<![endif]-->
                FREE GIFT
                <!--[if gte mso 9]>
</font></p>
<![endif]-->
               </div>
               <div class="f14" style="font-size:14px ;line-height:1.28;font-weight:400;color:#262626;font-family:'sofia-pro',Helvetica,Arial,sans-serif;">
                <!--[if gte mso 9]>
<p  class="f14"   style="font-size:14px ;line-height:1.28;font-weight:400;color:#262626;font-family:'sofia-pro',Helvetica,Arial,sans-serif;" ><font face="font-family:Helvetica, Arial, sans-serif;">
<![endif]-->
                with in-store purchase*
                <!--[if gte mso 9]>
</font></p>
<![endif]-->
               </div>
               <div class="lhfix" style="line-height:10px;height:10px;min-height:10px;max-width:100%;overflow:hidden;display:block;">
               </div>
               <img alt=" Easter Wool Critter" border="0" src="https://inboxflows.com/_/image/https%253A%252F%252Fd3591x4z0o61mp.cloudfront.net%252Fimages%252Fmod%252Fcpn%252FcpnEasterWoolCritterGift%252FEasterWoolCritter_TXT.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZkMzU5MXg0ejBvNiIsInRpbWUiOjE3NDQyOTE5NTQuMjU5OTAxNX0:1u2s1C:7H4cpfb4fIbRUeslNqMU3m2LNA7BuOvWPKDeNDsnly8" style="display:block;border:0px;margin:0px;font-weight:bold;font-size:14px;color:#262626;line-height:normal;" width="270"/>
               <div class="lhfix" style="line-height:1px;height:1px;min-height:1px;max-width:100%;overflow:hidden;display:block;">
               </div>
               <div class="lhfix" style="line-height:10px;height:10px;min-height:10px;max-width:100%;overflow:hidden;display:block;">
               </div>
               <div style="font-size:14px ;line-height:1.28;font-weight:400;color:#262626;font-family:'sofia-pro',Helvetica,Arial,sans-serif;">
                <!--[if gte mso 9]>
<p   style="font-size:14px ;line-height:1.28;font-weight:400;color:#262626;font-family:'sofia-pro',Helvetica,Arial,sans-serif;" ><font face="font-family:Helvetica, Arial, sans-serif;">
<![endif]-->
                Join World Market Rewards
                <br/>
                in store to get your coupon.
                <br/>
                See associate for details.
                <!--[if gte mso 9]>
</font></p>
<![endif]-->
               </div>
               <div class="lhfix" style="line-height:15px;height:15px;min-height:15px;max-width:100%;overflow:hidden;display:block;">
               </div>
               <table style="background-color:transparent;">
                <tbody>
                 <tr>
                  <td align="center" style="background-color:transparent;">
                   <table align="center" border="0" cellpadding="0" cellspacing="0" style="background-color:#b4292f;border-radius:4px;opacity:1 !important;">
                    <tbody>
                     <tr>
                      <td class="cta-btn-15" style="padding: 8px 12px;opacity:1 !important;background-color:#b4292f;border-radius:4px;">
                       <a style="white-space: nowrap;font-family:'sofia-pro',Helvetica,Arial,sans-serif;text-transform: uppercase;font-size:12px ;line-height:1.3;font-weight:bold;color:#FFFFFF !important;">
                        <!--[if gte mso 9]>
<font color="#ffffff" style="color:#ffffff !important;"text-decoration:none !important;>
<![endif]-->
                        <b>
                         <span class="f15" style="color:#FFFFFF;text-decoration:none !important;">
                          FIND A STORE
                         </span>
                        </b>
                        <!--[if gte mso 9]>
</font>
<![endif]-->
                       </a>
                      </td>
                     </tr>
                    </tbody>
                   </table>
                  </td>
                 </tr>
                </tbody>
               </table>
              </td>
             </tr>
             <tr>
              <td align="center" colspan="3" style="width:100%;" width="100%">
               <div class="lhfix" style="line-height:10px;height:10px;min-height:10px;max-width:100%;overflow:hidden;display:block;">
               </div>
               <div style="font-size:12px ;line-height:1.3;font-weight:400;color:#262626;font-family:'sofia-pro',Helvetica,Arial,sans-serif;">
                <!--[if gte mso 9]>
<p   style="font-size:12px ;line-height:1.3;font-weight:400;color:#262626;font-family:'sofia-pro',Helvetica,Arial,sans-serif;" ><font face="font-family:Helvetica, Arial, sans-serif;">
<![endif]-->
                Limit 1 per customer. Exclusions apply. See details  below.
                <!--[if gte mso 9]>
</font></p>
<![endif]-->
               </div>
               <div class="lhfix" style="line-height:15px;height:15px;min-height:15px;max-width:100%;overflow:hidden;display:block;">
               </div>
              </td>
             </tr>
            </tbody>
           </table>
          </div>
          <!--<![endif]-->
          <!--
/MODULE END EasterWoolCritterGift
-->
          <a style="color:inherit !important;text-decoration:none !important;">
           <img alt=" DEEPER DISCOUNTS ON SELECT INDOOR FURNITURE ›" border="0" class="w600" src="https://inboxflows.com/_/image/https%253A%252F%252Femailworldmarket.com%252Fassets%252Fresponsysimages%252Fcostplus%252Fcontentlibrary%252Fcampaigns%252F20250410_WK06_WMROffers_F99_V1%252Fimages%252F2025%252FWK6%252FDeeperdiscounts_FULL.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHdvcmxkbSIsInRpbWUiOjE3NDQyOTE5NTQuMjYwMTE2M30:1u2s1C:qjCQwmrtC1VdFAlHzVacl6cS9RRKymaszIuStVzxs-0" style="display:block;border:0px;margin:0px;font-weight:bold;font-size:24px;color:#262626;line-height:normal;" width="480"/>
          </a>
          <table align="center" border="0" cellpadding="0" cellspacing="0" class="full-width" style="background-color:transparent;">
           <tbody>
            <tr>
             <td align="center" class="full-width" style="background-color:transparent;width:480px;" width="480">
              <div class="lhfix" style="line-height:25px;height:25px;min-height:25px;max-width:100%;overflow:hidden;display:block;">
              </div>
              <div class="f40" style="font-weight:700;font-family:'questa-grande',times-new-roman,Times,serif;color:#262626;font-size:32px ;line-height:1.1;font-style:italic;font-family:'questa-grande',times-new-roman,Times,serif;">
               <!--[if gte mso 9]>
<p  class="f40"   style="font-weight:700;font-family:'questa-grande',times-new-roman,Times,serif;color:#262626;font-size:32px ;line-height:1.1;font-style:italic;font-family:'questa-grande',times-new-roman,Times,serif;" ><font face="font-family:Georgia,"Times New Roman",Times,serif;">
<![endif]-->
               So Many Spring Sales!
               <!--[if gte mso 9]>
</font></p>
<![endif]-->
              </div>
              <div class="lhfix" style="line-height:25px;height:25px;min-height:25px;max-width:100%;overflow:hidden;display:block;">
              </div>
             </td>
            </tr>
           </tbody>
          </table>
          <table align="center" border="0" cellpadding="0" cellspacing="0" class="full-width" width="480">
           <tbody>
            <tr>
             <td align="center" class="half-width" style="background-color:#FAF9F5;width:240px;" width="240">
              <table align="center" border="0" cellpadding="0" cellspacing="0" class="half-width-inner" width="225">
               <tr>
                <td align="center" class="half-width-inner" valign="top" width="225">
                 <div class="lhfix" style="line-height:10px;height:10px;min-height:10px;max-width:100%;overflow:hidden;display:block;">
                 </div>
                 <div class="f20" style="color:#262626;font-size:16px ;line-height:1.2;font-weight:800;font-family:'sofia-pro',Helvetica,Arial,sans-serif;">
                  <!--[if gte mso 9]>
<p  class="f20"   style="color:#262626;font-size:16px ;line-height:1.2;font-weight:800;font-family:'sofia-pro',Helvetica,Arial,sans-serif;" ><font face="font-family:Helvetica, Arial, sans-serif;">
<![endif]-->
                  <span style="color:#b4292f;">
                   25% OFF
                   <br/>
                  </span>
                  Tabletop
                  <!--[if gte mso 9]>
</font></p>
<![endif]-->
                 </div>
                 <div class="lhfix" style="line-height:16px;height:16px;min-height:16px;max-width:100%;overflow:hidden;display:block;">
                 </div>
                 <table style="background-color:transparent;">
                  <tbody>
                   <tr>
                    <td align="center" style="background-color:transparent;">
                     <table align="center" border="0" cellpadding="0" cellspacing="0" style="background-color:#b4292f;border-radius:4px;opacity:1 !important;">
                      <tbody>
                       <tr>
                        <td class="cta-btn-15" style="padding: 8px 12px;opacity:1 !important;background-color:#b4292f;border-radius:4px;">
                         <a style="white-space: nowrap;font-family:'sofia-pro',Helvetica,Arial,sans-serif;text-transform: uppercase;font-size:12px ;line-height:1.3;font-weight:bold;color:#FFFFFF !important;">
                          <!--[if gte mso 9]>
<font color="#ffffff" style="color:#ffffff !important;"text-decoration:none !important;>
<![endif]-->
                          <b>
                           <span class="f15" style="color:#FFFFFF;text-decoration:none !important;">
                            SHOP SALE
                           </span>
                          </b>
                          <!--[if gte mso 9]>
</font>
<![endif]-->
                         </a>
                        </td>
                       </tr>
                      </tbody>
                     </table>
                    </td>
                   </tr>
                  </tbody>
                 </table>
                </td>
               </tr>
              </table>
             </td>
             <td class="half-width" style="width:240px;" width="240">
              <a style="color:inherit !important;text-decoration:none !important;">
               <img alt="" border="0" class="half-width" src="https://inboxflows.com/_/image/https%253A%252F%252Femailworldmarket.com%252Fassets%252Fresponsysimages%252Fcostplus%252Fcontentlibrary%252Fcampaigns%252F20250410_WK06_WMROffers_F99_V1%252Fimages%252F2025%252FWK6%252FTabletop_HALF.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHdvcmxkbSIsInRpbWUiOjE3NDQyOTE5NTQuMjYwNDM2OH0:1u2s1C:0Zv06qNQmVNNb-MjYphRHoOktFKiU0s99KIouYmAits" style="display:block;border:0px;margin:0px;font-size:16px ;color:#262626;" width="240"/>
              </a>
             </td>
            </tr>
           </tbody>
          </table>
          <table align="center" border="0" cellpadding="0" cellspacing="0" class="full-width" width="480">
           <tbody>
            <tr>
             <td class="half-width" style="width:240px;" width="240">
              <a style="color:inherit !important;text-decoration:none !important;">
               <img alt="" border="0" class="half-width" src="https://inboxflows.com/_/image/https%253A%252F%252Femailworldmarket.com%252Fassets%252Fresponsysimages%252Fcostplus%252Fcontentlibrary%252Fcampaigns%252F20250410_WK06_WMROffers_F99_V1%252Fimages%252F2025%252FWK6%252FOutdoorfurniture_HALF.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHdvcmxkbSIsInRpbWUiOjE3NDQyOTE5NTQuMjYwNjk4OH0:1u2s1C:0uhHVQuXUmJVIvhyZTK9WikkqVWJh1PpA3Ympwb2oh0" style="display:block;border:0px;margin:0px;font-size:16px ;color:#262626;" width="240"/>
              </a>
             </td>
             <td align="center" class="half-width" style="background-color:#FAF9F5;width:240px;" width="240">
              <table align="center" border="0" cellpadding="0" cellspacing="0" class="half-width-inner" width="225">
               <tr>
                <td align="center" class="half-width-inner" valign="top" width="225">
                 <div class="lhfix" style="line-height:10px;height:10px;min-height:10px;max-width:100%;overflow:hidden;display:block;">
                 </div>
                 <div class="f20" style="color:#262626;font-size:16px ;line-height:1.2;font-weight:800;font-family:'sofia-pro',Helvetica,Arial,sans-serif;">
                  <!--[if gte mso 9]>
<p  class="f20"   style="color:#262626;font-size:16px ;line-height:1.2;font-weight:800;font-family:'sofia-pro',Helvetica,Arial,sans-serif;" ><font face="font-family:Helvetica, Arial, sans-serif;">
<![endif]-->
                  <span style="color:#b4292f;">
                   20% OFF
                   <br/>
                  </span>
                  Select Outdoor Furniture
                  <!--[if gte mso 9]>
</font></p>
<![endif]-->
                 </div>
                 <div class="lhfix" style="line-height:16px;height:16px;min-height:16px;max-width:100%;overflow:hidden;display:block;">
                 </div>
                 <table style="background-color:transparent;">
                  <tbody>
                   <tr>
                    <td align="center" style="background-color:transparent;">
                     <table align="center" border="0" cellpadding="0" cellspacing="0" style="background-color:#b4292f;border-radius:4px;opacity:1 !important;">
                      <tbody>
                       <tr>
                        <td class="cta-btn-15" style="padding: 8px 12px;opacity:1 !important;background-color:#b4292f;border-radius:4px;">
                         <a style="white-space: nowrap;font-family:'sofia-pro',Helvetica,Arial,sans-serif;text-transform: uppercase;font-size:12px ;line-height:1.3;font-weight:bold;color:#FFFFFF !important;">
                          <!--[if gte mso 9]>
<font color="#ffffff" style="color:#ffffff !important;"text-decoration:none !important;>
<![endif]-->
                          <b>
                           <span class="f15" style="color:#FFFFFF;text-decoration:none !important;">
                            SHOP SALE
                           </span>
                          </b>
                          <!--[if gte mso 9]>
</font>
<![endif]-->
                         </a>
                        </td>
                       </tr>
                      </tbody>
                     </table>
                    </td>
                   </tr>
                  </tbody>
                 </table>
                </td>
               </tr>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
          <div class="lhfix" style="line-height:12px;height:12px;min-height:12px;max-width:100%;overflow:hidden;display:block;">
          </div>
          <!--
MODULE START 
-->
          <table align="center" border="0" cellpadding="0" cellspacing="0" class="full-width" style="background-color:#fbdfdf;">
           <tbody>
            <tr>
             <td align="center" class="full-width" style="background-color:#fbdfdf;width:480px;" width="480">
              <table align="center" border="0" cellpadding="0" cellspacing="0" class="full-width" style="background-color:#f5aeae;">
               <tbody>
                <tr>
                 <td align="center" class="f26" style="background-color:#f5aeae;font-size:21px;font-weight:800;line-height:1;color:#262626;width:480px;" width="480">
                  <div class="lhfix" style="line-height:12px;height:12px;min-height:12px;max-width:100%;overflow:hidden;display:block;">
                  </div>
                  ENDS SUNDAY, 4/20!
                  <div class="lhfix" style="line-height:12px;height:12px;min-height:12px;max-width:100%;overflow:hidden;display:block;">
                  </div>
                 </td>
                </tr>
               </tbody>
              </table>
              <a style="color:inherit !important;text-decoration:none !important;">
               <img alt=" Golden Egg Scavenger Hunt*" border="0" class="full-width" src="https://inboxflows.com/_/image/https%253A%252F%252Fd3591x4z0o61mp.cloudfront.net%252Fimages%252Fmod%252Fsweeps%252FGoldenEgg25Q1%252FGoldenEgg-1-GoldenEggScavengerHuntAST_FULL.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZkMzU5MXg0ejBvNiIsInRpbWUiOjE3NDQyOTE5NTQuMjYwOTE5fQ:1u2s1C:fGBxPiwpEdeH-3LTMx7q4J3gvU0d0G-1KbmSx0t1vEo" style="display:block;border:0px;margin:0px;font-weight:bold;font-size:24px;color:#4B5CA7;background-color:#fbdfdf;line-height:normal;" width="480"/>
              </a>
              <div class="lhfix" style="line-height:25px;height:25px;min-height:25px;max-width:100%;overflow:hidden;display:block;">
              </div>
              <div class="f40" style="font-size:32px ;font-weight:800;line-height:1;color:#5b8b7b;font-family:'sofia-pro',Helvetica,Arial,sans-serif;">
               <!--[if gte mso 9]>
<p  class="f40"  style="font-size:32px ;font-weight:800;line-height:1;color:#5b8b7b;font-family:'sofia-pro',Helvetica,Arial,sans-serif;" ><font face="font-family:Helvetica, Arial, sans-serif;">
<![endif]-->
               GET YOUR HUNT ON
               <!--[if gte mso 9]>
</font></p>
<![endif]-->
              </div>
              <div class="lhfix" style="line-height:12px;height:12px;min-height:12px;max-width:100%;overflow:hidden;display:block;">
              </div>
              <div class="f28" style="font-size:23px ;font-weight:800;line-height:1.2;color:#4B5CA7;font-family:'sofia-pro',Helvetica,Arial,sans-serif;">
               <!--[if gte mso 9]>
<p  class="f28"  style="font-size:23px ;font-weight:800;line-height:1.2;color:#4B5CA7;font-family:'sofia-pro',Helvetica,Arial,sans-serif;" ><font face="font-family:Helvetica, Arial, sans-serif;">
<![endif]-->
               Find a Golden Egg in store
               <br/>
               for a chance to win a
               <br/>
               $20, $50, or $100 Reward!
               <!--[if gte mso 9]>
</font></p>
<![endif]-->
              </div>
              <div class="lhfix" style="line-height:25px;height:25px;min-height:25px;max-width:100%;overflow:hidden;display:block;">
              </div>
              <table style="background-color:transparent;">
               <tbody>
                <tr>
                 <td align="center" style="background-color:transparent;">
                  <table align="center" border="0" cellpadding="0" cellspacing="0" style="background-color:#b4292f;border-radius:4px;opacity:1 !important;">
                   <tbody>
                    <tr>
                     <td class="cta-btn-15" style="padding: 8px 12px;opacity:1 !important;background-color:#b4292f;border-radius:4px;">
                      <a style="white-space: nowrap;font-family:'sofia-pro',Helvetica,Arial,sans-serif;text-transform: uppercase;font-size:12px ;line-height:1.3;font-weight:bold;color:#FFFFFF !important;">
                       <!--[if gte mso 9]>
<font color="#ffffff" style="color:#ffffff !important;"text-decoration:none !important;>
<![endif]-->
                       <b>
                        <span class="f15" style="color:#FFFFFF;text-decoration:none !important;">
                         LEARN MORE
                        </span>
                       </b>
                       <!--[if gte mso 9]>
</font>
<![endif]-->
                      </a>
                     </td>
                    </tr>
                   </tbody>
                  </table>
                 </td>
                </tr>
               </tbody>
              </table>
              <div class="lhfix" style="line-height:30px;height:30px;min-height:30px;max-width:100%;overflow:hidden;display:block;">
              </div>
             </td>
            </tr>
           </tbody>
          </table>
          <!--
/MODULE END 
-->
          <!--
MODULE START EasterWoolCritterGift
-->
          <!--
/MODULE END EasterWoolCritterGift
-->
          <div class="lhfix" style="line-height:25px;height:25px;min-height:25px;max-width:100%;overflow:hidden;display:block;">
          </div>
          <!--
MODULE START OmnitureRecProd
-->
          <!--
MODULE START OmnitureRecProd
-->
          <table align="center" border="0" cellpadding="0" cellspacing="0" class="full-width" id="omnitureRecProd" style="color:#262626;background-color:#FFFFFF;font-size:16px;line-height:18px;" width="480">
           <tbody>
            <!--
fallback/default
-->
           </tbody>
          </table>
          <div class="lhfix" style="line-height:25px;height:25px;min-height:25px;max-width:480px;overflow:hidden;">
          </div>
          <!--
/MODULE END OmnitureRecProd
-->
          <!--
/MODULE END OmnitureRecProd
-->
          <!--
MODULE START RewardsBlock
-->
          <!--
/MODULE END RewardsBlock
-->
          <!--
/MAIN CONTENT
-->
          <!--
MODULE START Social
-->
          <table align="center" border="0" cellpadding="0" cellspacing="0" id="footerSocial" style="font-size:16px;line-height:18px;">
           <tbody>
            <tr>
             <td align="right" background="https://inboxflows.com/_/image/https%253A%252F%252Finboxflows.com%252F_%252Fimage%252Fhttps%25253A%25252F%25252Fd3591x4z0o61mp.cloudfront.net%25252Fimages%25252Ftpl%25252FNewArch%25252FFooter%25252FSocial%25252FSocial-1-bg_W480.png%252F%253Finbox_flows_img_sig%253DeyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZkMzU5MXg0ejBvNiIsInRpbWUiOjE3NDQyOTE5NTQuMjM0NDEzOX0%253A1u2s1C%253At0RWLPTYFq6L7luGRkr1DL7DHM5bjZzkxTqkNWjQoHs/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbmJveGZsb3dzLiIsInRpbWUiOjE3NDQyOTE5NTQuMjY0MDE1N30:1u2s1C:5yCAk19EaM5PmNCqZwU7zbZFDYS9E36OHv05uC5a9KE" class="full-width" style="background:url(https://inboxflows.com/_/image/https%253A%252F%252Fd3591x4z0o61mp.cloudfront.net%252Fimages%252Ftpl%252FNewArch%252FFooter%252FSocial%252FSocial-1-bg_W480.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZkMzU5MXg0ejBvNiIsInRpbWUiOjE3NDQyOTE5NTQuMjM0NDEzOX0:1u2s1C:t0RWLPTYFq6L7luGRkr1DL7DHM5bjZzkxTqkNWjQoHs) #FFFFFF;background-size: 480px 120px;background-repeat: no-repeat;background-position-y: 50%;background-position-x: 100%;" valign="middle" width="480">
              <!--[if gte mso 9]>
<v:rect xmlns:v="urn:schemas-microsoft-com:vml" fill="true" fillcolor="#FFFFFF" stroke="false" style="width:480px; height:120px;"><v:fill type="frame" color="" src="https://inboxflows.com/_/image/https%253A%252F%252Fd3591x4z0o61mp.cloudfront.net%252Fimages%252Ftpl%252FNewArch%252FFooter%252FSocial%252FSocial-1-bg_W480.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZkMzU5MXg0ejBvNiIsInRpbWUiOjE3NDQyOTE5NTQuMjM0NDEzOX0:1u2s1C:t0RWLPTYFq6L7luGRkr1DL7DHM5bjZzkxTqkNWjQoHs" /><v:textbox inset="0,0,0,0"><table cellpadding="0" cellspacing="0" width="480" height="120"  align="right" valign="middle"  style="margin:0px;" ><tr>
<td  width="480" height="120" align="right" valign="middle" style="height:120px;width:480px;">

<![endif]-->
              <div>
               <div class="lhfix" style="line-height:35px;height:35px;min-height:35px;max-width:100%;overflow:hidden;display:block;">
               </div>
               <table align="center" border="0" cellpadding="0" cellspacing="0">
                <tbody>
                 <tr>
                  <td>
                   <a style="color:inherit !important;text-decoration:none !important;">
                    <img alt=" Pin... ›" border="0" src="https://inboxflows.com/_/image/https%253A%252F%252Fd3591x4z0o61mp.cloudfront.net%252Fimages%252Ftpl%252FNewArch%252FFooter%252FSocial%252FPinterest.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZkMzU5MXg0ejBvNiIsInRpbWUiOjE3NDQyOTE5NTQuMjYxMTQ3N30:1u2s1C:u6LG3OCXwpZ906K3np-ITmnq1Y-507l2sNo4knbcnvk" style="display:block;border:0px;margin:0px;font-weight:bold;font-size:14px;color:#262626;line-height:normal;" width="74"/>
                   </a>
                  </td>
                  <td>
                   <a style="color:inherit !important;text-decoration:none !important;">
                    <img alt=" FB... ›" border="0" src="https://inboxflows.com/_/image/https%253A%252F%252Fd3591x4z0o61mp.cloudfront.net%252Fimages%252Ftpl%252FNewArch%252FFooter%252FSocial%252FFacebook.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZkMzU5MXg0ejBvNiIsInRpbWUiOjE3NDQyOTE5NTQuMjYxMzg5M30:1u2s1C:2-svPpZdH0tCLw-zDa0KaYY-jbfOsnrEw1NGFzWj6eQ" style="display:block;border:0px;margin:0px;font-weight:bold;font-size:14px;color:#262626;line-height:normal;" width="75"/>
                   </a>
                  </td>
                  <td>
                   <a style="color:inherit !important;text-decoration:none !important;">
                    <img alt=" Insta... ›" border="0" src="https://inboxflows.com/_/image/https%253A%252F%252Fd3591x4z0o61mp.cloudfront.net%252Fimages%252Ftpl%252FNewArch%252FFooter%252FSocial%252FInstagram.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZkMzU5MXg0ejBvNiIsInRpbWUiOjE3NDQyOTE5NTQuMjYxNTgzfQ:1u2s1C:oP78AMYWMAcLZdR-vPFmTaW-UqALBLbi3mz6vzBaBlg" style="display:block;border:0px;margin:0px;font-weight:bold;font-size:14px;color:#262626;line-height:normal;" width="74"/>
                   </a>
                  </td>
                  <td>
                   <a style="color:inherit !important;text-decoration:none !important;">
                    <img alt=" TikTok ›" border="0" src="https://inboxflows.com/_/image/https%253A%252F%252Fd3591x4z0o61mp.cloudfront.net%252Fimages%252Ftpl%252FNewArch%252FFooter%252FSocial%252FTikTok.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZkMzU5MXg0ejBvNiIsInRpbWUiOjE3NDQyOTE5NTQuMjYxNzkwM30:1u2s1C:YPAF9WPICrWOiDqrgJdhwretVIWPoKYl7DnzP4_icy0" style="display:block;border:0px;margin:0px;font-weight:bold;font-size:14px;color:#262626;line-height:normal;" width="74"/>
                   </a>
                  </td>
                  <td>
                   <a style="color:inherit !important;text-decoration:none !important;">
                    <img alt=" YouTube ›" border="0" src="https://inboxflows.com/_/image/https%253A%252F%252Fd3591x4z0o61mp.cloudfront.net%252Fimages%252Ftpl%252FNewArch%252FFooter%252FSocial%252FYouTube.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZkMzU5MXg0ejBvNiIsInRpbWUiOjE3NDQyOTE5NTQuMjYyMDE5Nn0:1u2s1C:fCmO2e2iDizLX30KHBEtEPm1jIIsLC1LUp6QvY4Osro" style="display:block;border:0px;margin:0px;font-weight:bold;font-size:14px;color:#262626;line-height:normal;" width="75"/>
                   </a>
                  </td>
                 </tr>
                </tbody>
               </table>
               <div class="lhfix" style="line-height:35px;height:35px;min-height:35px;max-width:100%;overflow:hidden;display:block;">
               </div>
              </div>
              <!--[if gte mso 9]>
        </td></tr></table>
        </v:textbox>
        </v:rect>
        <![endif]-->
             </td>
            </tr>
           </tbody>
          </table>
          <!--
/MODULE END Social
-->
          <!--
MODULE START StoreFinder
-->
          <table align="center" border="0" cellpadding="0" cellspacing="0" class="full-width" style="color:#ffffff;background-color:#b4292f;font-family:sofia-pro,Helvetica,helvetica,Arial,arial,sans-serif;font-size:16px;margin:0px;" width="480">
           <tbody>
            <tr>
             <td align="center" class="full-width" style="font-size:14px;line-height:24px;font-weight:bold;" width="480">
              <div class="lhfix" style="line-height:10px;height:10px;min-height:10px;max-width:480px;overflow:hidden;">
              </div>
              <a class="ul-on-hover" style="font-weight:bold;text-decoration:none;font-family:sofia-pro,Helvetica,Arial,sans-serif;font-size:16px;line-height:20px;color:#FFFFFF;">
               FIND A STORE NEAR ME
              </a>
              <div class="lhfix" style="line-height:10px;height:10px;min-height:10px;max-width:480px;overflow:hidden;">
              </div>
             </td>
            </tr>
           </tbody>
          </table>
          <!--
/MODULE END StoreFinder
-->
          <!--
MODULE START CustSvc
-->
          <table align="center" border="0" cellpadding="0" cellspacing="0" class="full-width" id="footerCSBlock" style="color:#262626;background-color:#FFFFFF;font-family:'sofia-pro',Helvetica,Arial,sans-serif;font-size:16px;font-weight:bold;margin:0px;border-bottom:2px solid #ececec;border-top:2px solid #ececec;" width="480">
           <tbody>
            <tr>
             <td align="center" height="45" style="text-decoration:none !important;font-size:12px;line-height:18px;font-family:'sofia-pro',Helvetica,Arial,sans-serif;color:#666;text-align:center;">
              <a class="ul-on-hover" style="text-decoration:none !important;font-size:12px;font-family:'sofia-pro',Helvetica,Arial,sans-serif;color:#666;">
               PRIVACY
              </a>
              <a class="ul-on-hover" style="text-decoration:none;color:#666;">
               CUSTOMERSERVICE@WORLDMARKET.COM
              </a>
              877-967-5362
             </td>
            </tr>
           </tbody>
          </table>
          <!--
/MODULE END CustSvc
-->
          <!--
MODULE START EmailAdmin
-->
          <table align="center" border="0" cellpadding="0" cellspacing="0" class="full-width" id="footerCorporateBlock" style="color:#262626;background-color:#FFFFFF;font-family:Helvetica, Arial, sans-serif;font-size:11px;margin:0px;" width="480">
           <tbody>
            <tr>
             <td style="min-height:20px;height:20px;line-height:20px;font-size:1px;overflow:hidden;">
              <div class="lhfix" style="line-height:20px;height:20px;min-height:20px;max-width:100%;overflow:hidden;display:block;">
              </div>
             </td>
            </tr>
            <tr>
             <td class="full-width" style="font-size:11px;line-height:16px;font-family:Helvetica, Arial, sans-serif;color:#666;">
              <a style="font-size:11px;font-family:Helvetica, Arial, sans-serif;color:#666;">
               View as a web page
              </a>
              <br/>
              This email was sent to
              <a style="color:#666;text-decoration:none !important;">
               0f731a84@uifeed.com
              </a>
              because it was registered at
              <a style="color:#666;text-decoration:none !important;">
               worldmarket.com
              </a>
              to receive news and promotions, or you provided us with your email address.
              <a style="color:#666;text-decoration:underline;">
               Unsubscribe
              </a>
              <br/>
              <br/>
             </td>
            </tr>
           </tbody>
          </table>
          <!--
/MODULE END EmailAdmin
-->
          <!--
MODULE START Disclaimer
-->
          <table align="center" border="0" cellpadding="0" cellspacing="0" class="full-width" id="footerDisclaimerBlock" style="font-family:Helvetica, Arial, sans-serif;font-size:16px;margin:0px;" width="480">
           <tbody>
            <tr>
             <td class="full-width-inner" style="color:#666;font-size:11px;line-height:16px;text-align:justify;width:460px;" width="460">
              Prices valid 4/10/25–4/13/25. Offers good while supplies last.   Some furniture requires assembly.  Prices and selection may vary by store and online. Some items may not be available at all stores or online. Items sold individually in store may be sold in sets online. Intermediate markdowns may have been taken on sale items. Sweetened beverages may be subject to sweetened beverage tax recovery fee in certain locations.
              <br/>
              <br/>
              *MEMBERS GET ONE FREE EASTER WOOL CRITTER:
              <br/>
              Valid 4/10/25–4/12/25 only. Redeem at World Market stores within the United States for one free  4.4 oz. Easter Wool Critter with merchandise purchase. Not valid online. Offer valid while supplies last. Selection may vary by store. One-time use only. Limit 1 free Easter Wool Critter coupon per customer. World Market Rewards Member ID entry required at checkout. Employees not eligible. No adjustments to prior purchases. No cash value or rain checks issued. When you return an item, you will forfeit the discount applied to that item.
              <br/>
              <br/>
              *GOLDEN EGG SCAVENGER HUNT:
              <br/>
              NO PURCHASE NECESSARY. Open to legal residents of the 50 US &amp; DC (excluding residents of Puerto Rico &amp; all other U.S. territories &amp; possessions) who are 18 years of age or older at the time of participation. Begins on the opening of store hours for each participating store on 3/31/25, ends 11:59 p.m. ET 4/20/25. Void in Puerto Rico &amp; all other US territories &amp; possessions &amp; where prohibited. Subject to Terms of Participation, available at
              <a style="font-size: inherit; color:#666; ">
               www.worldmarket.com/hunt
              </a>
              . Limit one (1) award per person throughout the Promotion Period, regardless of participating World Market store location(s) visited. EMPLOYEES AND DESIGNATED SHOPPERS NOT ELIGIBLE. Promoter: World Market.
              <br/>
              <br/>
             </td>
            </tr>
           </tbody>
          </table>
          <!--
/MODULE END Disclaimer
-->
          <!--
MODULE START Copyright
-->
          <table align="center" border="0" cellpadding="0" cellspacing="0" class="full-width" id="footerCopyrightBlock" style="color:#262626;background-color:#FFFFFF;font-family:Helvetica, Arial, sans-serif;font-size:16px;margin:0px;border-top:2px solid #ececec;" width="480">
           <tbody>
            <tr>
             <td style="min-height:15px;height:15px;line-height:15px;font-size:1px;overflow:hidden;">
              <div class="lhfix" style="line-height:15px;height:15px;min-height:15px;max-width:100%;overflow:hidden;display:block;">
              </div>
             </td>
            </tr>
            <tr>
             <td class="full-width" style="font-size:11px;line-height:20px;font-family:Helvetica, Arial, sans-serif;color:#666;width:480px;" width="480">
              Copyright © 2000–2025 World Market, LLC. All rights reserved.
              <br/>
              World Market, 1201 Marina Village Parkway, Alameda, CA 94501
             </td>
            </tr>
            <tr>
             <td style="min-height:30px;height:30px;line-height:30px;font-size:1px;overflow:hidden;">
              <div class="lhfix" style="line-height:30px;height:30px;min-height:30px;max-width:100%;overflow:hidden;display:block;">
              </div>
             </td>
            </tr>
           </tbody>
          </table>
          <!--
/MODULE END Copyright
-->
          <!--
MODULE START PageClose
-->
          <!--
/alignablecontainer
-->
         </td>
        </tr>
       </tbody>
      </table>
      <!--
/bodyfiller
-->
     </td>
    </tr>
   </tbody>
  </table>
  <!--Gmail App Scaling Fix-->
  <div style="display:none; white-space:nowrap; font:15px courier; color:#ffffff;">
   - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  </div>
  <div class="lhfix" style="line-height:25px;height:25px;min-height:25px;max-width:100%;overflow:hidden;display:block;">
  </div>
 </body>
</html>
<!--
/container
-->