<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.1//EN' 'http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd'><html xmlns='http://www.w3.org/1999/xhtml'>
<html prefix="og: http://ogp.me/ns/fb#">
<head><style type='text/css'>
span.preheader { display:none !important; visibility:hidden;line-height:0; opacity:0; font-size:0.1px; color:white; height:0; width:0; }
</style>

  <!--this is the head-->
  <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1"> <!-- Forcing initial-scale shouldn't be necessary -->
    <meta http-equiv="X-UA-Compatible" content="IE=edge"> <!-- Use the latest (edge) version of IE rendering engine -->
    <meta name="x-apple-disable-message-reformatting" />  <!-- Disable auto-scale in iOS 10 Mail entirely -->
    
    <title></title> <!-- The title tag shows in email notifications, like Android 4.4. -->
    <!-- Web Font / @font-face : BEGIN -->
    <!-- NOTE: If web fonts are not required, lines 10 - 27 can be safely removed. -->
    <!-- Desktop Outlook chokes on web font references and defaults to Times New Roman, so we force a safe fallback font. -->
    <!-- All other clients get the webfont reference; some will render the font and others will silently fail to the fallbacks. More on that here: http://stylecampaign.com/blog/2015/02/webfont-support-in-email/ -->
    <!--[if !mso]><!-->
    <!-- insert web font reference, eg: <link href='https://fonts.googleapis.com/css?family=Roboto:400,700' rel='stylesheet' type='text/css'> -->
    <!--<![endif]-->
    <!-- Web Font / @font-face : END -->
    <!-- CSS Reset -->
    <style>
        /* What it does: Remove spaces around the email design added by some email clients. */
        /* Beware: It can remove the padding / margin and add a background color to the compose a reply window. */
        html,
        body {
            margin: 0 auto !important;
            padding: 0 !important;
            height: 100% !important;
            width: 100% !important;
            line-height: 1.4 !important;
        }

        /* What it does: Stops email clients resizing small text. */
        * {
            -ms-text-size-adjust: 100%;
            -webkit-text-size-adjust: 100%;
        }

        /* What it does: Centers email on Android 4.4 */
        div[style*="margin: 16px 0"] {
            margin: 0 !important;
        }

        /* What it does: Stops Outlook from adding extra spacing to tables. */
        table,
        td {
            mso-table-lspace: 0pt !important;
            mso-table-rspace: 0pt !important;
        }

        /* What it does: Fixes webkit padding issue. Fix for Yahoo mail table alignment bug. Applies table-layout to the first 2 tables then removes for anything nested deeper. */
        table {
            border-spacing: 0 !important;
            border-collapse: collapse !important;
            table-layout: fixed !important;
            margin: 0 auto !important;
        }

            table table table {
                table-layout: auto;
            }

        /* What it does: Uses a better rendering method when resizing images in IE. */
        img {
            -ms-interpolation-mode: bicubic;
        }

        /* What it does: A work-around for iOS meddling in triggered links. */
        *[x-apple-data-detectors] {
            color: inherit !important;
            text-decoration: none !important;
        }

        /* What it does: A work-around for Gmail meddling in triggered links. */
        .x-gmail-data-detectors,
        .x-gmail-data-detectors *,
        .aBn {
            border-bottom: 0 !important;
            cursor: default !important;
        }

        /* What it does: Prevents Gmail from displaying an download button on large, non-linked images. */
        .a6S {
            display: none !important;
            opacity: 0.01 !important;
        }
        /* If the above doesn't work, add a .g-img class to any image in question. */
        img.g-img + div {
            display: none !important;
        }

        /* What it does: Prevents underlining the button text in Windows 10 */
        .button-link {
            text-decoration: none !important;
        }
        .button-text{text-align: center!important;}
        /* What it does: Removes right gutter in Gmail iOS app: https://github.com/TedGoas/Cerberus/issues/89  */
        /* Create one of these media queries for each additional viewport size you'd like to fix */
        /* Thanks to Eric Lepetit @ericlepetitsf) for help troubleshooting */
        @media only screen and (min-device-width: 375px) and (max-device-width: 413px) { /* iPhone 6 and 6+ */
            .email-container {
                min-width: 375px !important;
            }
        }

    </style>

    <!-- Progressive Enhancements -->
    
      <style id="media-query-style-element">
      /* Media Queries */
       @media  screen yahoo and (min-width: 768px){
       img[class="desktop-version"] {
          display: none !important;
        }
        img[class="mobile-version"] {
          display: inline-block !important;
        }
      }
      @media  screen yahoo and (max-width: 768px){
        img[class="desktop-version"] {
          display: inline-block !important;
        }
        img[class="mobile-version"] {
         display: none !important;
        }
      }

      @media screen and (min-width: 768px) {
        .desktop-version {
          display: inline-block !important;
        }
        .mobile-version {
         display: none !important;
        }
      }

      @media screen and (max-width: 768px) {

        .desktop-version {
          display: none !important;
        }
        .mobile-version {
          display: inline-block !important;
        }
        .email-container img.cd-image {
            height: auto !important;
          }
          .email-container img.no-img-edit {
            width: 100% !important;
            height: auto !important;
          }
          table, td{
            width: 100% !important;
          }
          div{
            width: 100% !important;
            min-width:100%!important;
          }
        .social-block-container{
            padding-left: 0 !important;
            padding-right: 0 !important;
          }
          /* What it does: Forces elements to resize to the full width of their container. Useful for resizing images beyond their max-width. */
        .fluid {
            width: 100% !important;
            max-width: 100% !important;
            height: auto !important;
            margin-left: auto !important;
            margin-right: auto !important;
          }

          /* What it does: Forces table cells into full-width rows. */
        .stack-column,
        .stack-column-center {
            display: block;
            width: 100% !important;
            max-width: 100% !important;
            direction: ltr !important;
          }

          /* What it does: Generic utility class for centering. Useful for images, buttons, and nested tables. */
        .center-on-narrow {
            text-align: center !important;
            margin-left: auto !important;
            margin-right: auto !important;
            float: none !important;
          }

          table.center-on-narrow {
            display: inline-block !important;
          }
        .button-text{ max-width:100%!important; box-sizing: border-box!important;}
      }
      </style>

    <!-- What it does: Makes background images in 72ppi Outlook render at correct size. -->
    <!--[if gte mso 9]>
    <xml>
      <o:OfficeDocumentSettings>
        <o:AllowPNG/>
        <o:PixelsPerInch>96</o:PixelsPerInch>
     </o:OfficeDocumentSettings>
    </xml>
    <![endif]-->
    
    <!--Replace with relevant script for different preview behavior -->
    
</head>
<body><span class='preheader' style='display: none !important; visibility: line-height:0; hidden; opacity: 0; font-size:0.1px; color: white; height: 0; width: 0;'>Shining a light on your degree..                                                                                                                       </span><img src="https://elinkeu.clickdimensions.com/o/3/TXpZM01qa3hNalU6Y0RFdFlqRTVNekkwTFdFNFpUVTNNRFUyTlRKaE16UXdZV000T1RReU9UUXhNV1l3TW1RME5HRXc6Wm1GdGFXeDVRR2hsYVc1eWFXTm9MbU52TG5WcjpZMjl1ZEdGamRDMW1aRFJtT1RneE5UTTBOamRsT1RFeFlUaGlOREF3TWpJME9EQXdOVGMwT0MwMlkyUmlNRE5tTlRFNFpXWTBNV05rT1RJMU16QTJaREJqWkdGak5qRTFZdw/LoqBDqaISJn7EBdRWbs2Dg" width="1" height="1" /><img src="https://elinkeu.clickdimensions.com/o/3/TXpZM01qa3hNalU6Y0RFdFlqRTVNekkwTFdFNFpUVTNNRFUyTlRKaE16UXdZV000T1RReU9UUXhNV1l3TW1RME5HRXc6Wm1GdGFXeDVRR2hsYVc1eWFXTm9MbU52TG5WcjpZMjl1ZEdGamRDMW1aRFJtT1RneE5UTTBOamRsT1RFeFlUaGlOREF3TWpJME9EQXdOVGMwT0MwMlkyUmlNRE5tTlRFNFpXWTBNV05rT1RJMU16QTJaREJqWkdGak5qRTFZdw/LoqBDqaISJn7EBdRWbs2Dg" width="1" height="1" />
<!--this is the body-->
  <center style="width: 100%;">

                      <div dir="ltr" style="max-width: 100%; margin: auto; direction: ltr;" class="email-container">
                      <table role="presentation" cellspacing="0" cellpadding="0" border="0" align="center" width="100%" style="width: 100%; border-width: 1px; border-style: none; border-radius: 0px; background-origin: border-box; background-color: #e0e0e0; border-collapse: separate!important;" class="email-container">
                        <tbody>
                         <tr>
                           <td style="width: 100%;">
                            <!--[if mso]>
                            <table role="presentation" border="0" cellspacing="0" cellpadding="0" align="center" width="601" style="border-width: 1px; border-color: #ffffff; border-style: None; width: 601px; max-width: 601px;  border-collapse: separate!important;" class="email-page-container">
                           <![endif]-->
                            <!--[if !mso]><!-- -->
                             <table role="presentation" cellspacing="0" cellpadding="0" border="0"  align="center" width="602" style="border-width: 1px; border-color: #ffffff; border-style: None; width: 602px; max-width: 602px;  border-collapse: separate!important;" class="email-page-container">
                            <!--<![endif]-->
                                  <tbody>
                                      <tr class="section-block">
                        <td align="center" height="100%" valign="top" width="100%" style=" ">
                            <!-- Email Section : BEGIN -->
                            <!--[if mso]>
                            <table role="presentation"  border="0" cellspacing="0" cellpadding="0" align="center" width="600">
                              <tr>
                                <td align="center" valign="top" width="600">
                           <![endif]-->
                            <table id="40" role="presentation"  border="0" cellpadding="0" cellspacing="0" align="center" width="100%" style="max-width:600px;">
                                <tbody>
                                    <tr>
                                        <td valign="top" width="100%" style="padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; background-color: #ffffff;; font-size: 0;">
                                         <!--[if mso]>
                                        <table role="presentation"  border="0" cellspacing="0" cellpadding="0" align="center" width="600px" style="table-layout:fixed; border-collapse: collapse; mso-table-lspace:0; mso-table-rspace:0;" cellpadding="0" cellspacing="0" >
                                        <tr>
                                        <![endif]-->
                                        <!--[if mso]><td align="left" valign="top" width="600px"><![endif]--><div style="overflow: visible!important; display: inline-block; width:600px; max-width:600px; min-width:600px; vertical-align:top;" class="stack-column">
                                    <table role="presentation"  cellspacing="0" cellpadding="0" border="0" width="100%">
                                        <tbody>
                                            <tr>
                                                <td style="padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px;">
                                                    <table role="presentation"  cellspacing="0" cellpadding="0" border="0" width="600px" style="table-layout: fixed; width: 600px;" >
                                                        <tbody>
                                                            <tr>
                          <td width="564" class="text-block-container" style="box-sizing: border-box;white-space: normal;font-family:Arial,Helvetica,sans-serif;font-size:12px;line-height:1.4;color:#000; word-wrap: break-word !important; white-space: normal;  padding-top: 5px; padding-bottom: 5px; padding-left: 18px; padding-right: 18px;"><p style="font-family:Arial;font-size:14px;color:#002a41;letter-spacing:0px;line-height:1.2;text-align:left;margin:0;word-wrap:break-word !important;font-weight:normal;font-style:normal;text-decoration: none"><span style="font-size:13px"><span style="color:#002a41">Click <a cd-link-manager-tab="6" href="https://elinkeu.clickdimensions.com/m/1/36729125/p1-b19324-a8e5705652a340ac89429411f02d44a0/7/527/8f804840-0c17-42e3-822d-b49691905e11" style="color: rgb(0, 42, 65); font-weight: bold; text-decoration: underline;"><span style="color:#002a41"><u>here</u></span></a> if you are having trouble viewing this message.</span></span></p>
</td>
                     </tr>
                                                         </tbody>
                                                     </table>
                                                 </td>
                                             </tr>
                                        </tbody>
                                    </table>
                              </div><!--[if mso]></td><![endif]-->
                                        <!--[if mso]>
                                        </tr>
                                        </table>
                                        <![endif]-->
                                        </td>
                                    </tr>
                                </tbody>
                            </table>
                          <!--[if mso]>
                            </td>
                           </tr>
                          </table>
                          <![endif]-->
                          <!-- Email Section : END -->
                        </td>
                    </tr><tr class="section-block">
                        <td align="center" height="100%" valign="top" width="100%" style=" ">
                            <!-- Email Section : BEGIN -->
                            <!--[if mso]>
                            <table role="presentation"  border="0" cellspacing="0" cellpadding="0" align="center" width="600">
                              <tr>
                                <td align="center" valign="top" width="600">
                           <![endif]-->
                            <table id="41" role="presentation"  border="0" cellpadding="0" cellspacing="0" align="center" width="100%" style="max-width:600px;">
                                <tbody>
                                    <tr>
                                        <td valign="top" width="100%" style="padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; background-color: #ffffff;; font-size: 0;">
                                         <!--[if mso]>
                                        <table role="presentation"  border="0" cellspacing="0" cellpadding="0" align="center" width="600px" style="table-layout:fixed; border-collapse: collapse; mso-table-lspace:0; mso-table-rspace:0;" cellpadding="0" cellspacing="0" >
                                        <tr>
                                        <![endif]-->
                                        <!--[if mso]><td align="left" valign="top" width="600px"><![endif]--><div style="overflow: visible!important; display: inline-block; width:600px; max-width:600px; min-width:600px; vertical-align:top;" class="stack-column">
                                    <table role="presentation"  cellspacing="0" cellpadding="0" border="0" width="100%">
                                        <tbody>
                                            <tr>
                                                <td style="padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px;">
                                                    <table role="presentation"  cellspacing="0" cellpadding="0" border="0" width="600px" style="table-layout: fixed; width: 600px;" >
                                                        <tbody>
                                                            <!--[if mso]>
                              <tr>
                                <td width="600" class="stack-column-center image-block-container" style="vertical-align: top; text-align: center;   padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px;">
                                     <a href="https://elinkeu.clickdimensions.com/c/4/?T=MzY3MjkxMjU%3AcDEtYjE5MzI0LWE4ZTU3MDU2NTJhMzQwYWM4OTQyOTQxMWYwMmQ0NGEw%3AZmFtaWx5QGhlaW5yaWNoLmNvLnVr%3AY29udGFjdC1mZDRmOTgxNTM0NjdlOTExYThiNDAwMjI0ODAwNTc0OC02Y2RiMDNmNTE4ZWY0MWNkOTI1MzA2ZDBjZGFjNjE1Yw%3AZmFsc2U%3AMA%3A%3AaHR0cDovL3d3dy5kdXIuYWMudWs_X2NsZGVlPVptRnRhV3g1UUdobGFXNXlhV05vTG1OdkxuVnImcmVjaXBpZW50aWQ9Y29udGFjdC1mZDRmOTgxNTM0NjdlOTExYThiNDAwMjI0ODAwNTc0OC02Y2RiMDNmNTE4ZWY0MWNkOTI1MzA2ZDBjZGFjNjE1YyZlc2lkPTJiOGE4YzdiLTgwMGItZWExMS1hODExLTAwMGQzYTg2YTc4Yw&K=d5Om8qfV9PZVJ5GXgXYNSw" title="http://www.dur.ac.uk" target="_blank"   cdlinkrefidmso="20" ><img class="desktop-version center-on-narrow cd-image" height="auto" width="100%" style="vertical-align: middle;" src="http://files-eu.clickdimensions.com/durhamacuk-athhj/files/dubannerblueandwhite600x150.png"  alt="Durham University logo on yellow banner" title="Durham University logo on yellow banner"  /></a>
                                </td>
                              </tr>
                           <![endif]-->
                          <!--[if !mso]><!-- --><tr>
                          <td width="600" class="stack-column-center image-block-container" style="vertical-align: top; box-sizing: border-box; text-align: center;   padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px;">
                             <a href="https://elinkeu.clickdimensions.com/c/4/?T=MzY3MjkxMjU%3AcDEtYjE5MzI0LWE4ZTU3MDU2NTJhMzQwYWM4OTQyOTQxMWYwMmQ0NGEw%3AZmFtaWx5QGhlaW5yaWNoLmNvLnVr%3AY29udGFjdC1mZDRmOTgxNTM0NjdlOTExYThiNDAwMjI0ODAwNTc0OC02Y2RiMDNmNTE4ZWY0MWNkOTI1MzA2ZDBjZGFjNjE1Yw%3AZmFsc2U%3AMQ%3A%3AaHR0cDovL3d3dy5kdXIuYWMudWs_X2NsZGVlPVptRnRhV3g1UUdobGFXNXlhV05vTG1OdkxuVnImcmVjaXBpZW50aWQ9Y29udGFjdC1mZDRmOTgxNTM0NjdlOTExYThiNDAwMjI0ODAwNTc0OC02Y2RiMDNmNTE4ZWY0MWNkOTI1MzA2ZDBjZGFjNjE1YyZlc2lkPTJiOGE4YzdiLTgwMGItZWExMS1hODExLTAwMGQzYTg2YTc4Yw&K=GYqO6zp-OwXoQ9-t74v6Xg" title="http://www.dur.ac.uk" target="_blank"   cdlinkrefid="20" ><img class="desktop-version center-on-narrow cd-image" height="auto" width="100%" style="vertical-align: middle;" src="http://files-eu.clickdimensions.com/durhamacuk-athhj/files/dubannerblueandwhite600x150.png"  alt="Durham University logo on yellow banner" title="Durham University logo on yellow banner"  />
                    <img class="mobile-version center-on-narrow cd-image no-img-edit" height="auto" width="100%" style="vertical-align: middle; display: none;" src="http://files-eu.clickdimensions.com/durhamacuk-athhj/files/dubannerblueandwhite600x150.png"  alt="Durham University logo on yellow banner" title="Durham University logo on yellow banner"  /></a>
                          </td>
                     </tr><!--<![endif]-->
                                                         </tbody>
                                                     </table>
                                                 </td>
                                             </tr>
                                        </tbody>
                                    </table>
                              </div><!--[if mso]></td><![endif]-->
                                        <!--[if mso]>
                                        </tr>
                                        </table>
                                        <![endif]-->
                                        </td>
                                    </tr>
                                </tbody>
                            </table>
                          <!--[if mso]>
                            </td>
                           </tr>
                          </table>
                          <![endif]-->
                          <!-- Email Section : END -->
                        </td>
                    </tr><tr class="section-block">
                        <td align="center" height="100%" valign="top" width="100%" style=" ">
                            <!-- Email Section : BEGIN -->
                            <!--[if mso]>
                            <table role="presentation"  border="0" cellspacing="0" cellpadding="0" align="center" width="600">
                              <tr>
                                <td align="center" valign="top" width="600">
                           <![endif]-->
                            <table id="42" role="presentation"  border="0" cellpadding="0" cellspacing="0" align="center" width="100%" style="max-width:600px;">
                                <tbody>
                                    <tr>
                                        <td valign="top" width="100%" style="padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; background-color: #ffffff;; font-size: 0;">
                                         <!--[if mso]>
                                        <table role="presentation"  border="0" cellspacing="0" cellpadding="0" align="center" width="600px" style="table-layout:fixed; border-collapse: collapse; mso-table-lspace:0; mso-table-rspace:0;" cellpadding="0" cellspacing="0" >
                                        <tr>
                                        <![endif]-->
                                        <!--[if mso]><td align="left" valign="top" width="600px"><![endif]--><div style="overflow: visible!important; display: inline-block; width:600px; max-width:600px; min-width:600px; vertical-align:top;" class="stack-column">
                                    <table role="presentation"  cellspacing="0" cellpadding="0" border="0" width="100%">
                                        <tbody>
                                            <tr>
                                                <td style="padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px;">
                                                    <table role="presentation"  cellspacing="0" cellpadding="0" border="0" width="600px" style="table-layout: fixed; width: 600px;" >
                                                        <tbody>
                                                            <!--[if mso]>
                              <tr>
                                <td width="600" class="stack-column-center image-block-container" style="vertical-align: top; text-align: center;   padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px;">
                                     <img class="desktop-version center-on-narrow cd-image" height="auto" width="100%" style="vertical-align: middle;" src="http://files-eu.clickdimensions.com/durhamacuk-athhj/files/lumierebanneroption1.png"  alt="Images from Lumiere 2019" title="Images from Lumiere 2019"  />
                                </td>
                              </tr>
                           <![endif]-->
                          <!--[if !mso]><!-- --><tr>
                          <td width="600" class="stack-column-center image-block-container" style="vertical-align: top; box-sizing: border-box; text-align: center;   padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px;">
                             <img class="desktop-version center-on-narrow cd-image" height="auto" width="100%" style="vertical-align: middle;" src="http://files-eu.clickdimensions.com/durhamacuk-athhj/files/lumierebanneroption1.png"  alt="Images from Lumiere 2019" title="Images from Lumiere 2019"  />
                    <img class="mobile-version center-on-narrow cd-image no-img-edit" height="auto" width="100%" style="vertical-align: middle; display: none;" src="http://files-eu.clickdimensions.com/durhamacuk-athhj/files/lumierebanneroption1.png"  alt="Images from Lumiere 2019" title="Images from Lumiere 2019"  />
                          </td>
                     </tr><!--<![endif]-->
                                                         </tbody>
                                                     </table>
                                                 </td>
                                             </tr>
                                        </tbody>
                                    </table>
                              </div><!--[if mso]></td><![endif]-->
                                        <!--[if mso]>
                                        </tr>
                                        </table>
                                        <![endif]-->
                                        </td>
                                    </tr>
                                </tbody>
                            </table>
                          <!--[if mso]>
                            </td>
                           </tr>
                          </table>
                          <![endif]-->
                          <!-- Email Section : END -->
                        </td>
                    </tr><tr class="section-block">
                        <td align="center" height="100%" valign="top" width="100%" style=" ">
                            <!-- Email Section : BEGIN -->
                            <!--[if mso]>
                            <table role="presentation"  border="0" cellspacing="0" cellpadding="0" align="center" width="600">
                              <tr>
                                <td align="center" valign="top" width="600">
                           <![endif]-->
                            <table id="43" role="presentation"  border="0" cellpadding="0" cellspacing="0" align="center" width="100%" style="max-width:600px;">
                                <tbody>
                                    <tr>
                                        <td valign="top" width="100%" style="padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; background-color: #ffffff;; font-size: 0;">
                                         <!--[if mso]>
                                        <table role="presentation"  border="0" cellspacing="0" cellpadding="0" align="center" width="600px" style="table-layout:fixed; border-collapse: collapse; mso-table-lspace:0; mso-table-rspace:0;" cellpadding="0" cellspacing="0" >
                                        <tr>
                                        <![endif]-->
                                        <!--[if mso]><td align="left" valign="top" width="600px"><![endif]--><div style="overflow: visible!important; display: inline-block; width:600px; max-width:600px; min-width:600px; vertical-align:top;" class="stack-column">
                                    <table role="presentation"  cellspacing="0" cellpadding="0" border="0" width="100%">
                                        <tbody>
                                            <tr>
                                                <td style="padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px;">
                                                    <table role="presentation"  cellspacing="0" cellpadding="0" border="0" width="600px" style="table-layout: fixed; width: 600px;" >
                                                        <tbody>
                                                            <tr>
                          <td width="564" class="text-block-container" style="box-sizing: border-box;white-space: normal;font-family:Arial,Helvetica,sans-serif;font-size:12px;line-height:1.4;color:#000; word-wrap: break-word !important; white-space: normal;  padding-top: 9px; padding-bottom: 9px; padding-left: 18px; padding-right: 18px;"><p style="font-family:Arial;font-size:14px;color:#002a41;letter-spacing:0px;line-height:1.2;text-align:left;margin:0;word-wrap:break-word !important;font-weight:normal;font-style:normal;text-decoration: none"><span style="font-size:14px"><span style="color:#002a41">Hi </span></span>Anna, </p>

<p style="font-family:Arial;font-size:14px;color:#002a41;letter-spacing:0px;line-height:1.2;text-align:left;margin:0;word-wrap:break-word !important;font-weight:normal;font-style:normal;text-decoration: none"> </p>

<p style="font-family:Arial;font-size:14px;color:#002a41;letter-spacing:0px;line-height:1.2;text-align:left;margin:0;word-wrap:break-word !important;font-weight:normal;font-style:normal;text-decoration: none">One big thing you'll definitely notice if you're living here in Durham is the <strong>UK's largest light festival</strong>. This weekend <a cd-link-manager-tab="1" href="https://elinkeu.clickdimensions.com/c/4/?T=MzY3MjkxMjU%3AcDEtYjE5MzI0LWE4ZTU3MDU2NTJhMzQwYWM4OTQyOTQxMWYwMmQ0NGEw%3AZmFtaWx5QGhlaW5yaWNoLmNvLnVr%3AY29udGFjdC1mZDRmOTgxNTM0NjdlOTExYThiNDAwMjI0ODAwNTc0OC02Y2RiMDNmNTE4ZWY0MWNkOTI1MzA2ZDBjZGFjNjE1Yw%3AZmFsc2U%3AMg%3A%3AaHR0cHM6Ly93d3cuaXR2LmNvbS9uZXdzL3R5bmUtdGVlcy8yMDE5LTExLTE4L2R1cmhhbS1sdW1pZXJlLW1hcmtzLWRlY2FkZS13aXRoLXN1Y2Nlc3NmdWwtMjAxOS1hcy10b3RhbC12aXNpdG9ycy10b3AtMW0vP19jbGRlZT1abUZ0YVd4NVFHaGxhVzV5YVdOb0xtTnZMblZyJnJlY2lwaWVudGlkPWNvbnRhY3QtZmQ0Zjk4MTUzNDY3ZTkxMWE4YjQwMDIyNDgwMDU3NDgtNmNkYjAzZjUxOGVmNDFjZDkyNTMwNmQwY2RhYzYxNWMmZXNpZD0yYjhhOGM3Yi04MDBiLWVhMTEtYTgxMS0wMDBkM2E4NmE3OGM&K=AxshDYFOZc8feMzXyFxVMg" target="_blank" style="color: #68246d; font-weight: bold; text-decoration: underline;">thousands of people</a> flocked to the historic city centre to be dazzled by the stunning large-scale illuminations. </p>

<p style="font-family:Arial;font-size:14px;color:#002a41;letter-spacing:0px;line-height:1.2;text-align:left;margin:0;word-wrap:break-word !important;font-weight:normal;font-style:normal;text-decoration: none"> </p>

<p style="font-family:Arial;font-size:14px;color:#002a41;letter-spacing:0px;line-height:1.2;text-align:left;margin:0;word-wrap:break-word !important;font-weight:normal;font-style:normal;text-decoration: none">The festival invites local and international artists to create artworks that transform iconic buildings such as the Cathedral - adding a touch of magic and colour.</p>
</td>
                     </tr>
                                                         </tbody>
                                                     </table>
                                                 </td>
                                             </tr>
                                        </tbody>
                                    </table>
                              </div><!--[if mso]></td><![endif]-->
                                        <!--[if mso]>
                                        </tr>
                                        </table>
                                        <![endif]-->
                                        </td>
                                    </tr>
                                </tbody>
                            </table>
                          <!--[if mso]>
                            </td>
                           </tr>
                          </table>
                          <![endif]-->
                          <!-- Email Section : END -->
                        </td>
                    </tr><tr class="section-block">
                        <td align="center" height="100%" valign="top" width="100%" style=" ">
                            <!-- Email Section : BEGIN -->
                            <!--[if mso]>
                            <table role="presentation"  border="0" cellspacing="0" cellpadding="0" align="center" width="600">
                              <tr>
                                <td align="center" valign="top" width="600">
                           <![endif]-->
                            <table id="44" role="presentation"  border="0" cellpadding="0" cellspacing="0" align="center" width="100%" style="max-width:600px;">
                                <tbody>
                                    <tr>
                                        <td valign="top" width="100%" style="padding-top: 5px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; background-color: #ffffff;; font-size: 0;">
                                         <!--[if mso]>
                                        <table role="presentation"  border="0" cellspacing="0" cellpadding="0" align="center" width="600px" style="table-layout:fixed; border-collapse: collapse; mso-table-lspace:0; mso-table-rspace:0;" cellpadding="0" cellspacing="0" >
                                        <tr>
                                        <![endif]-->
                                        <!--[if mso]><td align="left" valign="top" width="600px"><![endif]--><div style="overflow: visible!important; display: inline-block; width:600px; max-width:600px; min-width:600px; vertical-align:top;" class="stack-column">
                                    <table role="presentation"  cellspacing="0" cellpadding="0" border="0" width="100%">
                                        <tbody>
                                            <tr>
                                                <td style="padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px;">
                                                    <table role="presentation"  cellspacing="0" cellpadding="0" border="0" width="600px" style="table-layout: fixed; width: 600px;" >
                                                        <tbody>
                                                            <tr>
                          <td width="577" class="text-block-container" style="box-sizing: border-box;white-space: normal;font-family:Arial,Helvetica,sans-serif;font-size:12px;line-height:1.4;color:#000; word-wrap: break-word !important; white-space: normal;  padding-top: 9px; padding-bottom: 9px; padding-left: 18px; padding-right: 5px;"><p style="font-family:Arial;font-size:14px;color:#002a41;letter-spacing:0px;line-height:1.2;text-align:left;margin:0;word-wrap:break-word !important;font-weight:normal;font-style:normal;text-decoration: none">Celebrating its 10th anniversary, Lumiere featured <a cd-link-manager-tab="1" href="https://elinkeu.clickdimensions.com/c/4/?T=MzY3MjkxMjU%3AcDEtYjE5MzI0LWE4ZTU3MDU2NTJhMzQwYWM4OTQyOTQxMWYwMmQ0NGEw%3AZmFtaWx5QGhlaW5yaWNoLmNvLnVr%3AY29udGFjdC1mZDRmOTgxNTM0NjdlOTExYThiNDAwMjI0ODAwNTc0OC02Y2RiMDNmNTE4ZWY0MWNkOTI1MzA2ZDBjZGFjNjE1Yw%3AZmFsc2U%3AMw%3A%3AaHR0cHM6Ly93d3cubHVtaWVyZS1mZXN0aXZhbC5jb20vcHJvZ3JhbW1lLTIwMTkvP19jbGRlZT1abUZ0YVd4NVFHaGxhVzV5YVdOb0xtTnZMblZyJnJlY2lwaWVudGlkPWNvbnRhY3QtZmQ0Zjk4MTUzNDY3ZTkxMWE4YjQwMDIyNDgwMDU3NDgtNmNkYjAzZjUxOGVmNDFjZDkyNTMwNmQwY2RhYzYxNWMmZXNpZD0yYjhhOGM3Yi04MDBiLWVhMTEtYTgxMS0wMDBkM2E4NmE3OGM&K=lNT75D1hd6ZRGTAB7kB4zQ" target="_blank" style="color: #68246d; font-weight: bold; text-decoration: underline;">37 artworks</a> across the city. A bi-annual event, Lumiere will be returning to Durham in 2021 and will definitely be worth adding to your busy social calendar. </p>

<p style="font-family:Arial;font-size:14px;color:#002a41;letter-spacing:0px;line-height:1.2;text-align:left;margin:0;word-wrap:break-word !important;font-weight:normal;font-style:normal;text-decoration: none"> </p>

<p style="font-family:Arial;font-size:14px;color:#002a41;letter-spacing:0px;line-height:1.2;text-align:left;margin:0;word-wrap:break-word !important;font-weight:normal;font-style:normal;text-decoration: none">You can read about our students' experience of Lumiere's past and present on our <a cd-link-manager-tab="1" href="https://elinkeu.clickdimensions.com/c/4/?T=MzY3MjkxMjU%3AcDEtYjE5MzI0LWE4ZTU3MDU2NTJhMzQwYWM4OTQyOTQxMWYwMmQ0NGEw%3AZmFtaWx5QGhlaW5yaWNoLmNvLnVr%3AY29udGFjdC1mZDRmOTgxNTM0NjdlOTExYThiNDAwMjI0ODAwNTc0OC02Y2RiMDNmNTE4ZWY0MWNkOTI1MzA2ZDBjZGFjNjE1Yw%3AZmFsc2U%3ANA%3A%3AaHR0cHM6Ly9zaXRlcy5kdXJoYW0uYWMudWsvc3R1ZGVudGJsb2cvP3M9bHVtaWVyZSZfY2xkZWU9Wm1GdGFXeDVRR2hsYVc1eWFXTm9MbU52TG5WciZyZWNpcGllbnRpZD1jb250YWN0LWZkNGY5ODE1MzQ2N2U5MTFhOGI0MDAyMjQ4MDA1NzQ4LTZjZGIwM2Y1MThlZjQxY2Q5MjUzMDZkMGNkYWM2MTVjJmVzaWQ9MmI4YThjN2ItODAwYi1lYTExLWE4MTEtMDAwZDNhODZhNzhj&K=B4cVkro32nmS7gML3anBRA" target="_blank" style="color: #68246d; font-weight: bold; text-decoration: underline;">blog site</a>.</p>

<p style="font-family:Arial;font-size:14px;color:#002a41;letter-spacing:0px;line-height:1.2;text-align:left;margin:0;word-wrap:break-word !important;font-weight:normal;font-style:normal;text-decoration: none"> </p>

<p style="font-family:Arial;font-size:14px;color:#002a41;letter-spacing:0px;line-height:1.2;text-align:left;margin:0;word-wrap:break-word !important;font-weight:normal;font-style:normal;text-decoration: none"><strong>You can also take a look at Carina's <a cd-link-manager-tab="1" href="https://elinkeu.clickdimensions.com/c/4/?T=MzY3MjkxMjU%3AcDEtYjE5MzI0LWE4ZTU3MDU2NTJhMzQwYWM4OTQyOTQxMWYwMmQ0NGEw%3AZmFtaWx5QGhlaW5yaWNoLmNvLnVr%3AY29udGFjdC1mZDRmOTgxNTM0NjdlOTExYThiNDAwMjI0ODAwNTc0OC02Y2RiMDNmNTE4ZWY0MWNkOTI1MzA2ZDBjZGFjNjE1Yw%3AZmFsc2U%3ANQ%3A%3AaHR0cHM6Ly9zaXRlcy5kdXJoYW0uYWMudWsvc3R1ZGVudGJsb2cvbHVtaWVyZS0yMDE5Lz9fY2xkZWU9Wm1GdGFXeDVRR2hsYVc1eWFXTm9MbU52TG5WciZyZWNpcGllbnRpZD1jb250YWN0LWZkNGY5ODE1MzQ2N2U5MTFhOGI0MDAyMjQ4MDA1NzQ4LTZjZGIwM2Y1MThlZjQxY2Q5MjUzMDZkMGNkYWM2MTVjJmVzaWQ9MmI4YThjN2ItODAwYi1lYTExLWE4MTEtMDAwZDNhODZhNzhj&K=-62cKq3RarXLNR1rVC_iMQ" target="_blank" style="color: #68246d; font-weight: bold; text-decoration: underline;">vlog</a> about Lumiere 2019 below!</strong></p>
</td>
                     </tr>
                                                         </tbody>
                                                     </table>
                                                 </td>
                                             </tr>
                                        </tbody>
                                    </table>
                              </div><!--[if mso]></td><![endif]-->
                                        <!--[if mso]>
                                        </tr>
                                        </table>
                                        <![endif]-->
                                        </td>
                                    </tr>
                                </tbody>
                            </table>
                          <!--[if mso]>
                            </td>
                           </tr>
                          </table>
                          <![endif]-->
                          <!-- Email Section : END -->
                        </td>
                    </tr><tr class="section-block">
                        <td align="center" height="100%" valign="top" width="100%" style=" ">
                            <!-- Email Section : BEGIN -->
                            <!--[if mso]>
                            <table role="presentation"  border="0" cellspacing="0" cellpadding="0" align="center" width="600">
                              <tr>
                                <td align="center" valign="top" width="600">
                           <![endif]-->
                            <table id="45" role="presentation"  border="0" cellpadding="0" cellspacing="0" align="center" width="100%" style="max-width:600px;">
                                <tbody>
                                    <tr>
                                        <td valign="top" width="100%" style="padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; background-color: #ffffff;; font-size: 0;">
                                         <!--[if mso]>
                                        <table role="presentation"  border="0" cellspacing="0" cellpadding="0" align="center" width="600px" style="table-layout:fixed; border-collapse: collapse; mso-table-lspace:0; mso-table-rspace:0;" cellpadding="0" cellspacing="0" >
                                        <tr>
                                        <![endif]-->
                                        <!--[if mso]><td align="left" valign="top" width="600px"><![endif]--><div style="overflow: visible!important; display: inline-block; width:600px; max-width:600px; min-width:600px; vertical-align:top;" class="stack-column">
                                    <table role="presentation"  cellspacing="0" cellpadding="0" border="0" width="100%">
                                        <tbody>
                                            <tr>
                                                <td style="padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px;">
                                                    <table role="presentation"  cellspacing="0" cellpadding="0" border="0" width="600px" style="table-layout: fixed; width: 600px;" >
                                                        <tbody>
                                                            <!--[if mso]>
                              <tr>
                                <td width="600" class="stack-column-center image-block-container" style="vertical-align: top; text-align: center;   padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px;">
                                     <a href="https://elinkeu.clickdimensions.com/c/4/?T=MzY3MjkxMjU%3AcDEtYjE5MzI0LWE4ZTU3MDU2NTJhMzQwYWM4OTQyOTQxMWYwMmQ0NGEw%3AZmFtaWx5QGhlaW5yaWNoLmNvLnVr%3AY29udGFjdC1mZDRmOTgxNTM0NjdlOTExYThiNDAwMjI0ODAwNTc0OC02Y2RiMDNmNTE4ZWY0MWNkOTI1MzA2ZDBjZGFjNjE1Yw%3AZmFsc2U%3ANg%3A%3AaHR0cHM6Ly9zaXRlcy5kdXJoYW0uYWMudWsvc3R1ZGVudGJsb2cvbHVtaWVyZS0yMDE5Lz9fY2xkZWU9Wm1GdGFXeDVRR2hsYVc1eWFXTm9MbU52TG5WciZyZWNpcGllbnRpZD1jb250YWN0LWZkNGY5ODE1MzQ2N2U5MTFhOGI0MDAyMjQ4MDA1NzQ4LTZjZGIwM2Y1MThlZjQxY2Q5MjUzMDZkMGNkYWM2MTVjJmVzaWQ9MmI4YThjN2ItODAwYi1lYTExLWE4MTEtMDAwZDNhODZhNzhj&K=-SA9cDzL02_dlzkoPVgUGg" title="https://sites.durham.ac.uk/studentblog/lumiere-2019/" target="_blank"   cdlinkrefidmso="28" ><img class="desktop-version center-on-narrow cd-image" height="auto" width="100%" style="vertical-align: middle;" src="http://files-eu.clickdimensions.com/durhamacuk-athhj/files/vlogbannerlumiere.png"  alt="Watch our vlog" title="Watch our vlog"  /></a>
                                </td>
                              </tr>
                           <![endif]-->
                          <!--[if !mso]><!-- --><tr>
                          <td width="600" class="stack-column-center image-block-container" style="vertical-align: top; box-sizing: border-box; text-align: center;   padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px;">
                             <a href="https://elinkeu.clickdimensions.com/c/4/?T=MzY3MjkxMjU%3AcDEtYjE5MzI0LWE4ZTU3MDU2NTJhMzQwYWM4OTQyOTQxMWYwMmQ0NGEw%3AZmFtaWx5QGhlaW5yaWNoLmNvLnVr%3AY29udGFjdC1mZDRmOTgxNTM0NjdlOTExYThiNDAwMjI0ODAwNTc0OC02Y2RiMDNmNTE4ZWY0MWNkOTI1MzA2ZDBjZGFjNjE1Yw%3AZmFsc2U%3ANw%3A%3AaHR0cHM6Ly9zaXRlcy5kdXJoYW0uYWMudWsvc3R1ZGVudGJsb2cvbHVtaWVyZS0yMDE5Lz9fY2xkZWU9Wm1GdGFXeDVRR2hsYVc1eWFXTm9MbU52TG5WciZyZWNpcGllbnRpZD1jb250YWN0LWZkNGY5ODE1MzQ2N2U5MTFhOGI0MDAyMjQ4MDA1NzQ4LTZjZGIwM2Y1MThlZjQxY2Q5MjUzMDZkMGNkYWM2MTVjJmVzaWQ9MmI4YThjN2ItODAwYi1lYTExLWE4MTEtMDAwZDNhODZhNzhj&K=IPwV9bMZ-MTbEkp1LtlY6w" title="https://sites.durham.ac.uk/studentblog/lumiere-2019/" target="_blank"   cdlinkrefid="28" ><img class="desktop-version center-on-narrow cd-image" height="auto" width="100%" style="vertical-align: middle;" src="http://files-eu.clickdimensions.com/durhamacuk-athhj/files/vlogbannerlumiere.png"  alt="Watch our vlog" title="Watch our vlog"  />
                    <img class="mobile-version center-on-narrow cd-image no-img-edit" height="auto" width="100%" style="vertical-align: middle; display: none;" src="http://files-eu.clickdimensions.com/durhamacuk-athhj/files/vlogbannerlumiere.png"  alt="Watch our vlog" title="Watch our vlog"  /></a>
                          </td>
                     </tr><!--<![endif]-->
                                                         </tbody>
                                                     </table>
                                                 </td>
                                             </tr>
                                        </tbody>
                                    </table>
                              </div><!--[if mso]></td><![endif]-->
                                        <!--[if mso]>
                                        </tr>
                                        </table>
                                        <![endif]-->
                                        </td>
                                    </tr>
                                </tbody>
                            </table>
                          <!--[if mso]>
                            </td>
                           </tr>
                          </table>
                          <![endif]-->
                          <!-- Email Section : END -->
                        </td>
                    </tr><tr class="section-block">
                        <td align="center" height="100%" valign="top" width="100%" style=" ">
                            <!-- Email Section : BEGIN -->
                            <!--[if mso]>
                            <table role="presentation"  border="0" cellspacing="0" cellpadding="0" align="center" width="600">
                              <tr>
                                <td align="center" valign="top" width="600">
                           <![endif]-->
                            <table id="46" role="presentation"  border="0" cellpadding="0" cellspacing="0" align="center" width="100%" style="max-width:600px;">
                                <tbody>
                                    <tr>
                                        <td valign="top" width="100%" style="padding-top: 20px; padding-bottom: 20px; padding-left: 20px; padding-right: 20px; background-color: #ffffff;; font-size: 0;">
                                         <!--[if mso]>
                                        <table role="presentation"  border="0" cellspacing="0" cellpadding="0" align="center" width="600px" style="table-layout:fixed; border-collapse: collapse; mso-table-lspace:0; mso-table-rspace:0;" cellpadding="0" cellspacing="0" >
                                        <tr>
                                        <![endif]-->
                                        <!--[if mso]><td align="left" valign="top" width="560px"><![endif]--><div style="overflow: visible!important; display: inline-block; width:560px; max-width:560px; min-width:560px; vertical-align:top;" class="stack-column">
                                    <table role="presentation"  cellspacing="0" cellpadding="0" border="0" width="100%">
                                        <tbody>
                                            <tr>
                                                <td style="padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px;">
                                                    <table role="presentation"  cellspacing="0" cellpadding="0" border="0" width="560px" style="table-layout: fixed; width: 560px;" >
                                                        <tbody>
                                                            <!--[if mso]>
                              <tr>
                                <td width="560" class="stack-column-center image-block-container" style="vertical-align: top; text-align: center;   padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px;">
                                     <img class="desktop-version center-on-narrow cd-image" height="560" width="560" style="vertical-align: middle;" src="http://files-eu.clickdimensions.com/durhamacuk-athhj/files/tapestrylumiere.png"  alt="Images from Lumiere" title="Images from Lumiere"  />
                                </td>
                              </tr>
                           <![endif]-->
                          <!--[if !mso]><!-- --><tr>
                          <td width="560" class="stack-column-center image-block-container" style="vertical-align: top; box-sizing: border-box; text-align: center;   padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px;">
                             <img class="desktop-version center-on-narrow cd-image" height="560" width="560" style="vertical-align: middle;" src="http://files-eu.clickdimensions.com/durhamacuk-athhj/files/tapestrylumiere.png"  alt="Images from Lumiere" title="Images from Lumiere"  />
                    <img class="mobile-version center-on-narrow cd-image no-img-edit" height="auto" width="93.33333333333333%" style="vertical-align: middle; display: none;" src="http://files-eu.clickdimensions.com/durhamacuk-athhj/files/tapestrylumiere.png"  alt="Images from Lumiere" title="Images from Lumiere"  />
                          </td>
                     </tr><!--<![endif]-->
                                                         </tbody>
                                                     </table>
                                                 </td>
                                             </tr>
                                        </tbody>
                                    </table>
                              </div><!--[if mso]></td><![endif]-->
                                        <!--[if mso]>
                                        </tr>
                                        </table>
                                        <![endif]-->
                                        </td>
                                    </tr>
                                </tbody>
                            </table>
                          <!--[if mso]>
                            </td>
                           </tr>
                          </table>
                          <![endif]-->
                          <!-- Email Section : END -->
                        </td>
                    </tr><tr class="section-block">
                        <td align="center" height="100%" valign="top" width="100%" style=" ">
                            <!-- Email Section : BEGIN -->
                            <!--[if mso]>
                            <table role="presentation"  border="0" cellspacing="0" cellpadding="0" align="center" width="600">
                              <tr>
                                <td align="center" valign="top" width="600">
                           <![endif]-->
                            <table id="47" role="presentation"  border="0" cellpadding="0" cellspacing="0" align="center" width="100%" style="max-width:600px;">
                                <tbody>
                                    <tr>
                                        <td valign="top" width="100%" style="padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; background-color: #ffffff;; font-size: 0;">
                                         <!--[if mso]>
                                        <table role="presentation"  border="0" cellspacing="0" cellpadding="0" align="center" width="600px" style="table-layout:fixed; border-collapse: collapse; mso-table-lspace:0; mso-table-rspace:0;" cellpadding="0" cellspacing="0" >
                                        <tr>
                                        <![endif]-->
                                        <!--[if mso]><td align="left" valign="top" width="600px"><![endif]--><div style="overflow: visible!important; display: inline-block; width:600px; max-width:600px; min-width:600px; vertical-align:top;" class="stack-column">
                                    <table role="presentation"  cellspacing="0" cellpadding="0" border="0" width="100%">
                                        <tbody>
                                            <tr>
                                                <td style="padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px;">
                                                    <table role="presentation"  cellspacing="0" cellpadding="0" border="0" width="600px" style="table-layout: fixed; width: 600px;" >
                                                        <tbody>
                                                            <tr>
                          <td width="564" class="text-block-container" style="box-sizing: border-box;white-space: normal;font-family:Arial,Helvetica,sans-serif;font-size:12px;line-height:1.4;color:#000; word-wrap: break-word !important; white-space: normal;  padding-top: 9px; padding-bottom: 9px; padding-left: 18px; padding-right: 18px;"><p style="font-family:Arial;font-size:14px;color:#002a41;letter-spacing:0px;line-height:1.2;text-align:left;margin:0;word-wrap:break-word !important;font-weight:normal;font-style:normal;text-decoration: none">Hope you're having a great week!</p>

<p style="font-family:Arial;font-size:14px;color:#002a41;letter-spacing:0px;line-height:1.2;text-align:left;margin:0;word-wrap:break-word !important;font-weight:normal;font-style:normal;text-decoration: none"> </p>

<p style="font-family:Arial;font-size:14px;color:#002a41;letter-spacing:0px;line-height:1.2;text-align:left;margin:0;word-wrap:break-word !important;font-weight:normal;font-style:normal;text-decoration: none"><span style="font-size:14px"><span style="color:#002a41"><span style="font-size:16px"><strong>Durham University</strong></span></span></span></p>
</td>
                     </tr>
                                                         </tbody>
                                                     </table>
                                                 </td>
                                             </tr>
                                        </tbody>
                                    </table>
                              </div><!--[if mso]></td><![endif]-->
                                        <!--[if mso]>
                                        </tr>
                                        </table>
                                        <![endif]-->
                                        </td>
                                    </tr>
                                </tbody>
                            </table>
                          <!--[if mso]>
                            </td>
                           </tr>
                          </table>
                          <![endif]-->
                          <!-- Email Section : END -->
                        </td>
                    </tr><tr class="section-block">
                        <td align="center" height="100%" valign="top" width="100%" style=" ">
                            <!-- Email Section : BEGIN -->
                            <!--[if mso]>
                            <table role="presentation"  border="0" cellspacing="0" cellpadding="0" align="center" width="600">
                              <tr>
                                <td align="center" valign="top" width="600">
                           <![endif]-->
                            <table id="48" role="presentation"  border="0" cellpadding="0" cellspacing="0" align="center" width="100%" style="max-width:600px;">
                                <tbody>
                                    <tr>
                                        <td valign="top" width="100%" style="padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; background-color: #00aeef;; font-size: 0;">
                                         <!--[if mso]>
                                        <table role="presentation"  border="0" cellspacing="0" cellpadding="0" align="center" width="600px" style="table-layout:fixed; border-collapse: collapse; mso-table-lspace:0; mso-table-rspace:0;" cellpadding="0" cellspacing="0" >
                                        <tr>
                                        <![endif]-->
                                        <!--[if mso]><td align="left" valign="top" width="300px"><![endif]--><div style="overflow: visible!important; display: inline-block; width:300px; max-width:300px; min-width:300px; vertical-align:top;" class="stack-column">
                                    <table role="presentation"  cellspacing="0" cellpadding="0" border="0" width="100%">
                                        <tbody>
                                            <tr>
                                                <td style="padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px;">
                                                    <table role="presentation"  cellspacing="0" cellpadding="0" border="0" width="300px" style="table-layout: fixed; width: 300px;" >
                                                        <tbody>
                                                            <tr>
                          <td width="295" class="stack-column-center social-block-container" style="font-size: 0; vertical-align: top; text-align: left; background-color: #00aeef; padding-top: 9px; padding-bottom: 5px; padding-left: 5px; padding-right: 0px;">
                             <!--[if mso]><table role="presentation"  cellspacing="0" cellpadding="0" border="0" align="left" > <tr><td style="padding: 5px;">
                        <span  style="display: inline-block; ">
                           <a href="https://elinkeu.clickdimensions.com/c/4/?T=MzY3MjkxMjU%3AcDEtYjE5MzI0LWE4ZTU3MDU2NTJhMzQwYWM4OTQyOTQxMWYwMmQ0NGEw%3AZmFtaWx5QGhlaW5yaWNoLmNvLnVr%3AY29udGFjdC1mZDRmOTgxNTM0NjdlOTExYThiNDAwMjI0ODAwNTc0OC02Y2RiMDNmNTE4ZWY0MWNkOTI1MzA2ZDBjZGFjNjE1Yw%3AZmFsc2U%3AOA%3A%3AaHR0cHM6Ly93d3cuaW5zdGFncmFtLmNvbS9kdXJoYW11bml2ZXJzaXR5Lz9obD1lbiZfY2xkZWU9Wm1GdGFXeDVRR2hsYVc1eWFXTm9MbU52TG5WciZyZWNpcGllbnRpZD1jb250YWN0LWZkNGY5ODE1MzQ2N2U5MTFhOGI0MDAyMjQ4MDA1NzQ4LTZjZGIwM2Y1MThlZjQxY2Q5MjUzMDZkMGNkYWM2MTVjJmVzaWQ9MmI4YThjN2ItODAwYi1lYTExLWE4MTEtMDAwZDNhODZhNzhj&K=luz_KG2G4Ef4vehN9XhLZQ" title="Instagram" target="_blank" style="text-decoration: none;" cdlinkrefidmso="34_0">
                        <img class="social" width="32" height="32" style="width: 32px; height: 32px; margin: 5px;" src="https://az551914.vo.msecnd.net/web/SPA_resources/DndEditor_v2/social_links/circle/white/instagram.png">
                    </a>
                        </span>
                   </td><td style="padding: 5px;">
                        <span  style="display: inline-block; ">
                           <a href="https://elinkeu.clickdimensions.com/c/4/?T=MzY3MjkxMjU%3AcDEtYjE5MzI0LWE4ZTU3MDU2NTJhMzQwYWM4OTQyOTQxMWYwMmQ0NGEw%3AZmFtaWx5QGhlaW5yaWNoLmNvLnVr%3AY29udGFjdC1mZDRmOTgxNTM0NjdlOTExYThiNDAwMjI0ODAwNTc0OC02Y2RiMDNmNTE4ZWY0MWNkOTI1MzA2ZDBjZGFjNjE1Yw%3AZmFsc2U%3AOQ%3A%3AaHR0cHM6Ly90d2l0dGVyLmNvbS9kdXJoYW1fdW5pP3JlZl9zcmM9dHdzcmMlNUVnb29nbGUlN0N0d2NhbXAlNUVzZXJwJTdDdHdnciU1RWF1dGhvciZfY2xkZWU9Wm1GdGFXeDVRR2hsYVc1eWFXTm9MbU52TG5WciZyZWNpcGllbnRpZD1jb250YWN0LWZkNGY5ODE1MzQ2N2U5MTFhOGI0MDAyMjQ4MDA1NzQ4LTZjZGIwM2Y1MThlZjQxY2Q5MjUzMDZkMGNkYWM2MTVjJmVzaWQ9MmI4YThjN2ItODAwYi1lYTExLWE4MTEtMDAwZDNhODZhNzhj&K=3L3S1DHBCnNxj9ys4kTSJA" title="Twitter" target="_blank" style="text-decoration: none;" cdlinkrefidmso="34_1">
                        <img class="social" width="32" height="32" style="width: 32px; height: 32px; margin: 5px;" src="https://az551914.vo.msecnd.net/web/SPA_resources/DndEditor_v2/social_links/circle/white/twitter.png">
                    </a>
                        </span>
                   </td><td style="padding: 5px;">
                        <span  style="display: inline-block; ">
                           <a href="https://elinkeu.clickdimensions.com/c/4/?T=MzY3MjkxMjU%3AcDEtYjE5MzI0LWE4ZTU3MDU2NTJhMzQwYWM4OTQyOTQxMWYwMmQ0NGEw%3AZmFtaWx5QGhlaW5yaWNoLmNvLnVr%3AY29udGFjdC1mZDRmOTgxNTM0NjdlOTExYThiNDAwMjI0ODAwNTc0OC02Y2RiMDNmNTE4ZWY0MWNkOTI1MzA2ZDBjZGFjNjE1Yw%3AZmFsc2U%3AMTA%3A%3AaHR0cHM6Ly93d3cuZmFjZWJvb2suY29tL2R1cmhhbXVuaXZlcnNpdHk_X2NsZGVlPVptRnRhV3g1UUdobGFXNXlhV05vTG1OdkxuVnImcmVjaXBpZW50aWQ9Y29udGFjdC1mZDRmOTgxNTM0NjdlOTExYThiNDAwMjI0ODAwNTc0OC02Y2RiMDNmNTE4ZWY0MWNkOTI1MzA2ZDBjZGFjNjE1YyZlc2lkPTJiOGE4YzdiLTgwMGItZWExMS1hODExLTAwMGQzYTg2YTc4Yw&K=UY8_6777phG8Dk3SXNd6yw" title="Facebook" target="_blank" style="text-decoration: none;" cdlinkrefidmso="34_2">
                        <img class="social" width="32" height="32" style="width: 32px; height: 32px; margin: 5px;" src="https://az551914.vo.msecnd.net/web/SPA_resources/DndEditor_v2/social_links/circle/white/facebook.png">
                    </a>
                        </span>
                   </td><td style="padding: 5px;">
                        <span  style="display: inline-block; ">
                           <a href="https://elinkeu.clickdimensions.com/c/4/?T=MzY3MjkxMjU%3AcDEtYjE5MzI0LWE4ZTU3MDU2NTJhMzQwYWM4OTQyOTQxMWYwMmQ0NGEw%3AZmFtaWx5QGhlaW5yaWNoLmNvLnVr%3AY29udGFjdC1mZDRmOTgxNTM0NjdlOTExYThiNDAwMjI0ODAwNTc0OC02Y2RiMDNmNTE4ZWY0MWNkOTI1MzA2ZDBjZGFjNjE1Yw%3AZmFsc2U%3AMTE%3A%3AaHR0cHM6Ly93d3cueW91dHViZS5jb20vZHVyaGFtdW5pdmVyc2l0eT9fY2xkZWU9Wm1GdGFXeDVRR2hsYVc1eWFXTm9MbU52TG5WciZyZWNpcGllbnRpZD1jb250YWN0LWZkNGY5ODE1MzQ2N2U5MTFhOGI0MDAyMjQ4MDA1NzQ4LTZjZGIwM2Y1MThlZjQxY2Q5MjUzMDZkMGNkYWM2MTVjJmVzaWQ9MmI4YThjN2ItODAwYi1lYTExLWE4MTEtMDAwZDNhODZhNzhj&K=ARdGVvekaH3KRzWjhdvQXw" title="Youtube" target="_blank" style="text-decoration: none;" cdlinkrefidmso="34_3">
                        <img class="social" width="32" height="32" style="width: 32px; height: 32px; margin: 5px;" src="https://az551914.vo.msecnd.net/web/SPA_resources/DndEditor_v2/social_links/circle/white/youtube.png">
                    </a>
                        </span>
                   </td><td style="padding: 5px;">
                        <span  style="display: inline-block; ">
                           <a href="https://elinkeu.clickdimensions.com/c/4/?T=MzY3MjkxMjU%3AcDEtYjE5MzI0LWE4ZTU3MDU2NTJhMzQwYWM4OTQyOTQxMWYwMmQ0NGEw%3AZmFtaWx5QGhlaW5yaWNoLmNvLnVr%3AY29udGFjdC1mZDRmOTgxNTM0NjdlOTExYThiNDAwMjI0ODAwNTc0OC02Y2RiMDNmNTE4ZWY0MWNkOTI1MzA2ZDBjZGFjNjE1Yw%3AZmFsc2U%3AMTI%3A%3AaHR0cHM6Ly93d3cubGlua2VkaW4uY29tL3NjaG9vbC9kdXJoYW0tdW5pdmVyc2l0eS8_X2NsZGVlPVptRnRhV3g1UUdobGFXNXlhV05vTG1OdkxuVnImcmVjaXBpZW50aWQ9Y29udGFjdC1mZDRmOTgxNTM0NjdlOTExYThiNDAwMjI0ODAwNTc0OC02Y2RiMDNmNTE4ZWY0MWNkOTI1MzA2ZDBjZGFjNjE1YyZlc2lkPTJiOGE4YzdiLTgwMGItZWExMS1hODExLTAwMGQzYTg2YTc4Yw&K=GhUCWC_RrUhcjPnm-qmBRA" title="Linkedin" target="_blank" style="text-decoration: none;" cdlinkrefidmso="34_4">
                        <img class="social" width="32" height="32" style="width: 32px; height: 32px; margin: 5px;" src="https://az551914.vo.msecnd.net/web/SPA_resources/DndEditor_v2/social_links/circle/white/linkedin.png">
                    </a>
                        </span>
                   </td></tr></table><![endif]--> <!--[if !mso]><!--> <span  style="display: inline-block;">
                       <a href="https://elinkeu.clickdimensions.com/c/4/?T=MzY3MjkxMjU%3AcDEtYjE5MzI0LWE4ZTU3MDU2NTJhMzQwYWM4OTQyOTQxMWYwMmQ0NGEw%3AZmFtaWx5QGhlaW5yaWNoLmNvLnVr%3AY29udGFjdC1mZDRmOTgxNTM0NjdlOTExYThiNDAwMjI0ODAwNTc0OC02Y2RiMDNmNTE4ZWY0MWNkOTI1MzA2ZDBjZGFjNjE1Yw%3AZmFsc2U%3AMTM%3A%3AaHR0cHM6Ly93d3cuaW5zdGFncmFtLmNvbS9kdXJoYW11bml2ZXJzaXR5Lz9obD1lbiZfY2xkZWU9Wm1GdGFXeDVRR2hsYVc1eWFXTm9MbU52TG5WciZyZWNpcGllbnRpZD1jb250YWN0LWZkNGY5ODE1MzQ2N2U5MTFhOGI0MDAyMjQ4MDA1NzQ4LTZjZGIwM2Y1MThlZjQxY2Q5MjUzMDZkMGNkYWM2MTVjJmVzaWQ9MmI4YThjN2ItODAwYi1lYTExLWE4MTEtMDAwZDNhODZhNzhj&K=pd3KfxhgnKn5-Pv1OaKCVg" title="Instagram" target="_blank" style="text-decoration: none;" cdlinkrefid="34_0">
                        <img class="social" width="32" height="32" style="width: 32px; height: 32px; margin: 5px;" src="https://az551914.vo.msecnd.net/web/SPA_resources/DndEditor_v2/social_links/circle/white/instagram.png">
                    </a>
                   </span> <span  style="display: inline-block;">
                       <a href="https://elinkeu.clickdimensions.com/c/4/?T=MzY3MjkxMjU%3AcDEtYjE5MzI0LWE4ZTU3MDU2NTJhMzQwYWM4OTQyOTQxMWYwMmQ0NGEw%3AZmFtaWx5QGhlaW5yaWNoLmNvLnVr%3AY29udGFjdC1mZDRmOTgxNTM0NjdlOTExYThiNDAwMjI0ODAwNTc0OC02Y2RiMDNmNTE4ZWY0MWNkOTI1MzA2ZDBjZGFjNjE1Yw%3AZmFsc2U%3AMTQ%3A%3AaHR0cHM6Ly90d2l0dGVyLmNvbS9kdXJoYW1fdW5pP3JlZl9zcmM9dHdzcmMlNUVnb29nbGUlN0N0d2NhbXAlNUVzZXJwJTdDdHdnciU1RWF1dGhvciZfY2xkZWU9Wm1GdGFXeDVRR2hsYVc1eWFXTm9MbU52TG5WciZyZWNpcGllbnRpZD1jb250YWN0LWZkNGY5ODE1MzQ2N2U5MTFhOGI0MDAyMjQ4MDA1NzQ4LTZjZGIwM2Y1MThlZjQxY2Q5MjUzMDZkMGNkYWM2MTVjJmVzaWQ9MmI4YThjN2ItODAwYi1lYTExLWE4MTEtMDAwZDNhODZhNzhj&K=3AtSMgIDl-at9PT_hQ5YjA" title="Twitter" target="_blank" style="text-decoration: none;" cdlinkrefid="34_1">
                        <img class="social" width="32" height="32" style="width: 32px; height: 32px; margin: 5px;" src="https://az551914.vo.msecnd.net/web/SPA_resources/DndEditor_v2/social_links/circle/white/twitter.png">
                    </a>
                   </span> <span  style="display: inline-block;">
                       <a href="https://elinkeu.clickdimensions.com/c/4/?T=MzY3MjkxMjU%3AcDEtYjE5MzI0LWE4ZTU3MDU2NTJhMzQwYWM4OTQyOTQxMWYwMmQ0NGEw%3AZmFtaWx5QGhlaW5yaWNoLmNvLnVr%3AY29udGFjdC1mZDRmOTgxNTM0NjdlOTExYThiNDAwMjI0ODAwNTc0OC02Y2RiMDNmNTE4ZWY0MWNkOTI1MzA2ZDBjZGFjNjE1Yw%3AZmFsc2U%3AMTU%3A%3AaHR0cHM6Ly93d3cuZmFjZWJvb2suY29tL2R1cmhhbXVuaXZlcnNpdHk_X2NsZGVlPVptRnRhV3g1UUdobGFXNXlhV05vTG1OdkxuVnImcmVjaXBpZW50aWQ9Y29udGFjdC1mZDRmOTgxNTM0NjdlOTExYThiNDAwMjI0ODAwNTc0OC02Y2RiMDNmNTE4ZWY0MWNkOTI1MzA2ZDBjZGFjNjE1YyZlc2lkPTJiOGE4YzdiLTgwMGItZWExMS1hODExLTAwMGQzYTg2YTc4Yw&K=syVL1VcnF5ODZDvFXLuX2w" title="Facebook" target="_blank" style="text-decoration: none;" cdlinkrefid="34_2">
                        <img class="social" width="32" height="32" style="width: 32px; height: 32px; margin: 5px;" src="https://az551914.vo.msecnd.net/web/SPA_resources/DndEditor_v2/social_links/circle/white/facebook.png">
                    </a>
                   </span> <span  style="display: inline-block;">
                       <a href="https://elinkeu.clickdimensions.com/c/4/?T=MzY3MjkxMjU%3AcDEtYjE5MzI0LWE4ZTU3MDU2NTJhMzQwYWM4OTQyOTQxMWYwMmQ0NGEw%3AZmFtaWx5QGhlaW5yaWNoLmNvLnVr%3AY29udGFjdC1mZDRmOTgxNTM0NjdlOTExYThiNDAwMjI0ODAwNTc0OC02Y2RiMDNmNTE4ZWY0MWNkOTI1MzA2ZDBjZGFjNjE1Yw%3AZmFsc2U%3AMTY%3A%3AaHR0cHM6Ly93d3cueW91dHViZS5jb20vZHVyaGFtdW5pdmVyc2l0eT9fY2xkZWU9Wm1GdGFXeDVRR2hsYVc1eWFXTm9MbU52TG5WciZyZWNpcGllbnRpZD1jb250YWN0LWZkNGY5ODE1MzQ2N2U5MTFhOGI0MDAyMjQ4MDA1NzQ4LTZjZGIwM2Y1MThlZjQxY2Q5MjUzMDZkMGNkYWM2MTVjJmVzaWQ9MmI4YThjN2ItODAwYi1lYTExLWE4MTEtMDAwZDNhODZhNzhj&K=Uw4GthYt4FXNf7keFClrew" title="Youtube" target="_blank" style="text-decoration: none;" cdlinkrefid="34_3">
                        <img class="social" width="32" height="32" style="width: 32px; height: 32px; margin: 5px;" src="https://az551914.vo.msecnd.net/web/SPA_resources/DndEditor_v2/social_links/circle/white/youtube.png">
                    </a>
                   </span> <span  style="display: inline-block;">
                       <a href="https://elinkeu.clickdimensions.com/c/4/?T=MzY3MjkxMjU%3AcDEtYjE5MzI0LWE4ZTU3MDU2NTJhMzQwYWM4OTQyOTQxMWYwMmQ0NGEw%3AZmFtaWx5QGhlaW5yaWNoLmNvLnVr%3AY29udGFjdC1mZDRmOTgxNTM0NjdlOTExYThiNDAwMjI0ODAwNTc0OC02Y2RiMDNmNTE4ZWY0MWNkOTI1MzA2ZDBjZGFjNjE1Yw%3AZmFsc2U%3AMTc%3A%3AaHR0cHM6Ly93d3cubGlua2VkaW4uY29tL3NjaG9vbC9kdXJoYW0tdW5pdmVyc2l0eS8_X2NsZGVlPVptRnRhV3g1UUdobGFXNXlhV05vTG1OdkxuVnImcmVjaXBpZW50aWQ9Y29udGFjdC1mZDRmOTgxNTM0NjdlOTExYThiNDAwMjI0ODAwNTc0OC02Y2RiMDNmNTE4ZWY0MWNkOTI1MzA2ZDBjZGFjNjE1YyZlc2lkPTJiOGE4YzdiLTgwMGItZWExMS1hODExLTAwMGQzYTg2YTc4Yw&K=lhUILZwOPzyqDx1BQx-UnA" title="Linkedin" target="_blank" style="text-decoration: none;" cdlinkrefid="34_4">
                        <img class="social" width="32" height="32" style="width: 32px; height: 32px; margin: 5px;" src="https://az551914.vo.msecnd.net/web/SPA_resources/DndEditor_v2/social_links/circle/white/linkedin.png">
                    </a>
                   </span><!--<![endif]-->
                          </td>
                     </tr>
                                                         </tbody>
                                                     </table>
                                                 </td>
                                             </tr>
                                        </tbody>
                                    </table>
                              </div><!--[if mso]></td><![endif]--><!--[if mso]><td align="left" valign="top" width="0px"><![endif]--><div style="overflow: visible!important; display: inline-block; width:0px; max-width:0px; min-width:0px; vertical-align:top;" class="stack-column">
                                    <table role="presentation"  cellspacing="0" cellpadding="0" border="0" width="100%">
                                        <tbody>
                                            <tr>
                                                <td style="padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px;">
                                                    <table role="presentation"  cellspacing="0" cellpadding="0" border="0" width="0px" style="table-layout: fixed; width: 0px;" >
                                                        <tbody>
                                                            
                                                         </tbody>
                                                     </table>
                                                 </td>
                                             </tr>
                                        </tbody>
                                    </table>
                              </div><!--[if mso]></td><![endif]--><!--[if mso]><td align="left" valign="top" width="300px"><![endif]--><div style="overflow: visible!important; display: inline-block; width:300px; max-width:300px; min-width:300px; vertical-align:top;" class="stack-column">
                                    <table role="presentation"  cellspacing="0" cellpadding="0" border="0" width="100%">
                                        <tbody>
                                            <tr>
                                                <td style="padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px;">
                                                    <table role="presentation"  cellspacing="0" cellpadding="0" border="0" width="300px" style="table-layout: fixed; width: 300px;" >
                                                        <tbody>
                                                            <tr>
                          <td width="295" class="text-block-container" style="box-sizing: border-box;white-space: normal;font-family:Arial,Helvetica,sans-serif;font-size:12px;line-height:1.4;color:#000; word-wrap: break-word !important; white-space: normal;  padding-top: 12px; padding-bottom: 5px; padding-left: 0px; padding-right: 5px;"><p style="font-family:Arial;font-size:14px;color:#002a41;letter-spacing:0px;line-height:1.2;text-align:left;margin:0;word-wrap:break-word !important;font-weight:normal;font-style:normal;text-decoration: none"><span style="color:#ffffff">Got a Question? Try our </span><a cd-link-manager-tab="1" href="https://elinkeu.clickdimensions.com/c/4/?T=MzY3MjkxMjU%3AcDEtYjE5MzI0LWE4ZTU3MDU2NTJhMzQwYWM4OTQyOTQxMWYwMmQ0NGEw%3AZmFtaWx5QGhlaW5yaWNoLmNvLnVr%3AY29udGFjdC1mZDRmOTgxNTM0NjdlOTExYThiNDAwMjI0ODAwNTc0OC02Y2RiMDNmNTE4ZWY0MWNkOTI1MzA2ZDBjZGFjNjE1Yw%3AZmFsc2U%3AMTg%3A%3AaHR0cHM6Ly9zdHVkeWF0ZHVyaGFtLm1pY3Jvc29mdGNybXBvcnRhbHMuY29tL2VuLVVTL2tub3dsZWRnZWJhc2UvP19jbGRlZT1abUZ0YVd4NVFHaGxhVzV5YVdOb0xtTnZMblZyJnJlY2lwaWVudGlkPWNvbnRhY3QtZmQ0Zjk4MTUzNDY3ZTkxMWE4YjQwMDIyNDgwMDU3NDgtNmNkYjAzZjUxOGVmNDFjZDkyNTMwNmQwY2RhYzYxNWMmZXNpZD0yYjhhOGM3Yi04MDBiLWVhMTEtYTgxMS0wMDBkM2E4NmE3OGM&K=feTORH5nvb3R2-XqrzdF4g" target="_blank" style="color: rgb(255, 255, 255); font-weight: bold; text-decoration: underline;"><span style="color:#ffffff">FAQs</span></a><span style="color:#ffffff"> or </span><a cd-link-manager-tab="1" href="https://elinkeu.clickdimensions.com/c/4/?T=MzY3MjkxMjU%3AcDEtYjE5MzI0LWE4ZTU3MDU2NTJhMzQwYWM4OTQyOTQxMWYwMmQ0NGEw%3AZmFtaWx5QGhlaW5yaWNoLmNvLnVr%3AY29udGFjdC1mZDRmOTgxNTM0NjdlOTExYThiNDAwMjI0ODAwNTc0OC02Y2RiMDNmNTE4ZWY0MWNkOTI1MzA2ZDBjZGFjNjE1Yw%3AZmFsc2U%3AMTk%3A%3AaHR0cHM6Ly93d3cuZHVyLmFjLnVrL3N0dWR5L2Fza3VzLz9fY2xkZWU9Wm1GdGFXeDVRR2hsYVc1eWFXTm9MbU52TG5WciZyZWNpcGllbnRpZD1jb250YWN0LWZkNGY5ODE1MzQ2N2U5MTFhOGI0MDAyMjQ4MDA1NzQ4LTZjZGIwM2Y1MThlZjQxY2Q5MjUzMDZkMGNkYWM2MTVjJmVzaWQ9MmI4YThjN2ItODAwYi1lYTExLWE4MTEtMDAwZDNhODZhNzhj&K=KjLWoG7UcIo1tEx-4TwEWw" target="_blank" style="color: rgb(255, 255, 255); font-weight: bold; text-decoration: underline;"><span style="color:#ffffff">ask us directly.</span></a></p>
</td>
                     </tr>
                                                         </tbody>
                                                     </table>
                                                 </td>
                                             </tr>
                                        </tbody>
                                    </table>
                              </div><!--[if mso]></td><![endif]-->
                                        <!--[if mso]>
                                        </tr>
                                        </table>
                                        <![endif]-->
                                        </td>
                                    </tr>
                                </tbody>
                            </table>
                          <!--[if mso]>
                            </td>
                           </tr>
                          </table>
                          <![endif]-->
                          <!-- Email Section : END -->
                        </td>
                    </tr><tr class="section-block">
                        <td align="center" height="100%" valign="top" width="100%" style=" ">
                            <!-- Email Section : BEGIN -->
                            <!--[if mso]>
                            <table role="presentation"  border="0" cellspacing="0" cellpadding="0" align="center" width="600">
                              <tr>
                                <td align="center" valign="top" width="600">
                           <![endif]-->
                            <table id="49" role="presentation"  border="0" cellpadding="0" cellspacing="0" align="center" width="100%" style="max-width:600px;">
                                <tbody>
                                    <tr>
                                        <td valign="top" width="100%" style="padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; background-color: #ffffff;; font-size: 0;">
                                         <!--[if mso]>
                                        <table role="presentation"  border="0" cellspacing="0" cellpadding="0" align="center" width="600px" style="table-layout:fixed; border-collapse: collapse; mso-table-lspace:0; mso-table-rspace:0;" cellpadding="0" cellspacing="0" >
                                        <tr>
                                        <![endif]-->
                                        <!--[if mso]><td align="left" valign="top" width="600px"><![endif]--><div style="overflow: visible!important; display: inline-block; width:600px; max-width:600px; min-width:600px; vertical-align:top;" class="stack-column">
                                    <table role="presentation"  cellspacing="0" cellpadding="0" border="0" width="100%">
                                        <tbody>
                                            <tr>
                                                <td style="padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px;">
                                                    <table role="presentation"  cellspacing="0" cellpadding="0" border="0" width="600px" style="table-layout: fixed; width: 600px;" >
                                                        <tbody>
                                                            <tr>
                          <td width="564" class="text-block-container" style="box-sizing: border-box;white-space: normal;font-family:Arial,Helvetica,sans-serif;font-size:12px;line-height:1.4;color:#000; word-wrap: break-word !important; white-space: normal; background-color: #00aeef; padding-top: 9px; padding-bottom: 9px; padding-left: 18px; padding-right: 18px;"><p style="font-family:Arial;font-size:14px;color:#002a41;letter-spacing:0px;line-height:1.2;text-align:left;margin:0;word-wrap:break-word !important;font-weight:normal;font-style:normal;text-decoration: none"><u><a cd-link-manager-tab="1" href="https://elinkeu.clickdimensions.com/c/4/?T=MzY3MjkxMjU%3AcDEtYjE5MzI0LWE4ZTU3MDU2NTJhMzQwYWM4OTQyOTQxMWYwMmQ0NGEw%3AZmFtaWx5QGhlaW5yaWNoLmNvLnVr%3AY29udGFjdC1mZDRmOTgxNTM0NjdlOTExYThiNDAwMjI0ODAwNTc0OC02Y2RiMDNmNTE4ZWY0MWNkOTI1MzA2ZDBjZGFjNjE1Yw%3AZmFsc2U%3AMjA%3A%3AaHR0cHM6Ly93d3cuZHVyLmFjLnVrL2lnL2RwL3ByaXZhY3kvcG5wcm9zcGVjdGl2ZXN0dWRlbnQvP19jbGRlZT1abUZ0YVd4NVFHaGxhVzV5YVdOb0xtTnZMblZyJnJlY2lwaWVudGlkPWNvbnRhY3QtZmQ0Zjk4MTUzNDY3ZTkxMWE4YjQwMDIyNDgwMDU3NDgtNmNkYjAzZjUxOGVmNDFjZDkyNTMwNmQwY2RhYzYxNWMmZXNpZD0yYjhhOGM3Yi04MDBiLWVhMTEtYTgxMS0wMDBkM2E4NmE3OGM&K=OlzYpZCR6AONItyiYsi3xw" target="_blank" style="color: rgb(255, 255, 255); font-weight: bold; text-decoration: underline;"><span style="color:#ffffff">Privacy Statement </span></a></u><span style="color:#ffffff">| <a cd-link-manager-tab="6" href="https://elinkeu.clickdimensions.com/m/1/36729125/p1-b19324-a8e5705652a340ac89429411f02d44a0/7/527/8f804840-0c17-42e3-822d-b49691905e11" style="color: rgb(255, 255, 255); font-weight: bold; text-decoration: underline;"><span style="color:#ffffff"><u>View in Browser</u></span></a> | <a cd-link-manager-tab="5" href="https://elinkeu.clickdimensions.com/uu/2/1cla%3AMzY3MjkxMjU%3AcDEtYjE5MzI0LWE4ZTU3MDU2NTJhMzQwYWM4OTQyOTQxMWYwMmQ0NGEw%3AZmFtaWx5QGhlaW5yaWNoLmNvLnVr%3AY29udGFjdC1mZDRmOTgxNTM0NjdlOTExYThiNDAwMjI0ODAwNTc0OC02Y2RiMDNmNTE4ZWY0MWNkOTI1MzA2ZDBjZGFjNjE1Yw%3An%3An%3AroeVfelQgZti4pwi9D9aDg" link-metadata="GlobalUnsubscribe" style="color: rgb(255, 255, 255); font-weight: bold; text-decoration: underline;"><span style="color:#ffffff"><u>Unsubscribe</u></span></a> </span><span style="font-size:11pt"><span style="font-family:Calibri,sans-serif"><span style="color:white">©</span></span></span><span style="color:#ffffff"> Durham University 2019</span></p>
</td>
                     </tr>
                                                         </tbody>
                                                     </table>
                                                 </td>
                                             </tr>
                                        </tbody>
                                    </table>
                              </div><!--[if mso]></td><![endif]-->
                                        <!--[if mso]>
                                        </tr>
                                        </table>
                                        <![endif]-->
                                        </td>
                                    </tr>
                                </tbody>
                            </table>
                          <!--[if mso]>
                            </td>
                           </tr>
                          </table>
                          <![endif]-->
                          <!-- Email Section : END -->
                        </td>
                    </tr>
                                  </tbody>
                             </table>
                          </td>
                         </tr>
                        </tbody>
                       </table>
                      </div>
                     </center>
</body>
</html>
    </html>