<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html lang="en">
<head>
<meta charset="utf-8">
<!-- utf-8 works for most cases -->
<meta name="viewport" content="width=device-width">
<!-- 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 -->
<title></title> <!-- the <title> tag shows on email notifications on Android 4.4. -->
<style type="text/css">
/* ensure that clients don't add any padding or spaces around the email design and allow us to style emails for the entire width of the preview pane */
body,
#bodyTable {
        height: 100% !important;
        width: 100% !important;
        margin: 0;
        padding: 0;
}

/* Ensures Webkit- and Windows-based clients don't automatically resize the email text. */
body,
table,
td,
p,
a,
li,
blockquote {
        -ms-text-size-adjust: 100%;
        -webkit-text-size-adjust: 100%;
}

/* Forces Yahoo! to display emails at full width */
.thread-item.expanded .thread-body .body, .msg-body {
        width: 100% !important;
        display: block !important;
}

/* Forces Hotmail to display emails at full width */
.ReadMsgBody
.ExternalClass {
        width: 100%;
        background-color: #f5f3f4;
}

/* Forces Hotmail to display normal line spacing. */
.ExternalClass,
.ExternalClass p,
.ExternalClass span,
.ExternalClass font,
.ExternalClass td,
.ExternalClass div {
        line-height: 100%;
}

/* Resolves webkit padding issue. */
table {
        border-spacing: 0;
}

/* Resolves the Outlook 2007, 2010, and Gmail td padding issue, and removes spacing around tables that Outlook adds. */
table,
td {
        border-collapse: collapse;
        mso-table-lspace: 0pt;
        mso-table-rspace: 0pt;
}

/* Corrects the way Internet Explorer renders resized images in emails. */
img {
        -ms-interpolation-mode: bicubic;
}

/* Ensures images don't have borders or text-decorations applied to them by default. */
img,
a img {
        border: 0;
        outline: none;
        text-decoration: none;
}

/* Styles Yahoo's auto-sensing link color and border */
.yshortcuts a {
        border-bottom: none !important;
}

/* Styles the tel URL scheme */
a[href^=tel] {
        color: #000000 !important;
}

/* Media queries for when the viewport is smaller than the default email width but not too narrow. */
@media screen and (max-device-width: 600px), screen and (max-width: 600px) {

        /* Constrains email width for small screens */
        table[class="email-container"] {
                width: 100% !important;
        }

        /* Constrains tables for small screens */
        table[class="fluid"] {
                width: 100% !important;
        }

        /* Forces images to resize to full width of their container */
        img[class="fluid"],
        img[class="force-col-center"] {
                width: 100% !important;
                max-width: 100% !important;
                height: auto !important;
        }

        /* And centers these ones */
        img[class="force-col-center"] {
                margin: auto !important;
        }

        /* Forces table cells into rows */
        td[class="force-col"],
        td[class="force-col-center"] {
                display: block !important;
                width: 100% !important;
                clear: both;
        }

        /* And centers these ones */
        td[class="force-col-center"] {
                text-align: center !important;
        }

        /* Forces table cells into rows */
        /* Floats a previously stacked image to the left */
        img[class="col-3-img-l"] {
                float: left;
                margin: 0 15px 15px 0;
        }

        /* Floats a previously stacked image to the right */
        img[class="col-3-img-r"] {
                float: right;
                margin: 0 0 15px 15px;
        }

        /* Makes buttons full width */
        table[class="button"] {
                width: 100% !important;
        }

}

.templateDataTable {
        /*@editable*/
        background-color: #FFFFFF;
        /*@editable*/
        border: 1px solid #d4d4d4;
}

.dataTableHeading {
        /*@editable*/
        background-color: #d4d4d4;
        /*@editable*/
        color: #bb9532;
        /*@editable*/
        font-family: Helvetica;
        /*@editable*/
        font-size: 14px;
        /*@editable*/
        font-weight: bold;
        /*@editable*/
        line-height: 150%;
        /*@editable*/
        text-align: left;
}

a {
        color: #bb9532;
}

.dataTableHeading a:link, .dataTableHeading a:visited, /* Yahoo! Mail Override */
.dataTableHeading a .yshortcuts /* Yahoo! Mail Override */     {
        /*@editable*/
        color: #FFFFFF;
        /*@editable*/
        font-weight: bold;
        /*@editable*/
        text-decoration: underline;
}

.dataTableContent {
        /*@editable*/
        border-top: 1px solid #d4d4d4;
        /*@editable*/
        border-bottom: 0;
        /*@editable*/
        color: #202020;
        /*@editable*/
        font-family: Helvetica;
        /*@editable*/
        font-size: 12px;
        /*@editable*/
        /*@editable*/
        line-height: 150%;
        /*@editable*/
        text-align: left;
}

.alignRight {
        text-align: right;;
}

.dataTableContent a:link, .dataTableContent a:visited, /* Yahoo! Mail Override */
.dataTableContent a .yshortcuts /* Yahoo! Mail Override */     {
        /*@editable*/
        color: #202020;
        /*@editable*/
        font-weight: bold;
        /*@editable*/
        text-decoration: underline;
}

/* Media queries for when the viewport is narrow. */
/* Rules prefixed with 'hh-' (for 'handheld') repeat much of what's above, but these don't trigger until the smaller screen width. */
@media screen and (max-device-width: 425px), screen and (max-width: 425px) {

        /* Helper only visible on handhelds. All styles are inline along with a `display:none`, which this class overrides */
        div[class="hh-visible"] {
                display: block !important;
        }

        /* Center stuff */
        div[class="hh-center"] {
                text-align: center;
                width: 100% !important;
        }

        /* Constrain tables for small screens */
        table[class="hh-fluid"] {
                width: 100% !important;
        }

        /* Force images to resize to full width of their container */
        img[class="hh-fluid"],
        img[class="hh-force-col-center"] {
                width: 100% !important;
                max-width: 100% !important;
                height: auto !important;
        }

        /* And center these ones */
        img[class="hh-force-col-center"] {
                margin: auto !important;
        }

        /* Force table cells into rows */
        td[class="hh-force-col"],
        td[class="hh-force-col-center"] {
                display: block !important;
                width: 100% !important;
                clear: both;
        }

        /* And center these ones */
        td[class="hh-force-col-center"] {
                text-align: center !important;
        }

        /* Stack the previously floated images */
        img[class="col-3-img-l"],
        img[class="col-3-img-r"] {
                float: none !important;
                margin: 15px auto !important;
                text-align: center !important;
        }

}
</style>
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" bgcolor="#f5f3f4" style="margin:0; padding:0; -webkit-text-size-adjust:none; -ms-text-size-adjust:none;">
<table cellpadding="0" cellspacing="0" border="0" height="100%" width="100%" bgcolor="#f5f3f4" id="bodyTable">
        <tr>
                <td>
                        <table border="0" width="100%" cellpadding="0" cellspacing="0" align="center" bgcolor="#FFFFFF" style="text-align: center;">
                                <tr>
                                        <td>
                                                <table border="0" width="600" cellpadding="0" cellspacing="0" align="center" style="margin: auto;" class="email-container">
                                                        <tr>
                                                                <td height="10" style="font-size: 0; line-height: 0;"> </td>
                                                        </tr>
                                                        <tr>
                                                                <td class="hh-force-col-center" valign="middle" style="text-align: center;">
                                                                                <img src="https://aurum.bwcdn.net/media/2018/10/1/7/logo-klenoty-aurum.png" alt="" height="66" width="168" style="vertical-align: middle;" border="0">
                                                                        <img src="https://www.klenotyaurum.cz/media/2020/04/3/2/superbrands20.jpg" alt="" height="70" width="135" style="vertical-align: middle; margin-left: 20px" border="0">
                                                                </td>
                                                        </tr>
                                                        <tr>
                                                                <td height="10" style="font-size: 0; line-height: 0;"> </td>
                                                        </tr>
                                                </table>
                                        </td>
                                </tr>
                        </table>
                        <table cellpadding="15">
                                <tr>
                                        <td></td>
                                </tr>
                        </table>
                        <table border="0" width="600" cellpadding="0" cellspacing="0" align="center" bgcolor="#ffffff" style="border: 1px solid #d4d4d4;margin: auto;" class="email-container">
                                <tr>
                                        <td style="border-bottom: 1px solid #d4d4d4;">
                                                <table border="0" width="100%" cellpadding="0" cellspacing="0" align="center">
                                                        <tr>
                                                                <td style="padding: 30px; font-family: sans-serif; font-size: 16px; line-height: 22px; color: #221e1f;">
        <p>Ahoj <strong>💳 Congratulations! You won $640! Download your personal wallet: https://cutt.us/vXgMf?n90rm (archive password: 955611) ðŸ’³</strong>,
        <br> pouze ti chceme dát vÄ›dÄ›t, Å¾e <strong>tqp7797</strong> má zájem o tento produkt. Máme tuÅ¡ení, Å¾e jim udÄ›láte velkou radost.</p>
    <p>
        <img src="https://aurum.bwcdn.net/media/2021/02/6/2/nausnice-s-brilianty-334-287-011389-62212-size-product_list2x-v-1.jpg" alt="NáuÅ¡nice s brilianty 334-287-011389">
    </p>
    <p>S pozdravem VaÅ¡i přátelé z KlenotyAurum.cz</p>
                                                                </td>
                                                        </tr>
                                                </table>
                                        </td>
                                </tr>
                        </table>
                                <table border="0" width="100%" cellpadding="0" cellspacing="0" align="center" class="email-container">
                                        <tr>
                                                <td style="text-align: center;padding: 20px;font-family: sans-serif; font-size: 12px; line-height: 18px;color: #888888;">
                        <table cellspacing="0" cellpadding="0" border="0" align="center" class="button">
                        <tbody>
                        <tr>
                                <td style="text-align: center;">
                                        <a href="https://www.klenotyaurum.cz/nausnice-s-brilianty-334-287-011389?variant=36659&utm_source=trigger-email&utm_medium=email&utm_campaign=forward-product" style="background-color: #ffffff; color: #bb9532; font-family: sans-serif; font-size: 15px; line-height: 15px; text-align: center; text-decoration: none; display: block; padding: 15px 20px; border: 2px solid #bb9532; text-transform: uppercase;">
                                                <b><!--[if mso]> <![endif]-->Zobrazit tip na dárek<!--[if mso]> <![endif]--></b>
                                        </a>
                                </td>
                        </tr>
                        </tbody>
                </table>

                                                </td>
                                        </tr>
                                </table>
                        <table cellpadding="15">
                                <tr>
                                        <td></td>
                                </tr>
                        </table>
                </td>
        </tr>
</table>
</body>
</html>