<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Liftkom сервиз</title>
<style type="text/css">
/***********
Originally based on The MailChimp Reset from Fabio Carneiro, MailChimp
User Experience Design
More info and templates on Github:
https://github.com/mailchimp/Email-Blueprints
http://www.mailchimp.com & http://www.fabio-carneiro.com
INLINE: Yes.
***********/
/* Client-specific Styles */
#outlook a {padding:0;} /* Force Outlook to provide a "view in browser"
menu link. */
body{width:100% !important; -webkit-text-size-adjust:100%;
-ms-text-size-adjust:100%; margin:0; padding:0;}
/* Prevent Webkit and Windows Mobile platforms from changing default
font sizes, while not breaking desktop design. */
.ExternalClass {width:100%;} /* Force Hotmail to display emails at full
width */
.ExternalClass, .ExternalClass p, .ExternalClass span, .ExternalClass
font, .ExternalClass td, .ExternalClass div {line-height: 100%;} /* Force
Hotmail to display normal line spacing. More on that:
http://www.emailonacid.com/forum/viewthread/43/ */
#backgroundTable {margin:0; padding:0; width:100% !important;
line-height: 100% !important;}
/* End reset */
/* Some sensible defaults for images
1. "-ms-interpolation-mode: bicubic" works to help ie properly resize
images in IE. (if you are resizing them using the width and height
attributes)
2. "border:none" removes border when linking images.
3. Updated the common Gmail/Hotmail image display fix: Gmail and Hotmail
unwantedly adds in an extra space below images when using non IE browsers.
You may not always want all of your images to be block elements. Apply the
"image_fix" class to any image you need to fix.
Bring inline: Yes.
*/
img {outline:none; text-decoration:none; -ms-interpolation-mode:
bicubic;}
a img {border:none;}
.image_fix {display:block;}
/** Yahoo paragraph fix: removes the proper spacing or the paragraph (p)
tag. To correct we set the top/bottom margin to 1em in the head of the
document. Simple fix with little effect on other styling. NOTE: It is also
common to use two breaks instead of the paragraph tag but I think this way
is cleaner and more semantic. NOTE: This example recommends 1em. More info
on setting web defaults: http://www.w3.org/TR/CSS21/sample.html or
http://meiert.com/en/blog/20070922/user-agent-style-sheets/
Bring inline: Yes.
**/
p {margin: 1em 0;}
/** Hotmail header color reset: Hotmail replaces your header color
styles with a green color on H2, H3, H4, H5, and H6 tags. In this example,
the color is reset to black for a non-linked header, blue for a linked
header, red for an active header (limited support), and purple for a
visited header (limited support). Replace with your choice of color. The
!important is really what is overriding Hotmail's styling. Hotmail also
sets the H1 and H2 tags to the same size.
Bring inline: Yes.
**/
h1, h2, h3, h4, h5, h6 {color: black !important;}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {color: blue !important;}
h1 a:active, h2 a:active, h3 a:active, h4 a:active, h5 a:active, h6
a:active {
color: red !important; /* Preferably not the same color as the normal
header link color. There is limited support for psuedo classes in email
clients, this was added just for good measure. */
}
h1 a:visited, h2 a:visited, h3 a:visited, h4 a:visited, h5 a:visited,
h6 a:visited {
color: purple !important; /* Preferably not the same color as the
normal header link color. There is limited support for psuedo classes in
email clients, this was added just for good measure. */
}
/** Outlook 07, 10 Padding issue: These "newer" versions of Outlook add
some padding around table cells potentially throwing off your perfectly
pixeled table. The issue can cause added space and also throw off borders
completely. Use this fix in your header or inline to safely fix your table
woes.
More info:
http://www.ianhoar.com/2008/04/29/outlook-2007-borders-and-1px-padding-on-table-cells/
http://www.campaignmonitor.com/blog/post/3392/1px-borders-padding-on-table-cells-in-outlook-07/
H/T @edmelly
Bring inline: No.
**/
table td {border-collapse: collapse;}
/** Remove spacing around Outlook 07, 10 tables
More info :
http://www.campaignmonitor.com/blog/post/3694/removing-spacing-from-around-tables-in-outlook-2007-and-2010/
Bring inline: Yes
**/
table { border-collapse:collapse; mso-table-lspace:0pt;
mso-table-rspace:0pt; }
/* Styling your links has become much simpler with the new Yahoo. In
fact, it falls in line with the main credo of styling in email, bring your
styles inline. Your link colors will be uniform across clients when
brought inline.
Bring inline: Yes. */
a {color: orange;}
/* Or to go the gold star route...
a:link { color: orange; }
a:visited { color: blue; }
a:hover { color: green; }
*/
/***************************************************
****************************************************
MOBILE TARGETING
Use @media queries with care. You should not bring these styles inline
-- so it's recommended to apply them AFTER you bring the other stlying
inline.
Note: test carefully with Yahoo.
Note 2: Don't bring anything below this line inline.
****************************************************
***************************************************/
/* NOTE: To properly use @media queries and play nice with yahoo mail,
use attribute selectors in place of class, id declarations.
table[class=classname]
Read more:
http://www.campaignmonitor.com/blog/post/3457/media-query-issues-in-yahoo-mail-mobile-email/
*/
@media only screen and (max-device-width: 480px) {
/* A nice and clean way to target phone numbers you want clickable and
avoid a mobile phone from linking other numbers that look like, but are not
phone numbers. Use these two blocks of code to "unstyle" any numbers that
may be linked. The second block gives you a class to apply with a span tag
to the numbers you would like linked and styled.
Inspired by Campaign Monitor's article on using phone numbers in email:
http://www.campaignmonitor.com/blog/post/3571/using-phone-numbers-in-html-email/.
Step 1 (Step 2: line 224)
*/
a[href^="tel"], a[href^="sms"] {
text-decoration: none;
color: black; /* or whatever your want */
pointer-events: none;
cursor: default;
}
.mobile_link a[href^="tel"], .mobile_link a[href^="sms"] {
text-decoration: default;
color: orange !important; /* or whatever your want */
pointer-events: auto;
cursor: default;
}
}
/* More Specific Targeting */
@media only screen and (min-device-width: 768px) and (max-device-width:
1024px) {
/* You guessed it, ipad (tablets, smaller screens, etc) */
/* Step 1a: Repeating for the iPad */
a[href^="tel"], a[href^="sms"] {
text-decoration: none;
color: blue; /* or whatever your want */
pointer-events: none;
cursor: default;
}
.mobile_link a[href^="tel"], .mobile_link a[href^="sms"] {
text-decoration: default;
color: orange !important;
pointer-events: auto;
cursor: default;
}
}
@media only screen and (-webkit-min-device-pixel-ratio: 2) {
/* Put your iPhone 4g styles in here */
}
/* Following Android targeting from:
http://developer.android.com/guide/webapps/targeting.html
http://pugetworks.com/2011/04/css-media-queries-for-targeting-different-mobile-devices/
*/
@media only screen and (-webkit-device-pixel-ratio:.75){
/* Put CSS for low density (ldpi) Android layouts in here */
}
@media only screen and (-webkit-device-pixel-ratio:1){
/* Put CSS for medium density (mdpi) Android layouts in here */
}
@media only screen and (-webkit-device-pixel-ratio:1.5){
/* Put CSS for high density (hdpi) Android layouts in here */
}
/* end Android targeting */
</style>
<!-- Targeting Windows Mobile -->
<!--[if IEMobile 7]>
<style type="text/css">
</style>
<![endif]-->
<!-- ***********************************************
****************************************************
END MOBILE TARGETING
****************************************************
************************************************ -->
<!--[if gte mso 9]>
<style>
/* Target Outlook 2007 and 2010 */
</style>
<![endif]-->
</head>
<body>
<table id="backgroundTable" bgcolor="#555555" border="0" cellspacing="0"
cellpadding="0">
<tbody>
<tr>
<td>
<table align="center" style="width: 680px;" border="0" cellspacing="0"
cellpadding="0">
<tbody>
<tr>
<td height="15" bgcolor="#ffffff"> </td>
</tr>
<tr>
<td width="680" height="196" valign="top" bgcolor="#ffffff"><a
href="http://www.bgpromo.eu/iem42/link.php?M=1189447&N=27&L=5&F=H"><img
alt="Liftkom сервиз"
src="http://emailmarketing-bg.com/liftkom/logo.jpg" /></a></td>
</tr>
<tr>
<td height="45" bgcolor="#ffffff"> </td>
</tr>
<tr>
<td height="40" style="padding-left: 25px; font-family: verdana;
font-size: 40px;" bgcolor="#ffffff"><font
color="#f37a20"><strong>ПОКАНА</strong></font></td>
</tr>
<tr>
<td height="45" bgcolor="#ffffff"> </td>
</tr>
<tr>
<td height="24" style="padding-left: 25px; font-family: verdana;
font-size: 24px;" bgcolor="#ffffff"><font color="#243257"><strong>LIFT
BALKANS</strong></font></td>
</tr>
<tr>
<td height="34" valign="bottom" style="padding-left: 25px; font-family:
verdana; font-size: 24px;" bgcolor="#ffffff"><font
color="#243257">Международна изложба за
Югоизточна Европа</font></td>
</tr>
<tr>
<td height="30" bgcolor="#ffffff"> </td>
</tr>
<tr>
<td style="padding-left: 25px; font-family: verdana;"
bgcolor="#ffffff">Изложението ще се проведе от 29
до 31 май 2013г в гр. София, <br /> Интер Експо
Център.<br /><br /> Лифтком АД ще вземе
участие на LIFT BALKANS защото е единственото
<br /> специализирано изложение в България
посветено на асансьорни <br /> съоръжения,
ескалатори,и свързани с тях компоненти и
системи. <br /> Лифтком АД ще представи свои
асансьорни съоръжения, произведени <br />
във Фабрика Лифтком в гр. Шумен, нови
модели кабини, машини на <br /> фирма SASI , с
която си партнира, ще представим и <br />
Тисен Круп Елевейтърс-България, за която
сме официален представител <br /> за
продажби и сервиз за България.<br /> На
изложението LIFT BALKANS ще вземе участие и
нашата дъщерна <br /> фирма за сервиз
ЛИФТКОМ СЕРВИЗ-НАЦИОНАЛЕН АСАНСЬОРЕН
СЕРВИЗ. <br /> Лифтком АД ще бъде на място на
международното изложение за срещи <br />
между специалисти и инвеститори, които
работят в сферата на <br /> асансьорния
бранш, инвестиции и предприемачество,
строителство, <br /> архитектура, фасилити
мениджмънт, електроника, държавна <br />
администрация и др. <br /><br /> Щанда на
изложението на Лифтком АД, ще откриете в
Зала 1 на Интер <br /> Експо Център в гр.
София.</td>
</tr>
<tr>
<td height="15" bgcolor="#ffffff"> </td>
</tr>
</tbody>
</table>
<table align="center" style="width: 680px;" bgcolor="#ffffff" border="0"
cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="30"> </td>
<td valign="top"><img alt="Лифтком Сервиз лого"
src="http://emailmarketing-bg.com/liftkom/logo_small_left.jpg" /></td>
<td width="63"> </td>
<td><img alt="Карта на сградата"
src="http://emailmarketing-bg.com/liftkom/map.jpg" /><br /><br /><br /><br
/><img alt="Лифтком Сервиз сграда"
src="http://emailmarketing-bg.com/liftkom/building.jpg" /></td>
<td width="30"> </td>
</tr>
</tbody>
</table>
<table align="center" style="width: 680px;" bgcolor="#ffffff" border="0"
cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td height="15" colspan="5"> </td>
</tr>
<tr>
<td width="30"> </td>
<td width="236" height="241" valign="top" style="padding: 34px;"
bgcolor="#2d2d2d"><font color="#f58220" size="4">ЛИФТКОМ
СЕРВИЗ<br /> ЗА БЪЛГАРИЯ</font><hr /><font color="#ffffff"
size="2">НАЦИОНАЛЕН БЕЗПЛАТЕН ТЕЛЕФОН</font><br
/><br /><br /> <font color="#ffffff"><span style="line-height: 48px;
font-size: 42px;">0700 420 40</span></font><br /><br /> <font
color="#ffffff" size="2">Oторизиран сервиз на
Тhyssenkrupp за България.</font></td>
<td width="12"> </td>
<td width="236" height="241" valign="top" style="padding: 34px;"
bgcolor="#2d2d2d"><font color="#f58220" size="4">ФАБРИКА ЗА
АСАНСЬОРИ ЛИФТКОМ</font><hr /><font color="#ffffff"
size="2">България<br /> П.К. 9700 гр.Шумен<br /> бул.
"Ришки Проход" 219<br /><br /> тел.: +359 54 831 855<br />
+359 54 831 366<br /><br /> факс: +359 54 833 113<br /><br /><a
href="mailto:info@liftkom.com">info@liftkom.com</a> <br /><a
href="http://www.bgpromo.eu/iem42/link.php?M=1189447&N=27&L=5&F=H">www.liftkom.com</a>
</font></td>
<td width="30"> </td>
</tr>
</tbody>
</table>
<p align="center"><font color="#cccccc" face="Verdana"
size="1">Съгласно Закона за електронната
търговия този мейл е непоискано
търговско съобщение. <br />Вашият адрес е
взет от публичното интернет
пространство. <br />Ако не искате да
получавате писма от нас <a
href="http://www.bgpromo.eu/iem42/unsubscribe.php?M=1189447&C=2d1b5d2f2a01962ea0bd1cfe3ab0db13&L=22&N=27">моля
натиснете ТУК</a>!</font></p>
</td>
</tr>
</tbody>
</table>
<img
src="http://www.bgpromo.eu/iem42/open.php?M=1189447&L=22&N=27&F=H&image=.jpg"
height="1" width="10"></body>
</html>