Inboxes

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

+New inbox

0123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491<!--removeIf(devTesting)-->
<!-- STYLING AND SCRIPT TO CHECK LINKS/ALT TEXT -->
<html>
 <head>
  <style>
   .element,
    .text_center {
      position: relative;
    }
    
    .img-caption,
    .link-caption {
        position: absolute; 
        top:0;
        padding: 5px 10px;
        border-radius: 50px;
        box-shadow: 2px 2px 10px #333;
        font-weight: bold;
        font-size: 12px!important;
        line-height: 12px;
        font-family: Arial, Helvetica, sans-serif;
        z-index: 1;
        opacity: 0.5;
        transition: opacity 0.3s ease-in-out;
    }
    
    .img-caption {
        top: 30px;
        left: -20px;
        background-color: red;
        color: white;
        border: 2px dotted white;
        color: white;
    }
    
    .link-caption {
        right: 0px;
        background-color: white;
        box-shadow: 2px 2px 10px #333;
        border: 2px dotted red;
        color: red;
    }
    
    .img-caption:hover,
    .link-caption:hover {
      opacity:1;
      cursor:pointer;
    }
  </style>
  <!--endRemoveIf(devTesting)-->
  <!--removeIf(removeComments)-->
  <!--removeIf(salesforce)-->
  <!--endRemoveIf(removeComments)-->
  <!--removeIf(removeComments)-->
  <!--endRemoveIf(salesforce)-->
  <!--endRemoveIf(removeComments)-->
  <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "//www.w3.org/TR/html4/loose.dtd">
  <meta content="IE=edge" http-equiv="X-UA-Compatible"/>
  <meta content="text/html; charset=utf-8" http-equiv="Content-Type"/>
  <meta content="width=device-width, initial-scale=1.0" name="viewport"/>
  <title>
   SELFRIDGES
  </title>
  <!--[if !mso]><!-->
  <style type="text/css">
   @font-face {
    font-family:"avalonregular";
    src:url("https://inboxflows.com/_/image/http%253A%252F%252Fwww.selfridges.com%252Fwcsstore1.00.00.2667.01%252FConsumerDirectStorefrontAssetStore%252F%252FSiteRedesign%252Fstatic%252Fcss%252Fen_US%252Ffonts%252FAvalon%252FBook%252FAvalon-Book-webfont.eot/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRnd3dy5zZWxmcmlkZyJ9:1kXOQI:DsVaybyA3ZVpgTXo7qwvZKBUlsyo0071Cqxwb_Q2ylk");
    src:url("https://inboxflows.com/_/image/http%253A%252F%252Fwww.selfridges.com%252Fwcsstore1.00.00.2667.01%252FConsumerDirectStorefrontAssetStore%252F%252FSiteRedesign%252Fstatic%252Fcss%252Fen_US%252Ffonts%252FAvalon%252FBook%252FAvalon-Book-webfont.eot/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRnd3dy5zZWxmcmlkZyJ9:1kXOQI:DsVaybyA3ZVpgTXo7qwvZKBUlsyo0071Cqxwb_Q2ylk?#iefix") format("embedded-opentype"),
    url("https://inboxflows.com/_/image/http%253A%252F%252Fwww.selfridges.com%252Fwcsstore1.00.00.2667.01%252FConsumerDirectStorefrontAssetStore%252F%252FSiteRedesign%252Fstatic%252Fcss%252Fen_US%252Ffonts%252FAvalon%252FBook%252FAvalon-Book-webfont.woff/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRnd3dy5zZWxmcmlkZyJ9:1kXOQI:DsVaybyA3ZVpgTXo7qwvZKBUlsyo0071Cqxwb_Q2ylk") format("woff"),
    url("https://inboxflows.com/_/image/http%253A%252F%252Fwww.selfridges.com%252Fwcsstore1.00.00.2667.01%252FConsumerDirectStorefrontAssetStore%252F%252FSiteRedesign%252Fstatic%252Fcss%252Fen_US%252Ffonts%252FAvalon%252FBook%252FAvalon-Book-webfont.ttf/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRnd3dy5zZWxmcmlkZyJ9:1kXOQI:DsVaybyA3ZVpgTXo7qwvZKBUlsyo0071Cqxwb_Q2ylk") format("truetype"),
    url("https://inboxflows.com/_/image/http%253A%252F%252Fwww.selfridges.com%252Fwcsstore1.00.00.2667.01%252FConsumerDirectStorefrontAssetStore%252F%252FSiteRedesign%252Fstatic%252Fcss%252Fen_US%252Ffonts%252FAvalon%252FBook%252FAvalon-Book-webfont.svg%2523avalonregular/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRnd3dy5zZWxmcmlkZyJ9:1kXOQI:DsVaybyA3ZVpgTXo7qwvZKBUlsyo0071Cqxwb_Q2ylk") format("svg");
    }
    @font-face {
    font-family:"avalonbold";
    src:url("https://inboxflows.com/_/image/http%253A%252F%252Fwww.selfridges.com%252Fwcsstore1.00.00.2667.01%252FConsumerDirectStorefrontAssetStore%252F%252FSiteRedesign%252Fstatic%252Fcss%252Fen_US%252Ffonts%252FAvalon%252FDemi%252FAvalon-Demi-webfont.eot/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRnd3dy5zZWxmcmlkZyJ9:1kXOQI:DsVaybyA3ZVpgTXo7qwvZKBUlsyo0071Cqxwb_Q2ylk");
    src:url("https://inboxflows.com/_/image/http%253A%252F%252Fwww.selfridges.com%252Fwcsstore1.00.00.2667.01%252FConsumerDirectStorefrontAssetStore%252F%252FSiteRedesign%252Fstatic%252Fcss%252Fen_US%252Ffonts%252FAvalon%252FDemi%252FAvalon-Demi-webfont.eot/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRnd3dy5zZWxmcmlkZyJ9:1kXOQI:DsVaybyA3ZVpgTXo7qwvZKBUlsyo0071Cqxwb_Q2ylk?#iefix") format("embedded-opentype"),
    url("https://inboxflows.com/_/image/http%253A%252F%252Fwww.selfridges.com%252Fwcsstore1.00.00.2667.01%252FConsumerDirectStorefrontAssetStore%252F%252FSiteRedesign%252Fstatic%252Fcss%252Fen_US%252Ffonts%252FAvalon%252FDemi%252FAvalon-Demi-webfont.woff/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRnd3dy5zZWxmcmlkZyJ9:1kXOQI:DsVaybyA3ZVpgTXo7qwvZKBUlsyo0071Cqxwb_Q2ylk") format("woff"),
    url("https://inboxflows.com/_/image/http%253A%252F%252Fwww.selfridges.com%252Fwcsstore1.00.00.2667.01%252FConsumerDirectStorefrontAssetStore%252F%252FSiteRedesign%252Fstatic%252Fcss%252Fen_US%252Ffonts%252FAvalon%252FDemi%252FAvalon-Demi-webfont.ttf/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRnd3dy5zZWxmcmlkZyJ9:1kXOQI:DsVaybyA3ZVpgTXo7qwvZKBUlsyo0071Cqxwb_Q2ylk") format("truetype"),
    url("https://inboxflows.com/_/image/http%253A%252F%252Fwww.selfridges.com%252Fwcsstore1.00.00.2667.01%252FConsumerDirectStorefrontAssetStore%252F%252FSiteRedesign%252Fstatic%252Fcss%252Fen_US%252Ffonts%252FAvalon%252FDemi%252FAvalon-Demi-webfont.svg%2523avalonbold/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRnd3dy5zZWxmcmlkZyJ9:1kXOQI:DsVaybyA3ZVpgTXo7qwvZKBUlsyo0071Cqxwb_Q2ylk") format("svg");
    }
    @font-face {
    font-family:"avalon";
    src:url("https://inboxflows.com/_/image/http%253A%252F%252Fwww.selfridges.com%252Fwcsstore1.00.00.2667.01%252FConsumerDirectStorefrontAssetStore%252F%252FSiteRedesign%252Fstatic%252Fcss%252Fen_US%252Ffonts%252FAvalon%252FBook%252FAvalon-Book-webfont.eot/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRnd3dy5zZWxmcmlkZyJ9:1kXOQI:DsVaybyA3ZVpgTXo7qwvZKBUlsyo0071Cqxwb_Q2ylk");
    src:url("https://inboxflows.com/_/image/http%253A%252F%252Fwww.selfridges.com%252Fwcsstore1.00.00.2667.01%252FConsumerDirectStorefrontAssetStore%252F%252FSiteRedesign%252Fstatic%252Fcss%252Fen_US%252Ffonts%252FAvalon%252FBook%252FAvalon-Book-webfont.eot/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRnd3dy5zZWxmcmlkZyJ9:1kXOQI:DsVaybyA3ZVpgTXo7qwvZKBUlsyo0071Cqxwb_Q2ylk?#iefix") format("embedded-opentype"),
    url("https://inboxflows.com/_/image/http%253A%252F%252Fwww.selfridges.com%252Fwcsstore1.00.00.2667.01%252FConsumerDirectStorefrontAssetStore%252F%252FSiteRedesign%252Fstatic%252Fcss%252Fen_US%252Ffonts%252FAvalon%252FBook%252FAvalon-Book-webfont.woff/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRnd3dy5zZWxmcmlkZyJ9:1kXOQI:DsVaybyA3ZVpgTXo7qwvZKBUlsyo0071Cqxwb_Q2ylk") format("woff"),
    url("https://inboxflows.com/_/image/http%253A%252F%252Fwww.selfridges.com%252Fwcsstore1.00.00.2667.01%252FConsumerDirectStorefrontAssetStore%252F%252FSiteRedesign%252Fstatic%252Fcss%252Fen_US%252Ffonts%252FAvalon%252FBook%252FAvalon-Book-webfont.ttf/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRnd3dy5zZWxmcmlkZyJ9:1kXOQI:DsVaybyA3ZVpgTXo7qwvZKBUlsyo0071Cqxwb_Q2ylk") format("truetype"),
    url("https://inboxflows.com/_/image/http%253A%252F%252Fwww.selfridges.com%252Fwcsstore1.00.00.2667.01%252FConsumerDirectStorefrontAssetStore%252F%252FSiteRedesign%252Fstatic%252Fcss%252Fen_US%252Ffonts%252FAvalon%252FBook%252FAvalon-Book-webfont.svg%2523avalonregular/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRnd3dy5zZWxmcmlkZyJ9:1kXOQI:DsVaybyA3ZVpgTXo7qwvZKBUlsyo0071Cqxwb_Q2ylk") format("svg");
    }
  </style>
  <!--<![endif]-->
  <!--[if gte mso 12]>     <style type="text/css">     td, span, a { font-family:Arial,Helvetica,sans-serif !important; }     </style>     <![endif]-->
  <style type="text/css">
   /*////// RESET STYLES //////*/
    body { width:100% !important; height:100% !important; margin:0 !important; padding:0 !important; } /* ADD line-height:100% !important; */
    body, table, td, th, font { -ms-text-size-adjust:100%; -webkit-text-size-adjust:100%; }
    table, td, th { border-collapse:collapse !important; mso-table-lspace:0pt !important; mso-table-rspace:0pt !important; }
    img { display:block; border:0; outline:none; text-decoration:none; -ms-interpolation-mode:bicubic; height:auto; }
    a, span { color:inherit; -webkit-font-smoothing:antialiased; }
    a { text-decoration:none; }
    div[style*="margin:16px 0;"] { margin:0 !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; }
    
    /*////// ANIMATION //////*/
    .fadeDown { animation-name:fadeDown; -webkit-animation-name:fadeDown; animation-duration:2s; -webkit-animation-duration:2s; }
    @keyframes fadeDown { 0% {opacity: 0;transform: translateY(-30px);} 60% {opacity: 0;transform: translateY(-30px);} 100% {opacity: 1;transform: translateY(0);} }
    @-webkit-keyframes fadeDown { 0% {opacity: 0;-webkit-transform: translateY(-30px);} 60% {opacity: 0;-webkit-transform: translateY(-30px);} 100% {opacity: 1;-webkit-transform: translateY(0);} }
    
    /*////// MOBILE STYLES //////*/
  
    @media only screen and (max-width:600px) {
          /* Targets Gmail */
    .mobilequicklinks {min-width: 100vw;}
    u ~ div .full-wrap {min-width: 100vw;}
    
    /* Targets Gmail on Android */
    div > u ~ div .full-wrap {
        min-width: 100vw;
        max-width: 480px
        }
    
    /* STRUCTURE OVERRIDES */
    .wrapper .wrapper_inner { width:100% !important; min-width:100% !important; }
    .gutter { width:2% !important; }
    .mod { padding-bottom:20px !important; }
    .spacer { height:20px !important; line-height:20px !important; }
    
    /*   .element { padding-bottom:20px !important; } */
    /*   .btn { padding-bottom:10px !important; } */
    
    /* RESPONSIVE OVERRIDES */
    .display_block,
    .display_caption,
    .display_head,
    .display_foot,
    .display_row { width:100% !important; }
    
    .display_block { display:block !important; float:left !important; }
    .display_caption { display:table-caption !important; }
    .display_head { display:table-header-group !important; }
    .display_foot { display:table-footer-group !important; }
    .display_row { display:table-row !important; }
    .display_hide { display:none !important; }
    
    /* SPACING OVERRIDES */
    .pad_top { padding-top:20px !important; }
    .pad_bottom { padding-bottom:20px !important; }
    .pad_top_hide, .element.pad_bottom_hide, .module.pad_bottom_hide { padding-top:0px !important; }
    .pad_bottom_hide { padding-bottom:0px !important; }
    .pad_hide { padding-bottom:0px !important; padding-top:0px !important; }
    
    /* TEXT OVERRIDES */
    .text_right { text-align:right !important; }
    .text_center { text-align:center !important; }
    .text_left { text-align:left !important; }
    
    .text_h1 { font-size:16px !important; }
    .text_h2 { font-size:15px !important; }
    .text_p { font-size:13px !important; }
    .text_btn { font-size:13px !important; }
    .text_cap { font-size:12px !important; }
    .text_img { font-size:15px !important; }
    .text_18px {font-size:18px !important; }
    .text_21px {font-size:21px !important; }
    .text_24px {font-size:24px !important; }
    .text_30px {font-size:30px !important; }
    
    /* IMAGE OVERRIDES */
    .image_100 { max-width:100% !important; width:100% !important; height:auto !important; }
    .image_75 { max-width:75% !important; width:75% !important; height:auto !important; }
    .image_50 { max-width:50% !important; width:50% !important; height:auto !important; }
    .image_49 { max-width:49% !important; width:49% !important; height:auto !important; }
    .image_40 { max-width:40% !important; width:40% !important; height:auto !important; }
    .image_25 { max-width:25% !important; width:25% !important; height:auto !important; }
    
    /* WIDTH OVERRIDES */
    .width_auto { width:auto !important; height:auto !important; }
    .width_100 { width:100% !important; height:auto !important; }
    .width_90 { width:90% !important; height:auto !important; }
    .width_95 { width:95% !important; height:auto !important; }
    .width_70 { width:70% !important; height:auto !important; }
    .width_75 { width:75% !important; height:auto !important; }
    .width_50 { width:50% !important; height:auto !important; }
    .width_49 { width:49% !important; height:auto !important; }
    .width_30 { width:30% !important; height:auto !important; }
    .width_25 { width:25% !important; height:auto !important; }
    .width_20px {width:20px !important;}
      
    /* HEIGHT OVERRIDES */
    .height_40 {height:40px !important;}
    .height_30 {height:30px !important;}
    .height_20 {height:20px !important;}
    .height_10 {height:10px !important;}
    .height_0 {height:0 !important;}
      
    /* CUSTOM OVERRIDES */ 
    .float_left {float: left !important;}
    .float_right {float: right !important;}
    .float_none {float: none !important;}
    .white-bg {background:#ffffff !important;}
     
    /* BEAUTY REPLEN */
       ul{
        list-style-position: inside;
        padding-left:0 !important;}
    }
  </style>
  <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "//www.w3.org/TR/html4/loose.dtd">
  <meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0" name="viewport"/>
  <meta content="text/html; charset=utf-8" http-equiv="Content-Type"/>
  <style type="text/css">
   @media only screen and (max-width: 600px) {

    }
          ReadMsgBody{ width: 100%;}
          .ExternalClass {width: 100%;}
          .ExternalClass, .ExternalClass p, .ExternalClass span, .ExternalClass font, .ExternalClass td, .ExternalClass div {line-height: 100%;}
          body {-webkit-text-size-adjust:100%; -ms-text-size-adjust:100%;margin:0 !important;}
          p { margin: 1em 0;}
          table td { border-collapse: collapse;}
          img {outline:0;}
          a img {border:none;}
          @-ms-viewport{ width: device-width;}
  </style>
  <style type="text/css">
   @media only screen and (max-width: 480px) {
            .container {width: 100% !important;}
            .footer { width:auto !important; margin-left:0; }
            .mobile-hidden { display:none !important; }
            .logo { display:block !important; padding:0 !important; }
            img { max-width:100% !important; height:auto !important; max-height:auto !important;}
            .header img{max-width:100% !important;height:auto !important; max-height:auto !important;}
            .photo img { width:100% !important; max-width:100% !important; height:auto !important;}
            .drop { display:block !important; width: 100% !important; float:left; clear:both;}
            .footerlogo { display:block !important; width: 100% !important; padding-top:15px; float:left; clear:both;}
            .nav4, .nav5, .nav6 { display: none !important; }
            .tableBlock {width:100% !important;}
            .responsive-td {width:100% !important; display:block !important; padding:0 !important; }
            .fluid, .fluid-centered {
              width: 100% !important;
              max-width: 100% !important;
              height: auto !important;
              margin-left: auto !important;
              margin-right: auto !important;
            }
            .fluid-centered {
              margin-left: auto !important;
              margin-right: auto !important;
            }
            /* MOBILE GLOBAL STYLES - DO NOT CHANGE */
            body { padding: 0px !important; font-size: 16px !important; line-height: 150% !important;}
            h1 { font-size: 22px !important; line-height: normal !important;}
            h2 { font-size: 20px !important; line-height: normal !important;}
            h3 { font-size: 18px !important; line-height: normal !important;}
            .buttonstyles {
              font-family:arial,helvetica,sans-serif !important;
              font-size: 16px !important;
              color: #FFFFFF !important;
              padding: 10px !important;
            }
            /* END OF MOBILE GLOBAL STYLES - DO NOT CHANGE */
          }
          @media only screen and (max-width: 640px) {
            .container { width:100% !important; }
            .mobile-hidden { display:none !important; }
            .logo { display:block !important; padding:0 !important; }
            .photo img { width:100% !important; height:auto !important;}
            .nav5, .nav6 { display: none !important;}
            .fluid, .fluid-centered {
              width: 100% !important;
              max-width: 100% !important;
              height: auto !important;
              margin-left: auto !important;
              margin-right: auto !important;
            }
            .fluid-centered {
              margin-left: auto !important;
              margin-right: auto !important;
            }
          }
  </style>
  <!--[if mso]>           <style type="text/css">               /* Begin Outlook Font Fix */               body, table, td {                   font-family: Arial, Helvetica, sans-serif ;                   font-size:16px;                   color:#000000;                   line-height:1;               }               /* End Outlook Font Fix */           </style>         <![endif]-->
 </head>
 <body bgcolor="#ffffff" style="background-color: #ffffff; color: #000000; padding: 0px; -webkit-text-size-adjust:none; font-size: 16px; font-family:arial,helvetica,sans-serif;" text="#000000">
  <style type="text/css">
   div.preheader 
{ display: none !important; }
  </style>
  <div class="preheader" style="font-size: 1px; display: none !important;">
   Don’t miss up to 50% off your favourite designers
  </div>
  <div style="font-size:0; line-height:0;">
   <img height="1" src="https://inboxflows.com/_/image/http%253A%252F%252Fclick.mail.selfridges.com%252Fopen.aspx%253Fffcb10-fecd157172640c7c-fe6116757366067a7512-fe341570756404747d1c71-ff62157770-fe581077776c0d7f7513-ff3416767466/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmNsaWNrLm1haWwucyJ9:1kXOQI:WnViPNX1PZ5lOMjA5-EWcwPlD2ONlyz94MuJVagNwjw" width="1"/>
  </div>
  <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
   <tr>
    <td align="center" valign="top">
    </td>
   </tr>
   <tr>
    <td align="center">
     <table align="center" border="0" cellpadding="0" cellspacing="0" class="container" width="600">
      <tr>
       <td>
        <table bgcolor="#ffffff" cellpadding="0" cellspacing="0" class="tb_properties border_style" style="background-color:#FFFFFF;" width="100%">
         <tr>
          <td align="center" valign="top">
           <table align="left" border="0" cellpadding="0" cellspacing="0" width="100%">
            <tr>
             <!-- added padding here -->
             <td class="content_padding" style="">
              <!-- end of comment -->
              <table border="0" cellpadding="0" cellspacing="0" width="100%">
               <tr>
                <!-- top slot -->
                <td align="center" class="header" valign="top">
                 <table align="left" border="0" cellpadding="0" cellspacing="0" width="100%">
                  <tbody>
                   <tr>
                    <td align="left" valign="top">
                     <table cellpadding="0" cellspacing="0" style="width:100%">
                      <tbody>
                       <tr>
                        <td class="responsive-td" style="width: 100%;" valign="top">
                         <div class="mobilequicklinks">
                          <!-- -->
                          <table cellpadding="0" cellspacing="0" class="stylingblock-content-wrapper" style="min-width: 100%; " width="100%">
                           <tr>
                            <td class="stylingblock-content-wrapper camarker-inner">
                             <!-- HEADER -->
                             <table align="center" border="0" cellpadding="0" cellspacing="0" class="width_100" role="presentation" style="background:#ffffff;" width="600">
                              <!-- border-bottom: 1px solid #eeeeee" -->
                              <tr>
                               <th align="center" class="width_100" width="580">
                               </th>
                              </tr>
                              <tr>
                              </tr>
                              <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
                               <tr>
                                <td height="10">
                                </td>
                               </tr>
                               <!-- preview -->
                               <tr>
                                <td align="center" style="padding-bottom:20px;" valign="top">
                                 <a data-linkto="other" style="color:#a29f9f; font-size:12px; font-family:'avalonregular', 'avalon', Arial, Helvetica, sans-serif; line-height:125%; font-weight:normal; text-transform: nome; text-decoration: underline" target="_blank" title="ViewOnline">
                                  View email online
                                 </a>
                                </td>
                               </tr>
                               <!--/preview -->
                               <!-- logo -->
                               <tr>
                                <td align="center" style="padding-bottom:0px;" valign="top">
                                 <a class="text_img" style="color:#212121; font-size:30px; font-family:'avalonregular', 'avalon', Arial, Helvetica, sans-serif; line-height:125%;" target="_blank" title="NavSelfridges">
                                  <img alt="selfridges" border="0" class="width_40" height="29" src="https://inboxflows.com/_/image/http%253A%252F%252Fimages.selfridges.com%252Fis%252Fimage%252Fselfridges%252F170000_logo%253Fscl%253D1%2526qlt%253D90%252C1%2526fmt%253Dpng8-alpha/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlcy5zZWxmciJ9:1kXOQI:VRbtF-IigUUf2A3DfKQm6J2ECLm_Cf5WJB5XrNYXs7I" width="178"/>
                                 </a>
                                </td>
                               </tr>
                               <!--/logo -->
                               <!-- nav - gifts -->
                               <tr>
                                <td align="center" class="element" style="padding-top: 20px; color:#212121; font-size:15px; font-family:'avalonregular', 'avalon', Arial, Helvetica, sans-serif; line-height:125%; font-weight:normal; background: #fffff;" valign="top">
                                 <a style="color:#212121; text-decoration:none;" target="_blank" title="Womens">
                                  Women
                                 </a>
                                 <a style="color:#212121; text-decoration:none;" target="_blank" title="Mens">
                                  Men
                                 </a>
                                 <a style="color:#212121; text-decoration:none;" target="_blank" title="Bags">
                                  Bags
                                 </a>
                                 <a data-linkto="https://" style="color:#212121;text-decoration:none;" target="_blank" title="Shoes">
                                  Shoes
                                 </a>
                                 <a style="color:#212121; text-decoration:none;" target="_blank" title="Beauty">
                                  Beauty
                                 </a>
                                 <a data-linkto="https://" style="color:#212121;text-decoration:none;" target="_blank" title="Home">
                                  Home
                                 </a>
                                 <!-- spacer -->
                                 <table align="center" border="0" cellpadding="0" cellspacing="0">
                                  <tr>
                                   <td class="height_20" height="20">
                                   </td>
                                  </tr>
                                 </table>
                                 <!-- /spacer -->
                                </td>
                               </tr>
                               <!--/nav - gifts -->
                              </table>
                             </table>
                             <!--/HEADER -->
                            </td>
                           </tr>
                          </table>
                          <!-- -->
                          <!-- -->
                          <table cellpadding="0" cellspacing="0" class="stylingblock-content-wrapper" style="min-width: 100%; " width="100%">
                           <tr>
                            <td class="stylingblock-content-wrapper camarker-inner">
                             <table cellpadding="0" cellspacing="0" class="stylingblock-content-wrapper" style="min-width: 100%; " width="100%">
                              <tr>
                               <td class="stylingblock-content-wrapper camarker-inner">
                                <!-- HERO -->
                                <table align="center" border="0" cellpadding="0" cellspacing="0" class="width_100" style="background:#ffffff;" width="600">
                                 <!-- text_img -->
                                 <tr>
                                  <td align="center" class="element" style="padding-bottom:20px;" valign="top">
                                   <a class="text_img" data-linkto="https://" style="font-size:20px; color:#212121; font-family:'avalonregular','avalon',Arial,Helvetica,sans-serif; line-height:125%; font-weight:normal; text-transform:none;" target="_blank" title="">
                                    <img alt="Needed: something to shimmy in" height="auto" src="https://inboxflows.com/_/image/http%253A%252F%252Fimages.selfridges.com%252Fis%252Fimage%252Fselfridges%252F190621-SaleContinues_Banner%253Fscl%253D1%2526qlt%253D95/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlcy5zZWxmciJ9:1kXOQI:VRbtF-IigUUf2A3DfKQm6J2ECLm_Cf5WJB5XrNYXs7I" style="height: auto; width: 600px; padding: 0px; text-align: center;" width="600"/>
                                   </a>
                                  </td>
                                 </tr>
                                 <!--/text_img -->
                                </table>
                                <!-- TEXT -->
                                <table align="center" border="0" cellpadding="0" cellspacing="0" class="width_100" style="background:#ffffff;" width="600">
                                 <tr>
                                  <td class="gutter" width="12">
                                  </td>
                                  <td align="center" class="width_100" valign="top" width="576">
                                   <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
                                    <!-- text_h1 -->
                                    <!--/text_h1 -->
                                    <!-- text_p -->
                                    <!--/text_p -->
                                    <!-- text_btn -->
                                    <tr>
                                     <td align="center" class="element" style="padding-bottom:20px;" valign="top">
                                      <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="background-color:#ff0000;">
                                       <tr>
                                        <td style="padding:10px">
                                         <table border="0" cellpadding="0" cellspacing="0" width="100%">
                                          <tr>
                                           <td class="btn" style="text-align:center;">
                                            <span class="text_btn" style="font-size:13px; color:#ffffff; font-family:'avalonregular','avalon',Arial,Helvetica,sans-serif; line-height:125%; font-weight:normal; text-transform:none;">
                                             <a data-linkto="https://" style="color:#ffffff;text-decoration:none;" target="_blank" title="">
                                              SHOP ALL SALE &gt;
                                             </a>
                                            </span>
                                           </td>
                                          </tr>
                                         </table>
                                        </td>
                                       </tr>
                                      </table>
                                     </td>
                                    </tr>
                                    <!-- text_btn -->
                                    <!-- modspacer -->
                                    <!--/modspacer -->
                                   </table>
                                  </td>
                                  <td class="gutter" width="12">
                                  </td>
                                 </tr>
                                </table>
                                <!-- /TEXT -->
                                <!-- /HERO -->
                               </td>
                              </tr>
                             </table>
                            </td>
                           </tr>
                          </table>
                          <!-- -->
                          <!-- -->
                          <table cellpadding="0" cellspacing="0" class="stylingblock-content-wrapper" style="min-width: 100%; " width="100%">
                           <tr>
                            <td class="stylingblock-content-wrapper camarker-inner">
                             <table cellpadding="0" cellspacing="0" class="stylingblock-content-wrapper" style="min-width: 100%; " width="100%">
                              <tr>
                               <td class="stylingblock-content-wrapper camarker-inner">
                                <!-- SALE HERO -->
                                <table align="center" border="0" cellpadding="0" cellspacing="0" class="width_100" style="background:white;" width="600">
                                 <!-- text_img -->
                                 <!--/text_img -->
                                 <!-- text_h1 -->
                                 <tr>
                                  <td class="element text_h1" style="padding:0 30px 20px 30px; text-align:center; font-size:16px; color:#ffffff; font-family:'avalonregular','avalon',Arial,Helvetica,sans-serif; line-height:125%; font-weight:normal;" valign="top">
                                   <span style="color:#212121;text-decoration:none;">
                                    Shop by size
                                   </span>
                                  </td>
                                 </tr>
                                 <!--/text_h1 -->
                                </table>
                                <!-- /HERO TEXT -->
                                <!-- CAT 1-4 -->
                                <table align="center" border="0" cellpadding="0" cellspacing="0" class="width_100" style="background:#ffffff;" width="600">
                                 <!-- text_h1 -- <tr>     <td style="padding-bottom:20px; text-align:center; font-size:16px; color:#ffffff; font-family: 'avalonregular', 'avalon', Arial, Helvetica, sans-serif; line-height:125%; font-weight:normal;" valign="top">Shop our favourite brands</td> </tr> <!--/text_h1 -->
                                 <tr>
                                  <td align="center" class="module" style="background-color:#ffffff;">
                                   <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
                                    <!-- col_2_fixed -->
                                    <tr>
                                     <td class="gutter" width="12">
                                     </td>
                                     <th align="center" class="width_90" valign="top" width="576">
                                      <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
                                       <tr>
                                        <th align="center" valign="top" width="50%">
                                         <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
                                          <!-- CTA -->
                                          <tr>
                                           <td class="element" style="padding-bottom:10px; text-align:center;" valign="top">
                                            <table align="center" border="0" cellpadding="10" cellspacing="0" class="width_100" style="background-color:#ff0000;" width="282">
                                             <tr>
                                              <td align="center" class="btn" style="text-align: center; font-size:13px; color:#ffffff; font-family:'avalonregular', 'avalon', Arial, Helvetica, sans-serif; line-height:125%; font-weight:normal; text-transform:none;">
                                               <a data-linkto="https://" style="color:#ffffff;text-decoration:none; text-transform:none;" target="_blank" title="Extra Small ">
                                                Extra Small &gt;
                                               </a>
                                              </td>
                                             </tr>
                                            </table>
                                           </td>
                                          </tr>
                                          <!-- /CTA -->
                                          <!-- modspacer --<tr><td class="modspacer" height="20"></td></tr><!--/modspacer -->
                                         </table>
                                        </th>
                                        <td width="12">
                                        </td>
                                        <th align="center" valign="top" width="50%">
                                         <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
                                          <!-- CTA -->
                                          <tr>
                                           <td class="element" style="padding-bottom:10px; text-align:center;" valign="top">
                                            <table align="center" border="0" cellpadding="10" cellspacing="0" class="width_100" style="background-color:#ff0000;" width="282">
                                             <tr>
                                              <td align="center" class="btn" style="text-align: center; font-size:13px; color:#ffffff; font-family:'avalonregular', 'avalon', Arial, Helvetica, sans-serif; line-height:125%; font-weight:normal; text-transform:none;">
                                               <a data-linkto="https://" style="color:#ffffff;text-decoration:none; text-transform:normal;" target="_blank" title="Small">
                                                Small &gt;
                                               </a>
                                              </td>
                                             </tr>
                                            </table>
                                           </td>
                                          </tr>
                                          <!-- /CTA -->
                                          <!-- modspacer --<tr> <td class="modspacer" height="20"></td></tr><!--/modspacer -->
                                         </table>
                                        </th>
                                       </tr>
                                      </table>
                                     </th>
                                     <td class="gutter" width="12">
                                     </td>
                                    </tr>
                                    <!--/col_2_fixed -->
                                   </table>
                                   <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
                                    <!-- col_2_fixed -->
                                    <tr>
                                     <td class="gutter" width="12">
                                     </td>
                                     <th align="center" class="width_90" valign="top" width="576">
                                      <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
                                       <tr>
                                        <th align="center" valign="top" width="50%">
                                         <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
                                          <!-- CTA -->
                                          <tr>
                                           <td class="element" style="padding-bottom:10px; text-align:center;" valign="top">
                                            <table align="center" border="0" cellpadding="10" cellspacing="0" class="width_100" style="background-color:#ff0000;" width="282">
                                             <tr>
                                              <td align="center" class="btn" style="text-align: center; font-size:13px; color:#ffffff; font-family:'avalonregular', 'avalon', Arial, Helvetica, sans-serif; line-height:125%; font-weight:normal; text-transform:none;">
                                               <a data-linkto="https://" style="color:#ffffff;text-decoration:none; text-transform:none;" target="_blank" title="Medium">
                                                Medium &gt;
                                               </a>
                                              </td>
                                             </tr>
                                            </table>
                                           </td>
                                          </tr>
                                          <!-- /CTA -->
                                          <!-- modspacer --<tr> <td class="modspacer" height="40"></td></tr><!--/modspacer -->
                                         </table>
                                        </th>
                                        <td width="12">
                                        </td>
                                        <th align="center" valign="top" width="50%">
                                         <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
                                          <!-- CTA -->
                                          <tr>
                                           <td class="element" style="padding-bottom:10px; text-align:center;" valign="top">
                                            <table align="center" border="0" cellpadding="10" cellspacing="0" class="width_100" style="background-color:#ff0000;" width="282">
                                             <tr>
                                              <td align="center" class="btn" style="text-align: center; font-size:13px; color:#ffffff; font-family:'avalonregular', 'avalon', Arial, Helvetica, sans-serif; line-height:125%; font-weight:normal; text-transform:none;">
                                               <a data-linkto="https://" style="color:#ffffff;text-decoration:none; text-transform:none;" target="_blank" title="Large">
                                                Large &gt;
                                               </a>
                                              </td>
                                             </tr>
                                            </table>
                                           </td>
                                          </tr>
                                          <!-- /CTA -->
                                          <!-- modspacer --<tr> <td class="modspacer" height="40"></td></tr><!--/modspacer -->
                                         </table>
                                        </th>
                                       </tr>
                                      </table>
                                     </th>
                                     <td class="gutter" width="12">
                                     </td>
                                    </tr>
                                    <!--/col_2_fixed -->
                                   </table>
                                  </td>
                                 </tr>
                                 <!-- modspacer -->
                                </table>
                                <!-- /CAT 1-4 -->
                                <!-- CAT 1-4 -->
                                <table align="center" border="0" cellpadding="0" cellspacing="0" class="width_100" style="background:#ffffff;" width="600">
                                 <!-- text_h1 -->
                                 <!--/text_h1 -->
                                 <!-- modspacer -->
                                 <tr>
                                  <td class="modspacer" height="40">
                                  </td>
                                 </tr>
                                 <!--/modspacer -->
                                </table>
                                <!-- /CAT 1-4 -->
                               </td>
                              </tr>
                             </table>
                            </td>
                           </tr>
                          </table>
                          <!-- -->
                          <!-- -->
                          <table cellpadding="0" cellspacing="0" class="stylingblock-content-wrapper" style="min-width: 100%; " width="100%">
                           <tr>
                            <td class="stylingblock-content-wrapper camarker-inner">
                             <table cellpadding="0" cellspacing="0" class="stylingblock-content-wrapper" style="min-width: 100%; " width="100%">
                              <tr>
                               <td class="stylingblock-content-wrapper camarker-inner">
                                <!-- NOMS 1-4 -->
                                <table align="center" border="0" cellpadding="0" cellspacing="0" class="width_100" style="background:#ffffff;" width="600">
                                 <!-- modspacer -->
                                 <!--/modspacer -->
                                 <!-- text_h1 -->
                                 <!--<tr>     <td style="padding-bottom:20px; text-align:center; font-size:16px; color:#ffffff; font-family: 'avalonregular', 'avalon', Arial, Helvetica, sans-serif; line-height:125%; font-weight:normal;" valign="top">Title Nom</td> </tr>-->
                                 <!--/text_h1 -->
                                 <tr>
                                  <td align="center" class="module" style="background-color:#ffffff;">
                                   <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
                                    <!-- col_2_fixed -->
                                    <tr>
                                     <td class="gutter" width="12">
                                     </td>
                                     <th align="center" class="width_90" valign="top" width="576">
                                      <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
                                       <tr>
                                        <th align="center" valign="top" width="50%">
                                         <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
                                          <!-- text_img -->
                                          <tr>
                                           <td align="center" class="element" style="padding-bottom:20px;" valign="top">
                                            <a class="text_img" data-linkto="https://" target="_blank" title="">
                                             <img src="https://inboxflows.com/_/image/http%253A%252F%252Fimages.selfridges.com%252Fis%252Fimage%252Fselfridges%252F190621SaleContinues-WW_nom1%253Fscl%253D1%2526qlt%253D95/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlcy5zZWxmciJ9:1kXOQI:VRbtF-IigUUf2A3DfKQm6J2ECLm_Cf5WJB5XrNYXs7I" style="height: auto; width: 282px; padding: 0px; text-align: center;" width="282"/>
                                            </a>
                                           </td>
                                          </tr>
                                          <!--/text_img -->
                                          <!-- CTA -->
                                          <tr>
                                           <td class="element" style="padding-bottom:20px; text-align:center;" valign="top">
                                            <table align="center" border="0" cellpadding="10" cellspacing="0" class="width_100" style="background-color:#ff0000;" width="220">
                                             <tr>
                                              <td align="center" class="btn" style="text-align: center; font-size:13px; color:#ffffff; font-family:'avalonregular', 'avalon', Arial, Helvetica, sans-serif; line-height:125%; font-weight:normal; text-transform:none;">
                                               <a data-linkto="https://" style="color:#ffffff;text-decoration:none;" target="_blank" title="">
                                                Dresses &gt;
                                               </a>
                                              </td>
                                             </tr>
                                            </table>
                                           </td>
                                          </tr>
                                          <!-- /CTA -->
                                          <!-- modspacer -->
                                          <tr>
                                           <td class="modspacer" height="20">
                                           </td>
                                          </tr>
                                          <!--/modspacer -->
                                         </table>
                                        </th>
                                        <td width="12">
                                        </td>
                                        <th align="center" valign="top" width="50%">
                                         <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
                                          <!-- text_img -->
                                          <tr>
                                           <td align="center" class="element" style="padding-bottom:20px;" valign="top">
                                            <a class="text_img" data-linkto="https://" target="_blank" title="">
                                             <img height="auto" src="https://inboxflows.com/_/image/http%253A%252F%252Fimages.selfridges.com%252Fis%252Fimage%252Fselfridges%252F190621SaleContinues-WW_nom2%253Fscl%253D1%2526qlt%253D95/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlcy5zZWxmciJ9:1kXOQI:VRbtF-IigUUf2A3DfKQm6J2ECLm_Cf5WJB5XrNYXs7I" style="height: auto; width: 282px; padding: 0px; text-align: center;" width="282"/>
                                            </a>
                                           </td>
                                          </tr>
                                          <!--/text_img -->
                                          <!-- CTA -->
                                          <tr>
                                           <td class="element" style="padding-bottom:20px; text-align:center;" valign="top">
                                            <table align="center" border="0" cellpadding="10" cellspacing="0" class="width_100" style="background-color:#ff0000;" width="220">
                                             <tr>
                                              <td align="center" class="btn" style="text-align: center; font-size:13px; color:#ffffff; font-family:'avalonregular', 'avalon', Arial, Helvetica, sans-serif; line-height:125%; font-weight:normal; text-transform:none;">
                                               <a data-linkto="https://" style="color:#ffffff;text-decoration:none;" target="_blank" title="">
                                                Coats &amp; jackets &gt;
                                               </a>
                                              </td>
                                             </tr>
                                            </table>
                                           </td>
                                          </tr>
                                          <!-- /CTA -->
                                          <!-- modspacer -->
                                          <tr>
                                           <td class="modspacer" height="20">
                                           </td>
                                          </tr>
                                          <!--/modspacer -->
                                         </table>
                                        </th>
                                       </tr>
                                      </table>
                                     </th>
                                     <td class="gutter" width="12">
                                     </td>
                                    </tr>
                                    <!--/col_2_fixed -->
                                   </table>
                                   <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
                                    <!-- col_2_fixed -->
                                    <tr>
                                     <td class="gutter" width="12">
                                     </td>
                                     <th align="center" class="width_90" valign="top" width="576">
                                      <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
                                       <tr>
                                        <th align="center" valign="top" width="50%">
                                         <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
                                          <!-- text_img -->
                                          <tr>
                                           <td align="center" class="element" style="padding-bottom:20px;" valign="top">
                                            <a class="text_img" data-linkto="https://" target="_blank" title="">
                                             <img height="auto" src="https://inboxflows.com/_/image/http%253A%252F%252Fimages.selfridges.com%252Fis%252Fimage%252Fselfridges%252F190621SaleContinues-WW_nom3%253Fscl%253D1%2526qlt%253D95/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlcy5zZWxmciJ9:1kXOQI:VRbtF-IigUUf2A3DfKQm6J2ECLm_Cf5WJB5XrNYXs7I" style="height: auto; width: 282px; padding: 0px; text-align: center;" width="282"/>
                                            </a>
                                           </td>
                                          </tr>
                                          <!--/text_img -->
                                          <!-- CTA -->
                                          <tr>
                                           <td class="element" style="padding-bottom:20px; text-align:center;" valign="top">
                                            <table align="center" border="0" cellpadding="10" cellspacing="0" class="width_100" style="background-color:#ff0000;" width="220">
                                             <tr>
                                              <td align="center" class="btn" style="text-align: center; font-size:13px; color:#ffffff; font-family:'avalonregular', 'avalon', Arial, Helvetica, sans-serif; line-height:125%; font-weight:normal; text-transform:none;">
                                               <a data-linkto="https://" style="color:#ffffff;text-decoration:none;" target="_blank" title="">
                                                Tops &gt;
                                               </a>
                                              </td>
                                             </tr>
                                            </table>
                                           </td>
                                          </tr>
                                          <!-- /CTA -->
                                          <!-- modspacer -->
                                          <tr>
                                           <td class="modspacer" height="20">
                                           </td>
                                          </tr>
                                          <!--/modspacer -->
                                         </table>
                                        </th>
                                        <td width="12">
                                        </td>
                                        <th align="center" valign="top" width="50%">
                                         <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
                                          <!-- text_img -->
                                          <tr>
                                           <td align="center" class="element" style="padding-bottom:20px;" valign="top">
                                            <a class="text_img" data-linkto="https://" target="_blank" title="">
                                             <img height="auto" src="https://inboxflows.com/_/image/http%253A%252F%252Fimages.selfridges.com%252Fis%252Fimage%252Fselfridges%252F190621SaleContinues-WW_nom4%253Fscl%253D1%2526qlt%253D95/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlcy5zZWxmciJ9:1kXOQI:VRbtF-IigUUf2A3DfKQm6J2ECLm_Cf5WJB5XrNYXs7I" style="height: auto; width: 282px; padding: 0px; text-align: center;" width="282"/>
                                            </a>
                                           </td>
                                          </tr>
                                          <!--/text_img -->
                                          <!-- CTA -->
                                          <tr>
                                           <td class="element" style="padding-bottom:20px; text-align:center;" valign="top">
                                            <table align="center" border="0" cellpadding="10" cellspacing="0" class="width_100" style="background-color:#ff0000;" width="220">
                                             <tr>
                                              <td align="center" class="btn" style="text-align: center; font-size:13px; color:#ffffff; font-family:'avalonregular', 'avalon', Arial, Helvetica, sans-serif; line-height:125%; font-weight:normal; text-transform:none;">
                                               <a data-linkto="https://" style="color:#ffffff;text-decoration:none;" target="_blank" title="">
                                                Jeans &gt;
                                               </a>
                                              </td>
                                             </tr>
                                            </table>
                                           </td>
                                          </tr>
                                          <!-- /CTA -->
                                          <!-- modspacer -->
                                          <tr>
                                           <td class="modspacer" height="20">
                                           </td>
                                          </tr>
                                          <!--/modspacer -->
                                         </table>
                                        </th>
                                       </tr>
                                      </table>
                                     </th>
                                     <td class="gutter" width="12">
                                     </td>
                                    </tr>
                                    <!--/col_2_fixed -->
                                   </table>
                                   <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
                                    <!-- col_2_fixed -->
                                    <!--/col_2_fixed -->
                                    <!-- col_2_fixed -->
                                    <!--/col_2_fixed -->
                                   </table>
                                  </td>
                                 </tr>
                                 <!-- modspacer -->
                                </table>
                                <!-- modspacer -->
                               </td>
                              </tr>
                             </table>
                            </td>
                           </tr>
                          </table>
                          <!-- -->
                          <!-- -->
                          <table cellpadding="0" cellspacing="0" class="stylingblock-content-wrapper" style="min-width: 100%; " width="100%">
                           <tr>
                            <td class="stylingblock-content-wrapper camarker-inner">
                             <table cellpadding="0" cellspacing="0" class="stylingblock-content-wrapper" style="min-width: 100%; " width="100%">
                              <tr>
                               <td class="stylingblock-content-wrapper camarker-inner">
                                <!-- SALE HERO -->
                                <table align="center" border="0" cellpadding="0" cellspacing="0" class="width_100" style="background:white;" width="600">
                                 <!-- text_img -->
                                 <!--/text_img -->
                                 <!-- text_h1 -->
                                 <tr>
                                  <td class="element text_h1" style="padding:0 30px 20px 30px; text-align:center; font-size:16px; color:#ffffff; font-family:'avalonregular','avalon',Arial,Helvetica,sans-serif; line-height:125%; font-weight:normal;" valign="top">
                                   <span style="color:#212121;text-decoration:none;">
                                    Shop our favourite accessories
                                   </span>
                                  </td>
                                 </tr>
                                 <!--/text_h1 -->
                                </table>
                                <!-- /HERO TEXT -->
                                <!-- CAT 1-4 -->
                                <table align="center" border="0" cellpadding="0" cellspacing="0" class="width_100" style="background:#ffffff;" width="600">
                                 <!-- text_h1 -- <tr>     <td style="padding-bottom:20px; text-align:center; font-size:16px; color:#ffffff; font-family: 'avalonregular', 'avalon', Arial, Helvetica, sans-serif; line-height:125%; font-weight:normal;" valign="top">Shop our favourite brands</td> </tr> <!--/text_h1 -->
                                 <tr>
                                  <td align="center" class="module" style="background-color:#ffffff;">
                                   <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
                                    <!-- col_2_fixed -->
                                    <tr>
                                     <td class="gutter" width="12">
                                     </td>
                                     <th align="center" class="width_90" valign="top" width="576">
                                      <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
                                       <tr>
                                        <th align="center" valign="top" width="50%">
                                         <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
                                          <!-- CTA -->
                                          <tr>
                                           <td class="element" style="padding-bottom:10px; text-align:center;" valign="top">
                                            <table align="center" border="0" cellpadding="10" cellspacing="0" class="width_100" style="background-color:#ff0000;" width="282">
                                             <tr>
                                              <td align="center" class="btn" style="text-align: center; font-size:13px; color:#ffffff; font-family:'avalonregular', 'avalon', Arial, Helvetica, sans-serif; line-height:125%; font-weight:normal; text-transform:none;">
                                               <a data-linkto="https://" style="color:#ffffff;text-decoration:none; text-transform:none;" target="_blank" title="Shoulder Bags">
                                                Shoulder bags &gt;
                                               </a>
                                              </td>
                                             </tr>
                                            </table>
                                           </td>
                                          </tr>
                                          <!-- /CTA -->
                                          <!-- modspacer --<tr><td class="modspacer" height="20"></td></tr><!--/modspacer -->
                                         </table>
                                        </th>
                                        <td width="12">
                                        </td>
                                        <th align="center" valign="top" width="50%">
                                         <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
                                          <!-- CTA -->
                                          <tr>
                                           <td class="element" style="padding-bottom:10px; text-align:center;" valign="top">
                                            <table align="center" border="0" cellpadding="10" cellspacing="0" class="width_100" style="background-color:#ff0000;" width="282">
                                             <tr>
                                              <td align="center" class="btn" style="text-align: center; font-size:13px; color:#ffffff; font-family:'avalonregular', 'avalon', Arial, Helvetica, sans-serif; line-height:125%; font-weight:normal; text-transform:none;">
                                               <a data-linkto="https://" style="color:#ffffff;text-decoration:none; text-transform:normal;" target="_blank" title="Crossbody Bags">
                                                Cross body bags &gt;
                                               </a>
                                              </td>
                                             </tr>
                                            </table>
                                           </td>
                                          </tr>
                                          <!-- /CTA -->
                                          <!-- modspacer --<tr> <td class="modspacer" height="20"></td></tr><!--/modspacer -->
                                         </table>
                                        </th>
                                       </tr>
                                      </table>
                                     </th>
                                     <td class="gutter" width="12">
                                     </td>
                                    </tr>
                                    <!--/col_2_fixed -->
                                   </table>
                                   <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
                                    <!-- col_2_fixed -->
                                    <tr>
                                     <td class="gutter" width="12">
                                     </td>
                                     <th align="center" class="width_90" valign="top" width="576">
                                      <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
                                       <tr>
                                        <th align="center" valign="top" width="50%">
                                         <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
                                          <!-- CTA -->
                                          <tr>
                                           <td class="element" style="padding-bottom:10px; text-align:center;" valign="top">
                                            <table align="center" border="0" cellpadding="10" cellspacing="0" class="width_100" style="background-color:#ff0000;" width="282">
                                             <tr>
                                              <td align="center" class="btn" style="text-align: center; font-size:13px; color:#ffffff; font-family:'avalonregular', 'avalon', Arial, Helvetica, sans-serif; line-height:125%; font-weight:normal; text-transform:none;">
                                               <a data-linkto="https://" style="color:#ffffff;text-decoration:none; text-transform:none;" target="_blank" title="Jewellery &amp; Watches">
                                                Jewellery &amp; Watches &gt;
                                               </a>
                                              </td>
                                             </tr>
                                            </table>
                                           </td>
                                          </tr>
                                          <!-- /CTA -->
                                          <!-- modspacer --<tr> <td class="modspacer" height="40"></td></tr><!--/modspacer -->
                                         </table>
                                        </th>
                                        <td width="12">
                                        </td>
                                        <th align="center" valign="top" width="50%">
                                         <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
                                          <!-- CTA -->
                                          <tr>
                                           <td class="element" style="padding-bottom:10px; text-align:center;" valign="top">
                                            <table align="center" border="0" cellpadding="10" cellspacing="0" class="width_100" style="background-color:#ff0000;" width="282">
                                             <tr>
                                              <td align="center" class="btn" style="text-align: center; font-size:13px; color:#ffffff; font-family:'avalonregular', 'avalon', Arial, Helvetica, sans-serif; line-height:125%; font-weight:normal; text-transform:none;">
                                               <a data-linkto="https://" style="color:#ffffff;text-decoration:none; text-transform:none;" target="_blank" title="Sunglasses">
                                                Sunglasses &gt;
                                               </a>
                                              </td>
                                             </tr>
                                            </table>
                                           </td>
                                          </tr>
                                          <!-- /CTA -->
                                          <!-- modspacer --<tr> <td class="modspacer" height="40"></td></tr><!--/modspacer -->
                                         </table>
                                        </th>
                                       </tr>
                                      </table>
                                     </th>
                                     <td class="gutter" width="12">
                                     </td>
                                    </tr>
                                    <!--/col_2_fixed -->
                                   </table>
                                  </td>
                                 </tr>
                                 <!-- modspacer -->
                                </table>
                                <!-- /CAT 1-4 -->
                                <!-- CAT 1-4 -->
                                <table align="center" border="0" cellpadding="0" cellspacing="0" class="width_100" style="background:#ffffff;" width="600">
                                 <!-- text_h1 -->
                                 <!--/text_h1 -->
                                 <!-- modspacer -->
                                 <tr>
                                  <td class="modspacer" height="40">
                                  </td>
                                 </tr>
                                 <!--/modspacer -->
                                </table>
                                <!-- /CAT 1-4 -->
                               </td>
                              </tr>
                             </table>
                            </td>
                           </tr>
                          </table>
                          <!-- -->
                          <!-- -->
                          <table cellpadding="0" cellspacing="0" class="stylingblock-content-wrapper" style="min-width: 100%; " width="100%">
                           <tr>
                            <td class="stylingblock-content-wrapper camarker-inner">
                             <table cellpadding="0" cellspacing="0" class="stylingblock-content-wrapper" style="min-width: 100%; " width="100%">
                              <tr>
                               <td class="stylingblock-content-wrapper camarker-inner">
                                <table align="center" bgcolor="#5A6770" border="0" cellpadding="0" cellspacing="0" class="width_100" role="presentation" width="600">
                                 <tr>
                                  <td width="0">
                                  </td>
                                  <th align="center" class="width_100" width="600">
                                   <table bgcolor="#5A6770" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
                                    <tr>
                                     <th class="display_hide" width="30">
                                     </th>
                                     <th align="center" class="display_foot" width="270">
                                      <table bgcolor="#5A6770" border="0" cellpadding="0" cellspacing="0" class="width_90" role="presentation" width="100%">
                                       <!-- spacer -->
                                       <tr>
                                        <td class="height_10" height="40">
                                        </td>
                                       </tr>
                                       <!-- /spacer -->
                                       <tr>
                                        <td class="text_center" style="padding-bottom: 20px; font-size:18px; color:#ffffff; font-family:'avalonregular', 'avalon', Arial, Helvetica, sans-serif; line-height:125%; font-weight:normal; text-decoration:none;">
                                         <a style="color:#ffffff;text-decoration:none;" target="_blank" title="">
                                          Want your Selfridges Sale purchase tomorrow?
                                         </a>
                                        </td>
                                       </tr>
                                       <tr>
                                        <td class="text_center" style="padding-bottom: 20px; font-size:13px; color:#ffffff; font-family:'avalonregular', 'avalon', Arial, Helvetica, sans-serif; line-height:125%; font-weight:normal; text-decoration:none;">
                                         <a style="color:#ffffff;text-decoration:none;" target="_blank" title="">
                                          ...well, now’s the time to sign up to Selfridges Plus. For only £10, you can get unlimited deliveries (including next day UK delivery) for 12 months, wherever you are in the world*
                                         </a>
                                        </td>
                                       </tr>
                                       <tr>
                                        <td align="center">
                                         <table border="0" cellpadding="0" cellspacing="0" class="width_70" role="presentation" width="100%">
                                          <tr>
                                           <td align="left" class="text_center" style="padding-bottom:0px;" valign="top">
                                            <table border="0" cellpadding="10" cellspacing="0" class="width_100" style="background-color:#ffe256;" width="200">
                                             <tr>
                                              <td class="btn" style="text-align: center; font-size:13px; color:#212121; font-family:'avalonregular', 'avalon', Arial, Helvetica, sans-serif; line-height:125%; font-weight:normal; text-transform:none;">
                                               <a style="color:#212121;text-decoration:none;" target="_blank" title="">
                                                Sign me up &gt;
                                               </a>
                                              </td>
                                             </tr>
                                            </table>
                                           </td>
                                          </tr>
                                         </table>
                                        </td>
                                       </tr>
                                       <!-- spacer -->
                                       <tr>
                                        <td height="40">
                                        </td>
                                       </tr>
                                       <!-- /spacer -->
                                      </table>
                                     </th>
                                     <td class="display_hide" width="0">
                                     </td>
                                     <th align="center" class="display_head" valign="middle" width="300">
                                      <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
                                       <tr>
                                        <td align="center" valign="middle">
                                         <a class="text_img" target="_blank" title="">
                                          <img alt="" class="width_50" height="241" src="https://inboxflows.com/_/image/http%253A%252F%252Fservice.maxymiser.net%252Fcm%252Fimages-eu%252F1%252F1%252F1%252FDEF7C09791EE3EE75384A5067C4A5334B0DDB8289580302D83FBF15EDC4D4536%252Fselfridges-com%252FMAX-164-SelfridgesPlusLanding%252Fsel-plus-logo-animated-2.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRnNlcnZpY2UubWF4eSJ9:1kXOQI:Pp7RWJHP9VFu2h6r9JLl6fW4V_UYbesmf3-vxo41tXk" style="height: 241px; display: block; margin:auto;" width="300"/>
                                         </a>
                                        </td>
                                       </tr>
                                      </table>
                                     </th>
                                    </tr>
                                   </table>
                                  </th>
                                 </tr>
                                </table>
                                <!-- SPACER -->
                                <table align="center" border="0" cellpadding="0" cellspacing="0">
                                 <tr>
                                  <td height="40">
                                  </td>
                                 </tr>
                                </table>
                                <!-- /SPACER -->
                               </td>
                              </tr>
                             </table>
                            </td>
                           </tr>
                          </table>
                          <!-- -->
                          <!-- -->
                          <table cellpadding="0" cellspacing="0" class="stylingblock-content-wrapper" style="min-width: 100%; " width="100%">
                           <tr>
                            <td class="stylingblock-content-wrapper camarker-inner">
                             <!-- WRAPPER -->
                             <table border="0" cellpadding="0" cellspacing="0" class="wrapper" role="presentation" style="table-layout:fixed; margin:0; padding:0; width:100% !important; line-height:100% !important;" width="100%">
                              <tr>
                               <td align="center">
                                <table border="0" cellpadding="0" cellspacing="0" class="wrapper_inner" role="presentation" style="width:600px; min-width:600px; background:#ffffff;" width="600">
                                 <!--/WRAPPER -->
                                 <!-- HEADER -->
                                 <!--/HEADER -->
                                 <!-- FOOTER -->
                                 <!-- modspacer -->
                                 <tr>
                                  <td class="modspacer" height="40" style="line-height:40px; background-color:#f8f8f8;">
                                  </td>
                                 </tr>
                                 <!--/modspacer -->
                                 <!-- quick links -->
                                 <tr>
                                  <td align="center" class="module" style="background-color:#f8f8f8; padding-bottom:20px;">
                                   <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
                                    <tr>
                                     <th class="gutter" width="12">
                                     </th>
                                     <th align="center" valign="top" width="576">
                                      <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
                                       <tr>
                                        <td>
                                         <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
                                          <tr>
                                           <td class="element" style="padding-bottom:20px; text-align:center;" valign="top">
                                            <span class="text_h2" style="font-size:15px; color:#212121; font-family:'avalonbold','avalon',Arial,Helvetica,sans-serif; line-height:125%; font-weight:normal; text-transform:uppercase;">
                                             more from selfridges
                                            </span>
                                           </td>
                                          </tr>
                                         </table>
                                        </td>
                                       </tr>
                                       <tr>
                                        <td align="center" style="padding-bottom:10px;" valign="top">
                                         <table border="0" cellpadding="0" cellspacing="0" class="width_100" role="presentation">
                                          <tr>
                                           <td style="padding:10px; border:1px solid #e2e2e2; text-align:center;" width="360">
                                            <span class="button" style="font-size:13px; color:#212121; font-family:'avalonregular','avalon',Arial,Helvetica,sans-serif; line-height:125%; font-weight:normal; text-transform:uppercase;">
                                             <a data-linkto="//" style="color:#212121;text-decoration:none;" target="_blank" title="">
                                              Shop women's new in
                                             </a>
                                            </span>
                                           </td>
                                          </tr>
                                         </table>
                                        </td>
                                       </tr>
                                       <tr>
                                        <td align="center" style="padding-bottom:10px;" valign="top">
                                         <table border="0" cellpadding="0" cellspacing="0" class="width_100" role="presentation">
                                          <tr>
                                           <td style="padding:10px; border:1px solid #e2e2e2; text-align:center;" width="360">
                                            <span class="button" style="font-size:13px; color:#212121; font-family:'avalonregular','avalon',Arial,Helvetica,sans-serif; line-height:125%; font-weight:normal; text-transform:uppercase;">
                                             <a data-linkto="//" style="color:#212121;text-decoration:none;" target="_blank" title="">
                                              Shop men's new in
                                             </a>
                                            </span>
                                           </td>
                                          </tr>
                                         </table>
                                        </td>
                                       </tr>
                                       <tr>
                                        <td align="center" class="element" style="padding-bottom:20px;" valign="top">
                                         <table border="0" cellpadding="0" cellspacing="0" class="width_100" role="presentation">
                                          <tr>
                                           <td style="padding:10px; border:1px solid #e2e2e2; text-align:center;" width="360">
                                            <span class="button" style="font-size:13px; color:#212121; font-family:'avalonregular','avalon',Arial,Helvetica,sans-serif; line-height:125%; font-weight:normal; text-transform:uppercase;">
                                             <a data-linkto="//" style="color:#212121;text-decoration:none;" target="_blank" title="">
                                              SHOP BAGS NEW IN
                                             </a>
                                            </span>
                                           </td>
                                          </tr>
                                         </table>
                                        </td>
                                       </tr>
                                      </table>
                                     </th>
                                     <th class="gutter" width="12">
                                     </th>
                                    </tr>
                                   </table>
                                  </td>
                                 </tr>
                                 <!--/quick links -->
                                 <!-- social -->
                                 <tr>
                                  <td align="center" class="module" style="background-color:#f8f8f8; padding-bottom:20px;">
                                   <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
                                    <!-- row1 -->
                                    <tr>
                                     <td class="gutter" width="12">
                                     </td>
                                     <td align="center" class="width_100" valign="top" width="576">
                                      <table border="0" cellpadding="0" cellspacing="0" role="presentation">
                                       <tr>
                                        <th width="35">
                                        </th>
                                        <!-- FACEBOOK -->
                                        <th align="center" valign="top">
                                         <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
                                          <tr>
                                           <td align="center" class="element" style="padding-bottom:20px;" valign="top">
                                            <a class="image_description" data-linkto="https://" style="font-size:20px; color:#212121; font-family:'avalonregular','avalon',Arial,Helvetica,sans-serif; line-height:125%; font-weight:normal; text-transform:none;" target="_blank" title="">
                                             <img alt="facebook icon" height="auto" src="https://inboxflows.com/_/image/http%253A%252F%252Fimages.selfridges.com%252Fis%252Fimage%252Fselfridges%252F170000_social_facebook_v2%253Fscl%253D1%2526qlt%253D90%252C1%2526fmt%253Dpng8-alpha/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlcy5zZWxmciJ9:1kXOQI:VRbtF-IigUUf2A3DfKQm6J2ECLm_Cf5WJB5XrNYXs7I" style="height: auto; width: 30px;" width="30"/>
                                            </a>
                                            <a class="image_description" style="font-size:20px; color:#212121; font-family:'avalonregular','avalon',Arial,Helvetica,sans-serif; line-height:125%; font-weight:normal; text-transform:none;" target="_blank">
                                            </a>
                                           </td>
                                          </tr>
                                         </table>
                                        </th>
                                        <th width="35">
                                        </th>
                                        <!-- INSTAGRAM -->
                                        <th align="center" valign="top">
                                         <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
                                          <tr>
                                           <td align="center" class="element" style="padding-bottom:20px;" valign="top">
                                            <a class="image_description" data-linkto="https://" style="font-size:20px; color:#212121; font-family:'avalonregular','avalon',Arial,Helvetica,sans-serif; line-height:125%; font-weight:normal; text-transform:none;" target="_blank" title="">
                                             <img alt="Instagram icon" height="auto" src="https://inboxflows.com/_/image/http%253A%252F%252Fimages.selfridges.com%252Fis%252Fimage%252Fselfridges%252F170000_social_instagram_v2%253Fscl%253D1%2526qlt%253D90%252C1%2526fmt%253Dpng8-alpha/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlcy5zZWxmciJ9:1kXOQI:VRbtF-IigUUf2A3DfKQm6J2ECLm_Cf5WJB5XrNYXs7I" style="height: auto; width: 30px;" width="30"/>
                                            </a>
                                            <a class="image_description" style="font-size:20px; color:#212121; font-family:'avalonregular','avalon',Arial,Helvetica,sans-serif; line-height:125%; font-weight:normal; text-transform:none;" target="_blank">
                                            </a>
                                           </td>
                                          </tr>
                                         </table>
                                        </th>
                                        <th width="35">
                                        </th>
                                        <!-- TWITTER -->
                                        <th align="center" valign="top">
                                         <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
                                          <tr>
                                           <td align="center" class="element" style="padding-bottom:20px;" valign="top">
                                            <a class="image_description" data-linkto="https://" style="font-size:20px; color:#212121; font-family:'avalonregular','avalon',Arial,Helvetica,sans-serif; line-height:125%; font-weight:normal; text-transform:none;" target="_blank" title="">
                                             <img alt="twitter icon" height="auto" src="https://inboxflows.com/_/image/http%253A%252F%252Fimages.selfridges.com%252Fis%252Fimage%252Fselfridges%252F170000_social_twitter_v2%253Fscl%253D1%2526qlt%253D90%252C1%2526fmt%253Dpng8-alpha/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlcy5zZWxmciJ9:1kXOQI:VRbtF-IigUUf2A3DfKQm6J2ECLm_Cf5WJB5XrNYXs7I" style="height: auto; width: 35px;" width="35"/>
                                            </a>
                                            <a class="image_description" style="font-size:20px; color:#212121; font-family:'avalonregular','avalon',Arial,Helvetica,sans-serif; line-height:125%; font-weight:normal; text-transform:none;" target="_blank">
                                            </a>
                                           </td>
                                          </tr>
                                         </table>
                                        </th>
                                        <th width="35">
                                        </th>
                                        <!-- WEIBO -->
                                        <th align="center" class="element" style="padding-bottom:20px;" valign="top">
                                         <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
                                          <tr>
                                           <td align="center" valign="top">
                                            <a class="image_description" data-linkto="https://" style="font-size:20px; color:#212121; font-family:'avalonregular','avalon',Arial,Helvetica,sans-serif; line-height:125%; font-weight:normal; text-transform:none;" target="_blank" title="">
                                             <img alt="weibo icon" height="auto" src="https://inboxflows.com/_/image/http%253A%252F%252Fimages.selfridges.com%252Fis%252Fimage%252Fselfridges%252F170000_social_weibo_v2%253Fscl%253D1%2526qlt%253D90%252C1%2526fmt%253Dpng8-alpha/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlcy5zZWxmciJ9:1kXOQI:VRbtF-IigUUf2A3DfKQm6J2ECLm_Cf5WJB5XrNYXs7I" style="height: auto; width: 35px;" width="35"/>
                                            </a>
                                            <a class="image_description" style="font-size:20px; color:#212121; font-family:'avalonregular','avalon',Arial,Helvetica,sans-serif; line-height:125%; font-weight:normal; text-transform:none;" target="_blank">
                                            </a>
                                           </td>
                                          </tr>
                                         </table>
                                        </th>
                                        <th width="35">
                                        </th>
                                        <!-- Wechat -->
                                        <th align="center" class="element" style="padding-bottom:20px;" valign="top">
                                         <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
                                          <tr>
                                           <td align="center" valign="top">
                                            <a class="image_description" data-linkto="//" style="font-size:20px; color:#212121; font-family:'avalonregular','avalon',Arial,Helvetica,sans-serif; line-height:125%; font-weight:normal; text-transform:none;" target="_blank" title="">
                                             <img alt="weibo icon" src="https://inboxflows.com/_/image/http%253A%252F%252Fimages.selfridges.com%252Fis%252Fimage%252Fselfridges%252F170000_social_wechat_v2%253Fscl%253D1%2526qlt%253D90%252C1%2526fmt%253Dpng8-alpha/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlcy5zZWxmciJ9:1kXOQI:VRbtF-IigUUf2A3DfKQm6J2ECLm_Cf5WJB5XrNYXs7I" style="height: auto; width: 35px; padding: 0px; text-align: center;" width="50"/>
                                            </a>
                                            <a class="image_description" style="font-size:20px; color:#212121; font-family:'avalonregular','avalon',Arial,Helvetica,sans-serif; line-height:125%; font-weight:normal; text-transform:none;" target="_blank">
                                            </a>
                                           </td>
                                          </tr>
                                         </table>
                                        </th>
                                        <th width="35">
                                        </th>
                                       </tr>
                                      </table>
                                     </td>
                                     <td class="gutter" width="12">
                                     </td>
                                    </tr>
                                    <!--/row1 -->
                                   </table>
                                  </td>
                                 </tr>
                                 <!--/social -->
                                 <!-- award -->
                                 <tr>
                                  <td align="center" class="module" style="background-color:#e7e7e7; padding-bottom:20px;">
                                   <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
                                    <tr>
                                     <td class="gutter" style="border-top:1px solid #e2e2e2; border-bottom:1px solid #e2e2e2;" width="12">
                                     </td>
                                     <td align="center" class="width_100" style="padding-top:20px; border-top:1px solid #e2e2e2; border-bottom:1px solid #e2e2e2;" valign="top" width="576">
                                      <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="80%">
                                       <tr>
                                        <td>
                                         <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
                                          <tr>
                                           <td class="element" style="padding-bottom:20px; text-align:center;" valign="top">
                                            <span class="text_p" style="font-size:13px; color:#212121; font-family:'avalonregular','avalon',Arial,Helvetica,sans-serif; line-height:125%; font-weight:normal; text-transform:none;">
                                             Voted Best Department Store in the World in the Global Department Store Summits 2010, 2012, 2014, 2018
                                            </span>
                                           </td>
                                          </tr>
                                          <tr>
                                           <td class="element" style="padding-bottom:20px; text-align:center;" valign="top">
                                            <span class="text_p" style="font-size:13px; color:#212121; font-family:'avalonregular','avalon',Arial,Helvetica,sans-serif; line-height:125%; font-weight:normal; text-transform:none;">
                                             <a data-linkto="//" style="color:#212121;text-decoration:none;" target="_blank" title="">
                                              Winner of the World's Best Department Store Campaign Award at the Global Department Store Summit 2017 for our EveryBODY campaign
                                             </a>
                                            </span>
                                           </td>
                                          </tr>
                                          <tr>
                                           <td class="element" style="padding-bottom:20px; text-align:center;" valign="top">
                                            <span class="text_p" style="font-size:13px; color:#212121; font-family:'avalonregular','avalon',Arial,Helvetica,sans-serif; line-height:125%; font-weight:normal; text-transform:none;">
                                             <a data-linkto="//" style="color:#212121;text-decoration:none;" target="_blank" title="">
                                              Winner of the World's Best Sustainability Campaign by a Department Store Award at the Global Department Store Summit 2016
                                             </a>
                                            </span>
                                           </td>
                                          </tr>
                                         </table>
                                        </td>
                                       </tr>
                                      </table>
                                     </td>
                                     <td class="gutter" style="border-top:1px solid #e2e2e2; border-bottom:1px solid #e2e2e2;" width="12">
                                     </td>
                                    </tr>
                                   </table>
                                  </td>
                                 </tr>
                                 <!--/award -->
                                 <!-- terms -->
                                 <tr>
                                  <td align="center" class="module" style="background-color:#e7e7e7; padding-bottom:20px;">
                                   <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
                                    <tr>
                                     <td class="gutter" width="12">
                                     </td>
                                     <td align="center" class="width_100" valign="top" width="576">
                                      <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="80%">
                                       <tr>
                                        <td>
                                         <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
                                          <tr>
                                           <td class="element" style="padding-bottom:20px; text-align:center;" valign="top">
                                            <span class="text_cap" style="font-size:12px; color:#212121; font-family:'avalonregular','avalon',Arial,Helvetica,sans-serif; line-height:125%; font-weight:normal; text-transform:none;">
                                             <a data-linkto="//" style="color:#212121;text-decoration:underline;" target="_blank" title="">
                                              Privacy &amp; cookies
                                             </a>
                                             <!--removeIf(salesforce)-->
                                             <!--endRemoveIf(salesforce)-->
                                             <!--removeIf(!salesforce)-->
                                             <span hidden="">
                                             </span>
                                             <span class="text_cap" style="font-size:12px; color:#212121; font-family:'avalonregular','avalon',Arial,Helvetica,sans-serif; line-height:125%; font-weight:normal; text-transform:none;">
                                              <a data-linkto="other" style="color:#009cff;text-decoration:none;" title="">
                                               Unsubscribe here
                                              </a>
                                             </span>
                                             <!--endRemoveIf(!salesforce)-->
                                             <a data-linkto="//" style="color:#212121;text-decoration:underline;" target="_blank" title="">
                                              Terms &amp; conditions
                                             </a>
                                            </span>
                                           </td>
                                          </tr>
                                          <tr>
                                           <td class="element" style="padding-bottom:5px; text-align:center;" valign="top">
                                            <span class="text_cap" style="font-size:12px; color:#212121; font-family:'avalonregular','avalon',Arial,Helvetica,sans-serif; line-height:125%; font-weight:normal; text-transform:none;">
                                             All Rights Reserved. Selfridges Retail Limited Registered in England with company number 97117. Registered Office: 400 Oxford Street London W1A 1AB.
                                            </span>
                                           </td>
                                          </tr>
                                         </table>
                                        </td>
                                       </tr>
                                      </table>
                                     </td>
                                     <td class="gutter" width="12">
                                     </td>
                                    </tr>
                                   </table>
                                  </td>
                                 </tr>
                                 <!--/terms -->
                                 <!-- copyright -->
                                 <tr>
                                  <td align="center" class="module" style="background-color:#e7e7e7; padding-bottom:20px;">
                                   <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
                                    <tr>
                                     <td class="gutter" width="12">
                                     </td>
                                     <td align="center" class="width_100" valign="top" width="576">
                                      <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="80%">
                                       <tr>
                                        <td>
                                         <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
                                          <tr>
                                           <td class="element" style="padding-bottom:20px; text-align:center;" valign="top">
                                            <span class="text_cap" style="font-size:12px; color:#212121; font-family:'avalonregular','avalon',Arial,Helvetica,sans-serif; line-height:125%; font-weight:normal; text-transform:none;">
                                             Copyright © 2019 Selfridges &amp; Co.
                                            </span>
                                           </td>
                                          </tr>
                                          <tr>
                                           <td style="padding-bottom:20px; text-align:center;" valign="top">
                                            <span class="text_cap" style="font-size:10px; color:#212121; font-family:'avalonregular','avalon',Arial,Helvetica,sans-serif; line-height:125%; font-weight:normal; text-transform:none;">
                                             <a data-linkto="//" style="color:#212121;text-decoration:underline;" target="_blank" title="">
                                              *conditions apply
                                             </a>
                                            </span>
                                           </td>
                                          </tr>
                                         </table>
                                        </td>
                                       </tr>
                                      </table>
                                     </td>
                                     <td class="gutter" width="12">
                                     </td>
                                    </tr>
                                   </table>
                                  </td>
                                 </tr>
                                 <!--/copyright -->
                                 <!--/FOOTER -->
                                 <!-- WRAPPER -->
                                </table>
                               </td>
                              </tr>
                             </table>
                             <!--/WRAPPER -->
                             <div style="display:none; white-space:nowrap; font:15px courier; line-height:0;">
                             </div>
                            </td>
                           </tr>
                          </table>
                          <!-- -->
                         </div>
                        </td>
                       </tr>
                      </tbody>
                     </table>
                    </td>
                   </tr>
                  </tbody>
                 </table>
                </td>
               </tr>
              </table>
             </td>
            </tr>
           </table>
          </td>
         </tr>
        </table>
       </td>
      </tr>
     </table>
    </td>
   </tr>
   <tr>
    <td valign="top">
    </td>
   </tr>
  </table>
 </body>
</html>