403Webshell
Server IP : 195.130.67.5  /  Your IP : 216.73.216.231
Web Server : Microsoft-IIS/10.0
System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586
User : IUSR ( 0)
PHP Version : 7.4.19
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : OFF  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  C:/inetpub/wwwroot/includes/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : C:/inetpub/wwwroot/includes//InitialDatabase.sql
CREATE TABLE IF NOT EXISTS `attachments` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `filename` varchar(100) NOT NULL,
  `file_type` varchar(100) NOT NULL,
  `file_size` int(10) DEFAULT NULL,
  `url` varchar(500) NOT NULL,
  `display_name` varchar(80) DEFAULT NULL,
  `description` varchar(255) DEFAULT NULL,
  `parent_id` int(10) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 ;


CREATE TABLE IF NOT EXISTS `categories` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `parent_id` int(11) NOT NULL DEFAULT '0',
  `sort_order` int(3) NOT NULL DEFAULT '0',
  `title` varchar(255) NOT NULL,
  `description` text,
  `show_in_primarymenu` tinyint(1) NOT NULL DEFAULT '1',
  `show_submenu` int(1) NOT NULL DEFAULT '0',
  `menu_type` tinyint(1) NOT NULL DEFAULT '1' COMMENT '0=Πρωτοσέλιδο, 1=Άρθρα κατηγορίας, 2=Μονό άρθρο, 3=Εξωτερικός σύνδεσμος, 4=Σύνδεσμοι κατηγορίας, 5=Λίστα άρθρων κατηγορίας, 6=Στοιχεία/φόρμα επικοινωνίας, 7=Άρθρα πολλαπλών άλλων κατηγοριών, 8=Σελίδα σύνδεσης/εγγραφής/υπενθύμησης στοιχείων, 9=Φωτογραφικό άλμπουμ',
  `articles_layout` enum('blog','list') NOT NULL DEFAULT 'blog',
  `blog_head_articles` int(2) NOT NULL DEFAULT '0',
  `blog_article_rows` int(1) DEFAULT '1',
  `list_show_date` tinyint(1) NOT NULL DEFAULT '1',
  `list_show_author` tinyint(1) NOT NULL DEFAULT '1',
  `internal_link` int(20) DEFAULT NULL,
  `external_link` varchar(250) DEFAULT NULL,
  `default_cat` tinyint(1) NOT NULL DEFAULT '0' COMMENT '0=Όχι, 1=Ναι',
  `articles_per_page` int(10) NOT NULL DEFAULT '5',
  `articles_sort_order` tinyint(1) NOT NULL DEFAULT '0' COMMENT '0=Ημερομηνία, 1=Τίτλο',
  `contact_type` tinyint(4) NOT NULL DEFAULT '0',
  `contact_id` int(11) DEFAULT NULL,
  `contact_category_id` int(11) DEFAULT NULL,
  `contact_parameters` varchar(30) DEFAULT NULL,
  `multiple_cat_ids` varchar(100) DEFAULT NULL COMMENT 'Τα ids των κατηγοριών στην περίπτωση που είναι μενού άρθων πολλαπλών κατηγοριών',
  `auth_page_type` tinyint(1) NOT NULL DEFAULT '0',
  `search_in` tinyint(4) NOT NULL DEFAULT '0' COMMENT '0=Άρθρα, 1=Επαφές, 2=Ldap',
  `access` tinyint(1) NOT NULL DEFAULT '0',
  `photogallery_id` int(11) DEFAULT NULL,
  `picture` varchar(255) DEFAULT NULL,
  `classname` varchar(255) DEFAULT NULL,
  `show_rss_link` tinyint(1) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;

INSERT INTO `categories` (`id`, `parent_id`, `sort_order`, `title`, `description`, `show_in_primarymenu`, `show_submenu`, `menu_type`, `articles_layout`, `blog_head_articles`, `blog_article_rows`, `list_show_date`, `list_show_author`, `internal_link`, `external_link`, `default_cat`, `articles_per_page`, `articles_sort_order`, `contact_type`, `contact_id`, `contact_category_id`, `contact_parameters`, `multiple_cat_ids`, `auth_page_type`, `search_in`, `access`, `photogallery_id`, `picture`, `classname`, `show_rss_link`) VALUES (1, 0, 1, 'Αρχική', '', 1, 0, 1, 'blog', 0, 1, 1, 1, NULL, '', 1, 5, 0, 0, NULL, NULL, '1,1,1,1,1,1,1,1,1', '', 0, 0, 0, 0, '', '', 0);

CREATE TABLE IF NOT EXISTS `comments` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `parent_id` int(11) unsigned NOT NULL DEFAULT '0',
  `content_id` int(11) NOT NULL,
  `userid` int(11) unsigned NOT NULL DEFAULT '0',
  `name` varchar(255) NOT NULL DEFAULT '',
  `email` varchar(255) NOT NULL DEFAULT '',
  `homepage` varchar(255) NOT NULL DEFAULT '',
  `comment` text NOT NULL,
  `ip` varchar(39) NOT NULL DEFAULT '',
  `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `state` tinyint(1) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `idx_userid` (`userid`),
  KEY `idx_email` (`email`),
  KEY `idx_object` (`state`,`created`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8;

CREATE TABLE IF NOT EXISTS `contacts` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `category_id` int(11) NOT NULL DEFAULT '0',
  `title` varchar(255) NOT NULL,
  `address` text,
  `city` varchar(100) DEFAULT NULL,
  `country` varchar(100) DEFAULT NULL,
  `zipcode` varchar(100) DEFAULT NULL,
  `tel` varchar(255) DEFAULT NULL,
  `fax` varchar(255) DEFAULT NULL,
  `cellphone` varchar(255) DEFAULT NULL,
  `email` varchar(255) DEFAULT NULL,
  `website` varchar(255) DEFAULT NULL,
  `extra_info` text,
  `image` varchar(255) DEFAULT NULL,
  `sort_order` int(3) NOT NULL DEFAULT '0',
  `state` tinyint(3) NOT NULL DEFAULT '1',
  `access` tinyint(1) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8;

CREATE TABLE IF NOT EXISTS `contacts_cats` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `title` varchar(255) NOT NULL,
  `parent_id` int(11) NOT NULL DEFAULT '0',
  `description` text,
  `sort_order` int(5) NOT NULL DEFAULT '0',
  `access` tinyint(1) NOT NULL DEFAULT '0',
  `state` tinyint(1) NOT NULL DEFAULT '1',
  PRIMARY KEY (`id`),
  KEY `idx_parent` (`parent_id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8;

CREATE TABLE IF NOT EXISTS `content` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `category_id` int(3) NOT NULL DEFAULT '0',
  `title` varchar(1000) DEFAULT NULL,
  `summary` text,
  `body` mediumtext,
  `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `publish_up` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `publish_down` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '0=Ανενεργό, 1=Ενεργό, 2=Ληγμένο',
  `frontpage` tinyint(1) NOT NULL DEFAULT '1',
  `article_type` tinyint(1) NOT NULL DEFAULT '0',
  `link` varchar(255) DEFAULT NULL,
  `weblink_target` tinyint(1) NOT NULL DEFAULT '1',
  `userid` int(5) NOT NULL DEFAULT '0',
  `show_meta` tinyint(1) NOT NULL DEFAULT '1',
  `show_pdf_icon` tinyint(1) NOT NULL DEFAULT '1',
  `show_print_icon` tinyint(1) NOT NULL DEFAULT '1',
  `show_email_icon` tinyint(1) NOT NULL DEFAULT '1',
  `show_comments` tinyint(1) NOT NULL DEFAULT '1',
  `access` tinyint(1) NOT NULL DEFAULT '0' COMMENT '0=Public, 1=Registered',
  `hits` int(11) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8;

CREATE TABLE IF NOT EXISTS `general_settings` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `site_title` varchar(150) DEFAULT NULL,
  `site_slogan` varchar(250) DEFAULT NULL,
  `meta_description` varchar(500) DEFAULT NULL,
  `meta_keywords` varchar(500) DEFAULT NULL,
  `site_url` varchar(255) DEFAULT NULL,
  `owner_name` varchar(100) DEFAULT NULL,
  `owner_email` varchar(100) DEFAULT NULL,
  `owner_address` varchar(100) DEFAULT NULL,
  `owner_city` varchar(100) DEFAULT NULL,
  `owner_country` varchar(50) DEFAULT NULL,
  `owner_zipcode` varchar(20) DEFAULT NULL,
  `owner_tel` varchar(100) DEFAULT NULL,
  `owner_fax` varchar(100) DEFAULT NULL,
  `owner_cellphone` varchar(100) DEFAULT NULL,
  `extra_info` text,
  `article_summary_length` int(11) NOT NULL DEFAULT '800' COMMENT 'Αριθμός χαρακτήρων κειμένου περίληψης άρθρων',
  `article_default_parameters` varchar(250) NOT NULL COMMENT 'Οι προκαθορισμένες παράμετροι νέου άρθρου (frontpage, show_meta, show_pdf_icon, show_print_icon, show_email_icon)',
  `comments_parameters` varchar(250) NOT NULL,
  `rss_summary_length` int(11) NOT NULL DEFAULT '200' COMMENT 'Αριθμός χαρακτήρων κειμένου περίληψης άρθρων στα RSS',
  `rss_articles` int(11) NOT NULL DEFAULT '15' COMMENT 'Αριθμός άρθρων στα RSS',
  `untranslated_articles_policy` tinyint(1) NOT NULL DEFAULT '0' COMMENT '0=Δείξε το περιεχόμενο στην default γλώσσα, 1=Μη δείχνεις τίποτα',
  `untranslated_categories_policy` tinyint(1) NOT NULL DEFAULT '0' COMMENT '0=Δείξε το περιεχόμενο στην default γλώσσα, 1=Μη δείχνεις τίποτα',
  `untranslated_modules_policy` tinyint(1) NOT NULL DEFAULT '0' COMMENT '0=Δείξε το περιεχόμενο στην default γλώσσα, 1=Μη δείχνεις τίποτα',
  `untranslated_contacts_policy` tinyint(1) NOT NULL DEFAULT '0' COMMENT '0=Δείξε το περιεχόμενο στην default γλώσσα, 1=Μη δείχνεις τίποτα',
  `untranslated_general_settings_policy` tinyint(1) NOT NULL DEFAULT '0' COMMENT '0=Δείξε το περιεχόμενο στην default γλώσσα, 1=Μη δείχνεις τίποτα',
  `user_allow_registration` tinyint(1) NOT NULL DEFAULT '1',
  `user_new_account_activation` tinyint(1) NOT NULL DEFAULT '1',
  `newsletter_require_confirmation` tinyint(1) NOT NULL DEFAULT '1',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;

INSERT INTO `general_settings` (`id`, `site_title`, `site_slogan`, `meta_description`, `meta_keywords`, `site_url`, `owner_name`, `owner_email`, `owner_address`, `owner_city`, `owner_country`, `owner_zipcode`, `owner_tel`, `owner_fax`, `owner_cellphone`, `extra_info`, `article_summary_length`, `article_default_parameters`, `comments_parameters`, `rss_summary_length`, `rss_articles`, `untranslated_articles_policy`, `untranslated_categories_policy`, `untranslated_modules_policy`, `untranslated_contacts_policy`, `untranslated_general_settings_policy`, `user_allow_registration`, `user_new_account_activation`, `newsletter_require_confirmation`) VALUES
(1, 'Τ.Ε.Ι. Κεντρικής Μακεδονίας', 'Σας καλωσορίζουμε στον επίσημο δικτυακό τόπο του Τ.Ε.Ι. Κεντρικής Μακεδονίας', 'Η επίσημη ιστοσελίδα του Τεχνολογικού Εκπαιδευτικού Ιδρύματος Κεντρικής Μακεδονίας', 'ΤΕΙ Κεντρικής Μακεδονίας, Τ.Ε.Ι. Κεντρικής Μακεδονίας, Κεντρικής, Μακεδονίας, ΤΕΙ Σερρών, ΤΕΙ, Τ.Ε.Ι., Σερρών, Σέρρες, Σχολή, Τμήμα, Τμήμα Λογιστικής, Τμήμα Διοίκησης Επιχειρήσεων, Τμήμα Μηχανολογίας, Τμήμα Πολιτικών Δομικών Έργων, Τμήμα Πληροφορικής και Επικοινωνιών, Τμήμα Γεωπληροφορικής και Τοπογραφίας, Τμήμα Εσωτερικής Αρχιτεκτονικής, Διακόσμησης και Σχεδιασμού Αντικειμένων, ', 'http://www.teicm.gr', 'Τ.Ε.Ι. Κεντρικής Μακεδονίας', 'psavvas@teiser.gr', 'Τέρμα Μαγνησίας', 'Σέρρες', 'Ελλάδα', '62124', '(+30) 23210 49331', '(+30) 23210 46556', '6944735201', 'Για ζητήματα που αφορούν αποκλειστικά την κατασκευή της ιστοσελίδας παρακαλούμε επικοινωνήστε με το παρακάτω email: psavvas@teiser.gr ', 800, 'a:5:{s:9:"frontpage";i:0;s:9:"show_meta";i:1;s:13:"show_pdf_icon";i:0;s:15:"show_print_icon";i:0;s:15:"show_email_icon";i:0;}', 'a:8:{s:13:"show_comments";i:0;s:20:"only_registered_post";i:0;s:13:"nested_layout";i:1;s:21:"nested_comments_depth";i:3;s:16:"comment_approval";i:0;s:18:"captcha_protection";i:1;s:14:"comments_order";s:3:"ASC";s:18:"comment_max_length";s:4:"2000";}', 300, 15, 1, 1, 1, 0, 1, 0, 1, 1);

CREATE TABLE IF NOT EXISTS `languages` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `state` tinyint(1) NOT NULL DEFAULT '0',
  `code` varchar(10) NOT NULL,
  `locale` varchar(20) DEFAULT NULL,
  `default_lang` tinyint(1) NOT NULL DEFAULT '0',
  `path` varchar(100) NOT NULL,
  `sort_order` tinyint(3) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=8 ;

INSERT INTO `languages` (`id`, `name`, `state`, `code`, `locale`, `default_lang`, `path`, `sort_order`) VALUES(1, 'Greek', 1, 'el', 'el_GR', 1, 'language/greek', 1);
INSERT INTO `languages` (`id`, `name`, `state`, `code`, `locale`, `default_lang`, `path`, `sort_order`) VALUES(2, 'English', 1, 'en', 'en_US', 0, 'language/english', 2);
INSERT INTO `languages` (`id`, `name`, `state`, `code`, `locale`, `default_lang`, `path`, `sort_order`) VALUES(3, 'French', 0, 'fr', 'fr_FR', 0, 'language/french', 3);
INSERT INTO `languages` (`id`, `name`, `state`, `code`, `locale`, `default_lang`, `path`, `sort_order`) VALUES(4, 'German', 0, 'de', 'de_DE', 0, 'language/german', 4);
INSERT INTO `languages` (`id`, `name`, `state`, `code`, `locale`, `default_lang`, `path`, `sort_order`) VALUES(5, 'Italian', 0, 'it', 'it_IT', 0, 'language/italian', 5);
INSERT INTO `languages` (`id`, `name`, `state`, `code`, `locale`, `default_lang`, `path`, `sort_order`) VALUES(6, 'Spanish', 0, 'es', 'es_ES', 0, 'language/spanish', 6);
INSERT INTO `languages` (`id`, `name`, `state`, `code`, `locale`, `default_lang`, `path`, `sort_order`) VALUES(7, 'Bulgarian', 0, 'bg', 'bg_BG', 0, 'language/bulgarian', 7);

CREATE TABLE IF NOT EXISTS `log` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `user_id` int(5) NOT NULL,
  `remote_addr` varchar(255) NOT NULL,
  `action` varchar(500) NOT NULL,
  `log_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 ;

CREATE TABLE IF NOT EXISTS `modules` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `mod_type` int(3) NOT NULL DEFAULT '1',
  `title` varchar(255) DEFAULT NULL,
  `show_title` tinyint(1) NOT NULL DEFAULT '1',
  `body` text,
  `sort_order` int(3) NOT NULL DEFAULT '0',
  `state` tinyint(3) NOT NULL DEFAULT '1',
  `position` int(3) DEFAULT NULL,
  `params` text,
  `access` tinyint(1) NOT NULL DEFAULT '0',
  `classname` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8;

CREATE TABLE IF NOT EXISTS `modules_categories` (
  `moduleid` int(11) NOT NULL DEFAULT '0',
  `categoryid` int(11) NOT NULL DEFAULT '0',
  PRIMARY KEY (`moduleid`,`categoryid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

CREATE TABLE IF NOT EXISTS `module_positions` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `position` varchar(30) NOT NULL,
  `state` tinyint(1) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=17 ;

INSERT INTO `module_positions` (`id`, `position`, `state`) VALUES(1, 'Header', 1);
INSERT INTO `module_positions` (`id`, `position`, `state`) VALUES(2, 'Content top', 0);
INSERT INTO `module_positions` (`id`, `position`, `state`) VALUES(3, 'Content bottom left', 1);
INSERT INTO `module_positions` (`id`, `position`, `state`) VALUES(4, 'Content bottom right', 1);
INSERT INTO `module_positions` (`id`, `position`, `state`) VALUES(5, 'Page bottom', 1);
INSERT INTO `module_positions` (`id`, `position`, `state`) VALUES(6, 'Sidebar', 1);
INSERT INTO `module_positions` (`id`, `position`, `state`) VALUES(7, 'Header top', 1);
INSERT INTO `module_positions` (`id`, `position`, `state`) VALUES(8, 'Language', 1);
INSERT INTO `module_positions` (`id`, `position`, `state`) VALUES(9, 'Breadcrumb', 1);
INSERT INTO `module_positions` (`id`, `position`, `state`) VALUES(10, 'Footer left', 1);
INSERT INTO `module_positions` (`id`, `position`, `state`) VALUES(11, 'Footer middle', 1);
INSERT INTO `module_positions` (`id`, `position`, `state`) VALUES(12, 'Footer right', 1);
INSERT INTO `module_positions` (`id`, `position`, `state`) VALUES(13, 'Header bottom', 1);
INSERT INTO `module_positions` (`id`, `position`, `state`) VALUES(14, 'Header slider', 1);
INSERT INTO `module_positions` (`id`, `position`, `state`) VALUES(15, 'Header search', 1);
INSERT INTO `module_positions` (`id`, `position`, `state`) VALUES(16, 'Signature', 1);

CREATE TABLE IF NOT EXISTS `module_types` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `mod_type` varchar(100) NOT NULL,
  `name` varchar(255) DEFAULT NULL,
  `description` varchar(400) DEFAULT NULL,
  PRIMARY KEY (`id`,`mod_type`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=19 ;

INSERT INTO `module_types` (`id`, `mod_type`, `name`, `description`) VALUES(1, 'mod_custom', 'Περιεχόμενο HTML', 'Επιτρέπει να δημιουργήσεις το δικό σου HTML module με τη χρήση WYSIWYG κειμενογράφου');
INSERT INTO `module_types` (`id`, `mod_type`, `name`, `description`) VALUES(2, 'mod_search', 'Φόρμα αναζήτησης', 'Εμφανίζει ένα πεδίο αναζήτησης (search box)');
INSERT INTO `module_types` (`id`, `mod_type`, `name`, `description`) VALUES(3, 'mod_latestnews', 'Τελευταία νέα', 'Προβάλει μια λίστα ενός καθορισμένου αριθμού των πιο πρόσφατων άρθρων από καθορισμένες κατηγορίες');
INSERT INTO `module_types` (`id`, `mod_type`, `name`, `description`) VALUES(4, 'mod_breadcrumb', 'Ίχνος πλοήγησης', 'Εμφανίζει το ίχνος πλοήγησης (breadcrumb) της εμφανιζόμενης σελίδας');
INSERT INTO `module_types` (`id`, `mod_type`, `name`, `description`) VALUES(5, 'mod_rss', 'RSS feed', 'Δημιουργεί μία RSS ροή δεδομένων (RSS feed) για τη σελίδα όπου εμφανίζεται το ένθεμα');
INSERT INTO `module_types` (`id`, `mod_type`, `name`, `description`) VALUES(6, 'mod_contact', 'Στοιχεία επικοινωνίας', 'Προβάλει τα στοιχεία επικοινωνίας της ιστοσελίδας');
INSERT INTO `module_types` (`id`, `mod_type`, `name`, `description`) VALUES(7, 'mod_secondarymenu', 'Δευτερεύον μενού', 'Δημιουργεί ένα δευτερεύον μενού επιτρέποντας την επιλογή κατηγοριών από τις κύριες κατηγορίες');
INSERT INTO `module_types` (`id`, `mod_type`, `name`, `description`) VALUES(8, 'mod_language', 'Επιλογή γλώσσας', 'Εμφανίζει το μενού επιλογής γλώσσας');
INSERT INTO `module_types` (`id`, `mod_type`, `name`, `description`) VALUES(9, 'mod_login', 'Σύνδεση', 'Εμφανίζει μια φόρμα σύνδεσης με όνομα χρήστη και κωδικό, ένα σύνδεσμο για την ανάκτηση ξεχασμένων κωδικών, καθώς και ένα σύνδεσμο εγγραφής νέου χρήστη');
INSERT INTO `module_types` (`id`, `mod_type`, `name`, `description`) VALUES(10, 'mod_popular', 'Δημοφιλή άρθρα', 'Προβάλει μια λίστα των δημοφιλέστερων άρθρων (που έχουν προβληθεί τις περισσότερες φορές) από καθορισμένες κατηγορίες');
INSERT INTO `module_types` (`id`, `mod_type`, `name`, `description`) VALUES(11, 'mod_tabs', 'Πολλαπλά Tabs', 'Περικλείει περισσότερα του ενός διαφορετικά ενθέματα σε ένα ένθεμα με κουμπιά tabs στην κορυφή');
INSERT INTO `module_types` (`id`, `mod_type`, `name`, `description`) VALUES(12, 'mod_submenu', 'Υπο-μενού', 'Δημιουργεί ένα υπο-μενού κατηγοριών από μία επιλεγμένη κύρια κατηγορία');
INSERT INTO `module_types` (`id`, `mod_type`, `name`, `description`) VALUES(13, 'mod_calendar', 'Ημερολόγιο', 'Δημιουργεί ένα ημερολόγιο με νέα από διάφορες κατηγορίες');
INSERT INTO `module_types` (`id`, `mod_type`, `name`, `description`) VALUES(14, 'mod_sitemap', 'Site map', 'Δημιουργεί ένα site map όλων των κατηγοριών');
INSERT INTO `module_types` (`id`, `mod_type`, `name`, `description`) VALUES(15, 'mod_photos', 'Τυχαίες εικόνες άλμπουμ', 'Προβάλει έναν αρισθμό από τυχαία επιλεγμένες εικόνες από τα επιλεγμένα φωτογραφικά άλμπουμ');
INSERT INTO `module_types` (`id`, `mod_type`, `name`, `description`) VALUES(16, 'mod_googlemap', 'Google map', 'Προβάλει έναν χάρτη της Google με βάση τις ρυθμίσεις του χρήστη');
INSERT INTO `module_types` (`id`, `mod_type`, `name`, `description`) VALUES(17, 'mod_photoslider', 'Photo Slider', 'Προβάλει έναν slider φωτογραφιών από επιλεγμένο φάκελο');
INSERT INTO `module_types` (`id`, `mod_type`, `name`, `description`) VALUES(18, 'mod_socialbuttons', 'Social Media Buttons', 'Εμφανίζει κουμπιά κοινοποίησης σε διάφορα μέσα κοινωνικής δικτύωσης (Social Networks) όπως Facdebook, Twitter, Google+ κ.α.');

CREATE TABLE IF NOT EXISTS `newsletter_emails` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `template_id` int(11) NOT NULL DEFAULT '0',
  `subject` varchar(120) NOT NULL DEFAULT '',
  `fromname` varchar(64) DEFAULT '',
  `fromemail` varchar(64) DEFAULT '',
  `sendto` varchar(255) DEFAULT NULL,
  `body` longtext,
  `attachments` text,
  `create_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `send_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `author_id` int(11) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ;

CREATE TABLE IF NOT EXISTS `newsletter_subscribers` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(64) NOT NULL,
  `email` varchar(100) NOT NULL,
  `state` tinyint(1) NOT NULL,
  `confirmed` tinyint(1) NOT NULL DEFAULT '0',
  `blacklist` tinyint(1) NOT NULL DEFAULT '0',
  `ip` varchar(100) DEFAULT NULL,
  `subscribe_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `activation` varchar(100) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 ;

CREATE TABLE IF NOT EXISTS `newsletter_templates` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `title` varchar(250) DEFAULT NULL,
  `description` text,
  `body` longtext,
  `thumbnail` varchar(250) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=36 ;

INSERT INTO `newsletter_templates` (`id`, `title`, `description`, `body`, `thumbnail`) VALUES(3, '2col-1-2-rightsidebar', 'Πλάγια μπάρα δεξιά και κυρίως περιεχόμενο αριστερά με ένα κύριο άρθρο πλήρους πλάτους στην κορυφή και δύο άρθρα μισού πλάτους από κάτω.', '<p>\r\n<style type="text/css">\r\n/* Client-specific Styles */\r\n#outlook a{padding:0;} /* Force Outlook to provide a "view in browser" button. */\r\nbody{width:100% !important;} .ReadMsgBody{width:100%;} .ExternalClass{width:100%;} /* Force Hotmail to display emails at full width */\r\nbody{-webkit-text-size-adjust:none;} /* Prevent Webkit platforms from changing default text sizes. */\r\n\r\n/* Reset Styles */\r\nbody{margin:0; padding:0;}\r\nimg{border:0; height:auto; line-height:100%; outline:none; text-decoration:none;}\r\ntable td{border-collapse:collapse;}\r\n#backgroundTable{height:100% !important; margin:0; padding:0; width:100% !important;}\r\n\r\n/* Template Styles */\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: COMMON PAGE ELEMENTS /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Page\r\n* @section background color\r\n* @tip Set the background color for your email. You may want to choose one that matches your company''s branding.\r\n* @theme page\r\n*/\r\nbody, #backgroundTable{\r\n/*@editable*/ background-color:#FAFAFA;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section email border\r\n* @tip Set the border for your email.\r\n*/\r\n#templateContainer{\r\n/*@editable*/ border: 1px solid #DDDDDD;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 1\r\n* @tip Set the styling for all first-level headings in your emails. These should be the largest of your headings.\r\n* @style heading 1\r\n*/\r\nh1, .h1{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:34px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 2\r\n* @tip Set the styling for all second-level headings in your emails.\r\n* @style heading 2\r\n*/\r\nh2, .h2{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:30px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 3\r\n* @tip Set the styling for all third-level headings in your emails.\r\n* @style heading 3\r\n*/\r\nh3, .h3{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:26px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 4\r\n* @tip Set the styling for all fourth-level headings in your emails. These should be the smallest of your headings.\r\n* @style heading 4\r\n*/\r\nh4, .h4{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:22px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: PREHEADER /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Header\r\n* @section preheader style\r\n* @tip Set the background color for your email''s preheader area.\r\n* @theme page\r\n*/\r\n#templatePreheader{\r\n/*@editable*/ background-color:#FAFAFA;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section preheader text\r\n* @tip Set the styling for your email''s preheader text. Choose a size and color that is easy to read.\r\n*/\r\n.preheaderContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:10px;\r\n/*@editable*/ line-height:100%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section preheader link\r\n* @tip Set the styling for your email''s preheader links. Choose a color that helps them stand out from your text.\r\n*/\r\n.preheaderContent div a:link, .preheaderContent div a:visited, /* Yahoo! Mail Override */ .preheaderContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: HEADER /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Header\r\n* @section header style\r\n* @tip Set the background color and border for your email''s header area.\r\n* @theme header\r\n*/\r\n#templateHeader{\r\n/*@editable*/ background-color:#FFFFFF;\r\n/*@editable*/ border-bottom:0;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section header text\r\n* @tip Set the styling for your email''s header text. Choose a size and color that is easy to read.\r\n*/\r\n.headerContent{\r\n/*@editable*/ color:#202020;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:34px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\n/*@editable*/ padding:0;\r\n/*@editable*/ text-align:center;\r\n/*@editable*/ vertical-align:middle;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section header link\r\n* @tip Set the styling for your email''s header links. Choose a color that helps them stand out from your text.\r\n*/\r\n.headerContent a:link, .headerContent a:visited, /* Yahoo! Mail Override */ .headerContent a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n#headerImage{\r\nheight:auto;\r\nmax-width:600px;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: MAIN BODY /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Body\r\n* @section body style\r\n* @tip Set the background color for your email''s body area.\r\n*/\r\n#templateContainer, .bodyContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Body\r\n* @section body text\r\n* @tip Set the styling for your email''s main content text. Choose a size and color that is easy to read.\r\n* @theme main\r\n*/\r\n.bodyContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:14px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Body\r\n* @section body link\r\n* @tip Set the styling for your email''s main content links. Choose a color that helps them stand out from your text.\r\n*/\r\n.bodyContent div a:link, .bodyContent div a:visited, /* Yahoo! Mail Override */ .bodyContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.bodyContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: SIDEBAR /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Sidebar\r\n* @section sidebar style\r\n* @tip Set the background color for your email''s sidebar area.\r\n*/\r\n#templateSidebar{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Sidebar\r\n* @section sidebar text\r\n* @tip Set the styling for your email''s sidebar text. Choose a size and color that is easy to read.\r\n*/\r\n.sidebarContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:12px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Sidebar\r\n* @section sidebar link\r\n* @tip Set the styling for your email''s sidebar links. Choose a color that helps them stand out from your text.\r\n*/\r\n.sidebarContent div a:link, .sidebarContent div a:visited, /* Yahoo! Mail Override */ .sidebarContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.sidebarContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: COLUMNS; LEFT, RIGHT /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Columns\r\n* @section left column text\r\n* @tip Set the styling for your email''s left column text. Choose a size and color that is easy to read.\r\n*/\r\n.leftColumnContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section left column text\r\n* @tip Set the styling for your email''s left column text. Choose a size and color that is easy to read.\r\n*/\r\n.leftColumnContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:14px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section left column link\r\n* @tip Set the styling for your email''s left column links. Choose a color that helps them stand out from your text.\r\n*/\r\n.leftColumnContent div a:link, .leftColumnContent div a:visited, /* Yahoo! Mail Override */ .leftColumnContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.leftColumnContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section right column text\r\n* @tip Set the styling for your email''s right column text. Choose a size and color that is easy to read.\r\n*/\r\n.rightColumnContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section right column text\r\n* @tip Set the styling for your email''s right column text. Choose a size and color that is easy to read.\r\n*/\r\n.rightColumnContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:14px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section right column link\r\n* @tip Set the styling for your email''s right column links. Choose a color that helps them stand out from your text.\r\n*/\r\n.rightColumnContent div a:link, .rightColumnContent div a:visited, /* Yahoo! Mail Override */ .rightColumnContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.rightColumnContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: FOOTER /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Footer\r\n* @section footer style\r\n* @tip Set the background color and top border for your email''s footer area.\r\n* @theme footer\r\n*/\r\n#templateFooter{\r\n/*@editable*/ background-color:#FFFFFF;\r\n/*@editable*/ border-top:0;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section footer text\r\n* @tip Set the styling for your email''s footer text. Choose a size and color that is easy to read.\r\n* @theme footer\r\n*/\r\n.footerContent div{\r\n/*@editable*/ color:#707070;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:12px;\r\n/*@editable*/ line-height:125%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section footer link\r\n* @tip Set the styling for your email''s footer links. Choose a color that helps them stand out from your text.\r\n*/\r\n.footerContent div a:link, .footerContent div a:visited, /* Yahoo! Mail Override */ .footerContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.footerContent img{\r\ndisplay:inline;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section social bar style\r\n* @tip Set the background color and border for your email''s footer social bar.\r\n* @theme footer\r\n*/\r\n#social{\r\n/*@editable*/ background-color:#FAFAFA;\r\n/*@editable*/ border:0;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section social bar style\r\n* @tip Set the background color and border for your email''s footer social bar.\r\n*/\r\n#social div{\r\n/*@editable*/ text-align:center;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section utility bar style\r\n* @tip Set the background color and border for your email''s footer utility bar.\r\n* @theme footer\r\n*/\r\n#utility{\r\n/*@editable*/ background-color:#FFFFFF;\r\n/*@editable*/ border:0;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section utility bar style\r\n* @tip Set the background color and border for your email''s footer utility bar.\r\n*/\r\n#utility div{\r\n/*@editable*/ text-align:center;\r\n}	</style>\r\n</p>\r\n<center>\r\n<table border="0" cellpadding="0" cellspacing="0" height="100%" id="backgroundTable" width="100%">\r\n<tbody>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Preheader \\\\ -->					<table border="0" cellpadding="10" cellspacing="0" id="templatePreheader" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="preheaderContent" valign="top">\r\n<!-- // Begin Module: Standard Preheader \\ -->									<table border="0" cellpadding="10" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<div>\r\nUse this area to offer a short teaser of your email''s content. Text here will show in the preview area of some email clients.</div>\r\n</td>\r\n<td valign="top" width="190">\r\n<div style="text-align: right;">\r\n{date}</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Standard Preheader \\ -->								</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Preheader \\\\ -->					<table border="0" cellpadding="0" cellspacing="0" id="templateContainer" width="600">\r\n<tbody>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Header \\\\ -->									<table border="0" cellpadding="0" cellspacing="0" id="templateHeader" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="headerContent">\r\n<!-- // Begin Module: Standard Header Image \\\\ -->													<img id="headerImage campaign-icon" src="images/newsletters/images/placeholder_600.gif" style="max-width:600px;" /> <!-- // End Module: Standard Header Image \\\\ --></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Header \\\\ -->								</td>\r\n</tr>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Body \\\\ -->									<table border="0" cellpadding="0" cellspacing="0" id="templateBody" width="600">\r\n<tbody>\r\n<tr>\r\n<td valign="top" width="400">\r\n<table border="0" cellpadding="0" cellspacing="0" width="400">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<table border="0" cellpadding="0" cellspacing="0" width="400">\r\n<tbody>\r\n<tr>\r\n<td class="bodyContent" valign="top">\r\n<!-- // Begin Module: Standard Content \\\\ -->																					<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<div>\r\n<h1 class="h1">\r\nHeading 1</h1>\r\n<h2 class="h2">\r\nHeading 2</h2>\r\n<h3 class="h3">\r\nHeading 3</h3>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\nHi {name},<br />\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam semper leo sit amet tortor blandit, id dictum nisi condimentum. Nulla justo ligula, tristique et euismod ut, mollis vitae nisl. Pellentesque id lacinia arcu. Nunc mollis eros velit, ac hendrerit ipsum auctor eget. Maecenas id massa enim. Nullam sit amet mauris sodales, tincidunt lacus in, suscipit lectus. Maecenas ut semper purus, et mollis velit.<br />\r\n<br />\r\n<br />\r\nIn rhoncus a velit id vulputate. Nulla accumsan est in nibh ullamcorper iaculis. Sed id convallis mi, eu commodo sapien. Phasellus hendrerit, tellus in tincidunt venenatis, est elit dictum nisi, in pretium mauris orci quis metus. Vivamus a nisl vitae sapien ultricies tempor tempus eu ligula. Fusce felis mi, accumsan bibendum est non, venenatis cursus elit. Nunc at scelerisque elit. Quisque sed sem lacinia, blandit arcu nec, vulputate ligula. Nulla interdum risus sodales metus bibendum fermentum.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Standard Content \\\\ -->																				</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td valign="top">\r\n<table border="0" cellpadding="0" cellspacing="0" width="400">\r\n<tbody>\r\n<tr>\r\n<td class="leftColumnContent" valign="top" width="180">\r\n<!-- // Begin Module: Top Image with Content \\\\ -->																					<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<img src="images/newsletters/images/placeholder_160.gif" style="max-width:160px; margin-bottom:10px;" />\r\n<div>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\n<strong>Repeatable content blocks:</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec iaculis, velit at semper placerat, tellus velit vehicula orci, a tristique lorem orci eu nisl. Sed et arcu quam. Donec varius arcu et ante convallis, quis laoreet lacus mattis.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Top Image with Content \\\\ -->																				</td>\r\n<td class="rightColumnContent" valign="top" width="180">\r\n<!-- // Begin Module: Top Image with Content \\\\ -->																					<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<img src="images/newsletters/images/placeholder_160.gif" style="max-width:160px; margin-bottom:10px;" />\r\n<div>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\n<strong>Repeatable content blocks:</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec iaculis, velit at semper placerat, tellus velit vehicula orci, a tristique lorem orci eu nisl. Sed et arcu quam. Donec varius arcu et ante convallis, quis laoreet lacus mattis.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Top Image with Content \\\\ -->																				</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<!-- // Begin Sidebar \\\\ -->												<td id="templateSidebar" valign="top" width="200">\r\n<table border="0" cellpadding="0" cellspacing="0" width="200">\r\n<tbody>\r\n<tr>\r\n<td class="sidebarContent" valign="top">\r\n<!-- // Begin Module: Social Block with Icons \\\\ -->																	<table border="0" cellpadding="0" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td style="padding-top:10px; padding-right:20px; padding-left:20px;" valign="top">\r\n<table border="0" cellpadding="0" cellspacing="4">\r\n<tbody>\r\n<tr>\r\n<td align="left" valign="middle" width="16">\r\n<img src="images/newsletters/images/icon_facebook.png" style="margin:0 !important;" /></td>\r\n<td align="left" valign="top">\r\n<div>\r\n<a href="http://www.facebook.com">Friend on Facebook</a></div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td align="left" valign="middle" width="16">\r\n<img src="images/newsletters/images/icon_twitter.png" style="margin:0 !important;" /></td>\r\n<td align="left" valign="top">\r\n<div>\r\n<a href="http://www.twitter.com">Follow on Twitter</a></div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Social Block with Icons \\\\ --><!-- // Begin Module: Top Image with Content \\\\ -->																	<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<img src="images/newsletters/images/placeholder_160.gif" style="max-width:160px; margin-bottom:10px;" />\r\n<div>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\n<strong>Repeatable content blocks:</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec iaculis, velit at semper placerat, tellus velit vehicula orci, a tristique lorem orci eu nisl. Sed et arcu quam. Donec varius arcu et ante convallis, quis laoreet lacus mattis.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Top Image with Content \\\\ -->																</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<!-- // End Sidebar \\\\ -->											</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Body \\\\ -->								</td>\r\n</tr>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Footer \\\\ -->									<table border="0" cellpadding="10" cellspacing="0" id="templateFooter" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="footerContent" valign="top">\r\n<!-- // Begin Module: Standard Footer \\\\ -->													<table border="0" cellpadding="10" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td colspan="2" id="social" valign="middle">\r\n<div>\r\n&nbsp;<a href="http://www.twitter.com">follow on Twitter</a> | <a href="http://www.facebook.com">friend on Facebook</a></div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td valign="top" width="350">\r\n<div style="text-align: center;">\r\n<a href="http://www.yourcompany.com">www.yourcompany.com</a><br />\r\n<br />\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam semper leo sit amet tortor blandit, id dictum nisi condimentum. Nulla justo ligula, tristique et euismod ut, mollis vitae nisl.</div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan="2" id="utility" valign="middle">\r\n<div>\r\n{unsubscribe}</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Standard Footer \\\\ -->												</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Footer \\\\ -->								</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</center>\r\n', 'images/newsletters/thumbnails/2col-1-2-rightsidebar.jpg');
INSERT INTO `newsletter_templates` (`id`, `title`, `description`, `body`, `thumbnail`) VALUES(1, '2col-1-2', 'Ένα κύριο άρθρο πλήρους πλάτους στην κορυφή και δύο άρθρα μισού πλάτους από κάτω.', '<p>\r\n<style type="text/css">\r\n/* Client-specific Styles */\r\n#outlook a{padding:0;} /* Force Outlook to provide a "view in browser" button. */\r\nbody{width:100% !important;} .ReadMsgBody{width:100%;} .ExternalClass{width:100%;} /* Force Hotmail to display emails at full width */\r\nbody{-webkit-text-size-adjust:none;} /* Prevent Webkit platforms from changing default text sizes. */\r\n\r\n/* Reset Styles */\r\nbody{margin:0; padding:0;}\r\nimg{border:0; height:auto; line-height:100%; outline:none; text-decoration:none;}\r\ntable td{border-collapse:collapse;}\r\n#backgroundTable{height:100% !important; margin:0; padding:0; width:100% !important;}\r\n\r\n/* Template Styles */\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: COMMON PAGE ELEMENTS /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Page\r\n* @section background color\r\n* @tip Set the background color for your email. You may want to choose one that matches your company''s branding.\r\n* @theme page\r\n*/\r\nbody, #backgroundTable{\r\n/*@editable*/ background-color:#FAFAFA;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section email border\r\n* @tip Set the border for your email.\r\n*/\r\n#templateContainer{\r\n/*@editable*/ border: 1px solid #DDDDDD;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 1\r\n* @tip Set the styling for all first-level headings in your emails. These should be the largest of your headings.\r\n* @style heading 1\r\n*/\r\nh1, .h1{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:34px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 2\r\n* @tip Set the styling for all second-level headings in your emails.\r\n* @style heading 2\r\n*/\r\nh2, .h2{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:30px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 3\r\n* @tip Set the styling for all third-level headings in your emails.\r\n* @style heading 3\r\n*/\r\nh3, .h3{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:26px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 4\r\n* @tip Set the styling for all fourth-level headings in your emails. These should be the smallest of your headings.\r\n* @style heading 4\r\n*/\r\nh4, .h4{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:22px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: PREHEADER /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Header\r\n* @section preheader style\r\n* @tip Set the background color for your email''s preheader area.\r\n* @theme page\r\n*/\r\n#templatePreheader{\r\n/*@editable*/ background-color:#FAFAFA;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section preheader text\r\n* @tip Set the styling for your email''s preheader text. Choose a size and color that is easy to read.\r\n*/\r\n.preheaderContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:10px;\r\n/*@editable*/ line-height:100%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section preheader link\r\n* @tip Set the styling for your email''s preheader links. Choose a color that helps them stand out from your text.\r\n*/\r\n.preheaderContent div a:link, .preheaderContent div a:visited, /* Yahoo! Mail Override */ .preheaderContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: HEADER /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Header\r\n* @section header style\r\n* @tip Set the background color and border for your email''s header area.\r\n* @theme header\r\n*/\r\n#templateHeader{\r\n/*@editable*/ background-color:#FFFFFF;\r\n/*@editable*/ border-bottom:0;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section header text\r\n* @tip Set the styling for your email''s header text. Choose a size and color that is easy to read.\r\n*/\r\n.headerContent{\r\n/*@editable*/ color:#202020;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:34px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\n/*@editable*/ padding:0;\r\n/*@editable*/ text-align:center;\r\n/*@editable*/ vertical-align:middle;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section header link\r\n* @tip Set the styling for your email''s header links. Choose a color that helps them stand out from your text.\r\n*/\r\n.headerContent a:link, .headerContent a:visited, /* Yahoo! Mail Override */ .headerContent a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n#headerImage{\r\nheight:auto;\r\nmax-width:600px;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: MAIN BODY /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Body\r\n* @section body style\r\n* @tip Set the background color for your email''s body area.\r\n*/\r\n#templateContainer, .bodyContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Body\r\n* @section body text\r\n* @tip Set the styling for your email''s main content text. Choose a size and color that is easy to read.\r\n* @theme main\r\n*/\r\n.bodyContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:14px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Body\r\n* @section body link\r\n* @tip Set the styling for your email''s main content links. Choose a color that helps them stand out from your text.\r\n*/\r\n.bodyContent div a:link, .bodyContent div a:visited, /* Yahoo! Mail Override */ .bodyContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.bodyContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: COLUMNS; LEFT, RIGHT /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Columns\r\n* @section left column text\r\n* @tip Set the styling for your email''s left column text. Choose a size and color that is easy to read.\r\n*/\r\n.leftColumnContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section left column text\r\n* @tip Set the styling for your email''s left column text. Choose a size and color that is easy to read.\r\n*/\r\n.leftColumnContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:14px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section left column link\r\n* @tip Set the styling for your email''s left column links. Choose a color that helps them stand out from your text.\r\n*/\r\n.leftColumnContent div a:link, .leftColumnContent div a:visited, /* Yahoo! Mail Override */ .leftColumnContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.leftColumnContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section right column text\r\n* @tip Set the styling for your email''s right column text. Choose a size and color that is easy to read.\r\n*/\r\n.rightColumnContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section right column text\r\n* @tip Set the styling for your email''s right column text. Choose a size and color that is easy to read.\r\n*/\r\n.rightColumnContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:14px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section right column link\r\n* @tip Set the styling for your email''s right column links. Choose a color that helps them stand out from your text.\r\n*/\r\n.rightColumnContent div a:link, .rightColumnContent div a:visited, /* Yahoo! Mail Override */ .rightColumnContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.rightColumnContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: FOOTER /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Footer\r\n* @section footer style\r\n* @tip Set the background color and top border for your email''s footer area.\r\n* @theme footer\r\n*/\r\n#templateFooter{\r\n/*@editable*/ background-color:#FFFFFF;\r\n/*@editable*/ border-top:0;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section footer text\r\n* @tip Set the styling for your email''s footer text. Choose a size and color that is easy to read.\r\n* @theme footer\r\n*/\r\n.footerContent div{\r\n/*@editable*/ color:#707070;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:12px;\r\n/*@editable*/ line-height:125%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section footer link\r\n* @tip Set the styling for your email''s footer links. Choose a color that helps them stand out from your text.\r\n*/\r\n.footerContent div a:link, .footerContent div a:visited, /* Yahoo! Mail Override */ .footerContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.footerContent img{\r\ndisplay:inline;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section social bar style\r\n* @tip Set the background color and border for your email''s footer social bar.\r\n* @theme footer\r\n*/\r\n#social{\r\n/*@editable*/ background-color:#FAFAFA;\r\n/*@editable*/ border:0;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section social bar style\r\n* @tip Set the background color and border for your email''s footer social bar.\r\n*/\r\n#social div{\r\n/*@editable*/ text-align:center;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section utility bar style\r\n* @tip Set the background color and border for your email''s footer utility bar.\r\n* @theme footer\r\n*/\r\n#utility{\r\n/*@editable*/ background-color:#FFFFFF;\r\n/*@editable*/ border:0;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section utility bar style\r\n* @tip Set the background color and border for your email''s footer utility bar.\r\n*/\r\n#utility div{\r\n/*@editable*/ text-align:center;\r\n}	</style>\r\n</p>\r\n<center>\r\n<table border="0" cellpadding="0" cellspacing="0" height="100%" id="backgroundTable" width="100%">\r\n<tbody>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Preheader \\\\ -->					<table border="0" cellpadding="10" cellspacing="0" id="templatePreheader" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="preheaderContent" valign="top">\r\n<!-- // Begin Module: Standard Preheader \\ -->									<table border="0" cellpadding="10" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<div>\r\nUse this area to offer a short teaser of your email''s content. Text here will show in the preview area of some email clients.</div>\r\n</td>\r\n<td valign="top" width="190">\r\n<div style="text-align: right;">\r\n{date}</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Standard Preheader \\ -->								</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Preheader \\\\ -->					<table border="0" cellpadding="0" cellspacing="0" id="templateContainer" width="600">\r\n<tbody>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Header \\\\ -->									<table border="0" cellpadding="0" cellspacing="0" id="templateHeader" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="headerContent">\r\n<!-- // Begin Module: Standard Header Image \\\\ -->													<img id="headerImage campaign-icon" src="images/newsletters/images/placeholder_600.gif" style="max-width:600px;" /> <!-- // End Module: Standard Header Image \\\\ --></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Header \\\\ -->								</td>\r\n</tr>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Body \\\\ -->									<table border="0" cellpadding="0" cellspacing="0" id="templateBody" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="bodyContent" colspan="3" valign="top">\r\n<!-- // Begin Module: Standard Content \\\\ -->													<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<div>\r\n<h1 class="h1">\r\nHeading 1</h1>\r\n<h2 class="h2">\r\nHeading 2</h2>\r\n<h3 class="h3">\r\nHeading 3</h3>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\nHi {name},<br />\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam semper leo sit amet tortor blandit, id dictum nisi condimentum. Nulla justo ligula, tristique et euismod ut, mollis vitae nisl. Pellentesque id lacinia arcu. Nunc mollis eros velit, ac hendrerit ipsum auctor eget. Maecenas id massa enim. Nullam sit amet mauris sodales, tincidunt lacus in, suscipit lectus. Maecenas ut semper purus, et mollis velit.<br />\r\n<br />\r\nIn rhoncus a velit id vulputate. Nulla accumsan est in nibh ullamcorper iaculis. Sed id convallis mi, eu commodo sapien. Phasellus hendrerit, tellus in tincidunt venenatis, est elit dictum nisi, in pretium mauris orci quis metus. Vivamus a nisl vitae sapien ultricies tempor tempus eu ligula. Fusce felis mi, accumsan bibendum est non, venenatis cursus elit. Nunc at scelerisque elit. Quisque sed sem lacinia, blandit arcu nec, vulputate ligula. Nulla interdum risus sodales metus bibendum fermentum.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Standard Content \\\\ -->												</td>\r\n</tr>\r\n<tr>\r\n<td class="leftColumnContent" valign="top" width="280">\r\n<!-- // Begin Module: Top Image with Content \\\\ -->													<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<img src="images/newsletters/images/placeholder_260.gif" style="max-width:260px;" />\r\n<div>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\n<strong>Repeatable content blocks:</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec iaculis, velit at semper placerat, tellus velit vehicula orci, a tristique lorem orci eu nisl. Sed et arcu quam. Donec varius arcu et ante convallis, quis laoreet lacus mattis.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Top Image with Content \\\\ -->												</td>\r\n<td class="rightColumnContent" valign="top" width="280">\r\n<!-- // Begin Module: Top Image with Content \\\\ -->													<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<img src="images/newsletters/images/placeholder_260.gif" style="max-width:260px;" />\r\n<div>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\n<strong>Repeatable content blocks:</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec iaculis, velit at semper placerat, tellus velit vehicula orci, a tristique lorem orci eu nisl. Sed et arcu quam. Donec varius arcu et ante convallis, quis laoreet lacus mattis.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Top Image with Content \\\\ -->												</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Body \\\\ -->								</td>\r\n</tr>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Footer \\\\ -->									<table border="0" cellpadding="10" cellspacing="0" id="templateFooter" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="footerContent" valign="top">\r\n<!-- // Begin Module: Standard Footer \\\\ -->													<table border="0" cellpadding="10" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td colspan="2" id="social" valign="middle">\r\n<div>\r\n&nbsp;<a href="http://www.twitter.com">follow on Twitter</a> | <a href="http://www.facebook.com">friend on Facebook</a></div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td valign="top" width="350">\r\n<div style="text-align: center;">\r\n<a href="http://www.yourcompany.com">www.yourcompany.com</a><br />\r\n<br />\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam semper leo sit amet tortor blandit, id dictum nisi condimentum. Nulla justo ligula, tristique et euismod ut, mollis vitae nisl.</div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan="2" id="utility" valign="middle">\r\n<div>\r\n{unsubscribe}</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Standard Footer \\\\ -->												</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Footer \\\\ -->								</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</center>\r\n<p>\r\n&nbsp;</p>\r\n', 'images/newsletters/thumbnails/2col-1-2.jpg');
INSERT INTO `newsletter_templates` (`id`, `title`, `description`, `body`, `thumbnail`) VALUES(2, '2col-1-2-leftsidebar', 'Πλάγια μπάρα αριστερά και κυρίως περιεχόμενο δεξιά με ένα κύριο άρθρο πλήρους πλάτους στην κορυφή και δύο άρθρα μισού πλάτους από κάτω.', '<p>\r\n<style type="text/css">\r\n/* Client-specific Styles */\r\n#outlook a{padding:0;} /* Force Outlook to provide a "view in browser" button. */\r\nbody{width:100% !important;} .ReadMsgBody{width:100%;} .ExternalClass{width:100%;} /* Force Hotmail to display emails at full width */\r\nbody{-webkit-text-size-adjust:none;} /* Prevent Webkit platforms from changing default text sizes. */\r\n\r\n/* Reset Styles */\r\nbody{margin:0; padding:0;}\r\nimg{border:0; height:auto; line-height:100%; outline:none; text-decoration:none;}\r\ntable td{border-collapse:collapse;}\r\n#backgroundTable{height:100% !important; margin:0; padding:0; width:100% !important;}\r\n\r\n/* Template Styles */\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: COMMON PAGE ELEMENTS /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Page\r\n* @section background color\r\n* @tip Set the background color for your email. You may want to choose one that matches your company''s branding.\r\n* @theme page\r\n*/\r\nbody, #backgroundTable{\r\n/*@editable*/ background-color:#FAFAFA;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section email border\r\n* @tip Set the border for your email.\r\n*/\r\n#templateContainer{\r\n/*@editable*/ border: 1px solid #DDDDDD;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 1\r\n* @tip Set the styling for all first-level headings in your emails. These should be the largest of your headings.\r\n* @style heading 1\r\n*/\r\nh1, .h1{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:34px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0 !important;\r\nmargin-right:0 !important;\r\nmargin-bottom:10px !important;\r\nmargin-left:0 !important;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 2\r\n* @tip Set the styling for all second-level headings in your emails.\r\n* @style heading 2\r\n*/\r\nh2, .h2{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:30px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0 !important;\r\nmargin-right:0 !important;\r\nmargin-bottom:10px !important;\r\nmargin-left:0 !important;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 3\r\n* @tip Set the styling for all third-level headings in your emails.\r\n* @style heading 3\r\n*/\r\nh3, .h3{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:26px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0 !important;\r\nmargin-right:0 !important;\r\nmargin-bottom:10px !important;\r\nmargin-left:0 !important;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 4\r\n* @tip Set the styling for all fourth-level headings in your emails. These should be the smallest of your headings.\r\n* @style heading 4\r\n*/\r\nh4, .h4{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:22px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0 !important;\r\nmargin-right:0 !important;\r\nmargin-bottom:10px !important;\r\nmargin-left:0 !important;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: PREHEADER /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Header\r\n* @section preheader style\r\n* @tip Set the background color for your email''s preheader area.\r\n* @theme page\r\n*/\r\n#templatePreheader{\r\n/*@editable*/ background-color:#FAFAFA;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section preheader text\r\n* @tip Set the styling for your email''s preheader text. Choose a size and color that is easy to read.\r\n*/\r\n.preheaderContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:10px;\r\n/*@editable*/ line-height:100%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section preheader link\r\n* @tip Set the styling for your email''s preheader links. Choose a color that helps them stand out from your text.\r\n*/\r\n.preheaderContent div a:link, .preheaderContent div a:visited, /* Yahoo! Mail Override */ .preheaderContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: HEADER /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Header\r\n* @section header style\r\n* @tip Set the background color and border for your email''s header area.\r\n* @theme header\r\n*/\r\n#templateHeader{\r\n/*@editable*/ background-color:#FFFFFF;\r\n/*@editable*/ border-bottom:0;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section header text\r\n* @tip Set the styling for your email''s header text. Choose a size and color that is easy to read.\r\n*/\r\n.headerContent{\r\n/*@editable*/ color:#202020;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:34px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\n/*@editable*/ padding:0;\r\n/*@editable*/ text-align:center;\r\n/*@editable*/ vertical-align:middle;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section header link\r\n* @tip Set the styling for your email''s header links. Choose a color that helps them stand out from your text.\r\n*/\r\n.headerContent a:link, .headerContent a:visited, /* Yahoo! Mail Override */ .headerContent a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n#headerImage{\r\nheight:auto;\r\nmax-width:600px !important;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: MAIN BODY /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Body\r\n* @section body style\r\n* @tip Set the background color for your email''s body area.\r\n*/\r\n#templateContainer, .bodyContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Body\r\n* @section body text\r\n* @tip Set the styling for your email''s main content text. Choose a size and color that is easy to read.\r\n* @theme main\r\n*/\r\n.bodyContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:14px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Body\r\n* @section body link\r\n* @tip Set the styling for your email''s main content links. Choose a color that helps them stand out from your text.\r\n*/\r\n.bodyContent div a:link, .bodyContent div a:visited, /* Yahoo! Mail Override */ .bodyContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.bodyContent img, .fullWidthBandContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: SIDEBAR /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Sidebar\r\n* @section sidebar style\r\n* @tip Set the background color and border for your email''s sidebar area.\r\n*/\r\n#templateSidebar{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Sidebar\r\n* @section sidebar text\r\n* @tip Set the styling for your email''s sidebar text. Choose a size and color that is easy to read.\r\n*/\r\n.sidebarContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:12px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Sidebar\r\n* @section sidebar link\r\n* @tip Set the styling for your email''s sidebar links. Choose a color that helps them stand out from your text.\r\n*/\r\n.sidebarContent div a:link, .sidebarContent div a:visited, /* Yahoo! Mail Override */ .sidebarContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.sidebarContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: COLUMNS; LEFT, RIGHT /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Columns\r\n* @section left column text\r\n* @tip Set the styling for your email''s left column text. Choose a size and color that is easy to read.\r\n*/\r\n.leftColumnContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section left column text\r\n* @tip Set the styling for your email''s left column text. Choose a size and color that is easy to read.\r\n*/\r\n.leftColumnContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:14px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section left column link\r\n* @tip Set the styling for your email''s left column links. Choose a color that helps them stand out from your text.\r\n*/\r\n.leftColumnContent div a:link, .leftColumnContent div a:visited, /* Yahoo! Mail Override */ .leftColumnContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.leftColumnContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section right column text\r\n* @tip Set the styling for your email''s right column text. Choose a size and color that is easy to read.\r\n*/\r\n.rightColumnContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section right column text\r\n* @tip Set the styling for your email''s right column text. Choose a size and color that is easy to read.\r\n*/\r\n.rightColumnContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:14px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section right column link\r\n* @tip Set the styling for your email''s right column links. Choose a color that helps them stand out from your text.\r\n*/\r\n.rightColumnContent div a:link, .rightColumnContent div a:visited, /* Yahoo! Mail Override */ .rightColumnContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.rightColumnContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: FOOTER /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Footer\r\n* @section footer style\r\n* @tip Set the background color and top border for your email''s footer area.\r\n* @theme footer\r\n*/\r\n#templateFooter{\r\n/*@editable*/ background-color:#FFFFFF;\r\n/*@editable*/ border-top:0;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section footer text\r\n* @tip Set the styling for your email''s footer text. Choose a size and color that is easy to read.\r\n* @theme footer\r\n*/\r\n.footerContent div{\r\n/*@editable*/ color:#707070;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:12px;\r\n/*@editable*/ line-height:125%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section footer link\r\n* @tip Set the styling for your email''s footer links. Choose a color that helps them stand out from your text.\r\n*/\r\n.footerContent div a:link, .footerContent div a:visited, /* Yahoo! Mail Override */ .footerContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.footerContent img{\r\ndisplay:inline;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section social bar style\r\n* @tip Set the background color and border for your email''s footer social bar.\r\n* @theme footer\r\n*/\r\n#social{\r\n/*@editable*/ background-color:#FAFAFA;\r\n/*@editable*/ border:0;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section social bar style\r\n* @tip Set the background color and border for your email''s footer social bar.\r\n*/\r\n#social div{\r\n/*@editable*/ text-align:center;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section utility bar style\r\n* @tip Set the background color and border for your email''s footer utility bar.\r\n* @theme footer\r\n*/\r\n#utility{\r\n/*@editable*/ background-color:#FFFFFF;\r\n/*@editable*/ border:0;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section utility bar style\r\n* @tip Set the background color and border for your email''s footer utility bar.\r\n*/\r\n#utility div{\r\n/*@editable*/ text-align:center;\r\n}	</style>\r\n</p>\r\n<center>\r\n<table border="0" cellpadding="0" cellspacing="0" height="100%" id="backgroundTable" width="100%">\r\n<tbody>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Preheader \\\\ -->					<table border="0" cellpadding="10" cellspacing="0" id="templatePreheader" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="preheaderContent" valign="top">\r\n<!-- // Begin Module: Standard Preheader \\ -->									<table border="0" cellpadding="10" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<div>\r\nUse this area to offer a short teaser of your email''s content. Text here will show in the preview area of some email clients.</div>\r\n</td>\r\n<td valign="top" width="190">\r\n<div style="text-align: right;">\r\n{date}</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Standard Preheader \\ -->								</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Preheader \\\\ -->					<table border="0" cellpadding="0" cellspacing="0" id="templateContainer" width="600">\r\n<tbody>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Header \\\\ -->									<table border="0" cellpadding="0" cellspacing="0" id="templateHeader" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="headerContent">\r\n<!-- // Begin Module: Standard Header Image \\\\ -->													<img id="headerImage campaign-icon" src="images/newsletters/images/placeholder_600.gif" style="max-width:600px;" /> <!-- // End Module: Standard Header Image \\\\ --></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Header \\\\ -->								</td>\r\n</tr>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Body \\\\ -->									<table border="0" cellpadding="0" cellspacing="0" id="templateBody" width="600">\r\n<tbody>\r\n<tr>\r\n<!-- // Begin Sidebar \\\\ -->												<td id="templateSidebar" valign="top" width="200">\r\n<table border="0" cellpadding="0" cellspacing="0" width="200">\r\n<tbody>\r\n<tr>\r\n<td class="sidebarContent" valign="top">\r\n<!-- // Begin Module: Social Block with Icons \\\\ -->																	<table border="0" cellpadding="0" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td style="padding-top:20px; padding-right:20px; padding-left:20px;" valign="top">\r\n<table border="0" cellpadding="0" cellspacing="4">\r\n<tbody>\r\n<tr>\r\n<td align="left" valign="middle" width="16">\r\n<img src="images/newsletters/images/icon_facebook.png" style="margin:0 !important;" /></td>\r\n<td align="left" valign="top">\r\n<div>\r\n<a href="http://www.facebook.com">Friend on Facebook</a></div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td align="left" valign="middle" width="16">\r\n<img src="images/newsletters/images/icon_twitter.png" style="margin:0 !important;" /></td>\r\n<td align="left" valign="top">\r\n<div>\r\n<a href="http://www.twitter.com">Follow on Twitter</a></div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Social Block with Icons \\\\ --><!-- // Begin Module: Top Image with Content \\\\ -->																	<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<img src="images/newsletters/images/placeholder_160.gif" style="max-width:160px;" />\r\n<div>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\n<strong>Repeatable content blocks:</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec iaculis, velit at semper placerat, tellus velit vehicula orci, a tristique lorem orci eu nisl. Sed et arcu quam. Donec varius arcu et ante convallis, quis laoreet lacus mattis.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Top Image with Content \\\\ -->																</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<!-- // End Sidebar \\\\ -->												<td valign="top" width="400">\r\n<table border="0" cellpadding="0" cellspacing="0" width="400">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<table border="0" cellpadding="0" cellspacing="0" width="400">\r\n<tbody>\r\n<tr>\r\n<td class="bodyContent" valign="top">\r\n<!-- // Begin Module: Standard Content \\\\ -->																					<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<div>\r\n<h1 class="h1">\r\nHeading 1</h1>\r\n<h2 class="h2">\r\nHeading 2</h2>\r\n<h3 class="h3">\r\nHeading 3</h3>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\nHi {name},<br />\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam semper leo sit amet tortor blandit, id dictum nisi condimentum. Nulla justo ligula, tristique et euismod ut, mollis vitae nisl. Pellentesque id lacinia arcu. Nunc mollis eros velit, ac hendrerit ipsum auctor eget. Maecenas id massa enim. Nullam sit amet mauris sodales, tincidunt lacus in, suscipit lectus. Maecenas ut semper purus, et mollis velit.<br />\r\n<br />\r\n<br />\r\nIn rhoncus a velit id vulputate. Nulla accumsan est in nibh ullamcorper iaculis. Sed id convallis mi, eu commodo sapien. Phasellus hendrerit, tellus in tincidunt venenatis, est elit dictum nisi, in pretium mauris orci quis metus. Vivamus a nisl vitae sapien ultricies tempor tempus eu ligula. Fusce felis mi, accumsan bibendum est non, venenatis cursus elit. Nunc at scelerisque elit. Quisque sed sem lacinia, blandit arcu nec, vulputate ligula. Nulla interdum risus sodales metus bibendum fermentum.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Standard Content \\\\ -->																				</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td valign="top">\r\n<table border="0" cellpadding="0" cellspacing="0" width="400">\r\n<tbody>\r\n<tr>\r\n<td class="leftColumnContent" valign="top" width="180">\r\n<!-- // Begin Module: Top Image with Content \\\\ -->																					<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<img src="images/newsletters/images/placeholder_160.gif" style="max-width:160px;" />\r\n<div>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\n<strong>Repeatable content blocks:</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec iaculis, velit at semper placerat, tellus velit vehicula orci, a tristique lorem orci eu nisl. Sed et arcu quam. Donec varius arcu et ante convallis, quis laoreet lacus mattis.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Top Image with Content \\\\ -->																				</td>\r\n<td class="rightColumnContent" valign="top" width="180">\r\n<!-- // Begin Module: Top Image with Content \\\\ -->																					<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<img src="images/newsletters/images/placeholder_160.gif" style="max-width:160px;" />\r\n<div>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\n<strong>Repeatable content blocks:</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec iaculis, velit at semper placerat, tellus velit vehicula orci, a tristique lorem orci eu nisl. Sed et arcu quam. Donec varius arcu et ante convallis, quis laoreet lacus mattis.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Top Image with Content \\\\ -->																				</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Body \\\\ -->								</td>\r\n</tr>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Footer \\\\ -->									<table border="0" cellpadding="10" cellspacing="0" id="templateFooter" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="footerContent" valign="top">\r\n<!-- // Begin Module: Standard Footer \\\\ -->													<table border="0" cellpadding="10" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td colspan="2" id="social" valign="middle">\r\n<div>\r\n&nbsp;<a href="http://www.twitter.com">follow on Twitter</a> | <a href="http://www.facebook.com">friend on Facebook</a></div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td valign="top" width="350">\r\n<div style="text-align: center;">\r\n<a href="http://www.yourcompany.com">www.yourcompany.com</a><br />\r\n<br />\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam semper leo sit amet tortor blandit, id dictum nisi condimentum. Nulla justo ligula, tristique et euismod ut, mollis vitae nisl.</div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan="2" id="utility" valign="middle">\r\n<div>\r\n{unsubscribe}</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Standard Footer \\\\ -->												</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Footer \\\\ -->								</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</center>\r\n', 'images/newsletters/thumbnails/2col-1-2-leftsidebar.jpg');
INSERT INTO `newsletter_templates` (`id`, `title`, `description`, `body`, `thumbnail`) VALUES(4, '2col-2-1', 'Δύο άρθρα μισού πλάτους επάνω και ένα άρθρο πλήρους πλάτους από κάτω.', '<p>\r\n<style type="text/css">\r\n/* Client-specific Styles */\r\n#outlook a{padding:0;} /* Force Outlook to provide a "view in browser" button. */\r\nbody{width:100% !important;} .ReadMsgBody{width:100%;} .ExternalClass{width:100%;} /* Force Hotmail to display emails at full width */\r\nbody{-webkit-text-size-adjust:none;} /* Prevent Webkit platforms from changing default text sizes. */\r\n\r\n/* Reset Styles */\r\nbody{margin:0; padding:0;}\r\nimg{border:0; height:auto; line-height:100%; outline:none; text-decoration:none;}\r\ntable td{border-collapse:collapse;}\r\n#backgroundTable{height:100% !important; margin:0; padding:0; width:100% !important;}\r\n\r\n/* Template Styles */\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: COMMON PAGE ELEMENTS /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Page\r\n* @section background color\r\n* @tip Set the background color for your email. You may want to choose one that matches your company''s branding.\r\n* @theme page\r\n*/\r\nbody, #backgroundTable{\r\n/*@editable*/ background-color:#FAFAFA;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section email border\r\n* @tip Set the border for your email.\r\n*/\r\n#templateContainer{\r\n/*@editable*/ border: 1px solid #DDDDDD;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 1\r\n* @tip Set the styling for all first-level headings in your emails. These should be the largest of your headings.\r\n* @style heading 1\r\n*/\r\nh1, .h1{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:34px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 2\r\n* @tip Set the styling for all second-level headings in your emails.\r\n* @style heading 2\r\n*/\r\nh2, .h2{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:30px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 3\r\n* @tip Set the styling for all third-level headings in your emails.\r\n* @style heading 3\r\n*/\r\nh3, .h3{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:26px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 4\r\n* @tip Set the styling for all fourth-level headings in your emails. These should be the smallest of your headings.\r\n* @style heading 4\r\n*/\r\nh4, .h4{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:22px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: PREHEADER /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Header\r\n* @section preheader style\r\n* @tip Set the background color for your email''s preheader area.\r\n* @theme page\r\n*/\r\n#templatePreheader{\r\n/*@editable*/ background-color:#FAFAFA;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section preheader text\r\n* @tip Set the styling for your email''s preheader text. Choose a size and color that is easy to read.\r\n*/\r\n.preheaderContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:10px;\r\n/*@editable*/ line-height:100%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section preheader link\r\n* @tip Set the styling for your email''s preheader links. Choose a color that helps them stand out from your text.\r\n*/\r\n.preheaderContent div a:link, .preheaderContent div a:visited, /* Yahoo! Mail Override */ .preheaderContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: HEADER /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Header\r\n* @section header style\r\n* @tip Set the background color and border for your email''s header area.\r\n* @theme header\r\n*/\r\n#templateHeader{\r\n/*@editable*/ background-color:#FFFFFF;\r\n/*@editable*/ border-bottom:0;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section header text\r\n* @tip Set the styling for your email''s header text. Choose a size and color that is easy to read.\r\n*/\r\n.headerContent{\r\n/*@editable*/ color:#202020;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:34px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\n/*@editable*/ padding:0;\r\n/*@editable*/ text-align:center;\r\n/*@editable*/ vertical-align:middle;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section header link\r\n* @tip Set the styling for your email''s header links. Choose a color that helps them stand out from your text.\r\n*/\r\n.headerContent a:link, .headerContent a:visited, /* Yahoo! Mail Override */ .headerContent a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n#headerImage{\r\nheight:auto;\r\nmax-width:600px;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: COLUMNS; LEFT, RIGHT /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Columns\r\n* @section left column text\r\n* @tip Set the styling for your email''s left column text. Choose a size and color that is easy to read.\r\n*/\r\n.leftColumnContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section left column text\r\n* @tip Set the styling for your email''s left column text. Choose a size and color that is easy to read.\r\n*/\r\n.leftColumnContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:14px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section left column link\r\n* @tip Set the styling for your email''s left column links. Choose a color that helps them stand out from your text.\r\n*/\r\n.leftColumnContent div a:link, .leftColumnContent div a:visited, /* Yahoo! Mail Override */ .leftColumnContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.leftColumnContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section right column text\r\n* @tip Set the styling for your email''s right column text. Choose a size and color that is easy to read.\r\n*/\r\n.rightColumnContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section right column text\r\n* @tip Set the styling for your email''s right column text. Choose a size and color that is easy to read.\r\n*/\r\n.rightColumnContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:14px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section right column link\r\n* @tip Set the styling for your email''s right column links. Choose a color that helps them stand out from your text.\r\n*/\r\n.rightColumnContent div a:link, .rightColumnContent div a:visited, /* Yahoo! Mail Override */ .rightColumnContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.rightColumnContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: MAIN BODY /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Body\r\n* @section body style\r\n* @tip Set the background color for your email''s body area.\r\n*/\r\n#templateContainer, .bodyContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Body\r\n* @section body text\r\n* @tip Set the styling for your email''s main content text. Choose a size and color that is easy to read.\r\n* @theme main\r\n*/\r\n.bodyContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:14px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Body\r\n* @section body link\r\n* @tip Set the styling for your email''s main content links. Choose a color that helps them stand out from your text.\r\n*/\r\n.bodyContent div a:link, .bodyContent div a:visited, /* Yahoo! Mail Override */ .bodyContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.bodyContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: FOOTER /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Footer\r\n* @section footer style\r\n* @tip Set the background color and top border for your email''s footer area.\r\n* @theme footer\r\n*/\r\n#templateFooter{\r\n/*@editable*/ background-color:#FFFFFF;\r\n/*@editable*/ border-top:0;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section footer text\r\n* @tip Set the styling for your email''s footer text. Choose a size and color that is easy to read.\r\n* @theme footer\r\n*/\r\n.footerContent div{\r\n/*@editable*/ color:#707070;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:12px;\r\n/*@editable*/ line-height:125%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section footer link\r\n* @tip Set the styling for your email''s footer links. Choose a color that helps them stand out from your text.\r\n*/\r\n.footerContent div a:link, .footerContent div a:visited, /* Yahoo! Mail Override */ .footerContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.footerContent img{\r\ndisplay:inline;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section social bar style\r\n* @tip Set the background color and border for your email''s footer social bar.\r\n* @theme footer\r\n*/\r\n#social{\r\n/*@editable*/ background-color:#FAFAFA;\r\n/*@editable*/ border:0;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section social bar style\r\n* @tip Set the background color and border for your email''s footer social bar.\r\n*/\r\n#social div{\r\n/*@editable*/ text-align:center;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section utility bar style\r\n* @tip Set the background color and border for your email''s footer utility bar.\r\n* @theme footer\r\n*/\r\n#utility{\r\n/*@editable*/ background-color:#FFFFFF;\r\n/*@editable*/ border:0;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section utility bar style\r\n* @tip Set the background color and border for your email''s footer utility bar.\r\n*/\r\n#utility div{\r\n/*@editable*/ text-align:center;\r\n}	</style>\r\n</p>\r\n<center>\r\n<table border="0" cellpadding="0" cellspacing="0" height="100%" id="backgroundTable" width="100%">\r\n<tbody>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Preheader \\\\ -->					<table border="0" cellpadding="10" cellspacing="0" id="templatePreheader" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="preheaderContent" valign="top">\r\n<!-- // Begin Module: Standard Preheader \\ -->									<table border="0" cellpadding="10" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<div>\r\nUse this area to offer a short teaser of your email''s content. Text here will show in the preview area of some email clients.</div>\r\n</td>\r\n<td valign="top" width="190">\r\n<div style="text-align: right;">\r\n{date}</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Standard Preheader \\ -->								</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Preheader \\\\ -->					<table border="0" cellpadding="0" cellspacing="0" id="templateContainer" width="600">\r\n<tbody>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Header \\\\ -->									<table border="0" cellpadding="0" cellspacing="0" id="templateHeader" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="headerContent">\r\n<!-- // Begin Module: Standard Header Image \\\\ -->													<img id="headerImage campaign-icon" src="images/newsletters/images/placeholder_600.gif" style="max-width:600px;" /> <!-- // End Module: Standard Header Image \\\\ --></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Header \\\\ -->								</td>\r\n</tr>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Body \\\\ -->									<table border="0" cellpadding="0" cellspacing="0" id="templateBody" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="leftColumnContent" valign="top" width="280">\r\n<!-- // Begin Module: Top Image with Content \\\\ -->													<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<img src="images/newsletters/images/placeholder_260.gif" style="max-width:260px;" />\r\n<div>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\n<strong>Repeatable content blocks:</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec iaculis, velit at semper placerat, tellus velit vehicula orci, a tristique lorem orci eu nisl. Sed et arcu quam. Donec varius arcu et ante convallis, quis laoreet lacus mattis.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Top Image with Content \\\\ -->												</td>\r\n<td class="rightColumnContent" valign="top" width="280">\r\n<!-- // Begin Module: Top Image with Content \\\\ -->													<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<img src="images/newsletters/images/placeholder_260.gif" style="max-width:260px;" />\r\n<div>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\n<strong>Repeatable content blocks:</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec iaculis, velit at semper placerat, tellus velit vehicula orci, a tristique lorem orci eu nisl. Sed et arcu quam. Donec varius arcu et ante convallis, quis laoreet lacus mattis.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Top Image with Content \\\\ -->												</td>\r\n</tr>\r\n<tr>\r\n<td class="bodyContent" colspan="3" valign="top">\r\n<!-- // Begin Module: Standard Content \\\\ -->													<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<div>\r\n<h1 class="h1">\r\nHeading 1</h1>\r\n<h2 class="h2">\r\nHeading 2</h2>\r\n<h3 class="h3">\r\nHeading 3</h3>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\nHi {name},<br />\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam semper leo sit amet tortor blandit, id dictum nisi condimentum. Nulla justo ligula, tristique et euismod ut, mollis vitae nisl. Pellentesque id lacinia arcu. Nunc mollis eros velit, ac hendrerit ipsum auctor eget. Maecenas id massa enim. Nullam sit amet mauris sodales, tincidunt lacus in, suscipit lectus. Maecenas ut semper purus, et mollis velit.<br />\r\n<br />\r\nIn rhoncus a velit id vulputate. Nulla accumsan est in nibh ullamcorper iaculis. Sed id convallis mi, eu commodo sapien. Phasellus hendrerit, tellus in tincidunt venenatis, est elit dictum nisi, in pretium mauris orci quis metus. Vivamus a nisl vitae sapien ultricies tempor tempus eu ligula. Fusce felis mi, accumsan bibendum est non, venenatis cursus elit. Nunc at scelerisque elit. Quisque sed sem lacinia, blandit arcu nec, vulputate ligula. Nulla interdum risus sodales metus bibendum fermentum.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Standard Content \\\\ -->												</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Body \\\\ -->								</td>\r\n</tr>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Footer \\\\ -->									<table border="0" cellpadding="10" cellspacing="0" id="templateFooter" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="footerContent" valign="top">\r\n<!-- // Begin Module: Standard Footer \\\\ -->													<table border="0" cellpadding="10" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td colspan="2" id="social" valign="middle">\r\n<div>\r\n&nbsp;<a href="http://www.twitter.com">follow on Twitter</a> | <a href="http://www.facebook.com">friend on Facebook</a></div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td valign="top" width="350">\r\n<div style="text-align: center;">\r\n<a href="http://www.yourcompany.com">www.yourcompany.com</a><br />\r\n<br />\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam semper leo sit amet tortor blandit, id dictum nisi condimentum. Nulla justo ligula, tristique et euismod ut, mollis vitae nisl.</div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan="2" id="utility" valign="middle">\r\n<div>\r\n{unsubscribe}</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Standard Footer \\\\ -->												</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Footer \\\\ -->								</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</center>\r\n', 'images/newsletters/thumbnails/2col-2-1.jpg');
INSERT INTO `newsletter_templates` (`id`, `title`, `description`, `body`, `thumbnail`) VALUES(5, '2col-basic2column', 'Βασικό δύο στηλών template.', '<p>\r\n<style type="text/css">\r\n/* Client-specific Styles */\r\n#outlook a{padding:0;} /* Force Outlook to provide a "view in browser" button. */\r\nbody{width:100% !important;} .ReadMsgBody{width:100%;} .ExternalClass{width:100%;} /* Force Hotmail to display emails at full width */\r\nbody{-webkit-text-size-adjust:none;} /* Prevent Webkit platforms from changing default text sizes. */\r\n\r\n/* Reset Styles */\r\nbody{margin:0; padding:0;}\r\nimg{border:0; height:auto; line-height:100%; outline:none; text-decoration:none;}\r\ntable td{border-collapse:collapse;}\r\n#backgroundTable{height:100% !important; margin:0; padding:0; width:100% !important;}\r\n\r\n/* Template Styles */\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: COMMON PAGE ELEMENTS /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Page\r\n* @section background color\r\n* @tip Set the background color for your email. You may want to choose one that matches your company''s branding.\r\n* @theme page\r\n*/\r\nbody, #backgroundTable{\r\n/*@editable*/ background-color:#FAFAFA;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section email border\r\n* @tip Set the border for your email.\r\n*/\r\n#templateContainer{\r\n/*@editable*/ border: 1px solid #DDDDDD;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 1\r\n* @tip Set the styling for all first-level headings in your emails. These should be the largest of your headings.\r\n* @style heading 1\r\n*/\r\nh1, .h1{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:34px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 2\r\n* @tip Set the styling for all second-level headings in your emails.\r\n* @style heading 2\r\n*/\r\nh2, .h2{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:30px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 3\r\n* @tip Set the styling for all third-level headings in your emails.\r\n* @style heading 3\r\n*/\r\nh3, .h3{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:26px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 4\r\n* @tip Set the styling for all fourth-level headings in your emails. These should be the smallest of your headings.\r\n* @style heading 4\r\n*/\r\nh4, .h4{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:22px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: PREHEADER /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Header\r\n* @section preheader style\r\n* @tip Set the background color for your email''s preheader area.\r\n* @theme page\r\n*/\r\n#templatePreheader{\r\n/*@editable*/ background-color:#FAFAFA;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section preheader text\r\n* @tip Set the styling for your email''s preheader text. Choose a size and color that is easy to read.\r\n*/\r\n.preheaderContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:10px;\r\n/*@editable*/ line-height:100%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section preheader link\r\n* @tip Set the styling for your email''s preheader links. Choose a color that helps them stand out from your text.\r\n*/\r\n.preheaderContent div a:link, .preheaderContent div a:visited, /* Yahoo! Mail Override */ .preheaderContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: HEADER /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Header\r\n* @section header style\r\n* @tip Set the background color and border for your email''s header area.\r\n* @theme header\r\n*/\r\n#templateHeader{\r\n/*@editable*/ background-color:#FFFFFF;\r\n/*@editable*/ border-bottom:0;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section header text\r\n* @tip Set the styling for your email''s header text. Choose a size and color that is easy to read.\r\n*/\r\n.headerContent{\r\n/*@editable*/ color:#202020;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:34px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\n/*@editable*/ padding:0;\r\n/*@editable*/ text-align:center;\r\n/*@editable*/ vertical-align:middle;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section header link\r\n* @tip Set the styling for your email''s header links. Choose a color that helps them stand out from your text.\r\n*/\r\n.headerContent a:link, .headerContent a:visited, /* Yahoo! Mail Override */ .headerContent a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n#headerImage{\r\nheight:auto;\r\nmax-width:600px;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: COLUMNS; LEFT, RIGHT /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Columns\r\n* @section left column text\r\n* @tip Set the styling for your email''s left column text. Choose a size and color that is easy to read.\r\n*/\r\n.leftColumnContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section left column text\r\n* @tip Set the styling for your email''s left column text. Choose a size and color that is easy to read.\r\n*/\r\n.leftColumnContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:14px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section left column link\r\n* @tip Set the styling for your email''s left column links. Choose a color that helps them stand out from your text.\r\n*/\r\n.leftColumnContent div a:link, .leftColumnContent div a:visited, /* Yahoo! Mail Override */ .leftColumnContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.leftColumnContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section right column text\r\n* @tip Set the styling for your email''s right column text. Choose a size and color that is easy to read.\r\n*/\r\n.rightColumnContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section right column text\r\n* @tip Set the styling for your email''s right column text. Choose a size and color that is easy to read.\r\n*/\r\n.rightColumnContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:14px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section right column link\r\n* @tip Set the styling for your email''s right column links. Choose a color that helps them stand out from your text.\r\n*/\r\n.rightColumnContent div a:link, .rightColumnContent div a:visited, /* Yahoo! Mail Override */ .rightColumnContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.rightColumnContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: FOOTER /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Footer\r\n* @section footer style\r\n* @tip Set the background color and top border for your email''s footer area.\r\n* @theme footer\r\n*/\r\n#templateFooter{\r\n/*@editable*/ background-color:#FFFFFF;\r\n/*@editable*/ border-top:0;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section footer text\r\n* @tip Set the styling for your email''s footer text. Choose a size and color that is easy to read.\r\n* @theme footer\r\n*/\r\n.footerContent div{\r\n/*@editable*/ color:#707070;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:12px;\r\n/*@editable*/ line-height:125%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section footer link\r\n* @tip Set the styling for your email''s footer links. Choose a color that helps them stand out from your text.\r\n*/\r\n.footerContent div a:link, .footerContent div a:visited, /* Yahoo! Mail Override */ .footerContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.footerContent img{\r\ndisplay:inline;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section social bar style\r\n* @tip Set the background color and border for your email''s footer social bar.\r\n* @theme footer\r\n*/\r\n#social{\r\n/*@editable*/ background-color:#FAFAFA;\r\n/*@editable*/ border:0;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section social bar style\r\n* @tip Set the background color and border for your email''s footer social bar.\r\n*/\r\n#social div{\r\n/*@editable*/ text-align:center;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section utility bar style\r\n* @tip Set the background color and border for your email''s footer utility bar.\r\n* @theme footer\r\n*/\r\n#utility{\r\n/*@editable*/ background-color:#FFFFFF;\r\n/*@editable*/ border:0;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section utility bar style\r\n* @tip Set the background color and border for your email''s footer utility bar.\r\n*/\r\n#utility div{\r\n/*@editable*/ text-align:center;\r\n}	</style>\r\n</p>\r\n<center>\r\n<table border="0" cellpadding="0" cellspacing="0" height="100%" id="backgroundTable" width="100%">\r\n<tbody>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Preheader \\\\ -->					<table border="0" cellpadding="10" cellspacing="0" id="templatePreheader" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="preheaderContent" valign="top">\r\n<!-- // Begin Module: Standard Preheader \\ -->									<table border="0" cellpadding="10" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<div>\r\nUse this area to offer a short teaser of your email''s content. Text here will show in the preview area of some email clients.</div>\r\n</td>\r\n<td valign="top" width="190">\r\n<div style="text-align: right;">\r\n{date}</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Standard Preheader \\ -->								</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Preheader \\\\ -->					<table border="0" cellpadding="0" cellspacing="0" id="templateContainer" width="600">\r\n<tbody>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Header \\\\ -->									<table border="0" cellpadding="0" cellspacing="0" id="templateHeader" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="headerContent">\r\n<!-- // Begin Module: Standard Header Image \\\\ -->													<img id="headerImage campaign-icon" src="images/newsletters/images/placeholder_600.gif" style="max-width:600px;" /> <!-- // End Module: Standard Header Image \\\\ --></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Header \\\\ -->								</td>\r\n</tr>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Body \\\\ -->									<table border="0" cellpadding="0" cellspacing="0" id="templateBody" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="leftColumnContent" valign="top" width="280">\r\n<!-- // Begin Module: Top Image with Content \\\\ -->													<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<img src="images/newsletters/images/placeholder_260.gif" style="max-width:260px;" />\r\n<div>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\n<strong>Repeatable content blocks:</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec iaculis, velit at semper placerat, tellus velit vehicula orci, a tristique lorem orci eu nisl. Sed et arcu quam. Donec varius arcu et ante convallis, quis laoreet lacus mattis.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Top Image with Content \\\\ -->												</td>\r\n<td class="rightColumnContent" valign="top" width="280">\r\n<!-- // Begin Module: Top Image with Content \\\\ -->													<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<img src="images/newsletters/images/placeholder_260.gif" style="max-width:260px;" />\r\n<div>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\n<strong>Repeatable content blocks:</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec iaculis, velit at semper placerat, tellus velit vehicula orci, a tristique lorem orci eu nisl. Sed et arcu quam. Donec varius arcu et ante convallis, quis laoreet lacus mattis.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Top Image with Content \\\\ -->												</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Body \\\\ -->								</td>\r\n</tr>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Footer \\\\ -->									<table border="0" cellpadding="10" cellspacing="0" id="templateFooter" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="footerContent" valign="top">\r\n<!-- // Begin Module: Standard Footer \\\\ -->													<table border="0" cellpadding="10" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td colspan="2" id="social" valign="middle">\r\n<div>\r\n&nbsp;<a href="http://www.twitter.com">follow on Twitter</a> | <a href="http://www.facebook.com">friend on Facebook</a></div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td valign="top" width="350">\r\n<div style="text-align: center;">\r\n<a href="http://www.yourcompany.com">www.yourcompany.com</a><br />\r\n<br />\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam semper leo sit amet tortor blandit, id dictum nisi condimentum. Nulla justo ligula, tristique et euismod ut, mollis vitae nisl.</div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan="2" id="utility" valign="middle">\r\n<div>\r\n{unsubscribe}</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Standard Footer \\\\ -->												</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Footer \\\\ -->								</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</center>\r\n', 'images/newsletters/thumbnails/2col-basic2column.jpg');
INSERT INTO `newsletter_templates` (`id`, `title`, `description`, `body`, `thumbnail`) VALUES(6, '3col-1-3', 'Ένα κύριο άρθρο πλήρους πλάτους στην κορυφή και ένα τρίστηλο με άρθρα από κάτω.', '<p>\r\n<style type="text/css">\r\n/* Client-specific Styles */\r\n#outlook a{padding:0;} /* Force Outlook to provide a "view in browser" button. */\r\nbody{width:100% !important;} .ReadMsgBody{width:100%;} .ExternalClass{width:100%;} /* Force Hotmail to display emails at full width */\r\nbody{-webkit-text-size-adjust:none;} /* Prevent Webkit platforms from changing default text sizes. */\r\n\r\n/* Reset Styles */\r\nbody{margin:0; padding:0;}\r\nimg{border:0; height:auto; line-height:100%; outline:none; text-decoration:none;}\r\ntable td{border-collapse:collapse;}\r\n#backgroundTable{height:100% !important; margin:0; padding:0; width:100% !important;}\r\n\r\n/* Template Styles */\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: COMMON PAGE ELEMENTS /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Page\r\n* @section background color\r\n* @tip Set the background color for your email. You may want to choose one that matches your company''s branding.\r\n* @theme page\r\n*/\r\nbody, #backgroundTable{\r\n/*@editable*/ background-color:#FAFAFA;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section email border\r\n* @tip Set the border for your email.\r\n*/\r\n#templateContainer{\r\n/*@editable*/ border: 1px solid #DDDDDD;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 1\r\n* @tip Set the styling for all first-level headings in your emails. These should be the largest of your headings.\r\n* @style heading 1\r\n*/\r\nh1, .h1{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:34px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 2\r\n* @tip Set the styling for all second-level headings in your emails.\r\n* @style heading 2\r\n*/\r\nh2, .h2{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:30px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 3\r\n* @tip Set the styling for all third-level headings in your emails.\r\n* @style heading 3\r\n*/\r\nh3, .h3{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:26px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 4\r\n* @tip Set the styling for all fourth-level headings in your emails. These should be the smallest of your headings.\r\n* @style heading 4\r\n*/\r\nh4, .h4{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:22px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: PREHEADER /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Header\r\n* @section preheader style\r\n* @tip Set the background color for your email''s preheader area.\r\n* @theme page\r\n*/\r\n#templatePreheader{\r\n/*@editable*/ background-color:#FAFAFA;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section preheader text\r\n* @tip Set the styling for your email''s preheader text. Choose a size and color that is easy to read.\r\n*/\r\n.preheaderContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:10px;\r\n/*@editable*/ line-height:100%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section preheader link\r\n* @tip Set the styling for your email''s preheader links. Choose a color that helps them stand out from your text.\r\n*/\r\n.preheaderContent div a:link, .preheaderContent div a:visited, /* Yahoo! Mail Override */ .preheaderContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: HEADER /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Header\r\n* @section header style\r\n* @tip Set the background color and border for your email''s header area.\r\n* @theme header\r\n*/\r\n#templateHeader{\r\n/*@editable*/ background-color:#FFFFFF;\r\n/*@editable*/ border-bottom:0;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section header text\r\n* @tip Set the styling for your email''s header text. Choose a size and color that is easy to read.\r\n*/\r\n.headerContent{\r\n/*@editable*/ color:#202020;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:34px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\n/*@editable*/ padding:0;\r\n/*@editable*/ text-align:center;\r\n/*@editable*/ vertical-align:middle;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section header link\r\n* @tip Set the styling for your email''s header links. Choose a color that helps them stand out from your text.\r\n*/\r\n.headerContent a:link, .headerContent a:visited, /* Yahoo! Mail Override */ .headerContent a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n#headerImage{\r\nheight:auto;\r\nmax-width:600px !important;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: MAIN BODY /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Body\r\n* @section body style\r\n* @tip Set the background color for your email''s body area.\r\n*/\r\n#templateContainer, .bodyContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Body\r\n* @section body text\r\n* @tip Set the styling for your email''s main content text. Choose a size and color that is easy to read.\r\n* @theme main\r\n*/\r\n.bodyContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:14px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Body\r\n* @section body link\r\n* @tip Set the styling for your email''s main content links. Choose a color that helps them stand out from your text.\r\n*/\r\n.bodyContent div a:link, .bodyContent div a:visited, /* Yahoo! Mail Override */ .bodyContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.bodyContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: COLUMNS; LEFT, CENTER, RIGHT /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Columns\r\n* @section left column text\r\n* @tip Set the styling for your email''s left column text. Choose a size and color that is easy to read.\r\n*/\r\n.leftColumnContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section left column text\r\n* @tip Set the styling for your email''s left column text. Choose a size and color that is easy to read.\r\n*/\r\n.leftColumnContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:14px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section left column link\r\n* @tip Set the styling for your email''s left column links. Choose a color that helps them stand out from your text.\r\n*/\r\n.leftColumnContent div a:link, .leftColumnContent div a:visited, /* Yahoo! Mail Override */ .leftColumnContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.leftColumnContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section center column text\r\n* @tip Set the styling for your email''s center column text. Choose a size and color that is easy to read.\r\n*/\r\n.centerColumnContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section center column text\r\n* @tip Set the styling for your email''s center column text. Choose a size and color that is easy to read.\r\n*/\r\n.centerColumnContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:14px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section center column link\r\n* @tip Set the styling for your email''s center column links. Choose a color that helps them stand out from your text.\r\n*/\r\n.centerColumnContent div a:link, .centerColumnContent div a:visited, /* Yahoo! Mail Override */ .centerColumnContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.centerColumnContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section right column text\r\n* @tip Set the styling for your email''s right column text. Choose a size and color that is easy to read.\r\n*/\r\n.rightColumnContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section right column text\r\n* @tip Set the styling for your email''s right column text. Choose a size and color that is easy to read.\r\n*/\r\n.rightColumnContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:14px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section right column link\r\n* @tip Set the styling for your email''s right column links. Choose a color that helps them stand out from your text.\r\n*/\r\n.rightColumnContent div a:link, .rightColumnContent div a:visited, /* Yahoo! Mail Override */ .rightColumnContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.rightColumnContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: FOOTER /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Footer\r\n* @section footer style\r\n* @tip Set the background color and top border for your email''s footer area.\r\n* @theme footer\r\n*/\r\n#templateFooter{\r\n/*@editable*/ background-color:#FFFFFF;\r\n/*@editable*/ border-top:0;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section footer text\r\n* @tip Set the styling for your email''s footer text. Choose a size and color that is easy to read.\r\n* @theme footer\r\n*/\r\n.footerContent div{\r\n/*@editable*/ color:#707070;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:12px;\r\n/*@editable*/ line-height:125%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section footer link\r\n* @tip Set the styling for your email''s footer links. Choose a color that helps them stand out from your text.\r\n*/\r\n.footerContent div a:link, .footerContent div a:visited, /* Yahoo! Mail Override */ .footerContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.footerContent img{\r\ndisplay:inline;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section social bar style\r\n* @tip Set the background color and border for your email''s footer social bar.\r\n* @theme footer\r\n*/\r\n#social{\r\n/*@editable*/ background-color:#FAFAFA;\r\n/*@editable*/ border:0;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section social bar style\r\n* @tip Set the background color and border for your email''s footer social bar.\r\n*/\r\n#social div{\r\n/*@editable*/ text-align:center;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section utility bar style\r\n* @tip Set the background color and border for your email''s footer utility bar.\r\n* @theme footer\r\n*/\r\n#utility{\r\n/*@editable*/ background-color:#FFFFFF;\r\n/*@editable*/ border:0;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section utility bar style\r\n* @tip Set the background color and border for your email''s footer utility bar.\r\n*/\r\n#utility div{\r\n/*@editable*/ text-align:center;\r\n}	</style>\r\n</p>\r\n<center>\r\n<table border="0" cellpadding="0" cellspacing="0" height="100%" id="backgroundTable" width="100%">\r\n<tbody>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Preheader \\\\ -->					<table border="0" cellpadding="10" cellspacing="0" id="templatePreheader" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="preheaderContent" valign="top">\r\n<!-- // Begin Module: Standard Preheader \\ -->									<table border="0" cellpadding="10" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<div>\r\nUse this area to offer a short teaser of your email''s content. Text here will show in the preview area of some email clients.</div>\r\n</td>\r\n<td valign="top" width="190">\r\n<div style="text-align: right;">\r\n{date}</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Standard Preheader \\ -->								</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Preheader \\\\ -->					<table border="0" cellpadding="0" cellspacing="0" id="templateContainer" width="600">\r\n<tbody>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Header \\\\ -->									<table border="0" cellpadding="0" cellspacing="0" id="templateHeader" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="headerContent">\r\n<!-- // Begin Module: Standard Header Image \\\\ -->													<img id="headerImage campaign-icon" src="images/newsletters/images/placeholder_600.gif" style="max-width:600px;" /> <!-- // End Module: Standard Header Image \\\\ --></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Header \\\\ -->								</td>\r\n</tr>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Body \\\\ -->									<table border="0" cellpadding="0" cellspacing="0" id="templateBody" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="bodyContent" colspan="3" valign="top">\r\n<!-- // Begin Module: Standard Content \\\\ -->													<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<div>\r\n<h1 class="h1">\r\nHeading 1</h1>\r\n<h2 class="h2">\r\nHeading 2</h2>\r\n<h3 class="h3">\r\nHeading 3</h3>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\nHi {name},<br />\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam semper leo sit amet tortor blandit, id dictum nisi condimentum. Nulla justo ligula, tristique et euismod ut, mollis vitae nisl. Pellentesque id lacinia arcu. Nunc mollis eros velit, ac hendrerit ipsum auctor eget. Maecenas id massa enim. Nullam sit amet mauris sodales, tincidunt lacus in, suscipit lectus. Maecenas ut semper purus, et mollis velit.<br />\r\n<br />\r\nIn rhoncus a velit id vulputate. Nulla accumsan est in nibh ullamcorper iaculis. Sed id convallis mi, eu commodo sapien. Phasellus hendrerit, tellus in tincidunt venenatis, est elit dictum nisi, in pretium mauris orci quis metus. Vivamus a nisl vitae sapien ultricies tempor tempus eu ligula. Fusce felis mi, accumsan bibendum est non, venenatis cursus elit. Nunc at scelerisque elit. Quisque sed sem lacinia, blandit arcu nec, vulputate ligula. Nulla interdum risus sodales metus bibendum fermentum.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Standard Content \\\\ -->												</td>\r\n</tr>\r\n<tr>\r\n<td class="leftColumnContent" valign="top" width="180">\r\n<!-- // Begin Module: Top Image with Content \\\\ -->													<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<img src="images/newsletters/images/placeholder_160.gif" style="max-width:160px;" />\r\n<div>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\n<strong>Repeatable content blocks:</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec iaculis, velit at semper placerat, tellus velit vehicula orci, a tristique lorem orci eu nisl. Sed et arcu quam. Donec varius arcu et ante convallis, quis laoreet lacus mattis.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Top Image with Content \\\\ -->												</td>\r\n<td class="centerColumnContent" valign="top" width="180">\r\n<!-- // Begin Module: Top Image with Content \\\\ -->													<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<img src="images/newsletters/images/placeholder_160.gif" style="max-width:160px;" />\r\n<div>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\n<strong>Repeatable content blocks:</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec iaculis, velit at semper placerat, tellus velit vehicula orci, a tristique lorem orci eu nisl. Sed et arcu quam. Donec varius arcu et ante convallis, quis laoreet lacus mattis.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Top Image with Content \\\\ -->												</td>\r\n<td class="rightColumnContent" valign="top" width="180">\r\n<!-- // Begin Module: Top Image with Content \\\\ -->													<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<img src="images/newsletters/images/placeholder_160.gif" style="max-width:160px;" />\r\n<div>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\n<strong>Repeatable content blocks:</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec iaculis, velit at semper placerat, tellus velit vehicula orci, a tristique lorem orci eu nisl. Sed et arcu quam. Donec varius arcu et ante convallis, quis laoreet lacus mattis.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Top Image with Content \\\\ -->												</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Body \\\\ -->								</td>\r\n</tr>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Footer \\\\ -->									<table border="0" cellpadding="10" cellspacing="0" id="templateFooter" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="footerContent" valign="top">\r\n<!-- // Begin Module: Standard Footer \\\\ -->													<table border="0" cellpadding="10" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td colspan="2" id="social" valign="middle">\r\n<div>\r\n&nbsp;<a href="http://www.twitter.com">follow on Twitter</a> | <a href="http://www.facebook.com">friend on Facebook</a></div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td valign="top" width="350">\r\n<div style="text-align: center;">\r\n<a href="http://www.yourcompany.com">www.yourcompany.com</a><br />\r\n<br />\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam semper leo sit amet tortor blandit, id dictum nisi condimentum. Nulla justo ligula, tristique et euismod ut, mollis vitae nisl.</div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan="2" id="utility" valign="middle">\r\n<div>\r\n{unsubscribe}</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Standard Footer \\\\ -->												</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Footer \\\\ -->								</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</center>\r\n', 'images/newsletters/thumbnails/3col-1-3.jpg');
INSERT INTO `newsletter_templates` (`id`, `title`, `description`, `body`, `thumbnail`) VALUES(7, '3col-1-3-asym', 'Ένα κύριο άρθρο πλήρους πλάτους στην κορυφή και ένα τρίστηλο με άρθρα από κάτω με μεγαλύτερη τη μεσαία στήλη.', '<p>\r\n<style type="text/css">\r\n/* Client-specific Styles */\r\n#outlook a{padding:0;} /* Force Outlook to provide a "view in browser" button. */\r\nbody{width:100% !important;} .ReadMsgBody{width:100%;} .ExternalClass{width:100%;} /* Force Hotmail to display emails at full width */\r\nbody{-webkit-text-size-adjust:none;} /* Prevent Webkit platforms from changing default text sizes. */\r\n\r\n/* Reset Styles */\r\nbody{margin:0; padding:0;}\r\nimg{border:0; height:auto; line-height:100%; outline:none; text-decoration:none;}\r\ntable td{border-collapse:collapse;}\r\n#backgroundTable{height:100% !important; margin:0; padding:0; width:100% !important;}\r\n\r\n/* Template Styles */\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: COMMON PAGE ELEMENTS /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Page\r\n* @section background color\r\n* @tip Set the background color for your email. You may want to choose one that matches your company''s branding.\r\n* @theme page\r\n*/\r\nbody, #backgroundTable{\r\n/*@editable*/ background-color:#FAFAFA;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section email border\r\n* @tip Set the border for your email.\r\n*/\r\n#templateContainer{\r\n/*@editable*/ border: 1px solid #DDDDDD;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 1\r\n* @tip Set the styling for all first-level headings in your emails. These should be the largest of your headings.\r\n* @style heading 1\r\n*/\r\nh1, .h1{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:34px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 2\r\n* @tip Set the styling for all second-level headings in your emails.\r\n* @style heading 2\r\n*/\r\nh2, .h2{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:30px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 3\r\n* @tip Set the styling for all third-level headings in your emails.\r\n* @style heading 3\r\n*/\r\nh3, .h3{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:26px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 4\r\n* @tip Set the styling for all fourth-level headings in your emails. These should be the smallest of your headings.\r\n* @style heading 4\r\n*/\r\nh4, .h4{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:22px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: PREHEADER /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Header\r\n* @section preheader style\r\n* @tip Set the background color for your email''s preheader area.\r\n* @theme page\r\n*/\r\n#templatePreheader{\r\n/*@editable*/ background-color:#FAFAFA;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section preheader text\r\n* @tip Set the styling for your email''s preheader text. Choose a size and color that is easy to read.\r\n*/\r\n.preheaderContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:10px;\r\n/*@editable*/ line-height:100%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section preheader link\r\n* @tip Set the styling for your email''s preheader links. Choose a color that helps them stand out from your text.\r\n*/\r\n.preheaderContent div a:link, .preheaderContent div a:visited, /* Yahoo! Mail Override */ .preheaderContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: HEADER /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Header\r\n* @section header style\r\n* @tip Set the background color and border for your email''s header area.\r\n* @theme header\r\n*/\r\n#templateHeader{\r\n/*@editable*/ background-color:#FFFFFF;\r\n/*@editable*/ border-bottom:0;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section header text\r\n* @tip Set the styling for your email''s header text. Choose a size and color that is easy to read.\r\n*/\r\n.headerContent{\r\n/*@editable*/ color:#202020;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:34px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\n/*@editable*/ padding:0;\r\n/*@editable*/ text-align:center;\r\n/*@editable*/ vertical-align:middle;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section header link\r\n* @tip Set the styling for your email''s header links. Choose a color that helps them stand out from your text.\r\n*/\r\n.headerContent a:link, .headerContent a:visited, /* Yahoo! Mail Override */ .headerContent a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n#headerImage{\r\nheight:auto;\r\nmax-width:600px;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: MAIN BODY /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Body\r\n* @section body style\r\n* @tip Set the background color for your email''s body area.\r\n*/\r\n#templateContainer, .bodyContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Body\r\n* @section body text\r\n* @tip Set the styling for your email''s main content text. Choose a size and color that is easy to read.\r\n* @theme main\r\n*/\r\n.bodyContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:14px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Body\r\n* @section body link\r\n* @tip Set the styling for your email''s main content links. Choose a color that helps them stand out from your text.\r\n*/\r\n.bodyContent div a:link, .bodyContent div a:visited, /* Yahoo! Mail Override */ .bodyContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.bodyContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: COLUMNS; LEFT, CENTER, RIGHT /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Columns\r\n* @section left column text\r\n* @tip Set the styling for your email''s left column text. Choose a size and color that is easy to read.\r\n*/\r\n.leftColumnContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section left column text\r\n* @tip Set the styling for your email''s left column text. Choose a size and color that is easy to read.\r\n*/\r\n.leftColumnContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:12px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section left column link\r\n* @tip Set the styling for your email''s left column links. Choose a color that helps them stand out from your text.\r\n*/\r\n.leftColumnContent div a:link, .leftColumnContent div a:visited, /* Yahoo! Mail Override */ .leftColumnContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.leftColumnContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section center column text\r\n* @tip Set the styling for your email''s center column text. Choose a size and color that is easy to read.\r\n*/\r\n.centerColumnContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section center column text\r\n* @tip Set the styling for your email''s center column text. Choose a size and color that is easy to read.\r\n*/\r\n.centerColumnContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:14px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section center column link\r\n* @tip Set the styling for your email''s center column links. Choose a color that helps them stand out from your text.\r\n*/\r\n.centerColumnContent div a:link, .centerColumnContent div a:visited, /* Yahoo! Mail Override */ .centerColumnContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.centerColumnContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section right column text\r\n* @tip Set the styling for your email''s right column text. Choose a size and color that is easy to read.\r\n*/\r\n.rightColumnContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section right column text\r\n* @tip Set the styling for your email''s right column text. Choose a size and color that is easy to read.\r\n*/\r\n.rightColumnContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:12px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section right column link\r\n* @tip Set the styling for your email''s right column links. Choose a color that helps them stand out from your text.\r\n*/\r\n.rightColumnContent div a:link, .rightColumnContent div a:visited, /* Yahoo! Mail Override */ .rightColumnContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.rightColumnContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: FOOTER /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Footer\r\n* @section footer style\r\n* @tip Set the background color and top border for your email''s footer area.\r\n* @theme footer\r\n*/\r\n#templateFooter{\r\n/*@editable*/ background-color:#FFFFFF;\r\n/*@editable*/ border-top:0;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section footer text\r\n* @tip Set the styling for your email''s footer text. Choose a size and color that is easy to read.\r\n* @theme footer\r\n*/\r\n.footerContent div{\r\n/*@editable*/ color:#707070;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:12px;\r\n/*@editable*/ line-height:125%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section footer link\r\n* @tip Set the styling for your email''s footer links. Choose a color that helps them stand out from your text.\r\n*/\r\n.footerContent div a:link, .footerContent div a:visited, /* Yahoo! Mail Override */ .footerContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.footerContent img{\r\ndisplay:inline;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section social bar style\r\n* @tip Set the background color and border for your email''s footer social bar.\r\n* @theme footer\r\n*/\r\n#social{\r\n/*@editable*/ background-color:#FAFAFA;\r\n/*@editable*/ border:0;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section social bar style\r\n* @tip Set the background color and border for your email''s footer social bar.\r\n*/\r\n#social div{\r\n/*@editable*/ text-align:center;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section utility bar style\r\n* @tip Set the background color and border for your email''s footer utility bar.\r\n* @theme footer\r\n*/\r\n#utility{\r\n/*@editable*/ background-color:#FFFFFF;\r\n/*@editable*/ border:0;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section utility bar style\r\n* @tip Set the background color and border for your email''s footer utility bar.\r\n*/\r\n#utility div{\r\n/*@editable*/ text-align:center;\r\n}	</style>\r\n</p>\r\n<center>\r\n<table border="0" cellpadding="0" cellspacing="0" height="100%" id="backgroundTable" width="100%">\r\n<tbody>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Preheader \\\\ -->					<table border="0" cellpadding="10" cellspacing="0" id="templatePreheader" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="preheaderContent" valign="top">\r\n<!-- // Begin Module: Standard Preheader \\ -->									<table border="0" cellpadding="10" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<div>\r\nUse this area to offer a short teaser of your email''s content. Text here will show in the preview area of some email clients.</div>\r\n</td>\r\n<td valign="top" width="190">\r\n<div style="text-align: right;">\r\n{date}</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Standard Preheader \\ -->								</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Preheader \\\\ -->					<table border="0" cellpadding="0" cellspacing="0" id="templateContainer" width="600">\r\n<tbody>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Header \\\\ -->									<table border="0" cellpadding="0" cellspacing="0" id="templateHeader" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="headerContent">\r\n<!-- // Begin Module: Standard Header Image \\\\ -->													<img id="headerImage campaign-icon" src="images/newsletters/images/placeholder_600.gif" style="max-width:600px;" /> <!-- // End Module: Standard Header Image \\\\ --></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Header \\\\ -->								</td>\r\n</tr>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Body \\\\ -->									<table border="0" cellpadding="0" cellspacing="0" id="templateBody" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="bodyContent" colspan="3" valign="top">\r\n<!-- // Begin Module: Standard Content \\\\ -->													<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<div>\r\n<h1 class="h1">\r\nHeading 1</h1>\r\n<h2 class="h2">\r\nHeading 2</h2>\r\n<h3 class="h3">\r\nHeading 3</h3>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\nHi {name},<br />\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam semper leo sit amet tortor blandit, id dictum nisi condimentum. Nulla justo ligula, tristique et euismod ut, mollis vitae nisl. Pellentesque id lacinia arcu. Nunc mollis eros velit, ac hendrerit ipsum auctor eget. Maecenas id massa enim. Nullam sit amet mauris sodales, tincidunt lacus in, suscipit lectus. Maecenas ut semper purus, et mollis velit.<br />\r\n<br />\r\nIn rhoncus a velit id vulputate. Nulla accumsan est in nibh ullamcorper iaculis. Sed id convallis mi, eu commodo sapien. Phasellus hendrerit, tellus in tincidunt venenatis, est elit dictum nisi, in pretium mauris orci quis metus. Vivamus a nisl vitae sapien ultricies tempor tempus eu ligula. Fusce felis mi, accumsan bibendum est non, venenatis cursus elit. Nunc at scelerisque elit. Quisque sed sem lacinia, blandit arcu nec, vulputate ligula. Nulla interdum risus sodales metus bibendum fermentum.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Standard Content \\\\ -->												</td>\r\n</tr>\r\n<tr>\r\n<td class="leftColumnContent" valign="top" width="130">\r\n<!-- // Begin Module: Top Image with Content \\\\ -->													<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<img src="images/newsletters/images/placeholder_110.gif" style="max-width:110px;" />\r\n<div>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\n<strong>Repeatable content blocks:</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec iaculis, velit at semper placerat, tellus velit vehicula orci, a tristique lorem orci eu nisl. Sed et arcu quam. Donec varius arcu et ante convallis, quis laoreet lacus mattis.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Top Image with Content \\\\ -->												</td>\r\n<td class="centerColumnContent" valign="top" width="280">\r\n<!-- // Begin Module: Top Image with Content \\\\ -->													<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<img src="images/newsletters/images/placeholder_260.gif" style="max-width:260px;" />\r\n<div>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\n<strong>Repeatable content blocks:</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec iaculis, velit at semper placerat, tellus velit vehicula orci, a tristique lorem orci eu nisl. Sed et arcu quam. Donec varius arcu et ante convallis, quis laoreet lacus mattis.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Top Image with Content \\\\ -->												</td>\r\n<td class="rightColumnContent" valign="top" width="130">\r\n<!-- // Begin Module: Top Image with Content \\\\ -->													<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<img src="images/newsletters/images/placeholder_110.gif" style="max-width:110px;" />\r\n<div>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\n<strong>Repeatable content blocks:</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec iaculis, velit at semper placerat, tellus velit vehicula orci, a tristique lorem orci eu nisl. Sed et arcu quam. Donec varius arcu et ante convallis, quis laoreet lacus mattis.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Top Image with Content \\\\ -->												</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Body \\\\ -->								</td>\r\n</tr>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Footer \\\\ -->									<table border="0" cellpadding="10" cellspacing="0" id="templateFooter" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="footerContent" valign="top">\r\n<!-- // Begin Module: Standard Footer \\\\ -->													<table border="0" cellpadding="10" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td colspan="2" id="social" valign="middle">\r\n<div>\r\n&nbsp;<a href="http://www.twitter.com">follow on Twitter</a> | <a href="http://www.facebook.com">friend on Facebook</a></div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td valign="top" width="350">\r\n<div style="text-align: center;">\r\n<a href="http://www.yourcompany.com">www.yourcompany.com</a><br />\r\n<br />\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam semper leo sit amet tortor blandit, id dictum nisi condimentum. Nulla justo ligula, tristique et euismod ut, mollis vitae nisl.</div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan="2" id="utility" valign="middle">\r\n<div>\r\n{unsubscribe}</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Standard Footer \\\\ -->												</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Footer \\\\ -->								</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</center>\r\n', 'images/newsletters/thumbnails/3col-1-3-asym.jpg');
INSERT INTO `newsletter_templates` (`id`, `title`, `description`, `body`, `thumbnail`) VALUES(8, '3col-1-3-leftsidebar', 'Αριστερή πλάγια μπάρα και ένα κύριο άρθρο πλάτους στην κορυφή και ένα τρίστηλο με άρθρα από κάτω.', '<p>\r\n<style type="text/css">\r\n/* Client-specific Styles */\r\n#outlook a{padding:0;} /* Force Outlook to provide a "view in browser" button. */\r\nbody{width:100% !important;} .ReadMsgBody{width:100%;} .ExternalClass{width:100%;} /* Force Hotmail to display emails at full width */\r\nbody{-webkit-text-size-adjust:none;} /* Prevent Webkit platforms from changing default text sizes. */\r\n\r\n/* Reset Styles */\r\nbody{margin:0; padding:0;}\r\nimg{border:0; height:auto; line-height:100%; outline:none; text-decoration:none;}\r\ntable td{border-collapse:collapse;}\r\n#backgroundTable{height:100% !important; margin:0; padding:0; width:100% !important;}\r\n\r\n/* Template Styles */\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: COMMON PAGE ELEMENTS /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Page\r\n* @section background color\r\n* @tip Set the background color for your email. You may want to choose one that matches your company''s branding.\r\n* @theme page\r\n*/\r\nbody, #backgroundTable{\r\n/*@editable*/ background-color:#FAFAFA;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section email border\r\n* @tip Set the border for your email.\r\n*/\r\n#templateContainer{\r\n/*@editable*/ border: 1px solid #DDDDDD;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 1\r\n* @tip Set the styling for all first-level headings in your emails. These should be the largest of your headings.\r\n* @style heading 1\r\n*/\r\nh1, .h1{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:34px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 2\r\n* @tip Set the styling for all second-level headings in your emails.\r\n* @style heading 2\r\n*/\r\nh2, .h2{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:30px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 3\r\n* @tip Set the styling for all third-level headings in your emails.\r\n* @style heading 3\r\n*/\r\nh3, .h3{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:26px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 4\r\n* @tip Set the styling for all fourth-level headings in your emails. These should be the smallest of your headings.\r\n* @style heading 4\r\n*/\r\nh4, .h4{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:22px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: PREHEADER /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Header\r\n* @section preheader style\r\n* @tip Set the background color for your email''s preheader area.\r\n* @theme page\r\n*/\r\n#templatePreheader{\r\n/*@editable*/ background-color:#FAFAFA;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section preheader text\r\n* @tip Set the styling for your email''s preheader text. Choose a size and color that is easy to read.\r\n*/\r\n.preheaderContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:10px;\r\n/*@editable*/ line-height:100%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section preheader link\r\n* @tip Set the styling for your email''s preheader links. Choose a color that helps them stand out from your text.\r\n*/\r\n.preheaderContent div a:link, .preheaderContent div a:visited, /* Yahoo! Mail Override */ .preheaderContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: HEADER /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Header\r\n* @section header style\r\n* @tip Set the background color and border for your email''s header area.\r\n* @theme header\r\n*/\r\n#templateHeader{\r\n/*@editable*/ background-color:#FFFFFF;\r\n/*@editable*/ border-bottom:0;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section header text\r\n* @tip Set the styling for your email''s header text. Choose a size and color that is easy to read.\r\n*/\r\n.headerContent{\r\n/*@editable*/ color:#202020;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:34px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\n/*@editable*/ padding:0;\r\n/*@editable*/ text-align:center;\r\n/*@editable*/ vertical-align:middle;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section header link\r\n* @tip Set the styling for your email''s header links. Choose a color that helps them stand out from your text.\r\n*/\r\n.headerContent a:link, .headerContent a:visited, /* Yahoo! Mail Override */ .headerContent a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n#headerImage{\r\nheight:auto;\r\nmax-width:600px;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: MAIN BODY /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Body\r\n* @section body style\r\n* @tip Set the background color for your email''s body area.\r\n*/\r\n#templateContainer, .bodyContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Body\r\n* @section body text\r\n* @tip Set the styling for your email''s main content text. Choose a size and color that is easy to read.\r\n* @theme main\r\n*/\r\n.bodyContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:14px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Body\r\n* @section body link\r\n* @tip Set the styling for your email''s main content links. Choose a color that helps them stand out from your text.\r\n*/\r\n.bodyContent div a:link, .bodyContent div a:visited, /* Yahoo! Mail Override */ .bodyContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.bodyContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: SIDEBAR /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Sidebar\r\n* @section sidebar style\r\n* @tip Set the background color and border for your email''s sidebar area.\r\n*/\r\n#templateSidebar{\r\n/*@editable*/ background-color:#FFFFFF;\r\n/*@editable*/ border-right:0;\r\n}\r\n\r\n/**\r\n* @tab Sidebar\r\n* @section sidebar text\r\n* @tip Set the styling for your email''s sidebar text. Choose a size and color that is easy to read.\r\n*/\r\n.sidebarContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:12px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Sidebar\r\n* @section sidebar link\r\n* @tip Set the styling for your email''s sidebar links. Choose a color that helps them stand out from your text.\r\n*/\r\n.sidebarContent div a:link, .sidebarContent div a:visited, /* Yahoo! Mail Override */ .sidebarContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.sidebarContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: COLUMNS; LEFT, CENTER, RIGHT /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Columns\r\n* @section left column text\r\n* @tip Set the styling for your email''s left column text. Choose a size and color that is easy to read.\r\n*/\r\n.leftColumnContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section left column text\r\n* @tip Set the styling for your email''s left column text. Choose a size and color that is easy to read.\r\n*/\r\n.leftColumnContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:14px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section left column link\r\n* @tip Set the styling for your email''s left column links. Choose a color that helps them stand out from your text.\r\n*/\r\n.leftColumnContent div a:link, .leftColumnContent div a:visited, /* Yahoo! Mail Override */ .leftColumnContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.leftColumnContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section center column text\r\n* @tip Set the styling for your email''s center column text. Choose a size and color that is easy to read.\r\n*/\r\n.centerColumnContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section center column text\r\n* @tip Set the styling for your email''s center column text. Choose a size and color that is easy to read.\r\n*/\r\n.centerColumnContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:14px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section center column link\r\n* @tip Set the styling for your email''s center column links. Choose a color that helps them stand out from your text.\r\n*/\r\n.centerColumnContent div a:link, .centerColumnContent div a:visited, /* Yahoo! Mail Override */ .centerColumnContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.centerColumnContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section right column text\r\n* @tip Set the styling for your email''s right column text. Choose a size and color that is easy to read.\r\n*/\r\n.rightColumnContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section right column text\r\n* @tip Set the styling for your email''s right column text. Choose a size and color that is easy to read.\r\n*/\r\n.rightColumnContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:14px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section right column link\r\n* @tip Set the styling for your email''s right column links. Choose a color that helps them stand out from your text.\r\n*/\r\n.rightColumnContent div a:link, .rightColumnContent div a:visited, /* Yahoo! Mail Override */ .rightColumnContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.rightColumnContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: FOOTER /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Footer\r\n* @section footer style\r\n* @tip Set the background color and top border for your email''s footer area.\r\n* @theme footer\r\n*/\r\n#templateFooter{\r\n/*@editable*/ background-color:#FFFFFF;\r\n/*@editable*/ border-top:0;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section footer text\r\n* @tip Set the styling for your email''s footer text. Choose a size and color that is easy to read.\r\n* @theme footer\r\n*/\r\n.footerContent div{\r\n/*@editable*/ color:#707070;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:12px;\r\n/*@editable*/ line-height:125%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section footer link\r\n* @tip Set the styling for your email''s footer links. Choose a color that helps them stand out from your text.\r\n*/\r\n.footerContent div a:link, .footerContent div a:visited, /* Yahoo! Mail Override */ .footerContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.footerContent img{\r\ndisplay:inline;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section social bar style\r\n* @tip Set the background color and border for your email''s footer social bar.\r\n* @theme footer\r\n*/\r\n#social{\r\n/*@editable*/ background-color:#FAFAFA;\r\n/*@editable*/ border:0;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section social bar style\r\n* @tip Set the background color and border for your email''s footer social bar.\r\n*/\r\n#social div{\r\n/*@editable*/ text-align:center;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section utility bar style\r\n* @tip Set the background color and border for your email''s footer utility bar.\r\n* @theme footer\r\n*/\r\n#utility{\r\n/*@editable*/ background-color:#FFFFFF;\r\n/*@editable*/ border:0;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section utility bar style\r\n* @tip Set the background color and border for your email''s footer utility bar.\r\n*/\r\n#utility div{\r\n/*@editable*/ text-align:center;\r\n}	</style>\r\n</p>\r\n<center>\r\n<table border="0" cellpadding="0" cellspacing="0" height="100%" id="backgroundTable" width="100%">\r\n<tbody>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Preheader \\\\ -->					<table border="0" cellpadding="10" cellspacing="0" id="templatePreheader" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="preheaderContent" valign="top">\r\n<!-- // Begin Module: Standard Preheader \\ -->									<table border="0" cellpadding="10" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<div>\r\nUse this area to offer a short teaser of your email''s content. Text here will show in the preview area of some email clients.</div>\r\n</td>\r\n<td valign="top" width="190">\r\n<div style="text-align: right;">\r\n{date}</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Standard Preheader \\ -->								</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Preheader \\\\ -->					<table border="0" cellpadding="0" cellspacing="0" id="templateContainer" width="600">\r\n<tbody>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Header \\\\ -->									<table border="0" cellpadding="0" cellspacing="0" id="templateHeader" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="headerContent">\r\n<!-- // Begin Module: Standard Header Image \\\\ -->													<img id="headerImage campaign-icon" src="images/newsletters/images/placeholder_600.gif" style="max-width:600px;" /> <!-- // End Module: Standard Header Image \\\\ --></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Header \\\\ -->								</td>\r\n</tr>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Body \\\\ -->									<table border="0" cellpadding="0" cellspacing="0" id="templateBody" width="600">\r\n<tbody>\r\n<tr>\r\n<!-- // Begin Sidebar \\\\  -->												<td id="templateSidebar" valign="top" width="200">\r\n<table border="0" cellpadding="0" cellspacing="0" width="200">\r\n<tbody>\r\n<tr>\r\n<td class="sidebarContent" valign="top">\r\n<!-- // Begin Module: Social Block with Icons \\\\ -->																	<table border="0" cellpadding="0" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td style="padding-top:10px; padding-right:20px; padding-left:20px;" valign="top">\r\n<table border="0" cellpadding="0" cellspacing="4">\r\n<tbody>\r\n<tr>\r\n<td align="left" valign="middle" width="16">\r\n<img src="images/newsletters/images/icon_facebook.png" style="margin:0 !important;" /></td>\r\n<td align="left" valign="top">\r\n<div>\r\n<a href="http://www.facebook.com">Friend on Facebook</a></div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td align="left" valign="middle" width="16">\r\n<img src="images/newsletters/images/icon_twitter.png" style="margin:0 !important;" /></td>\r\n<td align="left" valign="top">\r\n<div>\r\n<a href="http://www.twitter.com">Follow on Twitter</a></div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Social Block with Icons \\\\ --><!-- // Begin Module: Top Image with Content \\\\ -->																	<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<img src="images/newsletters/images/placeholder_160.gif" style="max-width:160px;" />\r\n<div>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\n<strong>Repeatable content blocks:</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec iaculis, velit at semper placerat, tellus velit vehicula orci, a tristique lorem orci eu nisl. Sed et arcu quam. Donec varius arcu et ante convallis, quis laoreet lacus mattis.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Top Image with Content \\\\ -->																</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<!-- // End Sidebar \\\\ -->												<td valign="top">\r\n<table border="0" cellpadding="0" cellspacing="0">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<table border="0" cellpadding="0" cellspacing="0">\r\n<tbody>\r\n<tr>\r\n<td class="bodyContent" valign="top">\r\n<!-- // Begin Module: Standard Content \\\\ -->																					<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<div>\r\n<h1 class="h1">\r\nHeading 1</h1>\r\n<h2 class="h2">\r\nHeading 2</h2>\r\n<h3 class="h3">\r\nHeading 3</h3>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\nHi {name},<br />\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam semper leo sit amet tortor blandit, id dictum nisi condimentum. Nulla justo ligula, tristique et euismod ut, mollis vitae nisl. Pellentesque id lacinia arcu. Nunc mollis eros velit, ac hendrerit ipsum auctor eget. Maecenas id massa enim. Nullam sit amet mauris sodales, tincidunt lacus in, suscipit lectus. Maecenas ut semper purus, et mollis velit.<br />\r\n<br />\r\n<br />\r\nIn rhoncus a velit id vulputate. Nulla accumsan est in nibh ullamcorper iaculis. Sed id convallis mi, eu commodo sapien. Phasellus hendrerit, tellus in tincidunt venenatis, est elit dictum nisi, in pretium mauris orci quis metus. Vivamus a nisl vitae sapien ultricies tempor tempus eu ligula. Fusce felis mi, accumsan bibendum est non, venenatis cursus elit. Nunc at scelerisque elit. Quisque sed sem lacinia, blandit arcu nec, vulputate ligula. Nulla interdum risus sodales metus bibendum fermentum.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Standard Content \\\\ -->																				</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan="2" valign="top" width="600">\r\n<table border="0" cellpadding="0" cellspacing="0" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="leftColumnContent" valign="top" width="180">\r\n<!-- // Begin Module: Top Image with Content \\\\ -->																	<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<img src="images/newsletters/images/placeholder_160.gif" style="max-width:160px;" />\r\n<div>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\n<strong>Repeatable content blocks:</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec iaculis, velit at semper placerat, tellus velit vehicula orci, a tristique lorem orci eu nisl. Sed et arcu quam. Donec varius arcu et ante convallis, quis laoreet lacus mattis.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Top Image with Content \\\\ -->																</td>\r\n<td class="centerColumnContent" valign="top" width="180">\r\n<!-- // Begin Module: Top Image with Content \\\\ -->																	<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<img src="images/newsletters/images/placeholder_160.gif" style="max-width:160px;" />\r\n<div>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\n<strong>Repeatable content blocks:</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec iaculis, velit at semper placerat, tellus velit vehicula orci, a tristique lorem orci eu nisl. Sed et arcu quam. Donec varius arcu et ante convallis, quis laoreet lacus mattis.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Top Image with Content \\\\ -->																</td>\r\n<td class="rightColumnContent" valign="top" width="180">\r\n<!-- // Begin Module: Top Image with Content \\\\ -->																	<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<img src="images/newsletters/images/placeholder_160.gif" style="max-width:160px;" />\r\n<div>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\n<strong>Repeatable content blocks:</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec iaculis, velit at semper placerat, tellus velit vehicula orci, a tristique lorem orci eu nisl. Sed et arcu quam. Donec varius arcu et ante convallis, quis laoreet lacus mattis.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Top Image with Content \\\\ -->																</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Body \\\\ -->								</td>\r\n</tr>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Footer \\\\ -->									<table border="0" cellpadding="10" cellspacing="0" id="templateFooter" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="footerContent" valign="top">\r\n<!-- // Begin Module: Standard Footer \\\\ -->													<table border="0" cellpadding="10" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td colspan="2" id="social" valign="middle">\r\n<div>\r\n&nbsp;<a href="http://www.twitter.com">follow on Twitter</a> | <a href="http://www.facebook.com">friend on Facebook</a></div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td valign="top" width="350">\r\n<div style="text-align: center;">\r\n<a href="http://www.yourcompany.com">www.yourcompany.com</a><br />\r\n<br />\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam semper leo sit amet tortor blandit, id dictum nisi condimentum. Nulla justo ligula, tristique et euismod ut, mollis vitae nisl.</div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan="2" id="utility" valign="middle">\r\n<div>\r\n{unsubscribe}</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Standard Footer \\\\ -->												</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Footer \\\\ -->								</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</center>\r\n', 'images/newsletters/thumbnails/3col-1-3-leftsidebar.jpg');
INSERT INTO `newsletter_templates` (`id`, `title`, `description`, `body`, `thumbnail`) VALUES(9, '3col-1-3-rightsidebar', 'Δεξιά πλάγια μπάρα και ένα κύριο άρθρο πλάτους στην κορυφή και ένα τρίστηλο με άρθρα από κάτω.', '<p>\r\n<style type="text/css">\r\n/* Client-specific Styles */\r\n#outlook a{padding:0;} /* Force Outlook to provide a "view in browser" button. */\r\nbody{width:100% !important;} .ReadMsgBody{width:100%;} .ExternalClass{width:100%;} /* Force Hotmail to display emails at full width */\r\nbody{-webkit-text-size-adjust:none;} /* Prevent Webkit platforms from changing default text sizes. */\r\n\r\n/* Reset Styles */\r\nbody{margin:0; padding:0;}\r\nimg{border:0; height:auto; line-height:100%; outline:none; text-decoration:none;}\r\ntable td{border-collapse:collapse;}\r\n#backgroundTable{height:100% !important; margin:0; padding:0; width:100% !important;}\r\n\r\n/* Template Styles */\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: COMMON PAGE ELEMENTS /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Page\r\n* @section background color\r\n* @tip Set the background color for your email. You may want to choose one that matches your company''s branding.\r\n* @theme page\r\n*/\r\nbody, #backgroundTable{\r\n/*@editable*/ background-color:#FAFAFA;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section email border\r\n* @tip Set the border for your email.\r\n*/\r\n#templateContainer{\r\n/*@editable*/ border: 1px solid #DDDDDD;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 1\r\n* @tip Set the styling for all first-level headings in your emails. These should be the largest of your headings.\r\n* @style heading 1\r\n*/\r\nh1, .h1{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:34px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 2\r\n* @tip Set the styling for all second-level headings in your emails.\r\n* @style heading 2\r\n*/\r\nh2, .h2{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:30px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 3\r\n* @tip Set the styling for all third-level headings in your emails.\r\n* @style heading 3\r\n*/\r\nh3, .h3{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:26px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 4\r\n* @tip Set the styling for all fourth-level headings in your emails. These should be the smallest of your headings.\r\n* @style heading 4\r\n*/\r\nh4, .h4{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:22px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: PREHEADER /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Header\r\n* @section preheader style\r\n* @tip Set the background color for your email''s preheader area.\r\n* @theme page\r\n*/\r\n#templatePreheader{\r\n/*@editable*/ background-color:#FAFAFA;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section preheader text\r\n* @tip Set the styling for your email''s preheader text. Choose a size and color that is easy to read.\r\n*/\r\n.preheaderContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:10px;\r\n/*@editable*/ line-height:100%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section preheader link\r\n* @tip Set the styling for your email''s preheader links. Choose a color that helps them stand out from your text.\r\n*/\r\n.preheaderContent div a:link, .preheaderContent div a:visited, /* Yahoo! Mail Override */ .preheaderContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: HEADER /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Header\r\n* @section header style\r\n* @tip Set the background color and border for your email''s header area.\r\n* @theme header\r\n*/\r\n#templateHeader{\r\n/*@editable*/ background-color:#FFFFFF;\r\n/*@editable*/ border-bottom:0;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section header text\r\n* @tip Set the styling for your email''s header text. Choose a size and color that is easy to read.\r\n*/\r\n.headerContent{\r\n/*@editable*/ color:#202020;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:34px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\n/*@editable*/ padding:0;\r\n/*@editable*/ text-align:center;\r\n/*@editable*/ vertical-align:middle;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section header link\r\n* @tip Set the styling for your email''s header links. Choose a color that helps them stand out from your text.\r\n*/\r\n.headerContent a:link, .headerContent a:visited, /* Yahoo! Mail Override */ .headerContent a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n#headerImage{\r\nheight:auto;\r\nmax-width:600px;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: MAIN BODY /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Body\r\n* @section body style\r\n* @tip Set the background color for your email''s body area.\r\n*/\r\n#templateContainer, .bodyContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Body\r\n* @section body text\r\n* @tip Set the styling for your email''s main content text. Choose a size and color that is easy to read.\r\n* @theme main\r\n*/\r\n.bodyContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:14px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Body\r\n* @section body link\r\n* @tip Set the styling for your email''s main content links. Choose a color that helps them stand out from your text.\r\n*/\r\n.bodyContent div a:link, .bodyContent div a:visited, /* Yahoo! Mail Override */ .bodyContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.bodyContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: SIDEBAR /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Sidebar\r\n* @section sidebar style\r\n* @tip Set the background color and border for your email''s sidebar area.\r\n*/\r\n#templateSidebar{\r\n/*@editable*/ background-color:#FFFFFF;\r\n/*@editable*/ border-left:0;\r\n}\r\n\r\n/**\r\n* @tab Sidebar\r\n* @section sidebar text\r\n* @tip Set the styling for your email''s sidebar text. Choose a size and color that is easy to read.\r\n*/\r\n.sidebarContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:12px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Sidebar\r\n* @section sidebar link\r\n* @tip Set the styling for your email''s sidebar links. Choose a color that helps them stand out from your text.\r\n*/\r\n.sidebarContent div a:link, .sidebarContent div a:visited, /* Yahoo! Mail Override */ .sidebarContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.sidebarContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: COLUMNS; LEFT, CENTER, RIGHT /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Columns\r\n* @section left column text\r\n* @tip Set the styling for your email''s left column text. Choose a size and color that is easy to read.\r\n*/\r\n.leftColumnContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section left column text\r\n* @tip Set the styling for your email''s left column text. Choose a size and color that is easy to read.\r\n*/\r\n.leftColumnContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:14px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section left column link\r\n* @tip Set the styling for your email''s left column links. Choose a color that helps them stand out from your text.\r\n*/\r\n.leftColumnContent div a:link, .leftColumnContent div a:visited, /* Yahoo! Mail Override */ .leftColumnContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.leftColumnContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section center column text\r\n* @tip Set the styling for your email''s center column text. Choose a size and color that is easy to read.\r\n*/\r\n.centerColumnContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section center column text\r\n* @tip Set the styling for your email''s center column text. Choose a size and color that is easy to read.\r\n*/\r\n.centerColumnContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:14px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section center column link\r\n* @tip Set the styling for your email''s center column links. Choose a color that helps them stand out from your text.\r\n*/\r\n.centerColumnContent div a:link, .centerColumnContent div a:visited, /* Yahoo! Mail Override */ .centerColumnContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.centerColumnContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section right column text\r\n* @tip Set the styling for your email''s right column text. Choose a size and color that is easy to read.\r\n*/\r\n.rightColumnContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section right column text\r\n* @tip Set the styling for your email''s right column text. Choose a size and color that is easy to read.\r\n*/\r\n.rightColumnContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:14px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section right column link\r\n* @tip Set the styling for your email''s right column links. Choose a color that helps them stand out from your text.\r\n*/\r\n.rightColumnContent div a:link, .rightColumnContent div a:visited, /* Yahoo! Mail Override */ .rightColumnContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.rightColumnContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: FOOTER /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Footer\r\n* @section footer style\r\n* @tip Set the background color and top border for your email''s footer area.\r\n* @theme footer\r\n*/\r\n#templateFooter{\r\n/*@editable*/ background-color:#FFFFFF;\r\n/*@editable*/ border-top:0;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section footer text\r\n* @tip Set the styling for your email''s footer text. Choose a size and color that is easy to read.\r\n* @theme footer\r\n*/\r\n.footerContent div{\r\n/*@editable*/ color:#707070;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:12px;\r\n/*@editable*/ line-height:125%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section footer link\r\n* @tip Set the styling for your email''s footer links. Choose a color that helps them stand out from your text.\r\n*/\r\n.footerContent div a:link, .footerContent div a:visited, /* Yahoo! Mail Override */ .footerContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.footerContent img{\r\ndisplay:inline;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section social bar style\r\n* @tip Set the background color and border for your email''s footer social bar.\r\n* @theme footer\r\n*/\r\n#social{\r\n/*@editable*/ background-color:#FAFAFA;\r\n/*@editable*/ border:0;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section social bar style\r\n* @tip Set the background color and border for your email''s footer social bar.\r\n*/\r\n#social div{\r\n/*@editable*/ text-align:center;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section utility bar style\r\n* @tip Set the background color and border for your email''s footer utility bar.\r\n* @theme footer\r\n*/\r\n#utility{\r\n/*@editable*/ background-color:#FFFFFF;\r\n/*@editable*/ border:0;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section utility bar style\r\n* @tip Set the background color and border for your email''s footer utility bar.\r\n*/\r\n#utility div{\r\n/*@editable*/ text-align:center;\r\n}	</style>\r\n</p>\r\n<center>\r\n<table border="0" cellpadding="0" cellspacing="0" height="100%" id="backgroundTable" width="100%">\r\n<tbody>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Preheader \\\\ -->					<table border="0" cellpadding="10" cellspacing="0" id="templatePreheader" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="preheaderContent" valign="top">\r\n<!-- // Begin Module: Standard Preheader \\ -->									<table border="0" cellpadding="10" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<div>\r\nUse this area to offer a short teaser of your email''s content. Text here will show in the preview area of some email clients.</div>\r\n</td>\r\n<td valign="top" width="190">\r\n<div style="text-align: right;">\r\n{date}</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Standard Preheader \\ -->								</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Preheader \\\\ -->					<table border="0" cellpadding="0" cellspacing="0" id="templateContainer" width="600">\r\n<tbody>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Header \\\\ -->									<table border="0" cellpadding="0" cellspacing="0" id="templateHeader" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="headerContent">\r\n<!-- // Begin Module: Standard Header Image \\\\ -->													<img id="headerImage campaign-icon" src="images/newsletters/images/placeholder_600.gif" style="max-width:600px;" /> <!-- // End Module: Standard Header Image \\\\ --></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Header \\\\ -->								</td>\r\n</tr>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Body \\\\ -->									<table border="0" cellpadding="0" cellspacing="0" id="templateBody" width="600">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<table border="0" cellpadding="0" cellspacing="0" width="400">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<table border="0" cellpadding="0" cellspacing="0" width="400">\r\n<tbody>\r\n<tr>\r\n<td class="bodyContent" valign="top">\r\n<!-- // Begin Module: Standard Content \\\\ -->																					<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<div>\r\n<h1 class="h1">\r\nHeading 1</h1>\r\n<h2 class="h2">\r\nHeading 2</h2>\r\n<h3 class="h3">\r\nHeading 3</h3>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\nHi {name},<br />\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam semper leo sit amet tortor blandit, id dictum nisi condimentum. Nulla justo ligula, tristique et euismod ut, mollis vitae nisl. Pellentesque id lacinia arcu. Nunc mollis eros velit, ac hendrerit ipsum auctor eget. Maecenas id massa enim. Nullam sit amet mauris sodales, tincidunt lacus in, suscipit lectus. Maecenas ut semper purus, et mollis velit.<br />\r\n<br />\r\n<br />\r\nIn rhoncus a velit id vulputate. Nulla accumsan est in nibh ullamcorper iaculis. Sed id convallis mi, eu commodo sapien. Phasellus hendrerit, tellus in tincidunt venenatis, est elit dictum nisi, in pretium mauris orci quis metus. Vivamus a nisl vitae sapien ultricies tempor tempus eu ligula. Fusce felis mi, accumsan bibendum est non, venenatis cursus elit. Nunc at scelerisque elit. Quisque sed sem lacinia, blandit arcu nec, vulputate ligula. Nulla interdum risus sodales metus bibendum fermentum.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Standard Content \\\\ -->																				</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<!-- // Begin Sidebar \\\\  -->												<td id="templateSidebar" valign="top" width="200">\r\n<table border="0" cellpadding="0" cellspacing="0" width="200">\r\n<tbody>\r\n<tr>\r\n<td class="sidebarContent" valign="top">\r\n<!-- // Begin Module: Social Block with Icons \\\\ -->																	<table border="0" cellpadding="0" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td style="padding-top:10px; padding-right:20px; padding-left:20px;" valign="top">\r\n<table border="0" cellpadding="0" cellspacing="4">\r\n<tbody>\r\n<tr>\r\n<td align="left" valign="middle" width="16">\r\n<img src="images/newsletters/images/icon_facebook.png" style="margin:0 !important;" /></td>\r\n<td align="left" valign="top">\r\n<div>\r\n<a href="http://www.facebook.com">Friend on Facebook</a></div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td align="left" valign="middle" width="16">\r\n<img src="images/newsletters/images/icon_twitter.png" style="margin:0 !important;" /></td>\r\n<td align="left" valign="top">\r\n<div>\r\n<a href="http://www.twitter.com">Follow on Twitter</a></div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Social Block with Icons \\\\ --><!-- // Begin Module: Top Image with Content \\\\ -->																	<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<img src="images/newsletters/images/placeholder_160.gif" style="max-width:160px;" />\r\n<div>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\n<strong>Repeatable content blocks:</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec iaculis, velit at semper placerat, tellus velit vehicula orci, a tristique lorem orci eu nisl. Sed et arcu quam. Donec varius arcu et ante convallis, quis laoreet lacus mattis.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Top Image with Content \\\\ -->																</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<!-- // End Sidebar \\\\ -->											</tr>\r\n<tr>\r\n<td colspan="2" valign="top" width="600">\r\n<table border="0" cellpadding="0" cellspacing="0" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="leftColumnContent" valign="top" width="180">\r\n<!-- // Begin Module: Top Image with Content \\\\ -->																	<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<img src="images/newsletters/images/placeholder_160.gif" style="max-width:160px;" />\r\n<div>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\n<strong>Repeatable content blocks:</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec iaculis, velit at semper placerat, tellus velit vehicula orci, a tristique lorem orci eu nisl. Sed et arcu quam. Donec varius arcu et ante convallis, quis laoreet lacus mattis.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Top Image with Content \\\\ -->																</td>\r\n<td class="centerColumnContent" valign="top" width="180">\r\n<!-- // Begin Module: Top Image with Content \\\\ -->																	<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<img src="images/newsletters/images/placeholder_160.gif" style="max-width:160px;" />\r\n<div>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\n<strong>Repeatable content blocks:</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec iaculis, velit at semper placerat, tellus velit vehicula orci, a tristique lorem orci eu nisl. Sed et arcu quam. Donec varius arcu et ante convallis, quis laoreet lacus mattis.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Top Image with Content \\\\ -->																</td>\r\n<td class="rightColumnContent" valign="top" width="180">\r\n<!-- // Begin Module: Top Image with Content \\\\ -->																	<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<img src="images/newsletters/images/placeholder_160.gif" style="max-width:160px;" />\r\n<div>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\n<strong>Repeatable content blocks:</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec iaculis, velit at semper placerat, tellus velit vehicula orci, a tristique lorem orci eu nisl. Sed et arcu quam. Donec varius arcu et ante convallis, quis laoreet lacus mattis.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Top Image with Content \\\\ -->																</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Body \\\\ -->								</td>\r\n</tr>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Footer \\\\ -->									<table border="0" cellpadding="10" cellspacing="0" id="templateFooter" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="footerContent" valign="top">\r\n<!-- // Begin Module: Standard Footer \\\\ -->													<table border="0" cellpadding="10" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td colspan="2" id="social" valign="middle">\r\n<div>\r\n&nbsp;<a href="http://www.twitter.com">follow on Twitter</a> | <a href="http://www.facebook.com">friend on Facebook</a></div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td valign="top" width="350">\r\n<div style="text-align: center;">\r\n<a href="http://www.yourcompany.com">www.yourcompany.com</a><br />\r\n<br />\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam semper leo sit amet tortor blandit, id dictum nisi condimentum. Nulla justo ligula, tristique et euismod ut, mollis vitae nisl.</div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan="2" id="utility" valign="middle">\r\n<div>\r\n{unsubscribe}</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Standard Footer \\\\ -->												</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Footer \\\\ -->								</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</center>\r\n', 'images/newsletters/thumbnails/3col-1-3-rightsidebar.jpg');
INSERT INTO `newsletter_templates` (`id`, `title`, `description`, `body`, `thumbnail`) VALUES(10, '3col-3-1', 'Ένα τρίστηλο με άρθρα στην κορυφή και  ένα άρθρο πλήρους πλάτους από κάτω.', '<p>\r\n<style type="text/css">\r\n/* Client-specific Styles */\r\n#outlook a{padding:0;} /* Force Outlook to provide a "view in browser" button. */\r\nbody{width:100% !important;} .ReadMsgBody{width:100%;} .ExternalClass{width:100%;} /* Force Hotmail to display emails at full width */\r\nbody{-webkit-text-size-adjust:none;} /* Prevent Webkit platforms from changing default text sizes. */\r\n\r\n/* Reset Styles */\r\nbody{margin:0; padding:0;}\r\nimg{border:0; height:auto; line-height:100%; outline:none; text-decoration:none;}\r\ntable td{border-collapse:collapse;}\r\n#backgroundTable{height:100% !important; margin:0; padding:0; width:100% !important;}\r\n\r\n/* Template Styles */\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: COMMON PAGE ELEMENTS /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Page\r\n* @section background color\r\n* @tip Set the background color for your email. You may want to choose one that matches your company''s branding.\r\n* @theme page\r\n*/\r\nbody, #backgroundTable{\r\n/*@editable*/ background-color:#FAFAFA;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section email border\r\n* @tip Set the border for your email.\r\n*/\r\n#templateContainer{\r\n/*@editable*/ border: 1px solid #DDDDDD;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 1\r\n* @tip Set the styling for all first-level headings in your emails. These should be the largest of your headings.\r\n* @style heading 1\r\n*/\r\nh1, .h1{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:34px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 2\r\n* @tip Set the styling for all second-level headings in your emails.\r\n* @style heading 2\r\n*/\r\nh2, .h2{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:30px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 3\r\n* @tip Set the styling for all third-level headings in your emails.\r\n* @style heading 3\r\n*/\r\nh3, .h3{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:26px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 4\r\n* @tip Set the styling for all fourth-level headings in your emails. These should be the smallest of your headings.\r\n* @style heading 4\r\n*/\r\nh4, .h4{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:22px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: PREHEADER /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Header\r\n* @section preheader style\r\n* @tip Set the background color for your email''s preheader area.\r\n* @theme page\r\n*/\r\n#templatePreheader{\r\n/*@editable*/ background-color:#FAFAFA;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section preheader text\r\n* @tip Set the styling for your email''s preheader text. Choose a size and color that is easy to read.\r\n*/\r\n.preheaderContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:10px;\r\n/*@editable*/ line-height:100%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section preheader link\r\n* @tip Set the styling for your email''s preheader links. Choose a color that helps them stand out from your text.\r\n*/\r\n.preheaderContent div a:link, .preheaderContent div a:visited, /* Yahoo! Mail Override */ .preheaderContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: HEADER /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Header\r\n* @section header style\r\n* @tip Set the background color and border for your email''s header area.\r\n* @theme header\r\n*/\r\n#templateHeader{\r\n/*@editable*/ background-color:#FFFFFF;\r\n/*@editable*/ border-bottom:0;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section header text\r\n* @tip Set the styling for your email''s header text. Choose a size and color that is easy to read.\r\n*/\r\n.headerContent{\r\n/*@editable*/ color:#202020;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:34px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\n/*@editable*/ padding:0;\r\n/*@editable*/ text-align:center;\r\n/*@editable*/ vertical-align:middle;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section header link\r\n* @tip Set the styling for your email''s header links. Choose a color that helps them stand out from your text.\r\n*/\r\n.headerContent a:link, .headerContent a:visited, /* Yahoo! Mail Override */ .headerContent a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n#headerImage{\r\nheight:auto;\r\nmax-width:600px;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: COLUMNS; LEFT, CENTER, RIGHT /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Columns\r\n* @section left column text\r\n* @tip Set the styling for your email''s left column text. Choose a size and color that is easy to read.\r\n*/\r\n.leftColumnContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section left column text\r\n* @tip Set the styling for your email''s left column text. Choose a size and color that is easy to read.\r\n*/\r\n.leftColumnContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:14px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section left column link\r\n* @tip Set the styling for your email''s left column links. Choose a color that helps them stand out from your text.\r\n*/\r\n.leftColumnContent div a:link, .leftColumnContent div a:visited, /* Yahoo! Mail Override */ .leftColumnContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.leftColumnContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section center column text\r\n* @tip Set the styling for your email''s center column text. Choose a size and color that is easy to read.\r\n*/\r\n.centerColumnContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section center column text\r\n* @tip Set the styling for your email''s center column text. Choose a size and color that is easy to read.\r\n*/\r\n.centerColumnContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:14px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section center column link\r\n* @tip Set the styling for your email''s center column links. Choose a color that helps them stand out from your text.\r\n*/\r\n.centerColumnContent div a:link, .centerColumnContent div a:visited, /* Yahoo! Mail Override */ .centerColumnContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.centerColumnContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section right column text\r\n* @tip Set the styling for your email''s right column text. Choose a size and color that is easy to read.\r\n*/\r\n.rightColumnContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section right column text\r\n* @tip Set the styling for your email''s right column text. Choose a size and color that is easy to read.\r\n*/\r\n.rightColumnContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:14px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section right column link\r\n* @tip Set the styling for your email''s right column links. Choose a color that helps them stand out from your text.\r\n*/\r\n.rightColumnContent div a:link, .rightColumnContent div a:visited, /* Yahoo! Mail Override */ .rightColumnContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.rightColumnContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}			\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: MAIN BODY /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Body\r\n* @section body style\r\n* @tip Set the background color for your email''s body area.\r\n*/\r\n#templateContainer, .bodyContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Body\r\n* @section body text\r\n* @tip Set the styling for your email''s main content text. Choose a size and color that is easy to read.\r\n* @theme main\r\n*/\r\n.bodyContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:14px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Body\r\n* @section body link\r\n* @tip Set the styling for your email''s main content links. Choose a color that helps them stand out from your text.\r\n*/\r\n.bodyContent div a:link, .bodyContent div a:visited, /* Yahoo! Mail Override */ .bodyContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.bodyContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: FOOTER /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Footer\r\n* @section footer style\r\n* @tip Set the background color and top border for your email''s footer area.\r\n* @theme footer\r\n*/\r\n#templateFooter{\r\n/*@editable*/ background-color:#FFFFFF;\r\n/*@editable*/ border-top:0;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section footer text\r\n* @tip Set the styling for your email''s footer text. Choose a size and color that is easy to read.\r\n* @theme footer\r\n*/\r\n.footerContent div{\r\n/*@editable*/ color:#707070;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:12px;\r\n/*@editable*/ line-height:125%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section footer link\r\n* @tip Set the styling for your email''s footer links. Choose a color that helps them stand out from your text.\r\n*/\r\n.footerContent div a:link, .footerContent div a:visited, /* Yahoo! Mail Override */ .footerContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.footerContent img{\r\ndisplay:inline;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section social bar style\r\n* @tip Set the background color and border for your email''s footer social bar.\r\n* @theme footer\r\n*/\r\n#social{\r\n/*@editable*/ background-color:#FAFAFA;\r\n/*@editable*/ border:0;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section social bar style\r\n* @tip Set the background color and border for your email''s footer social bar.\r\n*/\r\n#social div{\r\n/*@editable*/ text-align:center;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section utility bar style\r\n* @tip Set the background color and border for your email''s footer utility bar.\r\n* @theme footer\r\n*/\r\n#utility{\r\n/*@editable*/ background-color:#FFFFFF;\r\n/*@editable*/ border:0;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section utility bar style\r\n* @tip Set the background color and border for your email''s footer utility bar.\r\n*/\r\n#utility div{\r\n/*@editable*/ text-align:center;\r\n}	</style>\r\n</p>\r\n<center>\r\n<table border="0" cellpadding="0" cellspacing="0" height="100%" id="backgroundTable" width="100%">\r\n<tbody>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Preheader \\\\ -->					<table border="0" cellpadding="10" cellspacing="0" id="templatePreheader" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="preheaderContent" valign="top">\r\n<!-- // Begin Module: Standard Preheader \\ -->									<table border="0" cellpadding="10" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<div>\r\nUse this area to offer a short teaser of your email''s content. Text here will show in the preview area of some email clients.</div>\r\n</td>\r\n<td valign="top" width="190">\r\n<div style="text-align: right;">\r\n{date}</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Standard Preheader \\ -->								</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Preheader \\\\ -->					<table border="0" cellpadding="0" cellspacing="0" id="templateContainer" width="600">\r\n<tbody>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Header \\\\ -->									<table border="0" cellpadding="0" cellspacing="0" id="templateHeader" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="headerContent">\r\n<!-- // Begin Module: Standard Header Image \\\\ -->													<img id="headerImage campaign-icon" src="images/newsletters/images/placeholder_600.gif" style="max-width:600px;" /> <!-- // End Module: Standard Header Image \\\\ --></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Header \\\\ -->								</td>\r\n</tr>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Body \\\\ -->									<table border="0" cellpadding="0" cellspacing="0" id="templateBody" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="leftColumnContent" valign="top" width="180">\r\n<!-- // Begin Module: Top Image with Content \\\\ -->													<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<img src="images/newsletters/images/placeholder_160.gif" style="max-width:160px;" />\r\n<div>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\n<strong>Repeatable content blocks:</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec iaculis, velit at semper placerat, tellus velit vehicula orci, a tristique lorem orci eu nisl. Sed et arcu quam. Donec varius arcu et ante convallis, quis laoreet lacus mattis.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Top Image with Content \\\\ -->												</td>\r\n<td class="centerColumnContent" valign="top" width="180">\r\n<!-- // Begin Module: Top Image with Content \\\\ -->													<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<img src="images/newsletters/images/placeholder_160.gif" style="max-width:160px;" />\r\n<div>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\n<strong>Repeatable content blocks:</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec iaculis, velit at semper placerat, tellus velit vehicula orci, a tristique lorem orci eu nisl. Sed et arcu quam. Donec varius arcu et ante convallis, quis laoreet lacus mattis.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Top Image with Content \\\\ -->												</td>\r\n<td class="rightColumnContent" valign="top" width="180">\r\n<!-- // Begin Module: Top Image with Content \\\\ -->													<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<img src="images/newsletters/images/placeholder_160.gif" style="max-width:160px;" />\r\n<div>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\n<strong>Repeatable content blocks:</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec iaculis, velit at semper placerat, tellus velit vehicula orci, a tristique lorem orci eu nisl. Sed et arcu quam. Donec varius arcu et ante convallis, quis laoreet lacus mattis.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Top Image with Content \\\\ -->												</td>\r\n</tr>\r\n<tr>\r\n<td class="bodyContent" colspan="3" valign="top">\r\n<!-- // Begin Module: Standard Content \\\\ -->													<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<div>\r\n<h1 class="h1">\r\nHeading 1</h1>\r\n<h2 class="h2">\r\nHeading 2</h2>\r\n<h3 class="h3">\r\nHeading 3</h3>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\nHi {name},<br />\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam semper leo sit amet tortor blandit, id dictum nisi condimentum. Nulla justo ligula, tristique et euismod ut, mollis vitae nisl. Pellentesque id lacinia arcu. Nunc mollis eros velit, ac hendrerit ipsum auctor eget. Maecenas id massa enim. Nullam sit amet mauris sodales, tincidunt lacus in, suscipit lectus. Maecenas ut semper purus, et mollis velit.<br />\r\n<br />\r\nIn rhoncus a velit id vulputate. Nulla accumsan est in nibh ullamcorper iaculis. Sed id convallis mi, eu commodo sapien. Phasellus hendrerit, tellus in tincidunt venenatis, est elit dictum nisi, in pretium mauris orci quis metus. Vivamus a nisl vitae sapien ultricies tempor tempus eu ligula. Fusce felis mi, accumsan bibendum est non, venenatis cursus elit. Nunc at scelerisque elit. Quisque sed sem lacinia, blandit arcu nec, vulputate ligula. Nulla interdum risus sodales metus bibendum fermentum.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Standard Content \\\\ -->												</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Body \\\\ -->								</td>\r\n</tr>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Footer \\\\ -->									<table border="0" cellpadding="10" cellspacing="0" id="templateFooter" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="footerContent" valign="top">\r\n<!-- // Begin Module: Standard Footer \\\\ -->													<table border="0" cellpadding="10" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td colspan="2" id="social" valign="middle">\r\n<div>\r\n&nbsp;<a href="http://www.twitter.com">follow on Twitter</a> | <a href="http://www.facebook.com">friend on Facebook</a></div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td valign="top" width="350">\r\n<div style="text-align: center;">\r\n<a href="http://www.yourcompany.com">www.yourcompany.com</a><br />\r\n<br />\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam semper leo sit amet tortor blandit, id dictum nisi condimentum. Nulla justo ligula, tristique et euismod ut, mollis vitae nisl.</div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan="2" id="utility" valign="middle">\r\n<div>\r\n{unsubscribe}</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Standard Footer \\\\ -->												</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Footer \\\\ -->								</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</center>\r\n', 'images/newsletters/thumbnails/3col-3-1.jpg');
INSERT INTO `newsletter_templates` (`id`, `title`, `description`, `body`, `thumbnail`) VALUES(11, '3col-3-1-asym', 'Ένα τρίστηλο με άρθρα από πάνω με μεγαλύτερη τη μεσαία στήλη και ένα άρθρο πλήρους πλάτους από κάτω.', '<p>\r\n<style type="text/css">\r\n/* Client-specific Styles */\r\n#outlook a{padding:0;} /* Force Outlook to provide a "view in browser" button. */\r\nbody{width:100% !important;} .ReadMsgBody{width:100%;} .ExternalClass{width:100%;} /* Force Hotmail to display emails at full width */\r\nbody{-webkit-text-size-adjust:none;} /* Prevent Webkit platforms from changing default text sizes. */\r\n\r\n/* Reset Styles */\r\nbody{margin:0; padding:0;}\r\nimg{border:0; height:auto; line-height:100%; outline:none; text-decoration:none;}\r\ntable td{border-collapse:collapse;}\r\n#backgroundTable{height:100% !important; margin:0; padding:0; width:100% !important;}\r\n\r\n/* Template Styles */\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: COMMON PAGE ELEMENTS /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Page\r\n* @section background color\r\n* @tip Set the background color for your email. You may want to choose one that matches your company''s branding.\r\n* @theme page\r\n*/\r\nbody, #backgroundTable{\r\n/*@editable*/ background-color:#FAFAFA;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section email border\r\n* @tip Set the border for your email.\r\n*/\r\n#templateContainer{\r\n/*@editable*/ border: 1px solid #DDDDDD;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 1\r\n* @tip Set the styling for all first-level headings in your emails. These should be the largest of your headings.\r\n* @style heading 1\r\n*/\r\nh1, .h1{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:34px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 2\r\n* @tip Set the styling for all second-level headings in your emails.\r\n* @style heading 2\r\n*/\r\nh2, .h2{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:30px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 3\r\n* @tip Set the styling for all third-level headings in your emails.\r\n* @style heading 3\r\n*/\r\nh3, .h3{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:26px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 4\r\n* @tip Set the styling for all fourth-level headings in your emails. These should be the smallest of your headings.\r\n* @style heading 4\r\n*/\r\nh4, .h4{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:22px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: PREHEADER /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Header\r\n* @section preheader style\r\n* @tip Set the background color for your email''s preheader area.\r\n* @theme page\r\n*/\r\n#templatePreheader{\r\n/*@editable*/ background-color:#FAFAFA;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section preheader text\r\n* @tip Set the styling for your email''s preheader text. Choose a size and color that is easy to read.\r\n*/\r\n.preheaderContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:10px;\r\n/*@editable*/ line-height:100%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section preheader link\r\n* @tip Set the styling for your email''s preheader links. Choose a color that helps them stand out from your text.\r\n*/\r\n.preheaderContent div a:link, .preheaderContent div a:visited, /* Yahoo! Mail Override */ .preheaderContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: HEADER /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Header\r\n* @section header style\r\n* @tip Set the background color and border for your email''s header area.\r\n* @theme header\r\n*/\r\n#templateHeader{\r\n/*@editable*/ background-color:#FFFFFF;\r\n/*@editable*/ border-bottom:0;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section header text\r\n* @tip Set the styling for your email''s header text. Choose a size and color that is easy to read.\r\n*/\r\n.headerContent{\r\n/*@editable*/ color:#202020;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:34px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\n/*@editable*/ padding:0;\r\n/*@editable*/ text-align:center;\r\n/*@editable*/ vertical-align:middle;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section header link\r\n* @tip Set the styling for your email''s header links. Choose a color that helps them stand out from your text.\r\n*/\r\n.headerContent a:link, .headerContent a:visited, /* Yahoo! Mail Override */ .headerContent a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n#headerImage{\r\nheight:auto;\r\nmax-width:600px;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: COLUMNS; LEFT, CENTER, RIGHT /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Columns\r\n* @section left column text\r\n* @tip Set the styling for your email''s left column text. Choose a size and color that is easy to read.\r\n*/\r\n.leftColumnContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section left column text\r\n* @tip Set the styling for your email''s left column text. Choose a size and color that is easy to read.\r\n*/\r\n.leftColumnContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:12px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section left column link\r\n* @tip Set the styling for your email''s left column links. Choose a color that helps them stand out from your text.\r\n*/\r\n.leftColumnContent div a:link, .leftColumnContent div a:visited, /* Yahoo! Mail Override */ .leftColumnContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.leftColumnContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section center column text\r\n* @tip Set the styling for your email''s center column text. Choose a size and color that is easy to read.\r\n*/\r\n.centerColumnContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section center column text\r\n* @tip Set the styling for your email''s center column text. Choose a size and color that is easy to read.\r\n*/\r\n.centerColumnContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:14px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section center column link\r\n* @tip Set the styling for your email''s center column links. Choose a color that helps them stand out from your text.\r\n*/\r\n.centerColumnContent div a:link, .centerColumnContent div a:visited, /* Yahoo! Mail Override */ .centerColumnContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.centerColumnContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section right column text\r\n* @tip Set the styling for your email''s right column text. Choose a size and color that is easy to read.\r\n*/\r\n.rightColumnContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section right column text\r\n* @tip Set the styling for your email''s right column text. Choose a size and color that is easy to read.\r\n*/\r\n.rightColumnContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:12px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section right column link\r\n* @tip Set the styling for your email''s right column links. Choose a color that helps them stand out from your text.\r\n*/\r\n.rightColumnContent div a:link, .rightColumnContent div a:visited, /* Yahoo! Mail Override */ .rightColumnContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.rightColumnContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: MAIN BODY /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Body\r\n* @section body style\r\n* @tip Set the background color for your email''s body area.\r\n*/\r\n#templateContainer, .bodyContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Body\r\n* @section body text\r\n* @tip Set the styling for your email''s main content text. Choose a size and color that is easy to read.\r\n* @theme main\r\n*/\r\n.bodyContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:14px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Body\r\n* @section body link\r\n* @tip Set the styling for your email''s main content links. Choose a color that helps them stand out from your text.\r\n*/\r\n.bodyContent div a:link, .bodyContent div a:visited, /* Yahoo! Mail Override */ .bodyContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.bodyContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: FOOTER /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Footer\r\n* @section footer style\r\n* @tip Set the background color and top border for your email''s footer area.\r\n* @theme footer\r\n*/\r\n#templateFooter{\r\n/*@editable*/ background-color:#FFFFFF;\r\n/*@editable*/ border-top:0;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section footer text\r\n* @tip Set the styling for your email''s footer text. Choose a size and color that is easy to read.\r\n* @theme footer\r\n*/\r\n.footerContent div{\r\n/*@editable*/ color:#707070;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:12px;\r\n/*@editable*/ line-height:125%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section footer link\r\n* @tip Set the styling for your email''s footer links. Choose a color that helps them stand out from your text.\r\n*/\r\n.footerContent div a:link, .footerContent div a:visited, /* Yahoo! Mail Override */ .footerContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.footerContent img{\r\ndisplay:inline;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section social bar style\r\n* @tip Set the background color and border for your email''s footer social bar.\r\n* @theme footer\r\n*/\r\n#social{\r\n/*@editable*/ background-color:#FAFAFA;\r\n/*@editable*/ border:0;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section social bar style\r\n* @tip Set the background color and border for your email''s footer social bar.\r\n*/\r\n#social div{\r\n/*@editable*/ text-align:center;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section utility bar style\r\n* @tip Set the background color and border for your email''s footer utility bar.\r\n* @theme footer\r\n*/\r\n#utility{\r\n/*@editable*/ background-color:#FFFFFF;\r\n/*@editable*/ border:0;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section utility bar style\r\n* @tip Set the background color and border for your email''s footer utility bar.\r\n*/\r\n#utility div{\r\n/*@editable*/ text-align:center;\r\n}	</style>\r\n</p>\r\n<center>\r\n<table border="0" cellpadding="0" cellspacing="0" height="100%" id="backgroundTable" width="100%">\r\n<tbody>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Preheader \\\\ -->					<table border="0" cellpadding="10" cellspacing="0" id="templatePreheader" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="preheaderContent" valign="top">\r\n<!-- // Begin Module: Standard Preheader \\ -->									<table border="0" cellpadding="10" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<div>\r\nUse this area to offer a short teaser of your email''s content. Text here will show in the preview area of some email clients.</div>\r\n</td>\r\n<td valign="top" width="190">\r\n<div style="text-align: right;">\r\n{date}</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Standard Preheader \\ -->								</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Preheader \\\\ -->					<table border="0" cellpadding="0" cellspacing="0" id="templateContainer" width="600">\r\n<tbody>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Header \\\\ -->									<table border="0" cellpadding="0" cellspacing="0" id="templateHeader" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="headerContent">\r\n<!-- // Begin Module: Standard Header Image \\\\ -->													<img id="headerImage campaign-icon" src="images/newsletters/images/placeholder_600.gif" style="max-width:600px;" /> <!-- // End Module: Standard Header Image \\\\ --></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Header \\\\ -->								</td>\r\n</tr>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Body \\\\ -->									<table border="0" cellpadding="0" cellspacing="0" id="templateBody" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="leftColumnContent" valign="top" width="130">\r\n<!-- // Begin Module: Top Image with Content \\\\ -->													<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<img src="images/newsletters/images/placeholder_110.gif" style="max-width:110px;" />\r\n<div>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\n<strong>Repeatable content blocks:</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec iaculis, velit at semper placerat, tellus velit vehicula orci, a tristique lorem orci eu nisl. Sed et arcu quam. Donec varius arcu et ante convallis, quis laoreet lacus mattis.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Top Image with Content \\\\ -->												</td>\r\n<td class="centerColumnContent" valign="top" width="280">\r\n<!-- // Begin Module: Top Image with Content \\\\ -->													<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<img src="images/newsletters/images/placeholder_260.gif" style="max-width:260px;" />\r\n<div>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\n<strong>Repeatable content blocks:</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec iaculis, velit at semper placerat, tellus velit vehicula orci, a tristique lorem orci eu nisl. Sed et arcu quam. Donec varius arcu et ante convallis, quis laoreet lacus mattis.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Top Image with Content \\\\ -->												</td>\r\n<td class="rightColumnContent" valign="top" width="130">\r\n<!-- // Begin Module: Top Image with Content \\\\ -->													<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<img src="images/newsletters/images/placeholder_110.gif" style="max-width:110px;" />\r\n<div>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\n<strong>Repeatable content blocks:</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec iaculis, velit at semper placerat, tellus velit vehicula orci, a tristique lorem orci eu nisl. Sed et arcu quam. Donec varius arcu et ante convallis, quis laoreet lacus mattis.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Top Image with Content \\\\ -->												</td>\r\n</tr>\r\n<tr>\r\n<td class="bodyContent" colspan="3" valign="top">\r\n<!-- // Begin Module: Standard Content \\\\ -->													<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<div>\r\n<h1 class="h1">\r\nHeading 1</h1>\r\n<h2 class="h2">\r\nHeading 2</h2>\r\n<h3 class="h3">\r\nHeading 3</h3>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\nHi {name},<br />\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam semper leo sit amet tortor blandit, id dictum nisi condimentum. Nulla justo ligula, tristique et euismod ut, mollis vitae nisl. Pellentesque id lacinia arcu. Nunc mollis eros velit, ac hendrerit ipsum auctor eget. Maecenas id massa enim. Nullam sit amet mauris sodales, tincidunt lacus in, suscipit lectus. Maecenas ut semper purus, et mollis velit.<br />\r\n<br />\r\nIn rhoncus a velit id vulputate. Nulla accumsan est in nibh ullamcorper iaculis. Sed id convallis mi, eu commodo sapien. Phasellus hendrerit, tellus in tincidunt venenatis, est elit dictum nisi, in pretium mauris orci quis metus. Vivamus a nisl vitae sapien ultricies tempor tempus eu ligula. Fusce felis mi, accumsan bibendum est non, venenatis cursus elit. Nunc at scelerisque elit. Quisque sed sem lacinia, blandit arcu nec, vulputate ligula. Nulla interdum risus sodales metus bibendum fermentum.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Standard Content \\\\ -->												</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Body \\\\ -->								</td>\r\n</tr>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Footer \\\\ -->									<table border="0" cellpadding="10" cellspacing="0" id="templateFooter" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="footerContent" valign="top">\r\n<!-- // Begin Module: Standard Footer \\\\ -->													<table border="0" cellpadding="10" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td colspan="2" id="social" valign="middle">\r\n<div>\r\n&nbsp;<a href="http://www.twitter.com">follow on Twitter</a> | <a href="http://www.facebook.com">friend on Facebook</a></div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td valign="top" width="350">\r\n<div style="text-align: center;">\r\n<a href="http://www.yourcompany.com">www.yourcompany.com</a><br />\r\n<br />\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam semper leo sit amet tortor blandit, id dictum nisi condimentum. Nulla justo ligula, tristique et euismod ut, mollis vitae nisl.</div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan="2" id="utility" valign="middle">\r\n<div>\r\n{unsubscribe}</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Standard Footer \\\\ -->												</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Footer \\\\ -->								</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</center>\r\n', 'images/newsletters/thumbnails/3col-3-1-asym.jpg');
INSERT INTO `newsletter_templates` (`id`, `title`, `description`, `body`, `thumbnail`) VALUES(12, '3col-basic3column', 'Βασικό τριών στηλών template.', '<p>\r\n<style type="text/css">\r\n/* Client-specific Styles */\r\n#outlook a{padding:0;} /* Force Outlook to provide a "view in browser" button. */\r\nbody{width:100% !important;} .ReadMsgBody{width:100%;} .ExternalClass{width:100%;} /* Force Hotmail to display emails at full width */\r\nbody{-webkit-text-size-adjust:none;} /* Prevent Webkit platforms from changing default text sizes. */\r\n\r\n/* Reset Styles */\r\nbody{margin:0; padding:0;}\r\nimg{border:0; height:auto; line-height:100%; outline:none; text-decoration:none;}\r\ntable td{border-collapse:collapse;}\r\n#backgroundTable{height:100% !important; margin:0; padding:0; width:100% !important;}\r\n\r\n/* Template Styles */\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: COMMON PAGE ELEMENTS /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Page\r\n* @section background color\r\n* @tip Set the background color for your email. You may want to choose one that matches your company''s branding.\r\n* @theme page\r\n*/\r\nbody, #backgroundTable{\r\n/*@editable*/ background-color:#FAFAFA;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section email border\r\n* @tip Set the border for your email.\r\n*/\r\n#templateContainer{\r\n/*@editable*/ border: 1px solid #DDDDDD;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 1\r\n* @tip Set the styling for all first-level headings in your emails. These should be the largest of your headings.\r\n* @style heading 1\r\n*/\r\nh1, .h1{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:34px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 2\r\n* @tip Set the styling for all second-level headings in your emails.\r\n* @style heading 2\r\n*/\r\nh2, .h2{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:30px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 3\r\n* @tip Set the styling for all third-level headings in your emails.\r\n* @style heading 3\r\n*/\r\nh3, .h3{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:26px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 4\r\n* @tip Set the styling for all fourth-level headings in your emails. These should be the smallest of your headings.\r\n* @style heading 4\r\n*/\r\nh4, .h4{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:22px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: PREHEADER /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Header\r\n* @section preheader style\r\n* @tip Set the background color for your email''s preheader area.\r\n* @theme page\r\n*/\r\n#templatePreheader{\r\n/*@editable*/ background-color:#FAFAFA;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section preheader text\r\n* @tip Set the styling for your email''s preheader text. Choose a size and color that is easy to read.\r\n*/\r\n.preheaderContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:10px;\r\n/*@editable*/ line-height:100%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section preheader link\r\n* @tip Set the styling for your email''s preheader links. Choose a color that helps them stand out from your text.\r\n*/\r\n.preheaderContent div a:link, .preheaderContent div a:visited, /* Yahoo! Mail Override */ .preheaderContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: HEADER /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Header\r\n* @section header style\r\n* @tip Set the background color and border for your email''s header area.\r\n* @theme header\r\n*/\r\n#templateHeader{\r\n/*@editable*/ background-color:#FFFFFF;\r\n/*@editable*/ border-bottom:0;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section header text\r\n* @tip Set the styling for your email''s header text. Choose a size and color that is easy to read.\r\n*/\r\n.headerContent{\r\n/*@editable*/ color:#202020;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:34px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\n/*@editable*/ padding:0;\r\n/*@editable*/ text-align:center;\r\n/*@editable*/ vertical-align:middle;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section header link\r\n* @tip Set the styling for your email''s header links. Choose a color that helps them stand out from your text.\r\n*/\r\n.headerContent a:link, .headerContent a:visited, /* Yahoo! Mail Override */ .headerContent a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n#headerImage{\r\nheight:auto;\r\nmax-width:600px;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: COLUMNS; LEFT, CENTER, RIGHT /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Columns\r\n* @section left column text\r\n* @tip Set the styling for your email''s left column text. Choose a size and color that is easy to read.\r\n*/\r\n.leftColumnContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section left column text\r\n* @tip Set the styling for your email''s left column text. Choose a size and color that is easy to read.\r\n*/\r\n.leftColumnContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:14px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section left column link\r\n* @tip Set the styling for your email''s left column links. Choose a color that helps them stand out from your text.\r\n*/\r\n.leftColumnContent div a:link, .leftColumnContent div a:visited, /* Yahoo! Mail Override */ .leftColumnContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.leftColumnContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section center column text\r\n* @tip Set the styling for your email''s center column text. Choose a size and color that is easy to read.\r\n*/\r\n.centerColumnContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section center column text\r\n* @tip Set the styling for your email''s center column text. Choose a size and color that is easy to read.\r\n*/\r\n.centerColumnContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:14px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section center column link\r\n* @tip Set the styling for your email''s center column links. Choose a color that helps them stand out from your text.\r\n*/\r\n.centerColumnContent div a:link, .centerColumnContent div a:visited, /* Yahoo! Mail Override */ .centerColumnContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.centerColumnContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section right column text\r\n* @tip Set the styling for your email''s right column text. Choose a size and color that is easy to read.\r\n*/\r\n.rightColumnContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section right column text\r\n* @tip Set the styling for your email''s right column text. Choose a size and color that is easy to read.\r\n*/\r\n.rightColumnContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:14px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section right column link\r\n* @tip Set the styling for your email''s right column links. Choose a color that helps them stand out from your text.\r\n*/\r\n.rightColumnContent div a:link, .rightColumnContent div a:visited, /* Yahoo! Mail Override */ .rightColumnContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.rightColumnContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: FOOTER /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Footer\r\n* @section footer style\r\n* @tip Set the background color and top border for your email''s footer area.\r\n* @theme footer\r\n*/\r\n#templateFooter{\r\n/*@editable*/ background-color:#FFFFFF;\r\n/*@editable*/ border-top:0;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section footer text\r\n* @tip Set the styling for your email''s footer text. Choose a size and color that is easy to read.\r\n* @theme footer\r\n*/\r\n.footerContent div{\r\n/*@editable*/ color:#707070;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:12px;\r\n/*@editable*/ line-height:125%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section footer link\r\n* @tip Set the styling for your email''s footer links. Choose a color that helps them stand out from your text.\r\n*/\r\n.footerContent div a:link, .footerContent div a:visited, /* Yahoo! Mail Override */ .footerContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.footerContent img{\r\ndisplay:inline;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section social bar style\r\n* @tip Set the background color and border for your email''s footer social bar.\r\n* @theme footer\r\n*/\r\n#social{\r\n/*@editable*/ background-color:#FAFAFA;\r\n/*@editable*/ border:0;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section social bar style\r\n* @tip Set the background color and border for your email''s footer social bar.\r\n*/\r\n#social div{\r\n/*@editable*/ text-align:center;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section utility bar style\r\n* @tip Set the background color and border for your email''s footer utility bar.\r\n* @theme footer\r\n*/\r\n#utility{\r\n/*@editable*/ background-color:#FFFFFF;\r\n/*@editable*/ border:0;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section utility bar style\r\n* @tip Set the background color and border for your email''s footer utility bar.\r\n*/\r\n#utility div{\r\n/*@editable*/ text-align:center;\r\n}\r\n\r\n#monkeyRewards img{\r\nmax-width:190px;\r\n}	</style>\r\n</p>\r\n<center>\r\n<table border="0" cellpadding="0" cellspacing="0" height="100%" id="backgroundTable" width="100%">\r\n<tbody>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Preheader \\\\ -->					<table border="0" cellpadding="10" cellspacing="0" id="templatePreheader" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="preheaderContent" valign="top">\r\n<!-- // Begin Module: Standard Preheader \\ -->									<table border="0" cellpadding="10" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<div>\r\nUse this area to offer a short teaser of your email''s content. Text here will show in the preview area of some email clients.</div>\r\n</td>\r\n<td valign="top" width="190">\r\n<div style="text-align: right;">\r\n{date}</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Standard Preheader \\ -->								</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Preheader \\\\ -->					<table border="0" cellpadding="0" cellspacing="0" id="templateContainer" width="600">\r\n<tbody>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Header \\\\ -->									<table border="0" cellpadding="0" cellspacing="0" id="templateHeader" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="headerContent">\r\n<!-- // Begin Module: Standard Header Image \\\\ -->													<img id="headerImage campaign-icon" src="images/newsletters/images/placeholder_600.gif" style="max-width:600px;" /> <!-- // End Module: Standard Header Image \\\\ --></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Header \\\\ -->								</td>\r\n</tr>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Body \\\\ -->									<table border="0" cellpadding="0" cellspacing="0" id="templateBody" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="leftColumnContent" valign="top" width="180">\r\n<!-- // Begin Module: Top Image with Content \\\\ -->													<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<img src="images/newsletters/images/placeholder_160.gif" style="max-width:160px;" />\r\n<div>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\n<strong>Repeatable content blocks:</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec iaculis, velit at semper placerat, tellus velit vehicula orci, a tristique lorem orci eu nisl. Sed et arcu quam. Donec varius arcu et ante convallis, quis laoreet lacus mattis.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Top Image with Content \\\\ -->												</td>\r\n<td class="centerColumnContent" valign="top" width="180">\r\n<!-- // Begin Module: Top Image with Content \\\\ -->													<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<img src="images/newsletters/images/placeholder_160.gif" style="max-width:160px;" />\r\n<div>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\n<strong>Repeatable content blocks:</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec iaculis, velit at semper placerat, tellus velit vehicula orci, a tristique lorem orci eu nisl. Sed et arcu quam. Donec varius arcu et ante convallis, quis laoreet lacus mattis.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Top Image with Content \\\\ -->												</td>\r\n<td class="rightColumnContent" valign="top" width="180">\r\n<!-- // Begin Module: Top Image with Content \\\\ -->													<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<img src="images/newsletters/images/placeholder_160.gif" style="max-width:160px;" />\r\n<div>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\n<strong>Repeatable content blocks:</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec iaculis, velit at semper placerat, tellus velit vehicula orci, a tristique lorem orci eu nisl. Sed et arcu quam. Donec varius arcu et ante convallis, quis laoreet lacus mattis.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Top Image with Content \\\\ -->												</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Body \\\\ -->								</td>\r\n</tr>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Footer \\\\ -->									<table border="0" cellpadding="10" cellspacing="0" id="templateFooter" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="footerContent" valign="top">\r\n<!-- // Begin Module: Standard Footer \\\\ -->													<table border="0" cellpadding="10" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td colspan="2" id="social" valign="middle">\r\n<div>\r\n&nbsp;<a href="http://www.twitter.com">follow on Twitter</a> | <a href="http://www.facebook.com">friend on Facebook</a></div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td valign="top" width="350">\r\n<div style="text-align: center;">\r\n<a href="http://www.yourcompany.com">www.yourcompany.com</a><br />\r\n<br />\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam semper leo sit amet tortor blandit, id dictum nisi condimentum. Nulla justo ligula, tristique et euismod ut, mollis vitae nisl.</div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan="2" id="utility" valign="middle">\r\n<div>\r\n{unsubscribe}</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Standard Footer \\\\ -->												</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Footer \\\\ -->								</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</center>\r\n', 'images/newsletters/thumbnails/3col-basic3column.jpg');
INSERT INTO `newsletter_templates` (`id`, `title`, `description`, `body`, `thumbnail`) VALUES(13, '3col-basic3column-asym', 'Βασικό τριών στηλών template με μεγαλύτερη τη μεσαία στήλη.', '<p>\r\n<style type="text/css">\r\n/* Client-specific Styles */\r\n#outlook a{padding:0;} /* Force Outlook to provide a "view in browser" button. */\r\nbody{width:100% !important;} .ReadMsgBody{width:100%;} .ExternalClass{width:100%;} /* Force Hotmail to display emails at full width */\r\nbody{-webkit-text-size-adjust:none;} /* Prevent Webkit platforms from changing default text sizes. */\r\n\r\n/* Reset Styles */\r\nbody{margin:0; padding:0;}\r\nimg{border:0; height:auto; line-height:100%; outline:none; text-decoration:none;}\r\ntable td{border-collapse:collapse;}\r\n#backgroundTable{height:100% !important; margin:0; padding:0; width:100% !important;}\r\n\r\n/* Template Styles */\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: COMMON PAGE ELEMENTS /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Page\r\n* @section background color\r\n* @tip Set the background color for your email. You may want to choose one that matches your company''s branding.\r\n* @theme page\r\n*/\r\nbody, #backgroundTable{\r\n/*@editable*/ background-color:#FAFAFA;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section email border\r\n* @tip Set the border for your email.\r\n*/\r\n#templateContainer{\r\n/*@editable*/ border: 1px solid #DDDDDD;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 1\r\n* @tip Set the styling for all first-level headings in your emails. These should be the largest of your headings.\r\n* @style heading 1\r\n*/\r\nh1, .h1{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:34px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 2\r\n* @tip Set the styling for all second-level headings in your emails.\r\n* @style heading 2\r\n*/\r\nh2, .h2{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:30px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 3\r\n* @tip Set the styling for all third-level headings in your emails.\r\n* @style heading 3\r\n*/\r\nh3, .h3{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:26px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 4\r\n* @tip Set the styling for all fourth-level headings in your emails. These should be the smallest of your headings.\r\n* @style heading 4\r\n*/\r\nh4, .h4{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:22px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: PREHEADER /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Header\r\n* @section preheader style\r\n* @tip Set the background color for your email''s preheader area.\r\n* @theme page\r\n*/\r\n#templatePreheader{\r\n/*@editable*/ background-color:#FAFAFA;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section preheader text\r\n* @tip Set the styling for your email''s preheader text. Choose a size and color that is easy to read.\r\n*/\r\n.preheaderContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:10px;\r\n/*@editable*/ line-height:100%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section preheader link\r\n* @tip Set the styling for your email''s preheader links. Choose a color that helps them stand out from your text.\r\n*/\r\n.preheaderContent div a:link, .preheaderContent div a:visited, /* Yahoo! Mail Override */ .preheaderContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: HEADER /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Header\r\n* @section header style\r\n* @tip Set the background color and border for your email''s header area.\r\n* @theme header\r\n*/\r\n#templateHeader{\r\n/*@editable*/ background-color:#FFFFFF;\r\n/*@editable*/ border-bottom:0;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section header text\r\n* @tip Set the styling for your email''s header text. Choose a size and color that is easy to read.\r\n*/\r\n.headerContent{\r\n/*@editable*/ color:#202020;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:34px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\n/*@editable*/ padding:0;\r\n/*@editable*/ text-align:center;\r\n/*@editable*/ vertical-align:middle;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section header link\r\n* @tip Set the styling for your email''s header links. Choose a color that helps them stand out from your text.\r\n*/\r\n.headerContent a:link, .headerContent a:visited, /* Yahoo! Mail Override */ .headerContent a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n#headerImage{\r\nheight:auto;\r\nmax-width:600px;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: COLUMNS; LEFT, CENTER, RIGHT /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Columns\r\n* @section left column text\r\n* @tip Set the styling for your email''s left column text. Choose a size and color that is easy to read.\r\n*/\r\n.leftColumnContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section left column text\r\n* @tip Set the styling for your email''s left column text. Choose a size and color that is easy to read.\r\n*/\r\n.leftColumnContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:14px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section left column link\r\n* @tip Set the styling for your email''s left column links. Choose a color that helps them stand out from your text.\r\n*/\r\n.leftColumnContent div a:link, .leftColumnContent div a:visited, /* Yahoo! Mail Override */ .leftColumnContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.leftColumnContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section center column text\r\n* @tip Set the styling for your email''s center column text. Choose a size and color that is easy to read.\r\n*/\r\n.centerColumnContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section center column text\r\n* @tip Set the styling for your email''s center column text. Choose a size and color that is easy to read.\r\n*/\r\n.centerColumnContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:14px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section center column link\r\n* @tip Set the styling for your email''s center column links. Choose a color that helps them stand out from your text.\r\n*/\r\n.centerColumnContent div a:link, .centerColumnContent div a:visited, /* Yahoo! Mail Override */ .centerColumnContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.centerColumnContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section right column text\r\n* @tip Set the styling for your email''s right column text. Choose a size and color that is easy to read.\r\n*/\r\n.rightColumnContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section right column text\r\n* @tip Set the styling for your email''s right column text. Choose a size and color that is easy to read.\r\n*/\r\n.rightColumnContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:14px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section right column link\r\n* @tip Set the styling for your email''s right column links. Choose a color that helps them stand out from your text.\r\n*/\r\n.rightColumnContent div a:link, .rightColumnContent div a:visited, /* Yahoo! Mail Override */ .rightColumnContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.rightColumnContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: FOOTER /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Footer\r\n* @section footer style\r\n* @tip Set the background color and top border for your email''s footer area.\r\n* @theme footer\r\n*/\r\n#templateFooter{\r\n/*@editable*/ background-color:#FFFFFF;\r\n/*@editable*/ border-top:0;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section footer text\r\n* @tip Set the styling for your email''s footer text. Choose a size and color that is easy to read.\r\n* @theme footer\r\n*/\r\n.footerContent div{\r\n/*@editable*/ color:#707070;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:12px;\r\n/*@editable*/ line-height:125%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section footer link\r\n* @tip Set the styling for your email''s footer links. Choose a color that helps them stand out from your text.\r\n*/\r\n.footerContent div a:link, .footerContent div a:visited, /* Yahoo! Mail Override */ .footerContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.footerContent img{\r\ndisplay:inline;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section social bar style\r\n* @tip Set the background color and border for your email''s footer social bar.\r\n* @theme footer\r\n*/\r\n#social{\r\n/*@editable*/ background-color:#FAFAFA;\r\n/*@editable*/ border:0;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section social bar style\r\n* @tip Set the background color and border for your email''s footer social bar.\r\n*/\r\n#social div{\r\n/*@editable*/ text-align:center;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section utility bar style\r\n* @tip Set the background color and border for your email''s footer utility bar.\r\n* @theme footer\r\n*/\r\n#utility{\r\n/*@editable*/ background-color:#FFFFFF;\r\n/*@editable*/ border:0;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section utility bar style\r\n* @tip Set the background color and border for your email''s footer utility bar.\r\n*/\r\n#utility div{\r\n/*@editable*/ text-align:center;\r\n}	</style>\r\n</p>\r\n<center>\r\n<table border="0" cellpadding="0" cellspacing="0" height="100%" id="backgroundTable" width="100%">\r\n<tbody>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Preheader \\\\ -->					<table border="0" cellpadding="10" cellspacing="0" id="templatePreheader" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="preheaderContent" valign="top">\r\n<!-- // Begin Module: Standard Preheader \\ -->									<table border="0" cellpadding="10" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<div>\r\nUse this area to offer a short teaser of your email''s content. Text here will show in the preview area of some email clients.</div>\r\n</td>\r\n<td valign="top" width="190">\r\n<div style="text-align: right;">\r\n{date}</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Standard Preheader \\ -->								</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Preheader \\\\ -->					<table border="0" cellpadding="0" cellspacing="0" id="templateContainer" width="600">\r\n<tbody>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Header \\\\ -->									<table border="0" cellpadding="0" cellspacing="0" id="templateHeader" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="headerContent">\r\n<!-- // Begin Module: Standard Header Image \\\\ -->													<img id="headerImage campaign-icon" src="images/newsletters/images/placeholder_600.gif" style="max-width:600px;" /> <!-- // End Module: Standard Header Image \\\\ --></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Header \\\\ -->								</td>\r\n</tr>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Body \\\\ -->									<table border="0" cellpadding="0" cellspacing="0" id="templateBody" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="leftColumnContent" valign="top" width="130">\r\n<!-- // Begin Module: Top Image with Content \\\\ -->													<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<img src="images/newsletters/images/placeholder_110.gif" style="max-width:110px;" />\r\n<div>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\n<strong>Repeatable content blocks:</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec iaculis, velit at semper placerat, tellus velit vehicula orci, a tristique lorem orci eu nisl. Sed et arcu quam. Donec varius arcu et ante convallis, quis laoreet lacus mattis.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Top Image with Content \\\\ -->												</td>\r\n<td class="centerColumnContent" valign="top" width="280">\r\n<!-- // Begin Module: Standard Content \\\\ -->													<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<div>\r\n<h1 class="h1">\r\nHeading 1</h1>\r\n<h2 class="h2">\r\nHeading 2</h2>\r\n<h3 class="h3">\r\nHeading 3</h3>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\nHi {name},<br />\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam semper leo sit amet tortor blandit, id dictum nisi condimentum. Nulla justo ligula, tristique et euismod ut, mollis vitae nisl. Pellentesque id lacinia arcu. Nunc mollis eros velit, ac hendrerit ipsum auctor eget. Maecenas id massa enim. Nullam sit amet mauris sodales, tincidunt lacus in, suscipit lectus. Maecenas ut semper purus, et mollis velit.<br />\r\n<br />\r\nIn rhoncus a velit id vulputate. Nulla accumsan est in nibh ullamcorper iaculis. Sed id convallis mi, eu commodo sapien. Phasellus hendrerit, tellus in tincidunt venenatis, est elit dictum nisi, in pretium mauris orci quis metus. Vivamus a nisl vitae sapien ultricies tempor tempus eu ligula. Fusce felis mi, accumsan bibendum est non, venenatis cursus elit. Nunc at scelerisque elit. Quisque sed sem lacinia, blandit arcu nec, vulputate ligula. Nulla interdum risus sodales metus bibendum fermentum.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Standard Content \\\\ -->												</td>\r\n<td class="rightColumnContent" valign="top" width="130">\r\n<!-- // Begin Module: Top Image with Content \\\\ -->													<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<img src="images/newsletters/images/placeholder_110.gif" style="max-width:110px;" />\r\n<div>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\n<strong>Repeatable content blocks:</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec iaculis, velit at semper placerat, tellus velit vehicula orci, a tristique lorem orci eu nisl. Sed et arcu quam. Donec varius arcu et ante convallis, quis laoreet lacus mattis.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Top Image with Content \\\\ -->												</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Body \\\\ -->								</td>\r\n</tr>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Footer \\\\ -->									<table border="0" cellpadding="10" cellspacing="0" id="templateFooter" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="footerContent" valign="top">\r\n<!-- // Begin Module: Standard Footer \\\\ -->													<table border="0" cellpadding="10" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td colspan="2" id="social" valign="middle">\r\n<div>\r\n&nbsp;<a href="http://www.twitter.com">follow on Twitter</a> | <a href="http://www.facebook.com">friend on Facebook</a></div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td valign="top" width="350">\r\n<div style="text-align: center;">\r\n<a href="http://www.yourcompany.com">www.yourcompany.com</a><br />\r\n<br />\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam semper leo sit amet tortor blandit, id dictum nisi condimentum. Nulla justo ligula, tristique et euismod ut, mollis vitae nisl.</div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan="2" id="utility" valign="middle">\r\n<div>\r\n{unsubscribe}</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Standard Footer \\\\ -->												</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Footer \\\\ -->								</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</center>\r\n', 'images/newsletters/thumbnails/3col-basic3column-asym.jpg');
INSERT INTO `newsletter_templates` (`id`, `title`, `description`, `body`, `thumbnail`) VALUES(14, 'fancy-1-2-3', 'Ένα κύριο άρθρο πλήρους πλάτους στην κορυφή, ένα δίστηλο άρθρων από κάτω και ένα τρίστηλο άρθρων στο τέλος.', '<p>\r\n<style type="text/css">\r\n/* Client-specific Styles */\r\n#outlook a{padding:0;} /* Force Outlook to provide a "view in browser" button. */\r\nbody{width:100% !important;} .ReadMsgBody{width:100%;} .ExternalClass{width:100%;} /* Force Hotmail to display emails at full width */\r\nbody{-webkit-text-size-adjust:none;} /* Prevent Webkit platforms from changing default text sizes. */\r\n\r\n/* Reset Styles */\r\nbody{margin:0; padding:0;}\r\nimg{border:0; height:auto; line-height:100%; outline:none; text-decoration:none;}\r\ntable td{border-collapse:collapse;}\r\n#backgroundTable{height:100% !important; margin:0; padding:0; width:100% !important;}\r\n\r\n/* Template Styles */\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: COMMON PAGE ELEMENTS /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Page\r\n* @section background color\r\n* @tip Set the background color for your email. You may want to choose one that matches your company''s branding.\r\n* @theme page\r\n*/\r\nbody, #backgroundTable{\r\n/*@editable*/ background-color:#FAFAFA;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section email border\r\n* @tip Set the border for your email.\r\n*/\r\n#templateContainer{\r\n/*@editable*/ border: 1px solid #DDDDDD;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 1\r\n* @tip Set the styling for all first-level headings in your emails. These should be the largest of your headings.\r\n* @style heading 1\r\n*/\r\nh1, .h1{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:34px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 2\r\n* @tip Set the styling for all second-level headings in your emails.\r\n* @style heading 2\r\n*/\r\nh2, .h2{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:30px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 3\r\n* @tip Set the styling for all third-level headings in your emails.\r\n* @style heading 3\r\n*/\r\nh3, .h3{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:26px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 4\r\n* @tip Set the styling for all fourth-level headings in your emails. These should be the smallest of your headings.\r\n* @style heading 4\r\n*/\r\nh4, .h4{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:22px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: PREHEADER /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Header\r\n* @section preheader style\r\n* @tip Set the background color for your email''s preheader area.\r\n* @theme page\r\n*/\r\n#templatePreheader{\r\n/*@editable*/ background-color:#FAFAFA;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section preheader text\r\n* @tip Set the styling for your email''s preheader text. Choose a size and color that is easy to read.\r\n*/\r\n.preheaderContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:10px;\r\n/*@editable*/ line-height:100%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section preheader link\r\n* @tip Set the styling for your email''s preheader links. Choose a color that helps them stand out from your text.\r\n*/\r\n.preheaderContent div a:link, .preheaderContent div a:visited, /* Yahoo! Mail Override */ .preheaderContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: HEADER /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Header\r\n* @section header style\r\n* @tip Set the background color and border for your email''s header area.\r\n* @theme header\r\n*/\r\n#templateHeader{\r\n/*@editable*/ background-color:#FFFFFF;\r\n/*@editable*/ border-bottom:0;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section header text\r\n* @tip Set the styling for your email''s header text. Choose a size and color that is easy to read.\r\n*/\r\n.headerContent{\r\n/*@editable*/ color:#202020;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:34px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\n/*@editable*/ padding:0;\r\n/*@editable*/ text-align:center;\r\n/*@editable*/ vertical-align:middle;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section header link\r\n* @tip Set the styling for your email''s header links. Choose a color that helps them stand out from your text.\r\n*/\r\n.headerContent a:link, .headerContent a:visited, /* Yahoo! Mail Override */ .headerContent a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n#headerImage{\r\nheight:auto;\r\nmax-width:600px !important;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: MAIN BODY /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Body\r\n* @section body style\r\n* @tip Set the background color for your email''s body area.\r\n*/\r\n#templateContainer, .bodyContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Body\r\n* @section body text\r\n* @tip Set the styling for your email''s main content text. Choose a size and color that is easy to read.\r\n* @theme main\r\n*/\r\n.bodyContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:14px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Body\r\n* @section body link\r\n* @tip Set the styling for your email''s main content links. Choose a color that helps them stand out from your text.\r\n*/\r\n.bodyContent div a:link, .bodyContent div a:visited, /* Yahoo! Mail Override */ .bodyContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.bodyContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: MIDDLE COLUMNS; LEFT, RIGHT /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Middle Columns\r\n* @section left column text\r\n* @tip Set the styling for your email''s left column text. Choose a size and color that is easy to read.\r\n*/\r\n.leftMidColumnContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Middle Columns\r\n* @section left column text\r\n* @tip Set the styling for your email''s left column text. Choose a size and color that is easy to read.\r\n*/\r\n.leftMidColumnContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:14px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Middle Columns\r\n* @section left column link\r\n* @tip Set the styling for your email''s left column links. Choose a color that helps them stand out from your text.\r\n*/\r\n.leftMidColumnContent div a:link, .leftMidColumnContent div a:visited, /* Yahoo! Mail Override */ .leftMidColumnContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.leftMidColumnContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/**\r\n* @tab Middle Columns\r\n* @section right column text\r\n* @tip Set the styling for your email''s right column text. Choose a size and color that is easy to read.\r\n*/\r\n.rightMidColumnContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Middle Columns\r\n* @section right column text\r\n* @tip Set the styling for your email''s right column text. Choose a size and color that is easy to read.\r\n*/\r\n.rightMidColumnContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:14px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Middle Columns\r\n* @section right column link\r\n* @tip Set the styling for your email''s right column links. Choose a color that helps them stand out from your text.\r\n*/\r\n.rightMidColumnContent div a:link, .rightMidColumnContent div a:visited, /* Yahoo! Mail Override */ .rightMidColumnContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.rightMidColumnContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: LOWER COLUMNS; LEFT, CENTER, RIGHT /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Lower Columns\r\n* @section left column text\r\n* @tip Set the styling for your email''s left column text. Choose a size and color that is easy to read.\r\n*/\r\n.leftLowerColumnContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Lower Columns\r\n* @section left column text\r\n* @tip Set the styling for your email''s left column text. Choose a size and color that is easy to read.\r\n*/\r\n.leftLowerColumnContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:14px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Lower Columns\r\n* @section left column link\r\n* @tip Set the styling for your email''s left column links. Choose a color that helps them stand out from your text.\r\n*/\r\n.leftLowerColumnContent div a:link, .leftLowerColumnContent div a:visited, /* Yahoo! Mail Override */ .leftLowerColumnContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.leftLowerColumnContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/**\r\n* @tab Lower Columns\r\n* @section center column text\r\n* @tip Set the styling for your email''s center column text. Choose a size and color that is easy to read.\r\n*/\r\n.centerLowerColumnContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Lower Columns\r\n* @section center column text\r\n* @tip Set the styling for your email''s center column text. Choose a size and color that is easy to read.\r\n*/\r\n.centerLowerColumnContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:14px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Lower Columns\r\n* @section center column link\r\n* @tip Set the styling for your email''s center column links. Choose a color that helps them stand out from your text.\r\n*/\r\n.centerLowerColumnContent div a:link, .centerLowerColumnContent div a:visited, /* Yahoo! Mail Override */ .centerLowerColumnContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.centerLowerColumnContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/**\r\n* @tab Lower Columns\r\n* @section right column text\r\n* @tip Set the styling for your email''s right column text. Choose a size and color that is easy to read.\r\n*/\r\n.rightLowerColumnContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Lower Columns\r\n* @section right column text\r\n* @tip Set the styling for your email''s right column text. Choose a size and color that is easy to read.\r\n*/\r\n.rightLowerColumnContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:14px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Lower Columns\r\n* @section right column link\r\n* @tip Set the styling for your email''s right column links. Choose a color that helps them stand out from your text.\r\n*/\r\n.rightLowerColumnContent div a:link, .rightLowerColumnContent div a:visited, /* Yahoo! Mail Override */ .rightLowerColumnContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.rightLowerColumnContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: FOOTER /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Footer\r\n* @section footer style\r\n* @tip Set the background color and top border for your email''s footer area.\r\n* @theme footer\r\n*/\r\n#templateFooter{\r\n/*@editable*/ background-color:#FFFFFF;\r\n/*@editable*/ border-top:0;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section footer text\r\n* @tip Set the styling for your email''s footer text. Choose a size and color that is easy to read.\r\n* @theme footer\r\n*/\r\n.footerContent div{\r\n/*@editable*/ color:#707070;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:12px;\r\n/*@editable*/ line-height:125%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section footer link\r\n* @tip Set the styling for your email''s footer links. Choose a color that helps them stand out from your text.\r\n*/\r\n.footerContent div a:link, .footerContent div a:visited, /* Yahoo! Mail Override */ .footerContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.footerContent img{\r\ndisplay:inline;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section social bar style\r\n* @tip Set the background color and border for your email''s footer social bar.\r\n* @theme footer\r\n*/\r\n#social{\r\n/*@editable*/ background-color:#FAFAFA;\r\n/*@editable*/ border:0;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section social bar style\r\n* @tip Set the background color and border for your email''s footer social bar.\r\n*/\r\n#social div{\r\n/*@editable*/ text-align:center;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section utility bar style\r\n* @tip Set the background color and border for your email''s footer utility bar.\r\n* @theme footer\r\n*/\r\n#utility{\r\n/*@editable*/ background-color:#FFFFFF;\r\n/*@editable*/ border:0;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section utility bar style\r\n* @tip Set the background color and border for your email''s footer utility bar.\r\n*/\r\n#utility div{\r\n/*@editable*/ text-align:center;\r\n}	</style>\r\n</p>\r\n<center>\r\n<table border="0" cellpadding="0" cellspacing="0" height="100%" id="backgroundTable" width="100%">\r\n<tbody>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Preheader \\\\ -->					<table border="0" cellpadding="10" cellspacing="0" id="templatePreheader" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="preheaderContent" valign="top">\r\n<!-- // Begin Module: Standard Preheader \\ -->									<table border="0" cellpadding="10" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<div>\r\nUse this area to offer a short teaser of your email''s content. Text here will show in the preview area of some email clients.</div>\r\n</td>\r\n<td valign="top" width="190">\r\n<div style="text-align: right;">\r\n{date}</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Standard Preheader \\ -->								</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Preheader \\\\ -->					<table border="0" cellpadding="0" cellspacing="0" id="templateContainer" width="600">\r\n<tbody>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Header \\\\ -->									<table border="0" cellpadding="0" cellspacing="0" id="templateHeader" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="headerContent">\r\n<!-- // Begin Module: Standard Header Image \\\\ -->													<img id="headerImage campaign-icon" src="images/newsletters/images/placeholder_600.gif" style="max-width:600px;" /> <!-- // End Module: Standard Header Image \\\\ --></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Header \\\\ -->								</td>\r\n</tr>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Body \\\\ -->									<table border="0" cellpadding="0" cellspacing="0" id="templateBody" width="600">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<table border="0" cellpadding="0" cellspacing="0" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="bodyContent" valign="top">\r\n<!-- // Begin Module: Standard Content \\\\ -->																	<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<div>\r\n<h1 class="h1">\r\nHeading 1</h1>\r\n<h2 class="h2">\r\nHeading 2</h2>\r\n<h3 class="h3">\r\nHeading 3</h3>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\nHi {name},<br />\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam semper leo sit amet tortor blandit, id dictum nisi condimentum. Nulla justo ligula, tristique et euismod ut, mollis vitae nisl. Pellentesque id lacinia arcu. Nunc mollis eros velit, ac hendrerit ipsum auctor eget. Maecenas id massa enim. Nullam sit amet mauris sodales, tincidunt lacus in, suscipit lectus. Maecenas ut semper purus, et mollis velit.<br />\r\n<br />\r\nIn rhoncus a velit id vulputate. Nulla accumsan est in nibh ullamcorper iaculis. Sed id convallis mi, eu commodo sapien. Phasellus hendrerit, tellus in tincidunt venenatis, est elit dictum nisi, in pretium mauris orci quis metus. Vivamus a nisl vitae sapien ultricies tempor tempus eu ligula. Fusce felis mi, accumsan bibendum est non, venenatis cursus elit. Nunc at scelerisque elit. Quisque sed sem lacinia, blandit arcu nec, vulputate ligula. Nulla interdum risus sodales metus bibendum fermentum.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Standard Content \\\\ -->																</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td valign="top">\r\n<table border="0" cellpadding="0" cellspacing="0" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="leftMidColumnContent" valign="top" width="280">\r\n<!-- // Begin Module: Top Image with Content \\\\ -->																	<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<img src="images/newsletters/images/placeholder_260.gif" style="max-width:260px;" />\r\n<div>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\n<strong>Repeatable content blocks:</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec iaculis, velit at semper placerat, tellus velit vehicula orci, a tristique lorem orci eu nisl. Sed et arcu quam. Donec varius arcu et ante convallis, quis laoreet lacus mattis.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Top Image with Content \\\\ -->																</td>\r\n<td class="rightMidColumnContent" valign="top" width="280">\r\n<!-- // Begin Module: Top Image with Content \\\\ -->																	<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<img src="images/newsletters/images/placeholder_260.gif" style="max-width:260px;" />\r\n<div>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\n<strong>Repeatable content blocks:</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec iaculis, velit at semper placerat, tellus velit vehicula orci, a tristique lorem orci eu nisl. Sed et arcu quam. Donec varius arcu et ante convallis, quis laoreet lacus mattis.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Top Image with Content \\\\ -->																</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td valign="top">\r\n<table border="0" cellpadding="0" cellspacing="0" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="leftLowerColumnContent" valign="top" width="180">\r\n<!-- // Begin Module: Top Image with Content \\\\ -->																	<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<img src="images/newsletters/images/placeholder_160.gif" style="max-width:160px;" />\r\n<div>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\n<strong>Repeatable content blocks:</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec iaculis, velit at semper placerat, tellus velit vehicula orci, a tristique lorem orci eu nisl. Sed et arcu quam. Donec varius arcu et ante convallis, quis laoreet lacus mattis.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Top Image with Content \\\\ -->																</td>\r\n<td class="centerLowerColumnContent" valign="top" width="180">\r\n<!-- // Begin Module: Top Image with Content \\\\ -->																	<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<img src="images/newsletters/images/placeholder_160.gif" style="max-width:160px;" />\r\n<div>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\n<strong>Repeatable content blocks:</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec iaculis, velit at semper placerat, tellus velit vehicula orci, a tristique lorem orci eu nisl. Sed et arcu quam. Donec varius arcu et ante convallis, quis laoreet lacus mattis.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Top Image with Content \\\\ -->																</td>\r\n<td class="rightLowerColumnContent" valign="top" width="180">\r\n<!-- // Begin Module: Top Image with Content \\\\ -->																	<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<img src="images/newsletters/images/placeholder_160.gif" style="max-width:160px;" />\r\n<div>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\n<strong>Repeatable content blocks:</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec iaculis, velit at semper placerat, tellus velit vehicula orci, a tristique lorem orci eu nisl. Sed et arcu quam. Donec varius arcu et ante convallis, quis laoreet lacus mattis.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Top Image with Content \\\\ -->																</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Body \\\\ -->								</td>\r\n</tr>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Footer \\\\ -->									<table border="0" cellpadding="10" cellspacing="0" id="templateFooter" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="footerContent" valign="top">\r\n<!-- // Begin Module: Standard Footer \\\\ -->													<table border="0" cellpadding="10" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td colspan="2" id="social" valign="middle">\r\n<div>\r\n&nbsp;<a href="http://www.twitter.com">follow on Twitter</a> | <a href="http://www.facebook.com">friend on Facebook</a></div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td valign="top" width="350">\r\n<div style="text-align: center;">\r\n<a href="http://www.yourcompany.com">www.yourcompany.com</a><br />\r\n<br />\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam semper leo sit amet tortor blandit, id dictum nisi condimentum. Nulla justo ligula, tristique et euismod ut, mollis vitae nisl.</div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan="2" id="utility" valign="middle">\r\n<div>\r\n{unsubscribe}</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Standard Footer \\\\ -->												</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Footer \\\\ -->								</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</center>\r\n', 'images/newsletters/thumbnails/fancy-1-2-3.jpg');
INSERT INTO `newsletter_templates` (`id`, `title`, `description`, `body`, `thumbnail`) VALUES(15, 'fancy-1-3-2', 'Ένα κύριο άρθρο πλήρους πλάτους στην κορυφή, ένα τρίστηλο άρθρων από κάτω και ένα δίστηλο άρθρων στο τέλος.', '<p>\r\n<style type="text/css">\r\n/* Client-specific Styles */\r\n#outlook a{padding:0;} /* Force Outlook to provide a "view in browser" button. */\r\nbody{width:100% !important;} .ReadMsgBody{width:100%;} .ExternalClass{width:100%;} /* Force Hotmail to display emails at full width */\r\nbody{-webkit-text-size-adjust:none;} /* Prevent Webkit platforms from changing default text sizes. */\r\n\r\n/* Reset Styles */\r\nbody{margin:0; padding:0;}\r\nimg{border:0; height:auto; line-height:100%; outline:none; text-decoration:none;}\r\ntable td{border-collapse:collapse;}\r\n#backgroundTable{height:100% !important; margin:0; padding:0; width:100% !important;}\r\n\r\n/* Template Styles */\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: COMMON PAGE ELEMENTS /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Page\r\n* @section background color\r\n* @tip Set the background color for your email. You may want to choose one that matches your company''s branding.\r\n* @theme page\r\n*/\r\nbody, #backgroundTable{\r\n/*@editable*/ background-color:#FAFAFA;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section email border\r\n* @tip Set the border for your email.\r\n*/\r\n#templateContainer{\r\n/*@editable*/ border: 1px solid #DDDDDD;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 1\r\n* @tip Set the styling for all first-level headings in your emails. These should be the largest of your headings.\r\n* @style heading 1\r\n*/\r\nh1, .h1{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:34px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 2\r\n* @tip Set the styling for all second-level headings in your emails.\r\n* @style heading 2\r\n*/\r\nh2, .h2{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:30px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 3\r\n* @tip Set the styling for all third-level headings in your emails.\r\n* @style heading 3\r\n*/\r\nh3, .h3{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:26px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 4\r\n* @tip Set the styling for all fourth-level headings in your emails. These should be the smallest of your headings.\r\n* @style heading 4\r\n*/\r\nh4, .h4{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:22px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: PREHEADER /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Header\r\n* @section preheader style\r\n* @tip Set the background color for your email''s preheader area.\r\n* @theme page\r\n*/\r\n#templatePreheader{\r\n/*@editable*/ background-color:#FAFAFA;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section preheader text\r\n* @tip Set the styling for your email''s preheader text. Choose a size and color that is easy to read.\r\n*/\r\n.preheaderContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:10px;\r\n/*@editable*/ line-height:100%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section preheader link\r\n* @tip Set the styling for your email''s preheader links. Choose a color that helps them stand out from your text.\r\n*/\r\n.preheaderContent div a:link, .preheaderContent div a:visited, /* Yahoo! Mail Override */ .preheaderContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: HEADER /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Header\r\n* @section header style\r\n* @tip Set the background color and border for your email''s header area.\r\n* @theme header\r\n*/\r\n#templateHeader{\r\n/*@editable*/ background-color:#FFFFFF;\r\n/*@editable*/ border-bottom:0;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section header text\r\n* @tip Set the styling for your email''s header text. Choose a size and color that is easy to read.\r\n*/\r\n.headerContent{\r\n/*@editable*/ color:#202020;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:34px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\n/*@editable*/ padding:0;\r\n/*@editable*/ text-align:center;\r\n/*@editable*/ vertical-align:middle;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section header link\r\n* @tip Set the styling for your email''s header links. Choose a color that helps them stand out from your text.\r\n*/\r\n.headerContent a:link, .headerContent a:visited, /* Yahoo! Mail Override */ .headerContent a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n#headerImage{\r\nheight:auto;\r\nmax-width:600px;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: MAIN BODY /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Body\r\n* @section body style\r\n* @tip Set the background color for your email''s body area.\r\n*/\r\n#templateContainer, .bodyContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Body\r\n* @section body text\r\n* @tip Set the styling for your email''s main content text. Choose a size and color that is easy to read.\r\n* @theme main\r\n*/\r\n.bodyContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:14px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Body\r\n* @section body link\r\n* @tip Set the styling for your email''s main content links. Choose a color that helps them stand out from your text.\r\n*/\r\n.bodyContent div a:link, .bodyContent div a:visited, /* Yahoo! Mail Override */ .bodyContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.bodyContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: MIDDLE COLUMNS; LEFT, CENTER, RIGHT /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Middle Columns\r\n* @section left column text\r\n* @tip Set the styling for your email''s left column text. Choose a size and color that is easy to read.\r\n*/\r\n.leftMidColumnContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Middle Columns\r\n* @section left column text\r\n* @tip Set the styling for your email''s left column text. Choose a size and color that is easy to read.\r\n*/\r\n.leftMidColumnContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:14px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Middle Columns\r\n* @section left column link\r\n* @tip Set the styling for your email''s left column links. Choose a color that helps them stand out from your text.\r\n*/\r\n.leftMidColumnContent div a:link, .leftMidColumnContent div a:visited, /* Yahoo! Mail Override */ .leftMidColumnContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.leftMidColumnContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/**\r\n* @tab Middle Columns\r\n* @section center column text\r\n* @tip Set the styling for your email''s center column text. Choose a size and color that is easy to read.\r\n*/\r\n.centerMidColumnContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Middle Columns\r\n* @section center column text\r\n* @tip Set the styling for your email''s center column text. Choose a size and color that is easy to read.\r\n*/\r\n.centerMidColumnContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:14px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Middle Columns\r\n* @section center column link\r\n* @tip Set the styling for your email''s center column links. Choose a color that helps them stand out from your text.\r\n*/\r\n.centerMidColumnContent div a:link, .centerMidColumnContent div a:visited, /* Yahoo! Mail Override */ .centerMidColumnContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.centerMidColumnContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/**\r\n* @tab Middle Columns\r\n* @section right column text\r\n* @tip Set the styling for your email''s right column text. Choose a size and color that is easy to read.\r\n*/\r\n.rightMidColumnContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Middle Columns\r\n* @section right column text\r\n* @tip Set the styling for your email''s right column text. Choose a size and color that is easy to read.\r\n*/\r\n.rightMidColumnContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:14px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Middle Columns\r\n* @section right column link\r\n* @tip Set the styling for your email''s right column links. Choose a color that helps them stand out from your text.\r\n*/\r\n.rightMidColumnContent div a:link, .rightMidColumnContent div a:visited, /* Yahoo! Mail Override */ .rightMidColumnContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.rightMidColumnContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: LOWER COLUMNS; LEFT, RIGHT /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Lower Columns\r\n* @section left column text\r\n* @tip Set the styling for your email''s left column text. Choose a size and color that is easy to read.\r\n*/\r\n.leftLowerColumnContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Lower Columns\r\n* @section left column text\r\n* @tip Set the styling for your email''s left column text. Choose a size and color that is easy to read.\r\n*/\r\n.leftLowerColumnContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:14px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Lower Columns\r\n* @section left column link\r\n* @tip Set the styling for your email''s left column links. Choose a color that helps them stand out from your text.\r\n*/\r\n.leftLowerColumnContent div a:link, .leftLowerColumnContent div a:visited, /* Yahoo! Mail Override */ .leftLowerColumnContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.leftLowerColumnContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/**\r\n* @tab Lower Columns\r\n* @section right column text\r\n* @tip Set the styling for your email''s right column text. Choose a size and color that is easy to read.\r\n*/\r\n.rightLowerColumnContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Lower Columns\r\n* @section right column text\r\n* @tip Set the styling for your email''s right column text. Choose a size and color that is easy to read.\r\n*/\r\n.rightLowerColumnContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:14px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Lower Columns\r\n* @section right column link\r\n* @tip Set the styling for your email''s right column links. Choose a color that helps them stand out from your text.\r\n*/\r\n.rightLowerColumnContent div a:link, .rightLowerColumnContent div a:visited, /* Yahoo! Mail Override */ .rightLowerColumnContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.rightLowerColumnContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: FOOTER /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Footer\r\n* @section footer style\r\n* @tip Set the background color and top border for your email''s footer area.\r\n* @theme footer\r\n*/\r\n#templateFooter{\r\n/*@editable*/ background-color:#FFFFFF;\r\n/*@editable*/ border-top:0;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section footer text\r\n* @tip Set the styling for your email''s footer text. Choose a size and color that is easy to read.\r\n* @theme footer\r\n*/\r\n.footerContent div{\r\n/*@editable*/ color:#707070;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:12px;\r\n/*@editable*/ line-height:125%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section footer link\r\n* @tip Set the styling for your email''s footer links. Choose a color that helps them stand out from your text.\r\n*/\r\n.footerContent div a:link, .footerContent div a:visited, /* Yahoo! Mail Override */ .footerContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.footerContent img{\r\ndisplay:inline;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section social bar style\r\n* @tip Set the background color and border for your email''s footer social bar.\r\n* @theme footer\r\n*/\r\n#social{\r\n/*@editable*/ background-color:#FAFAFA;\r\n/*@editable*/ border:0;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section social bar style\r\n* @tip Set the background color and border for your email''s footer social bar.\r\n*/\r\n#social div{\r\n/*@editable*/ text-align:center;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section utility bar style\r\n* @tip Set the background color and border for your email''s footer utility bar.\r\n* @theme footer\r\n*/\r\n#utility{\r\n/*@editable*/ background-color:#FFFFFF;\r\n/*@editable*/ border:0;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section utility bar style\r\n* @tip Set the background color and border for your email''s footer utility bar.\r\n*/\r\n#utility div{\r\n/*@editable*/ text-align:center;\r\n}	</style>\r\n</p>\r\n<center>\r\n<table border="0" cellpadding="0" cellspacing="0" height="100%" id="backgroundTable" width="100%">\r\n<tbody>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Preheader \\\\ -->					<table border="0" cellpadding="10" cellspacing="0" id="templatePreheader" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="preheaderContent" valign="top">\r\n<!-- // Begin Module: Standard Preheader \\ -->									<table border="0" cellpadding="10" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<div>\r\nUse this area to offer a short teaser of your email''s content. Text here will show in the preview area of some email clients.</div>\r\n</td>\r\n<td valign="top" width="190">\r\n<div style="text-align: right;">\r\n{date}</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Standard Preheader \\ -->								</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Preheader \\\\ -->					<table border="0" cellpadding="0" cellspacing="0" id="templateContainer" width="600">\r\n<tbody>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Header \\\\ -->									<table border="0" cellpadding="0" cellspacing="0" id="templateHeader" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="headerContent">\r\n<!-- // Begin Module: Standard Header Image \\\\ -->													<img id="headerImage campaign-icon" src="images/newsletters/images/placeholder_600.gif" style="max-width:600px;" /> <!-- // End Module: Standard Header Image \\\\ --></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Header \\\\ -->								</td>\r\n</tr>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Body \\\\ -->									<table border="0" cellpadding="0" cellspacing="0" id="templateBody" width="600">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<table border="0" cellpadding="0" cellspacing="0" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="bodyContent" valign="top">\r\n<!-- // Begin Module: Standard Content \\\\ -->																	<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<div>\r\n<h1 class="h1">\r\nHeading 1</h1>\r\n<h2 class="h2">\r\nHeading 2</h2>\r\n<h3 class="h3">\r\nHeading 3</h3>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\nHi {name},<br />\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam semper leo sit amet tortor blandit, id dictum nisi condimentum. Nulla justo ligula, tristique et euismod ut, mollis vitae nisl. Pellentesque id lacinia arcu. Nunc mollis eros velit, ac hendrerit ipsum auctor eget. Maecenas id massa enim. Nullam sit amet mauris sodales, tincidunt lacus in, suscipit lectus. Maecenas ut semper purus, et mollis velit.<br />\r\n<br />\r\nIn rhoncus a velit id vulputate. Nulla accumsan est in nibh ullamcorper iaculis. Sed id convallis mi, eu commodo sapien. Phasellus hendrerit, tellus in tincidunt venenatis, est elit dictum nisi, in pretium mauris orci quis metus. Vivamus a nisl vitae sapien ultricies tempor tempus eu ligula. Fusce felis mi, accumsan bibendum est non, venenatis cursus elit. Nunc at scelerisque elit. Quisque sed sem lacinia, blandit arcu nec, vulputate ligula. Nulla interdum risus sodales metus bibendum fermentum.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Standard Content \\\\ -->																</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td valign="top">\r\n<table border="0" cellpadding="0" cellspacing="0" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="leftMidColumnContent" valign="top" width="180">\r\n<!-- // Begin Module: Top Image with Content \\\\ -->																	<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<img src="images/newsletters/images/placeholder_160.gif" style="max-width:160px;" />\r\n<div>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\n<strong>Repeatable content blocks:</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec iaculis, velit at semper placerat, tellus velit vehicula orci, a tristique lorem orci eu nisl. Sed et arcu quam. Donec varius arcu et ante convallis, quis laoreet lacus mattis.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Top Image with Content \\\\ -->																</td>\r\n<td class="centerMidColumnContent" valign="top" width="180">\r\n<!-- // Begin Module: Top Image with Content \\\\ -->																	<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<img src="images/newsletters/images/placeholder_160.gif" style="max-width:160px;" />\r\n<div>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\n<strong>Repeatable content blocks:</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec iaculis, velit at semper placerat, tellus velit vehicula orci, a tristique lorem orci eu nisl. Sed et arcu quam. Donec varius arcu et ante convallis, quis laoreet lacus mattis.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Top Image with Content \\\\ -->																</td>\r\n<td class="rightMidColumnContent" valign="top" width="180">\r\n<!-- // Begin Module: Top Image with Content \\\\ -->																	<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<img src="images/newsletters/images/placeholder_160.gif" style="max-width:160px;" />\r\n<div>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\n<strong>Repeatable content blocks:</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec iaculis, velit at semper placerat, tellus velit vehicula orci, a tristique lorem orci eu nisl. Sed et arcu quam. Donec varius arcu et ante convallis, quis laoreet lacus mattis.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Top Image with Content \\\\ -->																</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td valign="top">\r\n<table border="0" cellpadding="0" cellspacing="0" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="leftLowerColumnContent" valign="top" width="280">\r\n<!-- // Begin Module: Top Image with Content \\\\ -->																	<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<img src="images/newsletters/images/placeholder_260.gif" style="max-width:260px;" />\r\n<div>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\n<strong>Repeatable content blocks:</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec iaculis, velit at semper placerat, tellus velit vehicula orci, a tristique lorem orci eu nisl. Sed et arcu quam. Donec varius arcu et ante convallis, quis laoreet lacus mattis.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Top Image with Content \\\\ -->																</td>\r\n<td class="rightLowerColumnContent" valign="top" width="280">\r\n<!-- // Begin Module: Top Image with Content \\\\ -->																	<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<img src="images/newsletters/images/placeholder_260.gif" style="max-width:260px;" />\r\n<div>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\n<strong>Repeatable content blocks:</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec iaculis, velit at semper placerat, tellus velit vehicula orci, a tristique lorem orci eu nisl. Sed et arcu quam. Donec varius arcu et ante convallis, quis laoreet lacus mattis.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Top Image with Content \\\\ -->																</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Body \\\\ -->								</td>\r\n</tr>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Footer \\\\ -->									<table border="0" cellpadding="10" cellspacing="0" id="templateFooter" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="footerContent" valign="top">\r\n<!-- // Begin Module: Standard Footer \\\\ -->													<table border="0" cellpadding="10" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td colspan="2" id="social" valign="middle">\r\n<div>\r\n&nbsp;<a href="http://www.twitter.com">follow on Twitter</a> | <a href="http://www.facebook.com">friend on Facebook</a></div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td valign="top" width="350">\r\n<div style="text-align: center;">\r\n<a href="http://www.yourcompany.com">www.yourcompany.com</a><br />\r\n<br />\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam semper leo sit amet tortor blandit, id dictum nisi condimentum. Nulla justo ligula, tristique et euismod ut, mollis vitae nisl.</div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan="2" id="utility" valign="middle">\r\n<div>\r\n{unsubscribe}</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Standard Footer \\\\ -->												</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Footer \\\\ -->								</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</center>\r\n', 'images/newsletters/thumbnails/fancy-1-3-2.jpg');
INSERT INTO `newsletter_templates` (`id`, `title`, `description`, `body`, `thumbnail`) VALUES(16, 'fancy-1-50-25-25', 'Ένα κύριο άρθρο πλήρους πλάτους στην κορυφή και ένα τρίστηλο με άρθρα από κάτω με μεγαλύτερη την πρώτη στήλη.', '<p>\r\n<style type="text/css">\r\n/* Client-specific Styles */\r\n#outlook a{padding:0;} /* Force Outlook to provide a "view in browser" button. */\r\nbody{width:100% !important;} .ReadMsgBody{width:100%;} .ExternalClass{width:100%;} /* Force Hotmail to display emails at full width */\r\nbody{-webkit-text-size-adjust:none;} /* Prevent Webkit platforms from changing default text sizes. */\r\n\r\n/* Reset Styles */\r\nbody{margin:0; padding:0;}\r\nimg{border:0; height:auto; line-height:100%; outline:none; text-decoration:none;}\r\ntable td{border-collapse:collapse;}\r\n#backgroundTable{height:100% !important; margin:0; padding:0; width:100% !important;}\r\n\r\n/* Template Styles */\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: COMMON PAGE ELEMENTS /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Page\r\n* @section background color\r\n* @tip Set the background color for your email. You may want to choose one that matches your company''s branding.\r\n* @theme page\r\n*/\r\nbody, #backgroundTable{\r\n/*@editable*/ background-color:#FAFAFA;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section email border\r\n* @tip Set the border for your email.\r\n*/\r\n#templateContainer{\r\n/*@editable*/ border: 1px solid #DDDDDD;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 1\r\n* @tip Set the styling for all first-level headings in your emails. These should be the largest of your headings.\r\n* @style heading 1\r\n*/\r\nh1, .h1{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:34px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 2\r\n* @tip Set the styling for all second-level headings in your emails.\r\n* @style heading 2\r\n*/\r\nh2, .h2{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:30px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 3\r\n* @tip Set the styling for all third-level headings in your emails.\r\n* @style heading 3\r\n*/\r\nh3, .h3{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:26px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 4\r\n* @tip Set the styling for all fourth-level headings in your emails. These should be the smallest of your headings.\r\n* @style heading 4\r\n*/\r\nh4, .h4{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:22px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: PREHEADER /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Header\r\n* @section preheader style\r\n* @tip Set the background color for your email''s preheader area.\r\n* @theme page\r\n*/\r\n#templatePreheader{\r\n/*@editable*/ background-color:#FAFAFA;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section preheader text\r\n* @tip Set the styling for your email''s preheader text. Choose a size and color that is easy to read.\r\n*/\r\n.preheaderContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:10px;\r\n/*@editable*/ line-height:100%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section preheader link\r\n* @tip Set the styling for your email''s preheader links. Choose a color that helps them stand out from your text.\r\n*/\r\n.preheaderContent div a:link, .preheaderContent div a:visited, /* Yahoo! Mail Override */ .preheaderContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: HEADER /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Header\r\n* @section header style\r\n* @tip Set the background color and border for your email''s header area.\r\n* @theme header\r\n*/\r\n#templateHeader{\r\n/*@editable*/ background-color:#FFFFFF;\r\n/*@editable*/ border-bottom:0;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section header text\r\n* @tip Set the styling for your email''s header text. Choose a size and color that is easy to read.\r\n*/\r\n.headerContent{\r\n/*@editable*/ color:#202020;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:34px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\n/*@editable*/ padding:0;\r\n/*@editable*/ text-align:center;\r\n/*@editable*/ vertical-align:middle;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section header link\r\n* @tip Set the styling for your email''s header links. Choose a color that helps them stand out from your text.\r\n*/\r\n.headerContent a:link, .headerContent a:visited, /* Yahoo! Mail Override */ .headerContent a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n#headerImage{\r\nheight:auto;\r\nmax-width:600px;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: MAIN BODY /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Body\r\n* @section body style\r\n* @tip Set the background color for your email''s body area.\r\n*/\r\n#templateContainer, .bodyContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Body\r\n* @section body text\r\n* @tip Set the styling for your email''s main content text. Choose a size and color that is easy to read.\r\n* @theme main\r\n*/\r\n.bodyContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:14px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Body\r\n* @section body link\r\n* @tip Set the styling for your email''s main content links. Choose a color that helps them stand out from your text.\r\n*/\r\n.bodyContent div a:link, .bodyContent div a:visited, /* Yahoo! Mail Override */ .bodyContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.bodyContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: COLUMNS; LEFT, CENTER, RIGHT /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Columns\r\n* @section left column text\r\n* @tip Set the styling for your email''s left column text. Choose a size and color that is easy to read.\r\n*/\r\n.leftColumnContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section left column text\r\n* @tip Set the styling for your email''s left column text. Choose a size and color that is easy to read.\r\n*/\r\n.leftColumnContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:14px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section left column link\r\n* @tip Set the styling for your email''s left column links. Choose a color that helps them stand out from your text.\r\n*/\r\n.leftColumnContent div a:link, .leftColumnContent div a:visited, /* Yahoo! Mail Override */ .leftColumnContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.leftColumnContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n/**\r\n* @tab Columns\r\n* @section center column text\r\n* @tip Set the styling for your email''s center column text. Choose a size and color that is easy to read.\r\n*/\r\n.centerColumnContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section center column text\r\n* @tip Set the styling for your email''s center column text. Choose a size and color that is easy to read.\r\n*/\r\n.centerColumnContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:12px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section center column link\r\n* @tip Set the styling for your email''s center column links. Choose a color that helps them stand out from your text.\r\n*/\r\n.centerColumnContent div a:link, .centerColumnContent div a:visited, /* Yahoo! Mail Override */ .centerColumnContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.centerColumnContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section right column text\r\n* @tip Set the styling for your email''s right column text. Choose a size and color that is easy to read.\r\n*/\r\n.rightColumnContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section right column text\r\n* @tip Set the styling for your email''s right column text. Choose a size and color that is easy to read.\r\n*/\r\n.rightColumnContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:12px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section right column link\r\n* @tip Set the styling for your email''s right column links. Choose a color that helps them stand out from your text.\r\n*/\r\n.rightColumnContent div a:link, .rightColumnContent div a:visited, /* Yahoo! Mail Override */ .rightColumnContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.rightColumnContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: FOOTER /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Footer\r\n* @section footer style\r\n* @tip Set the background color and top border for your email''s footer area.\r\n* @theme footer\r\n*/\r\n#templateFooter{\r\n/*@editable*/ background-color:#FFFFFF;\r\n/*@editable*/ border-top:0;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section footer text\r\n* @tip Set the styling for your email''s footer text. Choose a size and color that is easy to read.\r\n* @theme footer\r\n*/\r\n.footerContent div{\r\n/*@editable*/ color:#707070;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:12px;\r\n/*@editable*/ line-height:125%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section footer link\r\n* @tip Set the styling for your email''s footer links. Choose a color that helps them stand out from your text.\r\n*/\r\n.footerContent div a:link, .footerContent div a:visited, /* Yahoo! Mail Override */ .footerContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.footerContent img{\r\ndisplay:inline;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section social bar style\r\n* @tip Set the background color and border for your email''s footer social bar.\r\n* @theme footer\r\n*/\r\n#social{\r\n/*@editable*/ background-color:#FAFAFA;\r\n/*@editable*/ border:0;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section social bar style\r\n* @tip Set the background color and border for your email''s footer social bar.\r\n*/\r\n#social div{\r\n/*@editable*/ text-align:center;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section utility bar style\r\n* @tip Set the background color and border for your email''s footer utility bar.\r\n* @theme footer\r\n*/\r\n#utility{\r\n/*@editable*/ background-color:#FFFFFF;\r\n/*@editable*/ border:0;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section utility bar style\r\n* @tip Set the background color and border for your email''s footer utility bar.\r\n*/\r\n#utility div{\r\n/*@editable*/ text-align:center;\r\n}	</style>\r\n</p>\r\n<center>\r\n<table border="0" cellpadding="0" cellspacing="0" height="100%" id="backgroundTable" width="100%">\r\n<tbody>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Preheader \\\\ -->					<table border="0" cellpadding="10" cellspacing="0" id="templatePreheader" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="preheaderContent" valign="top">\r\n<!-- // Begin Module: Standard Preheader \\ -->									<table border="0" cellpadding="10" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<div>\r\nUse this area to offer a short teaser of your email''s content. Text here will show in the preview area of some email clients.</div>\r\n</td>\r\n<td valign="top" width="190">\r\n<div style="text-align: right;">\r\n{date}</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Standard Preheader \\ -->								</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Preheader \\\\ -->					<table border="0" cellpadding="0" cellspacing="0" id="templateContainer" width="600">\r\n<tbody>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Header \\\\ -->									<table border="0" cellpadding="0" cellspacing="0" id="templateHeader" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="headerContent">\r\n<!-- // Begin Module: Standard Header Image \\\\ -->													<img id="headerImage campaign-icon" src="images/newsletters/images/placeholder_600.gif" style="max-width:600px;" /> <!-- // End Module: Standard Header Image \\\\ --></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Header \\\\ -->								</td>\r\n</tr>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Body \\\\ -->									<table border="0" cellpadding="0" cellspacing="0" id="templateBody" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="bodyContent" colspan="3" valign="top">\r\n<!-- // Begin Module: Standard Content \\\\ -->													<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<div>\r\n<h1 class="h1">\r\nHeading 1</h1>\r\n<h2 class="h2">\r\nHeading 2</h2>\r\n<h3 class="h3">\r\nHeading 3</h3>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\nHi {name},<br />\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam semper leo sit amet tortor blandit, id dictum nisi condimentum. Nulla justo ligula, tristique et euismod ut, mollis vitae nisl. Pellentesque id lacinia arcu. Nunc mollis eros velit, ac hendrerit ipsum auctor eget. Maecenas id massa enim. Nullam sit amet mauris sodales, tincidunt lacus in, suscipit lectus. Maecenas ut semper purus, et mollis velit.<br />\r\n<br />\r\nIn rhoncus a velit id vulputate. Nulla accumsan est in nibh ullamcorper iaculis. Sed id convallis mi, eu commodo sapien. Phasellus hendrerit, tellus in tincidunt venenatis, est elit dictum nisi, in pretium mauris orci quis metus. Vivamus a nisl vitae sapien ultricies tempor tempus eu ligula. Fusce felis mi, accumsan bibendum est non, venenatis cursus elit. Nunc at scelerisque elit. Quisque sed sem lacinia, blandit arcu nec, vulputate ligula. Nulla interdum risus sodales metus bibendum fermentum.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Standard Content \\\\ -->												</td>\r\n</tr>\r\n<tr>\r\n<td class="leftColumnContent" valign="top" width="280">\r\n<!-- // Begin Module: Top Image with Content \\\\ -->													<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<img src="images/newsletters/images/placeholder_260.gif" style="max-width:260px;" />\r\n<div>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\n<strong>Repeatable content blocks:</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec iaculis, velit at semper placerat, tellus velit vehicula orci, a tristique lorem orci eu nisl. Sed et arcu quam. Donec varius arcu et ante convallis, quis laoreet lacus mattis.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Top Image with Content \\\\ -->												</td>\r\n<td class="centerColumnContent" valign="top" width="130">\r\n<!-- // Begin Module: Top Image with Content \\\\ -->													<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<img src="images/newsletters/images/placeholder_110.gif" style="max-width:110px;" />\r\n<div>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\n<strong>Repeatable content blocks:</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec iaculis, velit at semper placerat, tellus velit vehicula orci, a tristique lorem orci eu nisl. Sed et arcu quam. Donec varius arcu et ante convallis, quis laoreet lacus mattis.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Top Image with Content \\\\ -->												</td>\r\n<td class="rightColumnContent" valign="top" width="130">\r\n<!-- // Begin Module: Top Image with Content \\\\ -->													<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<img src="images/newsletters/images/placeholder_110.gif" style="max-width:110px;" />\r\n<div>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\n<strong>Repeatable content blocks:</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec iaculis, velit at semper placerat, tellus velit vehicula orci, a tristique lorem orci eu nisl. Sed et arcu quam. Donec varius arcu et ante convallis, quis laoreet lacus mattis.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Top Image with Content \\\\ -->												</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Body \\\\ -->								</td>\r\n</tr>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Footer \\\\ -->									<table border="0" cellpadding="10" cellspacing="0" id="templateFooter" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="footerContent" valign="top">\r\n<!-- // Begin Module: Standard Footer \\\\ -->													<table border="0" cellpadding="10" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td colspan="2" id="social" valign="middle">\r\n<div>\r\n&nbsp;<a href="http://www.twitter.com">follow on Twitter</a> | <a href="http://www.facebook.com">friend on Facebook</a></div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td valign="top" width="350">\r\n<div style="text-align: center;">\r\n<a href="http://www.yourcompany.com">www.yourcompany.com</a><br />\r\n<br />\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam semper leo sit amet tortor blandit, id dictum nisi condimentum. Nulla justo ligula, tristique et euismod ut, mollis vitae nisl.</div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan="2" id="utility" valign="middle">\r\n<div>\r\n{unsubscribe}</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Standard Footer \\\\ -->												</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Footer \\\\ -->								</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</center>\r\n', 'images/newsletters/thumbnails/fancy-1-50-25-25.jpg');
INSERT INTO `newsletter_templates` (`id`, `title`, `description`, `body`, `thumbnail`) VALUES(17, 'fancy-2-1-3-leftsidebar', 'Αριστερή πλάγια μπάρα και κυρίως περιεχόμενο στα δεξιά αποτελούμενο από ένα κύριο άρθρο επάνω και ένα δίστηλο άρθρων από κάτω. Ακολουθεί ένα κείμενο πλήρους πλάτους και αμέσως μετά ένα τρίστηλο επιπλέον άρθρων.', '<p>\r\n<style type="text/css">\r\n/* Client-specific Styles */\r\n#outlook a{padding:0;} /* Force Outlook to provide a "view in browser" button. */\r\nbody{width:100% !important;} .ReadMsgBody{width:100%;} .ExternalClass{width:100%;} /* Force Hotmail to display emails at full width */\r\nbody{-webkit-text-size-adjust:none;} /* Prevent Webkit platforms from changing default text sizes. */\r\n\r\n/* Reset Styles */\r\nbody{margin:0; padding:0;}\r\nimg{border:0; height:auto; line-height:100%; outline:none; text-decoration:none;}\r\ntable td{border-collapse:collapse;}\r\n#backgroundTable{height:100% !important; margin:0; padding:0; width:100% !important;}\r\n\r\n/* Template Styles */\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: COMMON PAGE ELEMENTS /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Page\r\n* @section background color\r\n* @tip Set the background color for your email. You may want to choose one that matches your company''s branding.\r\n* @theme page\r\n*/\r\nbody, #backgroundTable{\r\n/*@editable*/ background-color:#FAFAFA;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section email border\r\n* @tip Set the border for your email.\r\n*/\r\n#templateContainer{\r\n/*@editable*/ border: 1px solid #DDDDDD;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 1\r\n* @tip Set the styling for all first-level headings in your emails. These should be the largest of your headings.\r\n* @style heading 1\r\n*/\r\nh1, .h1{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:34px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 2\r\n* @tip Set the styling for all second-level headings in your emails.\r\n* @style heading 2\r\n*/\r\nh2, .h2{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:30px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 3\r\n* @tip Set the styling for all third-level headings in your emails.\r\n* @style heading 3\r\n*/\r\nh3, .h3{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:26px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 4\r\n* @tip Set the styling for all fourth-level headings in your emails. These should be the smallest of your headings.\r\n* @style heading 4\r\n*/\r\nh4, .h4{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:22px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: PREHEADER /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Header\r\n* @section preheader style\r\n* @tip Set the background color for your email''s preheader area.\r\n* @theme page\r\n*/\r\n#templatePreheader{\r\n/*@editable*/ background-color:#FAFAFA;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section preheader text\r\n* @tip Set the styling for your email''s preheader text. Choose a size and color that is easy to read.\r\n*/\r\n.preheaderContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:10px;\r\n/*@editable*/ line-height:100%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section preheader link\r\n* @tip Set the styling for your email''s preheader links. Choose a color that helps them stand out from your text.\r\n*/\r\n.preheaderContent div a:link, .preheaderContent div a:visited, /* Yahoo! Mail Override */ .preheaderContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: HEADER /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Header\r\n* @section header style\r\n* @tip Set the background color and border for your email''s header area.\r\n* @theme header\r\n*/\r\n#templateHeader{\r\n/*@editable*/ background-color:#FFFFFF;\r\n/*@editable*/ border-bottom:0;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section header text\r\n* @tip Set the styling for your email''s header text. Choose a size and color that is easy to read.\r\n*/\r\n.headerContent{\r\n/*@editable*/ color:#202020;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:34px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\n/*@editable*/ padding:0;\r\n/*@editable*/ text-align:center;\r\n/*@editable*/ vertical-align:middle;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section header link\r\n* @tip Set the styling for your email''s header links. Choose a color that helps them stand out from your text.\r\n*/\r\n.headerContent a:link, .headerContent a:visited, /* Yahoo! Mail Override */ .headerContent a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n#headerImage{\r\nheight:auto;\r\nmax-width:600px;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: MAIN BODY & FULL-WIDTH BAND /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Body\r\n* @section body style\r\n* @tip Set the background color for your email''s body area.\r\n*/\r\n#templateContainer, .bodyContent, .fullWidthBandContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Body\r\n* @section body text\r\n* @tip Set the styling for your email''s main content text. Choose a size and color that is easy to read.\r\n* @theme main\r\n*/\r\n.bodyContent div, .fullWidthBandContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:14px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Body\r\n* @section body link\r\n* @tip Set the styling for your email''s main content links. Choose a color that helps them stand out from your text.\r\n*/\r\n.bodyContent div a:link, .bodyContent div a:visited, /* Yahoo! Mail Override */ .bodyContent div a .yshortcuts /* Yahoo! Mail Override */, .fullWidthBandContent div a:link, .fullWidthBandContent div a:visited, /* Yahoo! Mail Override */ .fullWidthBandContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.bodyContent img, .fullWidthBandContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: SIDEBAR /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Sidebar\r\n* @section sidebar style\r\n* @tip Set the background color for your email''s sidebar area.\r\n*/\r\n#templateSidebar{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Sidebar\r\n* @section sidebar text\r\n* @tip Set the styling for your email''s sidebar text. Choose a size and color that is easy to read.\r\n*/\r\n.sidebarContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:12px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Sidebar\r\n* @section sidebar link\r\n* @tip Set the styling for your email''s sidebar links. Choose a color that helps them stand out from your text.\r\n*/\r\n.sidebarContent div a:link, .sidebarContent div a:visited, /* Yahoo! Mail Override */ .sidebarContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.sidebarContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: MIDDLE COLUMNS; LEFT, RIGHT /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Middle Columns\r\n* @section left column text\r\n* @tip Set the styling for your email''s left column text. Choose a size and color that is easy to read.\r\n*/\r\n.leftMidColumnContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Middle Columns\r\n* @section left column text\r\n* @tip Set the styling for your email''s left column text. Choose a size and color that is easy to read.\r\n*/\r\n.leftMidColumnContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:14px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Middle Columns\r\n* @section left column link\r\n* @tip Set the styling for your email''s left column links. Choose a color that helps them stand out from your text.\r\n*/\r\n.leftMidColumnContent div a:link, .leftMidColumnContent div a:visited, /* Yahoo! Mail Override */ .leftMidColumnContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.leftMidColumnContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/**\r\n* @tab Middle Columns\r\n* @section right column text\r\n* @tip Set the styling for your email''s right column text. Choose a size and color that is easy to read.\r\n*/\r\n.rightMidColumnContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Middle Columns\r\n* @section right column text\r\n* @tip Set the styling for your email''s right column text. Choose a size and color that is easy to read.\r\n*/\r\n.rightMidColumnContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:14px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Middle Columns\r\n* @section right column link\r\n* @tip Set the styling for your email''s right column links. Choose a color that helps them stand out from your text.\r\n*/\r\n.rightMidColumnContent div a:link, .rightMidColumnContent div a:visited, /* Yahoo! Mail Override */ .rightMidColumnContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.rightMidColumnContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: LOWER COLUMNS; LEFT, CENTER, RIGHT /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Lower Columns\r\n* @section left column text\r\n* @tip Set the styling for your email''s left column text. Choose a size and color that is easy to read.\r\n*/\r\n.leftLowerColumnContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Lower Columns\r\n* @section left column text\r\n* @tip Set the styling for your email''s left column text. Choose a size and color that is easy to read.\r\n*/\r\n.leftLowerColumnContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:14px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Lower Columns\r\n* @section left column link\r\n* @tip Set the styling for your email''s left column links. Choose a color that helps them stand out from your text.\r\n*/\r\n.leftLowerColumnContent div a:link, .leftLowerColumnContent div a:visited, /* Yahoo! Mail Override */ .leftLowerColumnContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.leftLowerColumnContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/**\r\n* @tab Lower Columns\r\n* @section center column text\r\n* @tip Set the styling for your email''s center column text. Choose a size and color that is easy to read.\r\n*/\r\n.centerLowerColumnContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Lower Columns\r\n* @section center column text\r\n* @tip Set the styling for your email''s center column text. Choose a size and color that is easy to read.\r\n*/\r\n.centerLowerColumnContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:14px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Lower Columns\r\n* @section center column link\r\n* @tip Set the styling for your email''s center column links. Choose a color that helps them stand out from your text.\r\n*/\r\n.centerLowerColumnContent div a:link, .centerLowerColumnContent div a:visited, /* Yahoo! Mail Override */ .centerLowerColumnContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.centerLowerColumnContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/**\r\n* @tab Lower Columns\r\n* @section right column text\r\n* @tip Set the styling for your email''s right column text. Choose a size and color that is easy to read.\r\n*/\r\n.rightLowerColumnContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Lower Columns\r\n* @section right column text\r\n* @tip Set the styling for your email''s right column text. Choose a size and color that is easy to read.\r\n*/\r\n.rightLowerColumnContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:14px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Lower Columns\r\n* @section right column link\r\n* @tip Set the styling for your email''s right column links. Choose a color that helps them stand out from your text.\r\n*/\r\n.rightLowerColumnContent div a:link, .rightLowerColumnContent div a:visited, /* Yahoo! Mail Override */ .rightLowerColumnContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.rightLowerColumnContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: FOOTER /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Footer\r\n* @section footer style\r\n* @tip Set the background color and top border for your email''s footer area.\r\n* @theme footer\r\n*/\r\n#templateFooter{\r\n/*@editable*/ background-color:#FFFFFF;\r\n/*@editable*/ border-top:0;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section footer text\r\n* @tip Set the styling for your email''s footer text. Choose a size and color that is easy to read.\r\n* @theme footer\r\n*/\r\n.footerContent div{\r\n/*@editable*/ color:#707070;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:12px;\r\n/*@editable*/ line-height:125%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section footer link\r\n* @tip Set the styling for your email''s footer links. Choose a color that helps them stand out from your text.\r\n*/\r\n.footerContent div a:link, .footerContent div a:visited, /* Yahoo! Mail Override */ .footerContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.footerContent img{\r\ndisplay:inline;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section social bar style\r\n* @tip Set the background color and border for your email''s footer social bar.\r\n* @theme footer\r\n*/\r\n#social{\r\n/*@editable*/ background-color:#FAFAFA;\r\n/*@editable*/ border:0;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section social bar style\r\n* @tip Set the background color and border for your email''s footer social bar.\r\n*/\r\n#social div{\r\n/*@editable*/ text-align:center;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section utility bar style\r\n* @tip Set the background color and border for your email''s footer utility bar.\r\n* @theme footer\r\n*/\r\n#utility{\r\n/*@editable*/ background-color:#FFFFFF;\r\n/*@editable*/ border:0;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section utility bar style\r\n* @tip Set the background color and border for your email''s footer utility bar.\r\n*/\r\n#utility div{\r\n/*@editable*/ text-align:center;\r\n}	</style>\r\n</p>\r\n<center>\r\n<table border="0" cellpadding="0" cellspacing="0" height="100%" id="backgroundTable" width="100%">\r\n<tbody>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Preheader \\\\ -->					<table border="0" cellpadding="10" cellspacing="0" id="templatePreheader" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="preheaderContent" valign="top">\r\n<!-- // Begin Module: Standard Preheader \\ -->									<table border="0" cellpadding="10" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<div>\r\nUse this area to offer a short teaser of your email''s content. Text here will show in the preview area of some email clients.</div>\r\n</td>\r\n<td valign="top" width="190">\r\n<div style="text-align: right;">\r\n{date}</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Standard Preheader \\ -->								</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Preheader \\\\ -->					<table border="0" cellpadding="0" cellspacing="0" id="templateContainer" width="600">\r\n<tbody>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Header \\\\ -->									<table border="0" cellpadding="0" cellspacing="0" id="templateHeader" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="headerContent">\r\n<!-- // Begin Module: Standard Header Image \\\\ -->													<img id="headerImage campaign-icon" src="images/newsletters/images/placeholder_600.gif" style="max-width:600px;" /> <!-- // End Module: Standard Header Image \\\\ --></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Header \\\\ -->								</td>\r\n</tr>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Body \\\\ -->									<table border="0" cellpadding="0" cellspacing="0" id="templateBody" width="600">\r\n<tbody>\r\n<tr>\r\n<!-- // Begin Sidebar \\\\  -->												<td id="templateSidebar" valign="top" width="200">\r\n<table border="0" cellpadding="0" cellspacing="0" width="200">\r\n<tbody>\r\n<tr>\r\n<td class="sidebarContent" valign="top">\r\n<!-- // Begin Module: Social Block with Icons \\\\ -->																	<table border="0" cellpadding="0" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td style="padding-top:10px; padding-right:20px; padding-left:20px;" valign="top">\r\n<table border="0" cellpadding="0" cellspacing="4">\r\n<tbody>\r\n<tr>\r\n<td align="left" valign="middle" width="16">\r\n<img src="images/newsletters/images/icon_facebook.png" style="margin:0 !important;" /></td>\r\n<td align="left" valign="top">\r\n<div>\r\n<a href="http://www.facebook.com">Friend on Facebook</a></div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td align="left" valign="middle" width="16">\r\n<img src="images/newsletters/images/icon_twitter.png" style="margin:0 !important;" /></td>\r\n<td align="left" valign="top">\r\n<div>\r\n<a href="http://www.twitter.com">Follow on Twitter</a></div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Social Block with Icons \\\\ --><!-- // Begin Module: Top Image with Content \\\\ -->																	<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<img src="images/newsletters/images/placeholder_160.gif" style="max-width:160px;" />\r\n<div>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\n<strong>Repeatable content blocks:</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec iaculis, velit at semper placerat, tellus velit vehicula orci, a tristique lorem orci eu nisl. Sed et arcu quam. Donec varius arcu et ante convallis, quis laoreet lacus mattis.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Top Image with Content \\\\ -->																</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<!-- // End Sidebar \\\\ -->												<td valign="top" width="400">\r\n<table border="0" cellpadding="0" cellspacing="0" width="400">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<table border="0" cellpadding="0" cellspacing="0" width="400">\r\n<tbody>\r\n<tr>\r\n<td class="bodyContent" valign="top">\r\n<!-- // Begin Module: Standard Content \\\\ -->																					<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<div>\r\n<h1 class="h1">\r\nHeading 1</h1>\r\n<h2 class="h2">\r\nHeading 2</h2>\r\n<h3 class="h3">\r\nHeading 3</h3>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\nHi {name},<br />\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam semper leo sit amet tortor blandit, id dictum nisi condimentum. Nulla justo ligula, tristique et euismod ut, mollis vitae nisl. Pellentesque id lacinia arcu. Nunc mollis eros velit, ac hendrerit ipsum auctor eget. Maecenas id massa enim. Nullam sit amet mauris sodales, tincidunt lacus in, suscipit lectus. Maecenas ut semper purus, et mollis velit.<br />\r\n<br />\r\n<br />\r\nIn rhoncus a velit id vulputate. Nulla accumsan est in nibh ullamcorper iaculis. Sed id convallis mi, eu commodo sapien. Phasellus hendrerit, tellus in tincidunt venenatis, est elit dictum nisi, in pretium mauris orci quis metus. Vivamus a nisl vitae sapien ultricies tempor tempus eu ligula. Fusce felis mi, accumsan bibendum est non, venenatis cursus elit. Nunc at scelerisque elit. Quisque sed sem lacinia, blandit arcu nec, vulputate ligula. Nulla interdum risus sodales metus bibendum fermentum.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Standard Content \\\\ -->																				</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td valign="top">\r\n<table border="0" cellpadding="0" cellspacing="0" width="400">\r\n<tbody>\r\n<tr>\r\n<td class="leftMidColumnContent" valign="top" width="180">\r\n<!-- // Begin Module: Top Image with Content \\\\ -->																					<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<img src="images/newsletters/images/placeholder_160.gif" style="max-width:160px;" />\r\n<div>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\n<strong>Repeatable content blocks:</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec iaculis, velit at semper placerat, tellus velit vehicula orci, a tristique lorem orci eu nisl. Sed et arcu quam. Donec varius arcu et ante convallis, quis laoreet lacus mattis.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Top Image with Content \\\\ -->																				</td>\r\n<td class="rightMidColumnContent" valign="top" width="180">\r\n<!-- // Begin Module: Top Image with Content \\\\ -->																					<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<img src="images/newsletters/images/placeholder_160.gif" style="max-width:160px;" />\r\n<div>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\n<strong>Repeatable content blocks:</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec iaculis, velit at semper placerat, tellus velit vehicula orci, a tristique lorem orci eu nisl. Sed et arcu quam. Donec varius arcu et ante convallis, quis laoreet lacus mattis.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Top Image with Content \\\\ -->																				</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan="2" valign="top" width="600">\r\n<table border="0" cellpadding="0" cellspacing="0" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="fullWidthBandContent" valign="top">\r\n<!-- // Begin Module: Standard Content \\\\ -->																	<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<div>\r\n<strong>Basic content area</strong>. Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the <em>Semantics</em>, a large language ocean. A small river named Duden flows by their place and supplies it with the necessary.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Standard Content \\\\ -->																</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan="2" valign="top" width="600">\r\n<table border="0" cellpadding="0" cellspacing="0" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="leftLowerColumnContent" valign="top" width="180">\r\n<!-- // Begin Module: Top Image with Content \\\\ -->																	<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<img src="images/newsletters/images/placeholder_160.gif" style="max-width:160px;" />\r\n<div>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\n<strong>Repeatable content blocks:</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec iaculis, velit at semper placerat, tellus velit vehicula orci, a tristique lorem orci eu nisl. Sed et arcu quam. Donec varius arcu et ante convallis, quis laoreet lacus mattis.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Top Image with Content \\\\ -->																</td>\r\n<td class="centerLowerColumnContent" valign="top" width="180">\r\n<!-- // Begin Module: Top Image with Content \\\\ -->																	<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<img src="images/newsletters/images/placeholder_160.gif" style="max-width:160px;" />\r\n<div>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\n<strong>Repeatable content blocks:</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec iaculis, velit at semper placerat, tellus velit vehicula orci, a tristique lorem orci eu nisl. Sed et arcu quam. Donec varius arcu et ante convallis, quis laoreet lacus mattis.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Top Image with Content \\\\ -->																</td>\r\n<td class="rightLowerColumnContent" valign="top" width="180">\r\n<!-- // Begin Module: Top Image with Content \\\\ -->																	<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<img src="images/newsletters/images/placeholder_160.gif" style="max-width:160px;" />\r\n<div>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\n<strong>Repeatable content blocks:</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec iaculis, velit at semper placerat, tellus velit vehicula orci, a tristique lorem orci eu nisl. Sed et arcu quam. Donec varius arcu et ante convallis, quis laoreet lacus mattis.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Top Image with Content \\\\ -->																</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Body \\\\ -->								</td>\r\n</tr>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Footer \\\\ -->									<table border="0" cellpadding="10" cellspacing="0" id="templateFooter" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="footerContent" valign="top">\r\n<!-- // Begin Module: Standard Footer \\\\ -->													<table border="0" cellpadding="10" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td colspan="2" id="social" valign="middle">\r\n<div>\r\n&nbsp;<a href="http://www.twitter.com">follow on Twitter</a> | <a href="http://www.facebook.com">friend on Facebook</a></div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td valign="top" width="350">\r\n<div style="text-align: center;">\r\n<a href="http://www.yourcompany.com">www.yourcompany.com</a><br />\r\n<br />\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam semper leo sit amet tortor blandit, id dictum nisi condimentum. Nulla justo ligula, tristique et euismod ut, mollis vitae nisl.</div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan="2" id="utility" valign="middle">\r\n<div>\r\n{unsubscribe}</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Standard Footer \\\\ -->												</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Footer \\\\ -->								</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</center>\r\n<p>\r\n&nbsp;</p>\r\n', 'images/newsletters/thumbnails/fancy-2-1-3-leftsidebar.jpg');
INSERT INTO `newsletter_templates` (`id`, `title`, `description`, `body`, `thumbnail`) VALUES(18, 'fancy-2-1-3-rightsidebar', 'Δεξιά πλάγια μπάρα και κυρίως περιεχόμενο στα αριστερά αποτελούμενο από ένα κύριο άρθρο επάνω και ένα δίστηλο άρθρων από κάτω. Ακολουθεί ένα κείμενο πλήρους πλάτους και αμέσως μετά ένα τρίστηλο επιπλέον άρθρων.', '<p>\r\n<style type="text/css">\r\n/* Client-specific Styles */\r\n#outlook a{padding:0;} /* Force Outlook to provide a "view in browser" button. */\r\nbody{width:100% !important;} .ReadMsgBody{width:100%;} .ExternalClass{width:100%;} /* Force Hotmail to display emails at full width */\r\nbody{-webkit-text-size-adjust:none;} /* Prevent Webkit platforms from changing default text sizes. */\r\n\r\n/* Reset Styles */\r\nbody{margin:0; padding:0;}\r\nimg{border:0; height:auto; line-height:100%; outline:none; text-decoration:none;}\r\ntable td{border-collapse:collapse;}\r\n#backgroundTable{height:100% !important; margin:0; padding:0; width:100% !important;}\r\n\r\n/* Template Styles */\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: COMMON PAGE ELEMENTS /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Page\r\n* @section background color\r\n* @tip Set the background color for your email. You may want to choose one that matches your company''s branding.\r\n* @theme page\r\n*/\r\nbody, #backgroundTable{\r\n/*@editable*/ background-color:#FAFAFA;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section email border\r\n* @tip Set the border for your email.\r\n*/\r\n#templateContainer{\r\n/*@editable*/ border: 1px solid #DDDDDD;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 1\r\n* @tip Set the styling for all first-level headings in your emails. These should be the largest of your headings.\r\n* @style heading 1\r\n*/\r\nh1, .h1{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:34px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 2\r\n* @tip Set the styling for all second-level headings in your emails.\r\n* @style heading 2\r\n*/\r\nh2, .h2{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:30px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 3\r\n* @tip Set the styling for all third-level headings in your emails.\r\n* @style heading 3\r\n*/\r\nh3, .h3{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:26px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 4\r\n* @tip Set the styling for all fourth-level headings in your emails. These should be the smallest of your headings.\r\n* @style heading 4\r\n*/\r\nh4, .h4{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:22px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: PREHEADER /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Header\r\n* @section preheader style\r\n* @tip Set the background color for your email''s preheader area.\r\n* @theme page\r\n*/\r\n#templatePreheader{\r\n/*@editable*/ background-color:#FAFAFA;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section preheader text\r\n* @tip Set the styling for your email''s preheader text. Choose a size and color that is easy to read.\r\n*/\r\n.preheaderContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:10px;\r\n/*@editable*/ line-height:100%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section preheader link\r\n* @tip Set the styling for your email''s preheader links. Choose a color that helps them stand out from your text.\r\n*/\r\n.preheaderContent div a:link, .preheaderContent div a:visited, /* Yahoo! Mail Override */ .preheaderContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: HEADER /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Header\r\n* @section header style\r\n* @tip Set the background color and border for your email''s header area.\r\n* @theme header\r\n*/\r\n#templateHeader{\r\n/*@editable*/ background-color:#FFFFFF;\r\n/*@editable*/ border-bottom:0;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section header text\r\n* @tip Set the styling for your email''s header text. Choose a size and color that is easy to read.\r\n*/\r\n.headerContent{\r\n/*@editable*/ color:#202020;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:34px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\n/*@editable*/ padding:0;\r\n/*@editable*/ text-align:center;\r\n/*@editable*/ vertical-align:middle;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section header link\r\n* @tip Set the styling for your email''s header links. Choose a color that helps them stand out from your text.\r\n*/\r\n.headerContent a:link, .headerContent a:visited, /* Yahoo! Mail Override */ .headerContent a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n#headerImage{\r\nheight:auto;\r\nmax-width:600px;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: MAIN BODY & FULL-WIDTH BAND /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Body\r\n* @section body style\r\n* @tip Set the background color for your email''s body area.\r\n*/\r\n#templateContainer, .bodyContent, .fullWidthBandContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Body\r\n* @section body text\r\n* @tip Set the styling for your email''s main content text. Choose a size and color that is easy to read.\r\n* @theme main\r\n*/\r\n.bodyContent div, .fullWidthBandContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:14px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Body\r\n* @section body link\r\n* @tip Set the styling for your email''s main content links. Choose a color that helps them stand out from your text.\r\n*/\r\n.bodyContent div a:link, .bodyContent div a:visited, /* Yahoo! Mail Override */ .bodyContent div a .yshortcuts /* Yahoo! Mail Override */, .fullWidthBandContent div a:link, .fullWidthBandContent div a:visited, /* Yahoo! Mail Override */ .fullWidthBandContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.bodyContent img, .fullWidthBandContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: SIDEBAR /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Sidebar\r\n* @section sidebar style\r\n* @tip Set the background color for your email''s sidebar area.\r\n*/\r\n#templateSidebar{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Sidebar\r\n* @section sidebar text\r\n* @tip Set the styling for your email''s sidebar text. Choose a size and color that is easy to read.\r\n*/\r\n.sidebarContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:12px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Sidebar\r\n* @section sidebar link\r\n* @tip Set the styling for your email''s sidebar links. Choose a color that helps them stand out from your text.\r\n*/\r\n.sidebarContent div a:link, .sidebarContent div a:visited, /* Yahoo! Mail Override */ .sidebarContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.sidebarContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: MIDDLE COLUMNS; LEFT, RIGHT /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Middle Columns\r\n* @section left column text\r\n* @tip Set the styling for your email''s left column text. Choose a size and color that is easy to read.\r\n*/\r\n.leftMidColumnContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Middle Columns\r\n* @section left column text\r\n* @tip Set the styling for your email''s left column text. Choose a size and color that is easy to read.\r\n*/\r\n.leftMidColumnContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:14px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Middle Columns\r\n* @section left column link\r\n* @tip Set the styling for your email''s left column links. Choose a color that helps them stand out from your text.\r\n*/\r\n.leftMidColumnContent div a:link, .leftMidColumnContent div a:visited, /* Yahoo! Mail Override */ .leftMidColumnContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.leftMidColumnContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/**\r\n* @tab Middle Columns\r\n* @section right column text\r\n* @tip Set the styling for your email''s right column text. Choose a size and color that is easy to read.\r\n*/\r\n.rightMidColumnContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Middle Columns\r\n* @section right column text\r\n* @tip Set the styling for your email''s right column text. Choose a size and color that is easy to read.\r\n*/\r\n.rightMidColumnContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:14px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Middle Columns\r\n* @section right column link\r\n* @tip Set the styling for your email''s right column links. Choose a color that helps them stand out from your text.\r\n*/\r\n.rightMidColumnContent div a:link, .rightMidColumnContent div a:visited, /* Yahoo! Mail Override */ .rightMidColumnContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.rightMidColumnContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: LOWER COLUMNS; LEFT, CENTER, RIGHT /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Lower Columns\r\n* @section left column text\r\n* @tip Set the styling for your email''s left column text. Choose a size and color that is easy to read.\r\n*/\r\n.leftLowerColumnContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Lower Columns\r\n* @section left column text\r\n* @tip Set the styling for your email''s left column text. Choose a size and color that is easy to read.\r\n*/\r\n.leftLowerColumnContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:14px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Lower Columns\r\n* @section left column link\r\n* @tip Set the styling for your email''s left column links. Choose a color that helps them stand out from your text.\r\n*/\r\n.leftLowerColumnContent div a:link, .leftLowerColumnContent div a:visited, /* Yahoo! Mail Override */ .leftLowerColumnContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.leftLowerColumnContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/**\r\n* @tab Lower Columns\r\n* @section center column text\r\n* @tip Set the styling for your email''s center column text. Choose a size and color that is easy to read.\r\n*/\r\n.centerLowerColumnContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Lower Columns\r\n* @section center column text\r\n* @tip Set the styling for your email''s center column text. Choose a size and color that is easy to read.\r\n*/\r\n.centerLowerColumnContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:14px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Lower Columns\r\n* @section center column link\r\n* @tip Set the styling for your email''s center column links. Choose a color that helps them stand out from your text.\r\n*/\r\n.centerLowerColumnContent div a:link, .centerLowerColumnContent div a:visited, /* Yahoo! Mail Override */ .centerLowerColumnContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.centerLowerColumnContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/**\r\n* @tab Lower Columns\r\n* @section right column text\r\n* @tip Set the styling for your email''s right column text. Choose a size and color that is easy to read.\r\n*/\r\n.rightLowerColumnContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Lower Columns\r\n* @section right column text\r\n* @tip Set the styling for your email''s right column text. Choose a size and color that is easy to read.\r\n*/\r\n.rightLowerColumnContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:14px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Lower Columns\r\n* @section right column link\r\n* @tip Set the styling for your email''s right column links. Choose a color that helps them stand out from your text.\r\n*/\r\n.rightLowerColumnContent div a:link, .rightLowerColumnContent div a:visited, /* Yahoo! Mail Override */ .rightLowerColumnContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.rightLowerColumnContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: FOOTER /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Footer\r\n* @section footer style\r\n* @tip Set the background color and top border for your email''s footer area.\r\n* @theme footer\r\n*/\r\n#templateFooter{\r\n/*@editable*/ background-color:#FFFFFF;\r\n/*@editable*/ border-top:0;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section footer text\r\n* @tip Set the styling for your email''s footer text. Choose a size and color that is easy to read.\r\n* @theme footer\r\n*/\r\n.footerContent div{\r\n/*@editable*/ color:#707070;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:12px;\r\n/*@editable*/ line-height:125%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section footer link\r\n* @tip Set the styling for your email''s footer links. Choose a color that helps them stand out from your text.\r\n*/\r\n.footerContent div a:link, .footerContent div a:visited, /* Yahoo! Mail Override */ .footerContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.footerContent img{\r\ndisplay:inline;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section social bar style\r\n* @tip Set the background color and border for your email''s footer social bar.\r\n* @theme footer\r\n*/\r\n#social{\r\n/*@editable*/ background-color:#FAFAFA;\r\n/*@editable*/ border:0;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section social bar style\r\n* @tip Set the background color and border for your email''s footer social bar.\r\n*/\r\n#social div{\r\n/*@editable*/ text-align:center;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section utility bar style\r\n* @tip Set the background color and border for your email''s footer utility bar.\r\n* @theme footer\r\n*/\r\n#utility{\r\n/*@editable*/ background-color:#FFFFFF;\r\n/*@editable*/ border:0;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section utility bar style\r\n* @tip Set the background color and border for your email''s footer utility bar.\r\n*/\r\n#utility div{\r\n/*@editable*/ text-align:center;\r\n}	</style>\r\n</p>\r\n<center>\r\n<table border="0" cellpadding="0" cellspacing="0" height="100%" id="backgroundTable" width="100%">\r\n<tbody>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Preheader \\\\ -->					<table border="0" cellpadding="10" cellspacing="0" id="templatePreheader" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="preheaderContent" valign="top">\r\n<!-- // Begin Module: Standard Preheader \\ -->									<table border="0" cellpadding="10" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<div>\r\nUse this area to offer a short teaser of your email''s content. Text here will show in the preview area of some email clients.</div>\r\n</td>\r\n<td valign="top" width="190">\r\n<div style="text-align: right;">\r\n{date}</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Standard Preheader \\ -->								</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Preheader \\\\ -->					<table border="0" cellpadding="0" cellspacing="0" id="templateContainer" width="600">\r\n<tbody>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Header \\\\ -->									<table border="0" cellpadding="0" cellspacing="0" id="templateHeader" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="headerContent">\r\n<!-- // Begin Module: Standard Header Image \\\\ -->													<img id="headerImage campaign-icon" src="images/newsletters/images/placeholder_600.gif" style="max-width:600px;" /> <!-- // End Module: Standard Header Image \\\\ --></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Header \\\\ -->								</td>\r\n</tr>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Body \\\\ -->									<table border="0" cellpadding="0" cellspacing="0" id="templateBody" width="600">\r\n<tbody>\r\n<tr>\r\n<td valign="top" width="400">\r\n<table border="0" cellpadding="0" cellspacing="0" width="400">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<table border="0" cellpadding="0" cellspacing="0" width="400">\r\n<tbody>\r\n<tr>\r\n<td class="bodyContent" valign="top">\r\n<!-- // Begin Module: Standard Content \\\\ -->																					<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<div>\r\n<h1 class="h1">\r\nHeading 1</h1>\r\n<h2 class="h2">\r\nHeading 2</h2>\r\n<h3 class="h3">\r\nHeading 3</h3>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\nHi {name},<br />\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam semper leo sit amet tortor blandit, id dictum nisi condimentum. Nulla justo ligula, tristique et euismod ut, mollis vitae nisl. Pellentesque id lacinia arcu. Nunc mollis eros velit, ac hendrerit ipsum auctor eget. Maecenas id massa enim. Nullam sit amet mauris sodales, tincidunt lacus in, suscipit lectus. Maecenas ut semper purus, et mollis velit.<br />\r\n<br />\r\n<br />\r\nIn rhoncus a velit id vulputate. Nulla accumsan est in nibh ullamcorper iaculis. Sed id convallis mi, eu commodo sapien. Phasellus hendrerit, tellus in tincidunt venenatis, est elit dictum nisi, in pretium mauris orci quis metus. Vivamus a nisl vitae sapien ultricies tempor tempus eu ligula. Fusce felis mi, accumsan bibendum est non, venenatis cursus elit. Nunc at scelerisque elit. Quisque sed sem lacinia, blandit arcu nec, vulputate ligula. Nulla interdum risus sodales metus bibendum fermentum.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Standard Content \\\\ -->																				</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td valign="top">\r\n<table border="0" cellpadding="0" cellspacing="0" width="400">\r\n<tbody>\r\n<tr>\r\n<td class="leftMidColumnContent" valign="top" width="180">\r\n<!-- // Begin Module: Top Image with Content \\\\ -->																					<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<img src="images/newsletters/images/placeholder_160.gif" style="max-width:160px;" />\r\n<div>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\n<strong>Repeatable content blocks:</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec iaculis, velit at semper placerat, tellus velit vehicula orci, a tristique lorem orci eu nisl. Sed et arcu quam. Donec varius arcu et ante convallis, quis laoreet lacus mattis.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Top Image with Content \\\\ -->																				</td>\r\n<td class="rightMidColumnContent" valign="top" width="180">\r\n<!-- // Begin Module: Top Image with Content \\\\ -->																					<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<img src="images/newsletters/images/placeholder_160.gif" style="max-width:160px;" />\r\n<div>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\n<strong>Repeatable content blocks:</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec iaculis, velit at semper placerat, tellus velit vehicula orci, a tristique lorem orci eu nisl. Sed et arcu quam. Donec varius arcu et ante convallis, quis laoreet lacus mattis.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Top Image with Content \\\\ -->																				</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<!-- // Begin Sidebar \\\\  -->												<td id="templateSidebar" valign="top" width="200">\r\n<table border="0" cellpadding="0" cellspacing="0" width="200">\r\n<tbody>\r\n<tr>\r\n<td class="sidebarContent" valign="top">\r\n<!-- // Begin Module: Social Block with Icons \\\\ -->																	<table border="0" cellpadding="0" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td style="padding-top:10px; padding-right:20px; padding-left:20px;" valign="top">\r\n<table border="0" cellpadding="0" cellspacing="4">\r\n<tbody>\r\n<tr>\r\n<td align="left" valign="middle" width="16">\r\n<img src="images/newsletters/images/icon_facebook.png" style="margin:0 !important;" /></td>\r\n<td align="left" valign="top">\r\n<div>\r\n<a href="http://www.facebook.com">Friend on Facebook</a></div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td align="left" valign="middle" width="16">\r\n<img src="images/newsletters/images/icon_twitter.png" style="margin:0 !important;" /></td>\r\n<td align="left" valign="top">\r\n<div>\r\n<a href="http://www.twitter.com">Follow on Twitter</a></div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Social Block with Icons \\\\ --><!-- // Begin Module: Top Image with Content \\\\ -->																	<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<img src="images/newsletters/images/placeholder_160.gif" style="max-width:160px;" />\r\n<div>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\n<strong>Repeatable content blocks:</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec iaculis, velit at semper placerat, tellus velit vehicula orci, a tristique lorem orci eu nisl. Sed et arcu quam. Donec varius arcu et ante convallis, quis laoreet lacus mattis.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Top Image with Content \\\\ -->																</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<!-- // End Sidebar \\\\ -->											</tr>\r\n<tr>\r\n<td colspan="2" valign="top" width="600">\r\n<table border="0" cellpadding="0" cellspacing="0" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="fullWidthBandContent" valign="top">\r\n<!-- // Begin Module: Standard Content \\\\ -->																	<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<div>\r\n<strong>Basic content area</strong>. Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the <em>Semantics</em>, a large language ocean. A small river named Duden flows by their place and supplies it with the necessary.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Standard Content \\\\ -->																</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan="2" valign="top" width="600">\r\n<table border="0" cellpadding="0" cellspacing="0" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="leftLowerColumnContent" valign="top" width="180">\r\n<!-- // Begin Module: Top Image with Content \\\\ -->																	<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<img src="images/newsletters/images/placeholder_160.gif" style="max-width:160px;" />\r\n<div>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\n<strong>Repeatable content blocks:</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec iaculis, velit at semper placerat, tellus velit vehicula orci, a tristique lorem orci eu nisl. Sed et arcu quam. Donec varius arcu et ante convallis, quis laoreet lacus mattis.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Top Image with Content \\\\ -->																</td>\r\n<td class="centerLowerColumnContent" valign="top" width="180">\r\n<!-- // Begin Module: Top Image with Content \\\\ -->																	<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<img src="images/newsletters/images/placeholder_160.gif" style="max-width:160px;" />\r\n<div>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\n<strong>Repeatable content blocks:</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec iaculis, velit at semper placerat, tellus velit vehicula orci, a tristique lorem orci eu nisl. Sed et arcu quam. Donec varius arcu et ante convallis, quis laoreet lacus mattis.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Top Image with Content \\\\ -->																</td>\r\n<td class="rightLowerColumnContent" valign="top" width="180">\r\n<!-- // Begin Module: Top Image with Content \\\\ -->																	<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<img src="images/newsletters/images/placeholder_160.gif" style="max-width:160px;" />\r\n<div>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\n<strong>Repeatable content blocks:</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec iaculis, velit at semper placerat, tellus velit vehicula orci, a tristique lorem orci eu nisl. Sed et arcu quam. Donec varius arcu et ante convallis, quis laoreet lacus mattis.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Top Image with Content \\\\ -->																</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Body \\\\ -->								</td>\r\n</tr>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Footer \\\\ -->									<table border="0" cellpadding="10" cellspacing="0" id="templateFooter" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="footerContent" valign="top">\r\n<!-- // Begin Module: Standard Footer \\\\ -->													<table border="0" cellpadding="10" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td colspan="2" id="social" valign="middle">\r\n<div>\r\n&nbsp;<a href="http://www.twitter.com">follow on Twitter</a> | <a href="http://www.facebook.com">friend on Facebook</a></div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td valign="top" width="350">\r\n<div style="text-align: center;">\r\n<a href="http://www.yourcompany.com">www.yourcompany.com</a><br />\r\n<br />\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam semper leo sit amet tortor blandit, id dictum nisi condimentum. Nulla justo ligula, tristique et euismod ut, mollis vitae nisl.</div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan="2" id="utility" valign="middle">\r\n<div>\r\n{unsubscribe}</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Standard Footer \\\\ -->												</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Footer \\\\ -->								</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</center>\r\n', 'images/newsletters/thumbnails/fancy-2-1-3-rightsidebar.jpg');
INSERT INTO `newsletter_templates` (`id`, `title`, `description`, `body`, `thumbnail`) VALUES(19, 'fancy-50-25-25', 'Τριών στηλών template με μεγαλύτερη την πρώτη στήλη.', '<p>\r\n<style type="text/css">\r\n/* Client-specific Styles */\r\n#outlook a{padding:0;} /* Force Outlook to provide a "view in browser" button. */\r\nbody{width:100% !important;} .ReadMsgBody{width:100%;} .ExternalClass{width:100%;} /* Force Hotmail to display emails at full width */\r\nbody{-webkit-text-size-adjust:none;} /* Prevent Webkit platforms from changing default text sizes. */\r\n\r\n/* Reset Styles */\r\nbody{margin:0; padding:0;}\r\nimg{border:0; height:auto; line-height:100%; outline:none; text-decoration:none;}\r\ntable td{border-collapse:collapse;}\r\n#backgroundTable{height:100% !important; margin:0; padding:0; width:100% !important;}\r\n\r\n/* Template Styles */\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: COMMON PAGE ELEMENTS /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Page\r\n* @section background color\r\n* @tip Set the background color for your email. You may want to choose one that matches your company''s branding.\r\n* @theme page\r\n*/\r\nbody, #backgroundTable{\r\n/*@editable*/ background-color:#FAFAFA;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section email border\r\n* @tip Set the border for your email.\r\n*/\r\n#templateContainer{\r\n/*@editable*/ border: 1px solid #DDDDDD;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 1\r\n* @tip Set the styling for all first-level headings in your emails. These should be the largest of your headings.\r\n* @style heading 1\r\n*/\r\nh1, .h1{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:34px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 2\r\n* @tip Set the styling for all second-level headings in your emails.\r\n* @style heading 2\r\n*/\r\nh2, .h2{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:30px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 3\r\n* @tip Set the styling for all third-level headings in your emails.\r\n* @style heading 3\r\n*/\r\nh3, .h3{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:26px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 4\r\n* @tip Set the styling for all fourth-level headings in your emails. These should be the smallest of your headings.\r\n* @style heading 4\r\n*/\r\nh4, .h4{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:22px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: PREHEADER /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Header\r\n* @section preheader style\r\n* @tip Set the background color for your email''s preheader area.\r\n* @theme page\r\n*/\r\n#templatePreheader{\r\n/*@editable*/ background-color:#FAFAFA;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section preheader text\r\n* @tip Set the styling for your email''s preheader text. Choose a size and color that is easy to read.\r\n*/\r\n.preheaderContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:10px;\r\n/*@editable*/ line-height:100%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section preheader link\r\n* @tip Set the styling for your email''s preheader links. Choose a color that helps them stand out from your text.\r\n*/\r\n.preheaderContent div a:link, .preheaderContent div a:visited, /* Yahoo! Mail Override */ .preheaderContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: HEADER /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Header\r\n* @section header style\r\n* @tip Set the background color and border for your email''s header area.\r\n* @theme header\r\n*/\r\n#templateHeader{\r\n/*@editable*/ background-color:#FFFFFF;\r\n/*@editable*/ border-bottom:0;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section header text\r\n* @tip Set the styling for your email''s header text. Choose a size and color that is easy to read.\r\n*/\r\n.headerContent{\r\n/*@editable*/ color:#202020;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:34px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\n/*@editable*/ padding:0;\r\n/*@editable*/ text-align:center;\r\n/*@editable*/ vertical-align:middle;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section header link\r\n* @tip Set the styling for your email''s header links. Choose a color that helps them stand out from your text.\r\n*/\r\n.headerContent a:link, .headerContent a:visited, /* Yahoo! Mail Override */ .headerContent a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n#headerImage{\r\nheight:auto;\r\nmax-width:600px;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: COLUMNS; LEFT, CENTER, RIGHT /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Columns\r\n* @section left column text\r\n* @tip Set the styling for your email''s left column text. Choose a size and color that is easy to read.\r\n*/\r\n.leftColumnContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section left column text\r\n* @tip Set the styling for your email''s left column text. Choose a size and color that is easy to read.\r\n*/\r\n.leftColumnContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:14px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section left column link\r\n* @tip Set the styling for your email''s left column links. Choose a color that helps them stand out from your text.\r\n*/\r\n.leftColumnContent div a:link, .leftColumnContent div a:visited, /* Yahoo! Mail Override */ .leftColumnContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.leftColumnContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n/**\r\n* @tab Columns\r\n* @section center column text\r\n* @tip Set the styling for your email''s center column text. Choose a size and color that is easy to read.\r\n*/\r\n.centerColumnContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section center column text\r\n* @tip Set the styling for your email''s center column text. Choose a size and color that is easy to read.\r\n*/\r\n.centerColumnContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:12px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section center column link\r\n* @tip Set the styling for your email''s center column links. Choose a color that helps them stand out from your text.\r\n*/\r\n.centerColumnContent div a:link, .centerColumnContent div a:visited, /* Yahoo! Mail Override */ .centerColumnContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.centerColumnContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section right column text\r\n* @tip Set the styling for your email''s right column text. Choose a size and color that is easy to read.\r\n*/\r\n.rightColumnContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section right column text\r\n* @tip Set the styling for your email''s right column text. Choose a size and color that is easy to read.\r\n*/\r\n.rightColumnContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:12px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section right column link\r\n* @tip Set the styling for your email''s right column links. Choose a color that helps them stand out from your text.\r\n*/\r\n.rightColumnContent div a:link, .rightColumnContent div a:visited, /* Yahoo! Mail Override */ .rightColumnContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.rightColumnContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: FOOTER /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Footer\r\n* @section footer style\r\n* @tip Set the background color and top border for your email''s footer area.\r\n* @theme footer\r\n*/\r\n#templateFooter{\r\n/*@editable*/ background-color:#FFFFFF;\r\n/*@editable*/ border-top:0;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section footer text\r\n* @tip Set the styling for your email''s footer text. Choose a size and color that is easy to read.\r\n* @theme footer\r\n*/\r\n.footerContent div{\r\n/*@editable*/ color:#707070;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:12px;\r\n/*@editable*/ line-height:125%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section footer link\r\n* @tip Set the styling for your email''s footer links. Choose a color that helps them stand out from your text.\r\n*/\r\n.footerContent div a:link, .footerContent div a:visited, /* Yahoo! Mail Override */ .footerContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.footerContent img{\r\ndisplay:inline;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section social bar style\r\n* @tip Set the background color and border for your email''s footer social bar.\r\n* @theme footer\r\n*/\r\n#social{\r\n/*@editable*/ background-color:#FAFAFA;\r\n/*@editable*/ border:0;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section social bar style\r\n* @tip Set the background color and border for your email''s footer social bar.\r\n*/\r\n#social div{\r\n/*@editable*/ text-align:center;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section utility bar style\r\n* @tip Set the background color and border for your email''s footer utility bar.\r\n* @theme footer\r\n*/\r\n#utility{\r\n/*@editable*/ background-color:#FFFFFF;\r\n/*@editable*/ border:0;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section utility bar style\r\n* @tip Set the background color and border for your email''s footer utility bar.\r\n*/\r\n#utility div{\r\n/*@editable*/ text-align:center;\r\n}	</style>\r\n</p>\r\n<center>\r\n<table border="0" cellpadding="0" cellspacing="0" height="100%" id="backgroundTable" width="100%">\r\n<tbody>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Preheader \\\\ -->					<table border="0" cellpadding="10" cellspacing="0" id="templatePreheader" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="preheaderContent" valign="top">\r\n<!-- // Begin Module: Standard Preheader \\ -->									<table border="0" cellpadding="10" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<div>\r\nUse this area to offer a short teaser of your email''s content. Text here will show in the preview area of some email clients.</div>\r\n</td>\r\n<td valign="top" width="190">\r\n<div style="text-align: right;">\r\n{date}</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Standard Preheader \\ -->								</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Preheader \\\\ -->					<table border="0" cellpadding="0" cellspacing="0" id="templateContainer" width="600">\r\n<tbody>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Header \\\\ -->									<table border="0" cellpadding="0" cellspacing="0" id="templateHeader" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="headerContent">\r\n<!-- // Begin Module: Standard Header Image \\\\ -->													<img id="headerImage campaign-icon" src="images/newsletters/images/placeholder_600.gif" style="max-width:600px;" /> <!-- // End Module: Standard Header Image \\\\ --></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Header \\\\ -->								</td>\r\n</tr>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Body \\\\ -->									<table border="0" cellpadding="0" cellspacing="0" id="templateBody" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="leftColumnContent" valign="top" width="280">\r\n<!-- // Begin Module: Top Image with Content \\\\ -->													<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<img src="images/newsletters/images/placeholder_260.gif" style="max-width:260px;" />\r\n<div>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\n<strong>Repeatable content blocks:</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec iaculis, velit at semper placerat, tellus velit vehicula orci, a tristique lorem orci eu nisl. Sed et arcu quam. Donec varius arcu et ante convallis, quis laoreet lacus mattis.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Top Image with Content \\\\ -->												</td>\r\n<td class="centerColumnContent" valign="top" width="130">\r\n<!-- // Begin Module: Top Image with Content \\\\ -->													<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<img src="images/newsletters/images/placeholder_110.gif" style="max-width:110px;" />\r\n<div>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\n<strong>Repeatable content blocks:</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec iaculis, velit at semper placerat, tellus velit vehicula orci, a tristique lorem orci eu nisl. Sed et arcu quam. Donec varius arcu et ante convallis, quis laoreet lacus mattis.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Top Image with Content \\\\ -->												</td>\r\n<td class="rightColumnContent" valign="top" width="130">\r\n<!-- // Begin Module: Top Image with Content \\\\ -->													<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<img src="images/newsletters/images/placeholder_110.gif" style="max-width:110px;" />\r\n<div>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\n<strong>Repeatable content blocks:</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec iaculis, velit at semper placerat, tellus velit vehicula orci, a tristique lorem orci eu nisl. Sed et arcu quam. Donec varius arcu et ante convallis, quis laoreet lacus mattis.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Top Image with Content \\\\ -->												</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Body \\\\ -->								</td>\r\n</tr>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Footer \\\\ -->									<table border="0" cellpadding="10" cellspacing="0" id="templateFooter" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="footerContent" valign="top">\r\n<!-- // Begin Module: Standard Footer \\\\ -->													<table border="0" cellpadding="10" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td colspan="2" id="social" valign="middle">\r\n<div>\r\n&nbsp;<a href="http://www.twitter.com">follow on Twitter</a> | <a href="http://www.facebook.com">friend on Facebook</a></div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td valign="top" width="350">\r\n<div style="text-align: center;">\r\n<a href="http://www.yourcompany.com">www.yourcompany.com</a><br />\r\n<br />\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam semper leo sit amet tortor blandit, id dictum nisi condimentum. Nulla justo ligula, tristique et euismod ut, mollis vitae nisl.</div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan="2" id="utility" valign="middle">\r\n<div>\r\n{unsubscribe}</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Standard Footer \\\\ -->												</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Footer \\\\ -->								</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</center>\r\n', 'images/newsletters/thumbnails/fancy-50-25-25.jpg');
INSERT INTO `newsletter_templates` (`id`, `title`, `description`, `body`, `thumbnail`) VALUES(20, 'fancy-50-25-25-1', 'Τρίστηλο άρθρων στην κορυφή με μεγαλύτερη την πρώτη στήλη και ένα άρθρο πλήρους πλάτους στο κάτω μέρος', '<p>\r\n<style type="text/css">\r\n/* Client-specific Styles */\r\n#outlook a{padding:0;} /* Force Outlook to provide a "view in browser" button. */\r\nbody{width:100% !important;} .ReadMsgBody{width:100%;} .ExternalClass{width:100%;} /* Force Hotmail to display emails at full width */\r\nbody{-webkit-text-size-adjust:none;} /* Prevent Webkit platforms from changing default text sizes. */\r\n\r\n/* Reset Styles */\r\nbody{margin:0; padding:0;}\r\nimg{border:0; height:auto; line-height:100%; outline:none; text-decoration:none;}\r\ntable td{border-collapse:collapse;}\r\n#backgroundTable{height:100% !important; margin:0; padding:0; width:100% !important;}\r\n\r\n/* Template Styles */\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: COMMON PAGE ELEMENTS /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Page\r\n* @section background color\r\n* @tip Set the background color for your email. You may want to choose one that matches your company''s branding.\r\n* @theme page\r\n*/\r\nbody, #backgroundTable{\r\n/*@editable*/ background-color:#FAFAFA;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section email border\r\n* @tip Set the border for your email.\r\n*/\r\n#templateContainer{\r\n/*@editable*/ border: 1px solid #DDDDDD;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 1\r\n* @tip Set the styling for all first-level headings in your emails. These should be the largest of your headings.\r\n* @style heading 1\r\n*/\r\nh1, .h1{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:34px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 2\r\n* @tip Set the styling for all second-level headings in your emails.\r\n* @style heading 2\r\n*/\r\nh2, .h2{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:30px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 3\r\n* @tip Set the styling for all third-level headings in your emails.\r\n* @style heading 3\r\n*/\r\nh3, .h3{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:26px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 4\r\n* @tip Set the styling for all fourth-level headings in your emails. These should be the smallest of your headings.\r\n* @style heading 4\r\n*/\r\nh4, .h4{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:22px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: PREHEADER /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Header\r\n* @section preheader style\r\n* @tip Set the background color for your email''s preheader area.\r\n* @theme page\r\n*/\r\n#templatePreheader{\r\n/*@editable*/ background-color:#FAFAFA;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section preheader text\r\n* @tip Set the styling for your email''s preheader text. Choose a size and color that is easy to read.\r\n*/\r\n.preheaderContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:10px;\r\n/*@editable*/ line-height:100%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section preheader link\r\n* @tip Set the styling for your email''s preheader links. Choose a color that helps them stand out from your text.\r\n*/\r\n.preheaderContent div a:link, .preheaderContent div a:visited, /* Yahoo! Mail Override */ .preheaderContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: HEADER /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Header\r\n* @section header style\r\n* @tip Set the background color and border for your email''s header area.\r\n* @theme header\r\n*/\r\n#templateHeader{\r\n/*@editable*/ background-color:#FFFFFF;\r\n/*@editable*/ border-bottom:0;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section header text\r\n* @tip Set the styling for your email''s header text. Choose a size and color that is easy to read.\r\n*/\r\n.headerContent{\r\n/*@editable*/ color:#202020;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:34px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\n/*@editable*/ padding:0;\r\n/*@editable*/ text-align:center;\r\n/*@editable*/ vertical-align:middle;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section header link\r\n* @tip Set the styling for your email''s header links. Choose a color that helps them stand out from your text.\r\n*/\r\n.headerContent a:link, .headerContent a:visited, /* Yahoo! Mail Override */ .headerContent a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n#headerImage{\r\nheight:auto;\r\nmax-width:600px;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: COLUMNS; LEFT, CENTER, RIGHT /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Columns\r\n* @section left column text\r\n* @tip Set the styling for your email''s left column text. Choose a size and color that is easy to read.\r\n*/\r\n.leftColumnContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section left column text\r\n* @tip Set the styling for your email''s left column text. Choose a size and color that is easy to read.\r\n*/\r\n.leftColumnContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:14px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section left column link\r\n* @tip Set the styling for your email''s left column links. Choose a color that helps them stand out from your text.\r\n*/\r\n.leftColumnContent div a:link, .leftColumnContent div a:visited, /* Yahoo! Mail Override */ .leftColumnContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.leftColumnContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n/**\r\n* @tab Columns\r\n* @section center column text\r\n* @tip Set the styling for your email''s center column text. Choose a size and color that is easy to read.\r\n*/\r\n.centerColumnContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section center column text\r\n* @tip Set the styling for your email''s center column text. Choose a size and color that is easy to read.\r\n*/\r\n.centerColumnContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:12px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section center column link\r\n* @tip Set the styling for your email''s center column links. Choose a color that helps them stand out from your text.\r\n*/\r\n.centerColumnContent div a:link, .centerColumnContent div a:visited, /* Yahoo! Mail Override */ .centerColumnContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.centerColumnContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section right column text\r\n* @tip Set the styling for your email''s right column text. Choose a size and color that is easy to read.\r\n*/\r\n.rightColumnContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section right column text\r\n* @tip Set the styling for your email''s right column text. Choose a size and color that is easy to read.\r\n*/\r\n.rightColumnContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:12px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section right column link\r\n* @tip Set the styling for your email''s right column links. Choose a color that helps them stand out from your text.\r\n*/\r\n.rightColumnContent div a:link, .rightColumnContent div a:visited, /* Yahoo! Mail Override */ .rightColumnContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.rightColumnContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: MAIN BODY /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Body\r\n* @section body style\r\n* @tip Set the background color for your email''s body area.\r\n*/\r\n#templateContainer, .bodyContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Body\r\n* @section body text\r\n* @tip Set the styling for your email''s main content text. Choose a size and color that is easy to read.\r\n* @theme main\r\n*/\r\n.bodyContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:14px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Body\r\n* @section body link\r\n* @tip Set the styling for your email''s main content links. Choose a color that helps them stand out from your text.\r\n*/\r\n.bodyContent div a:link, .bodyContent div a:visited, /* Yahoo! Mail Override */ .bodyContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.bodyContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: FOOTER /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Footer\r\n* @section footer style\r\n* @tip Set the background color and top border for your email''s footer area.\r\n* @theme footer\r\n*/\r\n#templateFooter{\r\n/*@editable*/ background-color:#FFFFFF;\r\n/*@editable*/ border-top:0;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section footer text\r\n* @tip Set the styling for your email''s footer text. Choose a size and color that is easy to read.\r\n* @theme footer\r\n*/\r\n.footerContent div{\r\n/*@editable*/ color:#707070;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:12px;\r\n/*@editable*/ line-height:125%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section footer link\r\n* @tip Set the styling for your email''s footer links. Choose a color that helps them stand out from your text.\r\n*/\r\n.footerContent div a:link, .footerContent div a:visited, /* Yahoo! Mail Override */ .footerContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.footerContent img{\r\ndisplay:inline;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section social bar style\r\n* @tip Set the background color and border for your email''s footer social bar.\r\n* @theme footer\r\n*/\r\n#social{\r\n/*@editable*/ background-color:#FAFAFA;\r\n/*@editable*/ border:0;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section social bar style\r\n* @tip Set the background color and border for your email''s footer social bar.\r\n*/\r\n#social div{\r\n/*@editable*/ text-align:center;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section utility bar style\r\n* @tip Set the background color and border for your email''s footer utility bar.\r\n* @theme footer\r\n*/\r\n#utility{\r\n/*@editable*/ background-color:#FFFFFF;\r\n/*@editable*/ border:0;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section utility bar style\r\n* @tip Set the background color and border for your email''s footer utility bar.\r\n*/\r\n#utility div{\r\n/*@editable*/ text-align:center;\r\n}	</style>\r\n</p>\r\n<center>\r\n<table border="0" cellpadding="0" cellspacing="0" height="100%" id="backgroundTable" width="100%">\r\n<tbody>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Preheader \\\\ -->					<table border="0" cellpadding="10" cellspacing="0" id="templatePreheader" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="preheaderContent" valign="top">\r\n<!-- // Begin Module: Standard Preheader \\ -->									<table border="0" cellpadding="10" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<div>\r\nUse this area to offer a short teaser of your email''s content. Text here will show in the preview area of some email clients.</div>\r\n</td>\r\n<td valign="top" width="190">\r\n<div style="text-align: right;">\r\n{date}</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Standard Preheader \\ -->								</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Preheader \\\\ -->					<table border="0" cellpadding="0" cellspacing="0" id="templateContainer" width="600">\r\n<tbody>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Header \\\\ -->									<table border="0" cellpadding="0" cellspacing="0" id="templateHeader" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="headerContent">\r\n<!-- // Begin Module: Standard Header Image \\\\ -->													<img id="headerImage campaign-icon" src="images/newsletters/images/placeholder_600.gif" style="max-width:600px;" /> <!-- // End Module: Standard Header Image \\\\ --></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Header \\\\ -->								</td>\r\n</tr>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Body \\\\ -->									<table border="0" cellpadding="0" cellspacing="0" id="templateBody" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="leftColumnContent" valign="top" width="280">\r\n<!-- // Begin Module: Top Image with Content \\\\ -->													<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<img src="images/newsletters/images/placeholder_260.gif" style="max-width:260px;" />\r\n<div>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\n<strong>Repeatable content blocks:</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec iaculis, velit at semper placerat, tellus velit vehicula orci, a tristique lorem orci eu nisl. Sed et arcu quam. Donec varius arcu et ante convallis, quis laoreet lacus mattis.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Top Image with Content \\\\ -->												</td>\r\n<td class="centerColumnContent" valign="top" width="130">\r\n<!-- // Begin Module: Top Image with Content \\\\ -->													<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<img src="images/newsletters/images/placeholder_110.gif" style="max-width:110px;" />\r\n<div>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\n<strong>Repeatable content blocks:</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec iaculis, velit at semper placerat, tellus velit vehicula orci, a tristique lorem orci eu nisl. Sed et arcu quam. Donec varius arcu et ante convallis, quis laoreet lacus mattis.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Top Image with Content \\\\ -->												</td>\r\n<td class="rightColumnContent" valign="top" width="130">\r\n<!-- // Begin Module: Top Image with Content \\\\ -->													<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<img src="images/newsletters/images/placeholder_110.gif" style="max-width:110px;" />\r\n<div>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\n<strong>Repeatable content blocks:</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec iaculis, velit at semper placerat, tellus velit vehicula orci, a tristique lorem orci eu nisl. Sed et arcu quam. Donec varius arcu et ante convallis, quis laoreet lacus mattis.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Top Image with Content \\\\ -->												</td>\r\n</tr>\r\n<tr>\r\n<td class="bodyContent" colspan="3" valign="top">\r\n<!-- // Begin Module: Standard Content \\\\ -->													<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<div>\r\n<h1 class="h1">\r\nHeading 1</h1>\r\n<h2 class="h2">\r\nHeading 2</h2>\r\n<h3 class="h3">\r\nHeading 3</h3>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\nHi {name},<br />\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam semper leo sit amet tortor blandit, id dictum nisi condimentum. Nulla justo ligula, tristique et euismod ut, mollis vitae nisl. Pellentesque id lacinia arcu. Nunc mollis eros velit, ac hendrerit ipsum auctor eget. Maecenas id massa enim. Nullam sit amet mauris sodales, tincidunt lacus in, suscipit lectus. Maecenas ut semper purus, et mollis velit.<br />\r\n<br />\r\nIn rhoncus a velit id vulputate. Nulla accumsan est in nibh ullamcorper iaculis. Sed id convallis mi, eu commodo sapien. Phasellus hendrerit, tellus in tincidunt venenatis, est elit dictum nisi, in pretium mauris orci quis metus. Vivamus a nisl vitae sapien ultricies tempor tempus eu ligula. Fusce felis mi, accumsan bibendum est non, venenatis cursus elit. Nunc at scelerisque elit. Quisque sed sem lacinia, blandit arcu nec, vulputate ligula. Nulla interdum risus sodales metus bibendum fermentum.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Standard Content \\\\ -->												</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Body \\\\ -->								</td>\r\n</tr>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Footer \\\\ -->									<table border="0" cellpadding="10" cellspacing="0" id="templateFooter" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="footerContent" valign="top">\r\n<!-- // Begin Module: Standard Footer \\\\ -->													<table border="0" cellpadding="10" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td colspan="2" id="social" valign="middle">\r\n<div>\r\n&nbsp;<a href="http://www.twitter.com">follow on Twitter</a> | <a href="http://www.facebook.com">friend on Facebook</a></div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td valign="top" width="350">\r\n<div style="text-align: center;">\r\n<a href="http://www.yourcompany.com">www.yourcompany.com</a><br />\r\n<br />\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam semper leo sit amet tortor blandit, id dictum nisi condimentum. Nulla justo ligula, tristique et euismod ut, mollis vitae nisl.</div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan="2" id="utility" valign="middle">\r\n<div>\r\n{unsubscribe}</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Standard Footer \\\\ -->												</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Footer \\\\ -->								</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</center>\r\n', 'images/newsletters/thumbnails/fancy-50-25-25-1.jpg');
INSERT INTO `newsletter_templates` (`id`, `title`, `description`, `body`, `thumbnail`) VALUES(21, 'fancy-variablelayout', 'Ένα κύριο άρθρο πλήρους πλατους στην κορυφή και δύο άρθρα από κάτω μισού πλάτους με τις εικόνες τους αριστερά και δεξιά εναλλάξ.', '<p>\r\n<style type="text/css">\r\n/* Client-specific Styles */\r\n#outlook a{padding:0;} /* Force Outlook to provide a "view in browser" button. */\r\nbody{width:100% !important;} .ReadMsgBody{width:100%;} .ExternalClass{width:100%;} /* Force Hotmail to display emails at full width */\r\nbody{-webkit-text-size-adjust:none;} /* Prevent Webkit platforms from changing default text sizes. */\r\n\r\n/* Reset Styles */\r\nbody{margin:0; padding:0;}\r\nimg{border:0; height:auto; line-height:100%; outline:none; text-decoration:none;}\r\ntable td{border-collapse:collapse;}\r\n#backgroundTable{height:100% !important; margin:0; padding:0; width:100% !important;}\r\n\r\n/* Template Styles */\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: COMMON PAGE ELEMENTS /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Page\r\n* @section background color\r\n* @tip Set the background color for your email. You may want to choose one that matches your company''s branding.\r\n* @theme page\r\n*/\r\nbody, #backgroundTable{\r\n/*@editable*/ background-color:#FAFAFA;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section email border\r\n* @tip Set the border for your email.\r\n*/\r\n#templateContainer{\r\n/*@editable*/ border: 1px solid #DDDDDD;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 1\r\n* @tip Set the styling for all first-level headings in your emails. These should be the largest of your headings.\r\n* @style heading 1\r\n*/\r\nh1, .h1{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:34px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 2\r\n* @tip Set the styling for all second-level headings in your emails.\r\n* @style heading 2\r\n*/\r\nh2, .h2{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:30px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 3\r\n* @tip Set the styling for all third-level headings in your emails.\r\n* @style heading 3\r\n*/\r\nh3, .h3{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:26px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 4\r\n* @tip Set the styling for all fourth-level headings in your emails. These should be the smallest of your headings.\r\n* @style heading 4\r\n*/\r\nh4, .h4{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:22px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: PREHEADER /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Header\r\n* @section preheader style\r\n* @tip Set the background color for your email''s preheader area.\r\n* @theme page\r\n*/\r\n#templatePreheader{\r\n/*@editable*/ background-color:#FAFAFA;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section preheader text\r\n* @tip Set the styling for your email''s preheader text. Choose a size and color that is easy to read.\r\n*/\r\n.preheaderContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:10px;\r\n/*@editable*/ line-height:100%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section preheader link\r\n* @tip Set the styling for your email''s preheader links. Choose a color that helps them stand out from your text.\r\n*/\r\n.preheaderContent div a:link, .preheaderContent div a:visited, /* Yahoo! Mail Override */ .preheaderContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: HEADER /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Header\r\n* @section header style\r\n* @tip Set the background color and border for your email''s header area.\r\n* @theme header\r\n*/\r\n#templateHeader{\r\n/*@editable*/ background-color:#FFFFFF;\r\n/*@editable*/ border-bottom:0;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section header text\r\n* @tip Set the styling for your email''s header text. Choose a size and color that is easy to read.\r\n*/\r\n.headerContent{\r\n/*@editable*/ color:#202020;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:34px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\n/*@editable*/ padding:0;\r\n/*@editable*/ text-align:center;\r\n/*@editable*/ vertical-align:middle;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section header link\r\n* @tip Set the styling for your email''s header links. Choose a color that helps them stand out from your text.\r\n*/\r\n.headerContent a:link, .headerContent a:visited, /* Yahoo! Mail Override */ .headerContent a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n#headerImage{\r\nheight:auto;\r\nmax-width:600px;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: MAIN BODY /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Body\r\n* @section body style\r\n* @tip Set the background color for your email''s body area.\r\n*/\r\n#templateContainer, .bodyContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Body\r\n* @section body text\r\n* @tip Set the styling for your email''s main content text. Choose a size and color that is easy to read.\r\n* @theme main\r\n*/\r\n.bodyContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:14px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Body\r\n* @section body link\r\n* @tip Set the styling for your email''s main content links. Choose a color that helps them stand out from your text.\r\n*/\r\n.bodyContent div a:link, .bodyContent div a:visited, /* Yahoo! Mail Override */ .bodyContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.bodyContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: FOOTER /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Footer\r\n* @section footer style\r\n* @tip Set the background color and top border for your email''s footer area.\r\n* @theme footer\r\n*/\r\n#templateFooter{\r\n/*@editable*/ background-color:#FFFFFF;\r\n/*@editable*/ border-top:0;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section footer text\r\n* @tip Set the styling for your email''s footer text. Choose a size and color that is easy to read.\r\n* @theme footer\r\n*/\r\n.footerContent div{\r\n/*@editable*/ color:#707070;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:12px;\r\n/*@editable*/ line-height:125%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section footer link\r\n* @tip Set the styling for your email''s footer links. Choose a color that helps them stand out from your text.\r\n*/\r\n.footerContent div a:link, .footerContent div a:visited, /* Yahoo! Mail Override */ .footerContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.footerContent img{\r\ndisplay:inline;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section social bar style\r\n* @tip Set the background color and border for your email''s footer social bar.\r\n* @theme footer\r\n*/\r\n#social{\r\n/*@editable*/ background-color:#FAFAFA;\r\n/*@editable*/ border:0;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section social bar style\r\n* @tip Set the background color and border for your email''s footer social bar.\r\n*/\r\n#social div{\r\n/*@editable*/ text-align:center;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section utility bar style\r\n* @tip Set the background color and border for your email''s footer utility bar.\r\n* @theme footer\r\n*/\r\n#utility{\r\n/*@editable*/ background-color:#FFFFFF;\r\n/*@editable*/ border:0;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section utility bar style\r\n* @tip Set the background color and border for your email''s footer utility bar.\r\n*/\r\n#utility div{\r\n/*@editable*/ text-align:center;\r\n}	</style>\r\n</p>\r\n<center>\r\n<table border="0" cellpadding="0" cellspacing="0" height="100%" id="backgroundTable" width="100%">\r\n<tbody>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Preheader \\\\ -->					<table border="0" cellpadding="10" cellspacing="0" id="templatePreheader" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="preheaderContent" valign="top">\r\n<!-- // Begin Module: Standard Preheader \\ -->									<table border="0" cellpadding="10" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<div>\r\nUse this area to offer a short teaser of your email''s content. Text here will show in the preview area of some email clients.</div>\r\n</td>\r\n<td valign="top" width="190">\r\n<div style="text-align: right;">\r\n{date}</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Standard Preheader \\ -->								</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Preheader \\\\ -->					<table border="0" cellpadding="0" cellspacing="0" id="templateContainer" width="600">\r\n<tbody>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Header \\\\ -->									<table border="0" cellpadding="0" cellspacing="0" id="templateHeader" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="headerContent">\r\n<!-- // Begin Module: Standard Header Image \\\\ -->													<img id="headerImage campaign-icon" src="images/newsletters/images/placeholder_600.gif" style="max-width:600px;" /> <!-- // End Module: Standard Header Image \\\\ --></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Header \\\\ -->								</td>\r\n</tr>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Body \\\\ -->									<table border="0" cellpadding="0" cellspacing="0" id="templateBody" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="bodyContent" valign="top">\r\n<!-- // Begin Module: Standard Content \\\\ -->													<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<div>\r\n<h1 class="h1">\r\nHeading 1</h1>\r\n<h2 class="h2">\r\nHeading 2</h2>\r\n<h3 class="h3">\r\nHeading 3</h3>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\nHi {name},<br />\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam semper leo sit amet tortor blandit, id dictum nisi condimentum. Nulla justo ligula, tristique et euismod ut, mollis vitae nisl. Pellentesque id lacinia arcu. Nunc mollis eros velit, ac hendrerit ipsum auctor eget. Maecenas id massa enim. Nullam sit amet mauris sodales, tincidunt lacus in, suscipit lectus. Maecenas ut semper purus, et mollis velit.<br />\r\n<br />\r\nIn rhoncus a velit id vulputate. Nulla accumsan est in nibh ullamcorper iaculis. Sed id convallis mi, eu commodo sapien. Phasellus hendrerit, tellus in tincidunt venenatis, est elit dictum nisi, in pretium mauris orci quis metus. Vivamus a nisl vitae sapien ultricies tempor tempus eu ligula. Fusce felis mi, accumsan bibendum est non, venenatis cursus elit. Nunc at scelerisque elit. Quisque sed sem lacinia, blandit arcu nec, vulputate ligula. Nulla interdum risus sodales metus bibendum fermentum.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Standard Content \\\\ --><!-- // Begin Module: Left Image with Content \\\\ -->													<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td align="center" valign="top">\r\n<img src="images/newsletters/images/placeholder_260.gif" style="max-width:250px;" /></td>\r\n<td valign="top">\r\n<div>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\n<strong>Variable content blocks:</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam semper leo sit amet tortor blandit, id dictum nisi condimentum. Nulla justo ligula, tristique et euismod ut, mollis vitae nisl.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Left Image with Content \\\\ --><!-- // Begin Module: Right Image with Content \\\\ -->													<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<div>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\n<strong>Variable content blocks:</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam semper leo sit amet tortor blandit, id dictum nisi condimentum. Nulla justo ligula, tristique et euismod ut, mollis vitae nisl.</div>\r\n</td>\r\n<td align="center" valign="top">\r\n<img src="images/newsletters/images/placeholder_260.gif" style="max-width:250px;" /></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Right Image with Content \\\\ -->												</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Body \\\\ -->								</td>\r\n</tr>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Footer \\\\ -->									<table border="0" cellpadding="10" cellspacing="0" id="templateFooter" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="footerContent" valign="top">\r\n<!-- // Begin Module: Standard Footer \\\\ -->													<table border="0" cellpadding="10" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td colspan="2" id="social" valign="middle">\r\n<div>\r\n&nbsp;<a href="http://www.twitter.com">follow on Twitter</a> | <a href="http://www.facebook.com">friend on Facebook</a></div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td valign="top" width="350">\r\n<div style="text-align: center;">\r\n<a href="http://www.yourcompany.com">www.yourcompany.com</a><br />\r\n<br />\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam semper leo sit amet tortor blandit, id dictum nisi condimentum. Nulla justo ligula, tristique et euismod ut, mollis vitae nisl.</div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan="2" id="utility" valign="middle">\r\n<div>\r\n{unsubscribe}</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Standard Footer \\\\ -->												</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Footer \\\\ -->								</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</center>\r\n', 'images/newsletters/thumbnails/fancy-variablelayout.jpg');
INSERT INTO `newsletter_templates` (`id`, `title`, `description`, `body`, `thumbnail`) VALUES(22, 'gallery-1-4', 'Ένα κύριο άρθρο πλήρους πλάτους στην κορυφή και ένα τετράστηλο με άρθρα από κάτω.', '<p>\r\n<style type="text/css">\r\n/* Client-specific Styles */\r\n#outlook a{padding:0;} /* Force Outlook to provide a "view in browser" button. */\r\nbody{width:100% !important;} .ReadMsgBody{width:100%;} .ExternalClass{width:100%;} /* Force Hotmail to display emails at full width */\r\nbody{-webkit-text-size-adjust:none;} /* Prevent Webkit platforms from changing default text sizes. */\r\n\r\n/* Reset Styles */\r\nbody{margin:0; padding:0;}\r\nimg{border:0; height:auto; line-height:100%; outline:none; text-decoration:none;}\r\ntable td{border-collapse:collapse;}\r\n#backgroundTable{height:100% !important; margin:0; padding:0; width:100% !important;}\r\n\r\n/* Template Styles */\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: COMMON PAGE ELEMENTS /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Page\r\n* @section background color\r\n* @tip Set the background color for your email. You may want to choose one that matches your company''s branding.\r\n* @theme page\r\n*/\r\nbody, #backgroundTable{\r\n/*@editable*/ background-color:#FAFAFA;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section email border\r\n* @tip Set the border for your email.\r\n*/\r\n#templateContainer{\r\n/*@editable*/ border: 1px solid #DDDDDD;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 1\r\n* @tip Set the styling for all first-level headings in your emails. These should be the largest of your headings.\r\n* @style heading 1\r\n*/\r\nh1, .h1{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:34px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 2\r\n* @tip Set the styling for all second-level headings in your emails.\r\n* @style heading 2\r\n*/\r\nh2, .h2{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:30px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 3\r\n* @tip Set the styling for all third-level headings in your emails.\r\n* @style heading 3\r\n*/\r\nh3, .h3{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:26px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 4\r\n* @tip Set the styling for all fourth-level headings in your emails. These should be the smallest of your headings.\r\n* @style heading 4\r\n*/\r\nh4, .h4{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:22px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: PREHEADER /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Header\r\n* @section preheader style\r\n* @tip Set the background color for your email''s preheader area.\r\n* @theme page\r\n*/\r\n#templatePreheader{\r\n/*@editable*/ background-color:#FAFAFA;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section preheader text\r\n* @tip Set the styling for your email''s preheader text. Choose a size and color that is easy to read.\r\n*/\r\n.preheaderContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:10px;\r\n/*@editable*/ line-height:100%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section preheader link\r\n* @tip Set the styling for your email''s preheader links. Choose a color that helps them stand out from your text.\r\n*/\r\n.preheaderContent div a:link, .preheaderContent div a:visited, /* Yahoo! Mail Override */ .preheaderContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: HEADER /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Header\r\n* @section header style\r\n* @tip Set the background color and border for your email''s header area.\r\n* @theme header\r\n*/\r\n#templateHeader{\r\n/*@editable*/ background-color:#FFFFFF;\r\n/*@editable*/ border-bottom:0;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section header text\r\n* @tip Set the styling for your email''s header text. Choose a size and color that is easy to read.\r\n*/\r\n.headerContent{\r\n/*@editable*/ color:#202020;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:34px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\n/*@editable*/ padding:0;\r\n/*@editable*/ text-align:center;\r\n/*@editable*/ vertical-align:middle;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section header link\r\n* @tip Set the styling for your email''s header links. Choose a color that helps them stand out from your text.\r\n*/\r\n.headerContent a:link, .headerContent a:visited, /* Yahoo! Mail Override */ .headerContent a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n#headerImage{\r\nheight:auto;\r\nmax-width:600px;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: MAIN BODY /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Body\r\n* @section body style\r\n* @tip Set the background color for your email''s body area.\r\n*/\r\n#templateContainer, .bodyContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Body\r\n* @section body text\r\n* @tip Set the styling for your email''s main content text. Choose a size and color that is easy to read.\r\n* @theme main\r\n*/\r\n.bodyContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:14px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Body\r\n* @section body link\r\n* @tip Set the styling for your email''s main content links. Choose a color that helps them stand out from your text.\r\n*/\r\n.bodyContent div a:link, .bodyContent div a:visited, /* Yahoo! Mail Override */ .bodyContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.bodyContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: COLUMNS; ONE, TWO, THREE, FOUR /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Columns\r\n* @section column one text\r\n* @tip Set the styling for your email''s first column text. Choose a size and color that is easy to read.\r\n*/\r\n.columnOneContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section column one text\r\n* @tip Set the styling for your email''s first column text. Choose a size and color that is easy to read.\r\n*/\r\n.columnOneContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:12px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section column one link\r\n* @tip Set the styling for your email''s first column links. Choose a color that helps them stand out from your text.\r\n*/\r\n.columnOneContent div a:link, .columnOneContent div a:visited, /* Yahoo! Mail Override */ .columnOneContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.columnOneContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section column two text\r\n* @tip Set the styling for your email''s second column text. Choose a size and color that is easy to read.\r\n*/\r\n.columnTwoContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section column two text\r\n* @tip Set the styling for your email''s second column text. Choose a size and color that is easy to read.\r\n*/\r\n.columnTwoContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:12px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section column two link\r\n* @tip Set the styling for your email''s second column links. Choose a color that helps them stand out from your text.\r\n*/\r\n.columnTwoContent div a:link, .columnTwoContent div a:visited, /* Yahoo! Mail Override */ .columnTwoContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.columnTwoContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section column three text\r\n* @tip Set the styling for your email''s third column text. Choose a size and color that is easy to read.\r\n*/\r\n.columnThreeContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section column three text\r\n* @tip Set the styling for your email''s third column text. Choose a size and color that is easy to read.\r\n*/\r\n.columnThreeContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:12px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section column three link\r\n* @tip Set the styling for your email''s third column links. Choose a color that helps them stand out from your text.\r\n*/\r\n.columnThreeContent div a:link, .columnThreeContent div a:visited, /* Yahoo! Mail Override */ .columnThreeContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.columnThreeContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section column four text\r\n* @tip Set the styling for your email''s fourth column text. Choose a size and color that is easy to read.\r\n*/\r\n.columnFourContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section column four text\r\n* @tip Set the styling for your email''s fourth column text. Choose a size and color that is easy to read.\r\n*/\r\n.columnFourContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:12px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section column four link\r\n* @tip Set the styling for your email''s fourth column links. Choose a color that helps them stand out from your text.\r\n*/\r\n.columnFourContent div a:link, .columnFourContent div a:visited, /* Yahoo! Mail Override */ .columnFourContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.columnFourContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: FOOTER /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Footer\r\n* @section footer style\r\n* @tip Set the background color and top border for your email''s footer area.\r\n* @theme footer\r\n*/\r\n#templateFooter{\r\n/*@editable*/ background-color:#FFFFFF;\r\n/*@editable*/ border-top:0;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section footer text\r\n* @tip Set the styling for your email''s footer text. Choose a size and color that is easy to read.\r\n* @theme footer\r\n*/\r\n.footerContent div{\r\n/*@editable*/ color:#707070;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:12px;\r\n/*@editable*/ line-height:125%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section footer link\r\n* @tip Set the styling for your email''s footer links. Choose a color that helps them stand out from your text.\r\n*/\r\n.footerContent div a:link, .footerContent div a:visited, /* Yahoo! Mail Override */ .footerContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.footerContent img{\r\ndisplay:inline;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section social bar style\r\n* @tip Set the background color and border for your email''s footer social bar.\r\n* @theme footer\r\n*/\r\n#social{\r\n/*@editable*/ background-color:#FAFAFA;\r\n/*@editable*/ border:0;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section social bar style\r\n* @tip Set the background color and border for your email''s footer social bar.\r\n*/\r\n#social div{\r\n/*@editable*/ text-align:center;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section utility bar style\r\n* @tip Set the background color and border for your email''s footer utility bar.\r\n* @theme footer\r\n*/\r\n#utility{\r\n/*@editable*/ background-color:#FFFFFF;\r\n/*@editable*/ border:0;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section utility bar style\r\n* @tip Set the background color and border for your email''s footer utility bar.\r\n*/\r\n#utility div{\r\n/*@editable*/ text-align:center;\r\n}	</style>\r\n</p>\r\n<center>\r\n<table border="0" cellpadding="0" cellspacing="0" height="100%" id="backgroundTable" width="100%">\r\n<tbody>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Preheader \\\\ -->					<table border="0" cellpadding="10" cellspacing="0" id="templatePreheader" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="preheaderContent" valign="top">\r\n<!-- // Begin Module: Standard Preheader \\ -->									<table border="0" cellpadding="10" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<div>\r\nUse this area to offer a short teaser of your email''s content. Text here will show in the preview area of some email clients.</div>\r\n</td>\r\n<td valign="top" width="190">\r\n<div style="text-align: right;">\r\n{date}</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Standard Preheader \\ -->								</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Preheader \\\\ -->					<table border="0" cellpadding="0" cellspacing="0" id="templateContainer" width="600">\r\n<tbody>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Header \\\\ -->									<table border="0" cellpadding="0" cellspacing="0" id="templateHeader" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="headerContent">\r\n<!-- // Begin Module: Standard Header Image \\\\ -->													<img id="headerImage campaign-icon" src="images/newsletters/images/placeholder_600.gif" style="max-width:600px;" /> <!-- // End Module: Standard Header Image \\\\ --></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Header \\\\ -->								</td>\r\n</tr>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Body \\\\ -->									<table border="0" cellpadding="0" cellspacing="0" id="templateBody" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="bodyContent" colspan="4" valign="top">\r\n<!-- // Begin Module: Standard Content \\\\ -->													<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<div>\r\n<h1 class="h1">\r\nHeading 1</h1>\r\n<h2 class="h2">\r\nHeading 2</h2>\r\n<h3 class="h3">\r\nHeading 3</h3>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\nHi {name},<br />\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam semper leo sit amet tortor blandit, id dictum nisi condimentum. Nulla justo ligula, tristique et euismod ut, mollis vitae nisl. Pellentesque id lacinia arcu. Nunc mollis eros velit, ac hendrerit ipsum auctor eget. Maecenas id massa enim. Nullam sit amet mauris sodales, tincidunt lacus in, suscipit lectus. Maecenas ut semper purus, et mollis velit.<br />\r\n<br />\r\nIn rhoncus a velit id vulputate. Nulla accumsan est in nibh ullamcorper iaculis. Sed id convallis mi, eu commodo sapien. Phasellus hendrerit, tellus in tincidunt venenatis, est elit dictum nisi, in pretium mauris orci quis metus. Vivamus a nisl vitae sapien ultricies tempor tempus eu ligula. Fusce felis mi, accumsan bibendum est non, venenatis cursus elit. Nunc at scelerisque elit. Quisque sed sem lacinia, blandit arcu nec, vulputate ligula. Nulla interdum risus sodales metus bibendum fermentum.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Standard Content \\\\ -->												</td>\r\n</tr>\r\n<tr>\r\n<td class="columnOneContent" valign="top" width="130">\r\n<!-- // Begin Module: Top Image with Content \\\\ -->													<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<img src="images/newsletters/images/placeholder_110.gif" style="max-width:110px;" />\r\n<div>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\n<strong>Repeatable content blocks:</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec iaculis, velit at semper placerat, tellus velit vehicula orci, a tristique lorem orci eu nisl. Sed et arcu quam. Donec varius arcu et ante convallis, quis laoreet lacus mattis.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Top Image with Content \\\\ -->												</td>\r\n<td class="columnTwoContent" valign="top" width="130">\r\n<!-- // Begin Module: Top Image with Content \\\\ -->													<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<img src="images/newsletters/images/placeholder_110.gif" style="max-width:110px;" />\r\n<div>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\n<strong>Repeatable content blocks:</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec iaculis, velit at semper placerat, tellus velit vehicula orci, a tristique lorem orci eu nisl. Sed et arcu quam. Donec varius arcu et ante convallis, quis laoreet lacus mattis.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Top Image with Content \\\\ -->												</td>\r\n<td class="columnThreeContent" valign="top" width="130">\r\n<!-- // Begin Module: Top Image with Content \\\\ -->													<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<img src="images/newsletters/images/placeholder_110.gif" style="max-width:110px;" />\r\n<div>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\n<strong>Repeatable content blocks:</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec iaculis, velit at semper placerat, tellus velit vehicula orci, a tristique lorem orci eu nisl. Sed et arcu quam. Donec varius arcu et ante convallis, quis laoreet lacus mattis.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Top Image with Content \\\\ -->												</td>\r\n<td class="columnFourContent" valign="top" width="130">\r\n<!-- // Begin Module: Top Image with Content \\\\ -->													<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<img src="images/newsletters/images/placeholder_110.gif" style="max-width:110px;" />\r\n<div>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\n<strong>Repeatable content blocks:</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec iaculis, velit at semper placerat, tellus velit vehicula orci, a tristique lorem orci eu nisl. Sed et arcu quam. Donec varius arcu et ante convallis, quis laoreet lacus mattis.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Top Image with Content \\\\ -->												</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Body \\\\ -->								</td>\r\n</tr>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Footer \\\\ -->									<table border="0" cellpadding="10" cellspacing="0" id="templateFooter" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="footerContent" valign="top">\r\n<!-- // Begin Module: Standard Footer \\\\ -->													<table border="0" cellpadding="10" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td colspan="2" id="social" valign="middle">\r\n<div>\r\n&nbsp;<a href="http://www.twitter.com">follow on Twitter</a> | <a href="http://www.facebook.com">friend on Facebook</a></div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td valign="top" width="350">\r\n<div style="text-align: center;">\r\n<a href="http://www.yourcompany.com">www.yourcompany.com</a><br />\r\n<br />\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam semper leo sit amet tortor blandit, id dictum nisi condimentum. Nulla justo ligula, tristique et euismod ut, mollis vitae nisl.</div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan="2" id="utility" valign="middle">\r\n<div>\r\n{unsubscribe}</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Standard Footer \\\\ -->												</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Footer \\\\ -->								</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</center>\r\n', 'images/newsletters/thumbnails/gallery-1-4.jpg');
INSERT INTO `newsletter_templates` (`id`, `title`, `description`, `body`, `thumbnail`) VALUES(23, 'gallery-1-4-1', 'Ένα κύριο άρθρο πλήρους πλάτους στην κορυφή, ένα τετράστηλο με άρθρα από κάτω και ένα επιπλέον άρθρο πλήρους πλάτους στο τέλος.', '<p>\r\n<style type="text/css">\r\n/* Client-specific Styles */\r\n#outlook a{padding:0;} /* Force Outlook to provide a "view in browser" button. */\r\nbody{width:100% !important;} .ReadMsgBody{width:100%;} .ExternalClass{width:100%;} /* Force Hotmail to display emails at full width */\r\nbody{-webkit-text-size-adjust:none;} /* Prevent Webkit platforms from changing default text sizes. */\r\n\r\n/* Reset Styles */\r\nbody{margin:0; padding:0;}\r\nimg{border:0; height:auto; line-height:100%; outline:none; text-decoration:none;}\r\ntable td{border-collapse:collapse;}\r\n#backgroundTable{height:100% !important; margin:0; padding:0; width:100% !important;}\r\n\r\n/* Template Styles */\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: COMMON PAGE ELEMENTS /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Page\r\n* @section background color\r\n* @tip Set the background color for your email. You may want to choose one that matches your company''s branding.\r\n* @theme page\r\n*/\r\nbody, #backgroundTable{\r\n/*@editable*/ background-color:#FAFAFA;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section email border\r\n* @tip Set the border for your email.\r\n*/\r\n#templateContainer{\r\n/*@editable*/ border: 1px solid #DDDDDD;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 1\r\n* @tip Set the styling for all first-level headings in your emails. These should be the largest of your headings.\r\n* @style heading 1\r\n*/\r\nh1, .h1{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:34px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 2\r\n* @tip Set the styling for all second-level headings in your emails.\r\n* @style heading 2\r\n*/\r\nh2, .h2{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:30px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 3\r\n* @tip Set the styling for all third-level headings in your emails.\r\n* @style heading 3\r\n*/\r\nh3, .h3{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:26px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 4\r\n* @tip Set the styling for all fourth-level headings in your emails. These should be the smallest of your headings.\r\n* @style heading 4\r\n*/\r\nh4, .h4{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:22px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: PREHEADER /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Header\r\n* @section preheader style\r\n* @tip Set the background color for your email''s preheader area.\r\n* @theme page\r\n*/\r\n#templatePreheader{\r\n/*@editable*/ background-color:#FAFAFA;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section preheader text\r\n* @tip Set the styling for your email''s preheader text. Choose a size and color that is easy to read.\r\n*/\r\n.preheaderContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:10px;\r\n/*@editable*/ line-height:100%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section preheader link\r\n* @tip Set the styling for your email''s preheader links. Choose a color that helps them stand out from your text.\r\n*/\r\n.preheaderContent div a:link, .preheaderContent div a:visited, /* Yahoo! Mail Override */ .preheaderContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: HEADER /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Header\r\n* @section header style\r\n* @tip Set the background color and border for your email''s header area.\r\n* @theme header\r\n*/\r\n#templateHeader{\r\n/*@editable*/ background-color:#FFFFFF;\r\n/*@editable*/ border-bottom:0;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section header text\r\n* @tip Set the styling for your email''s header text. Choose a size and color that is easy to read.\r\n*/\r\n.headerContent{\r\n/*@editable*/ color:#202020;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:34px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\n/*@editable*/ padding:0;\r\n/*@editable*/ text-align:center;\r\n/*@editable*/ vertical-align:middle;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section header link\r\n* @tip Set the styling for your email''s header links. Choose a color that helps them stand out from your text.\r\n*/\r\n.headerContent a:link, .headerContent a:visited, /* Yahoo! Mail Override */ .headerContent a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n#headerImage{\r\nheight:auto;\r\nmax-width:600px;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: MAIN BODY & FULL-WIDTH BAND /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Body\r\n* @section body style\r\n* @tip Set the background color for your email''s body area.\r\n*/\r\n#templateContainer, .bodyContent, .fullWidthBandContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Body\r\n* @section body text\r\n* @tip Set the styling for your email''s main content text. Choose a size and color that is easy to read.\r\n* @theme main\r\n*/\r\n.bodyContent div, .fullWidthBandContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:14px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Body\r\n* @section body link\r\n* @tip Set the styling for your email''s main content links. Choose a color that helps them stand out from your text.\r\n*/\r\n.bodyContent div a:link, .bodyContent div a:visited, /* Yahoo! Mail Override */ .bodyContent div a .yshortcuts /* Yahoo! Mail Override */, .fullWidthBandContent div a:link, .fullWidthBandContent div a:visited, /* Yahoo! Mail Override */ .fullWidthBandContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.bodyContent img, .fullWidthBandContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: COLUMNS; ONE, TWO, THREE, FOUR /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Columns\r\n* @section column one text\r\n* @tip Set the styling for your email''s first column text. Choose a size and color that is easy to read.\r\n*/\r\n.columnOneContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section column one text\r\n* @tip Set the styling for your email''s first column text. Choose a size and color that is easy to read.\r\n*/\r\n.columnOneContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:12px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section column one link\r\n* @tip Set the styling for your email''s first column links. Choose a color that helps them stand out from your text.\r\n*/\r\n.columnOneContent div a:link, .columnOneContent div a:visited, /* Yahoo! Mail Override */ .columnOneContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.columnOneContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section column two text\r\n* @tip Set the styling for your email''s second column text. Choose a size and color that is easy to read.\r\n*/\r\n.columnTwoContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section column two text\r\n* @tip Set the styling for your email''s second column text. Choose a size and color that is easy to read.\r\n*/\r\n.columnTwoContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:12px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section column two link\r\n* @tip Set the styling for your email''s second column links. Choose a color that helps them stand out from your text.\r\n*/\r\n.columnTwoContent div a:link, .columnTwoContent div a:visited, /* Yahoo! Mail Override */ .columnTwoContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.columnTwoContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section column three text\r\n* @tip Set the styling for your email''s third column text. Choose a size and color that is easy to read.\r\n*/\r\n.columnThreeContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section column three text\r\n* @tip Set the styling for your email''s third column text. Choose a size and color that is easy to read.\r\n*/\r\n.columnThreeContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:12px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section column three link\r\n* @tip Set the styling for your email''s third column links. Choose a color that helps them stand out from your text.\r\n*/\r\n.columnThreeContent div a:link, .columnThreeContent div a:visited, /* Yahoo! Mail Override */ .columnThreeContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.columnThreeContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section column four text\r\n* @tip Set the styling for your email''s fourth column text. Choose a size and color that is easy to read.\r\n*/\r\n.columnFourContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section column four text\r\n* @tip Set the styling for your email''s fourth column text. Choose a size and color that is easy to read.\r\n*/\r\n.columnFourContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:12px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section column four link\r\n* @tip Set the styling for your email''s fourth column links. Choose a color that helps them stand out from your text.\r\n*/\r\n.columnFourContent div a:link, .columnFourContent div a:visited, /* Yahoo! Mail Override */ .columnFourContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.columnFourContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: FOOTER /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Footer\r\n* @section footer style\r\n* @tip Set the background color and top border for your email''s footer area.\r\n* @theme footer\r\n*/\r\n#templateFooter{\r\n/*@editable*/ background-color:#FFFFFF;\r\n/*@editable*/ border-top:0;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section footer text\r\n* @tip Set the styling for your email''s footer text. Choose a size and color that is easy to read.\r\n* @theme footer\r\n*/\r\n.footerContent div{\r\n/*@editable*/ color:#707070;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:12px;\r\n/*@editable*/ line-height:125%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section footer link\r\n* @tip Set the styling for your email''s footer links. Choose a color that helps them stand out from your text.\r\n*/\r\n.footerContent div a:link, .footerContent div a:visited, /* Yahoo! Mail Override */ .footerContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.footerContent img{\r\ndisplay:inline;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section social bar style\r\n* @tip Set the background color and border for your email''s footer social bar.\r\n* @theme footer\r\n*/\r\n#social{\r\n/*@editable*/ background-color:#FAFAFA;\r\n/*@editable*/ border:0;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section social bar style\r\n* @tip Set the background color and border for your email''s footer social bar.\r\n*/\r\n#social div{\r\n/*@editable*/ text-align:center;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section utility bar style\r\n* @tip Set the background color and border for your email''s footer utility bar.\r\n* @theme footer\r\n*/\r\n#utility{\r\n/*@editable*/ background-color:#FFFFFF;\r\n/*@editable*/ border:0;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section utility bar style\r\n* @tip Set the background color and border for your email''s footer utility bar.\r\n*/\r\n#utility div{\r\n/*@editable*/ text-align:center;\r\n}	</style>\r\n</p>\r\n<center>\r\n<table border="0" cellpadding="0" cellspacing="0" height="100%" id="backgroundTable" width="100%">\r\n<tbody>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Preheader \\\\ -->					<table border="0" cellpadding="10" cellspacing="0" id="templatePreheader" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="preheaderContent" valign="top">\r\n<!-- // Begin Module: Standard Preheader \\ -->									<table border="0" cellpadding="10" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<div>\r\nUse this area to offer a short teaser of your email''s content. Text here will show in the preview area of some email clients.</div>\r\n</td>\r\n<td valign="top" width="190">\r\n<div style="text-align: right;">\r\n{date}</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Standard Preheader \\ -->								</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Preheader \\\\ -->					<table border="0" cellpadding="0" cellspacing="0" id="templateContainer" width="600">\r\n<tbody>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Header \\\\ -->									<table border="0" cellpadding="0" cellspacing="0" id="templateHeader" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="headerContent">\r\n<!-- // Begin Module: Standard Header Image \\\\ -->													<img id="headerImage campaign-icon" src="images/newsletters/images/placeholder_600.gif" style="max-width:600px;" /> <!-- // End Module: Standard Header Image \\\\ --></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Header \\\\ -->								</td>\r\n</tr>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Body \\\\ -->									<table border="0" cellpadding="0" cellspacing="0" id="templateBody" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="bodyContent" colspan="4" valign="top">\r\n<!-- // Begin Module: Standard Content \\\\ -->													<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<div>\r\n<h1 class="h1">\r\nHeading 1</h1>\r\n<h2 class="h2">\r\nHeading 2</h2>\r\n<h3 class="h3">\r\nHeading 3</h3>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\nHi {name},<br />\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam semper leo sit amet tortor blandit, id dictum nisi condimentum. Nulla justo ligula, tristique et euismod ut, mollis vitae nisl. Pellentesque id lacinia arcu. Nunc mollis eros velit, ac hendrerit ipsum auctor eget. Maecenas id massa enim. Nullam sit amet mauris sodales, tincidunt lacus in, suscipit lectus. Maecenas ut semper purus, et mollis velit.<br />\r\n<br />\r\nIn rhoncus a velit id vulputate. Nulla accumsan est in nibh ullamcorper iaculis. Sed id convallis mi, eu commodo sapien. Phasellus hendrerit, tellus in tincidunt venenatis, est elit dictum nisi, in pretium mauris orci quis metus. Vivamus a nisl vitae sapien ultricies tempor tempus eu ligula. Fusce felis mi, accumsan bibendum est non, venenatis cursus elit. Nunc at scelerisque elit. Quisque sed sem lacinia, blandit arcu nec, vulputate ligula. Nulla interdum risus sodales metus bibendum fermentum.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Standard Content \\\\ -->												</td>\r\n</tr>\r\n<tr>\r\n<td class="columnOneContent" valign="top" width="130">\r\n<!-- // Begin Module: Top Image with Content \\\\ -->													<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<img src="images/newsletters/images/placeholder_110.gif" style="max-width:110px;" />\r\n<div>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\n<strong>Repeatable content blocks:</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec iaculis, velit at semper placerat, tellus velit vehicula orci, a tristique lorem orci eu nisl. Sed et arcu quam. Donec varius arcu et ante convallis, quis laoreet lacus mattis.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Top Image with Content \\\\ -->												</td>\r\n<td class="columnTwoContent" valign="top" width="130">\r\n<!-- // Begin Module: Top Image with Content \\\\ -->													<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<img src="images/newsletters/images/placeholder_110.gif" style="max-width:110px;" />\r\n<div>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\n<strong>Repeatable content blocks:</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec iaculis, velit at semper placerat, tellus velit vehicula orci, a tristique lorem orci eu nisl. Sed et arcu quam. Donec varius arcu et ante convallis, quis laoreet lacus mattis.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Top Image with Content \\\\ -->												</td>\r\n<td class="columnThreeContent" valign="top" width="130">\r\n<!-- // Begin Module: Top Image with Content \\\\ -->													<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<img src="images/newsletters/images/placeholder_110.gif" style="max-width:110px;" />\r\n<div>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\n<strong>Repeatable content blocks:</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec iaculis, velit at semper placerat, tellus velit vehicula orci, a tristique lorem orci eu nisl. Sed et arcu quam. Donec varius arcu et ante convallis, quis laoreet lacus mattis.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Top Image with Content \\\\ -->												</td>\r\n<td class="columnFourContent" valign="top" width="130">\r\n<!-- // Begin Module: Top Image with Content \\\\ -->													<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<img src="images/newsletters/images/placeholder_110.gif" style="max-width:110px;" />\r\n<div>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\n<strong>Repeatable content blocks:</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec iaculis, velit at semper placerat, tellus velit vehicula orci, a tristique lorem orci eu nisl. Sed et arcu quam. Donec varius arcu et ante convallis, quis laoreet lacus mattis.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Top Image with Content \\\\ -->												</td>\r\n</tr>\r\n<tr>\r\n<td class="fullWidthBandContent" colspan="4" valign="top">\r\n<!-- // Begin Module: Standard Content \\\\ -->													<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<div>\r\n<strong>Basic content area</strong>. Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the <em>Semantics</em>, a large language ocean. A small river named Duden flows by their place and supplies it with the necessary.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Standard Content \\\\ -->												</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Body \\\\ -->								</td>\r\n</tr>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Footer \\\\ -->									<table border="0" cellpadding="10" cellspacing="0" id="templateFooter" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="footerContent" valign="top">\r\n<!-- // Begin Module: Standard Footer \\\\ -->													<table border="0" cellpadding="10" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td colspan="2" id="social" valign="middle">\r\n<div>\r\n&nbsp;<a href="http://www.twitter.com">follow on Twitter</a> | <a href="http://www.facebook.com">friend on Facebook</a></div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td valign="top" width="350">\r\n<div style="text-align: center;">\r\n<a href="http://www.yourcompany.com">www.yourcompany.com</a><br />\r\n<br />\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam semper leo sit amet tortor blandit, id dictum nisi condimentum. Nulla justo ligula, tristique et euismod ut, mollis vitae nisl.</div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan="2" id="utility" valign="middle">\r\n<div>\r\n{unsubscribe}</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Standard Footer \\\\ -->												</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Footer \\\\ -->								</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</center>\r\n', 'images/newsletters/thumbnails/gallery-1-4-1.jpg');
INSERT INTO `newsletter_templates` (`id`, `title`, `description`, `body`, `thumbnail`) VALUES(24, 'gallery-1-4-2', 'Ένα κύριο άρθρο πλήρους πλάτους στην κορυφή, ένα τετράστηλο με άρθρα από κάτω και ένα δίστηλο άρθρων στο τέλος.', '<p>\r\n<style type="text/css">\r\n/* Client-specific Styles */\r\n#outlook a{padding:0;} /* Force Outlook to provide a "view in browser" button. */\r\nbody{width:100% !important;} .ReadMsgBody{width:100%;} .ExternalClass{width:100%;} /* Force Hotmail to display emails at full width */\r\nbody{-webkit-text-size-adjust:none;} /* Prevent Webkit platforms from changing default text sizes. */\r\n\r\n/* Reset Styles */\r\nbody{margin:0; padding:0;}\r\nimg{border:0; height:auto; line-height:100%; outline:none; text-decoration:none;}\r\ntable td{border-collapse:collapse;}\r\n#backgroundTable{height:100% !important; margin:0; padding:0; width:100% !important;}\r\n\r\n/* Template Styles */\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: COMMON PAGE ELEMENTS /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Page\r\n* @section background color\r\n* @tip Set the background color for your email. You may want to choose one that matches your company''s branding.\r\n* @theme page\r\n*/\r\nbody, #backgroundTable{\r\n/*@editable*/ background-color:#FAFAFA;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section email border\r\n* @tip Set the border for your email.\r\n*/\r\n#templateContainer{\r\n/*@editable*/ border: 1px solid #DDDDDD;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 1\r\n* @tip Set the styling for all first-level headings in your emails. These should be the largest of your headings.\r\n* @style heading 1\r\n*/\r\nh1, .h1{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:34px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 2\r\n* @tip Set the styling for all second-level headings in your emails.\r\n* @style heading 2\r\n*/\r\nh2, .h2{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:30px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 3\r\n* @tip Set the styling for all third-level headings in your emails.\r\n* @style heading 3\r\n*/\r\nh3, .h3{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:26px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 4\r\n* @tip Set the styling for all fourth-level headings in your emails. These should be the smallest of your headings.\r\n* @style heading 4\r\n*/\r\nh4, .h4{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:22px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: PREHEADER /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Header\r\n* @section preheader style\r\n* @tip Set the background color for your email''s preheader area.\r\n* @theme page\r\n*/\r\n#templatePreheader{\r\n/*@editable*/ background-color:#FAFAFA;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section preheader text\r\n* @tip Set the styling for your email''s preheader text. Choose a size and color that is easy to read.\r\n*/\r\n.preheaderContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:10px;\r\n/*@editable*/ line-height:100%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section preheader link\r\n* @tip Set the styling for your email''s preheader links. Choose a color that helps them stand out from your text.\r\n*/\r\n.preheaderContent div a:link, .preheaderContent div a:visited, /* Yahoo! Mail Override */ .preheaderContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: HEADER /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Header\r\n* @section header style\r\n* @tip Set the background color and border for your email''s header area.\r\n* @theme header\r\n*/\r\n#templateHeader{\r\n/*@editable*/ background-color:#FFFFFF;\r\n/*@editable*/ border-bottom:0;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section header text\r\n* @tip Set the styling for your email''s header text. Choose a size and color that is easy to read.\r\n*/\r\n.headerContent{\r\n/*@editable*/ color:#202020;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:34px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\n/*@editable*/ padding:0;\r\n/*@editable*/ text-align:center;\r\n/*@editable*/ vertical-align:middle;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section header link\r\n* @tip Set the styling for your email''s header links. Choose a color that helps them stand out from your text.\r\n*/\r\n.headerContent a:link, .headerContent a:visited, /* Yahoo! Mail Override */ .headerContent a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n#headerImage{\r\nheight:auto;\r\nmax-width:600px;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: MAIN BODY & FULL-WIDTH BAND /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Body\r\n* @section body style\r\n* @tip Set the background color for your email''s body area.\r\n*/\r\n#templateContainer, .bodyContent, .fullWidthBandContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Body\r\n* @section body text\r\n* @tip Set the styling for your email''s main content text. Choose a size and color that is easy to read.\r\n* @theme main\r\n*/\r\n.bodyContent div, .fullWidthBandContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:14px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Body\r\n* @section body link\r\n* @tip Set the styling for your email''s main content links. Choose a color that helps them stand out from your text.\r\n*/\r\n.bodyContent div a:link, .bodyContent div a:visited, /* Yahoo! Mail Override */ .bodyContent div a .yshortcuts /* Yahoo! Mail Override */, .fullWidthBandContent div a:link, .fullWidthBandContent div a:visited, /* Yahoo! Mail Override */ .fullWidthBandContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.bodyContent img, .fullWidthBandContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: MIDDLE COLUMNS; ONE, TWO, THREE, FOUR /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Middle Columns\r\n* @section column one text\r\n* @tip Set the styling for your email''s first column text. Choose a size and color that is easy to read.\r\n*/\r\n.columnOneContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Middle Columns\r\n* @section column one text\r\n* @tip Set the styling for your email''s first column text. Choose a size and color that is easy to read.\r\n*/\r\n.columnOneContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:12px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Middle Columns\r\n* @section column one link\r\n* @tip Set the styling for your email''s first column links. Choose a color that helps them stand out from your text.\r\n*/\r\n.columnOneContent div a:link, .columnOneContent div a:visited, /* Yahoo! Mail Override */ .columnOneContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.columnOneContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/**\r\n* @tab Middle Columns\r\n* @section column two text\r\n* @tip Set the styling for your email''s second column text. Choose a size and color that is easy to read.\r\n*/\r\n.columnTwoContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Middle Columns\r\n* @section column two text\r\n* @tip Set the styling for your email''s second column text. Choose a size and color that is easy to read.\r\n*/\r\n.columnTwoContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:12px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Middle Columns\r\n* @section column two link\r\n* @tip Set the styling for your email''s second column links. Choose a color that helps them stand out from your text.\r\n*/\r\n.columnTwoContent div a:link, .columnTwoContent div a:visited, /* Yahoo! Mail Override */ .columnTwoContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.columnTwoContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/**\r\n* @tab Middle Columns\r\n* @section column three text\r\n* @tip Set the styling for your email''s third column text. Choose a size and color that is easy to read.\r\n*/\r\n.columnThreeContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Middle Columns\r\n* @section column three text\r\n* @tip Set the styling for your email''s third column text. Choose a size and color that is easy to read.\r\n*/\r\n.columnThreeContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:12px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Middle Columns\r\n* @section column three link\r\n* @tip Set the styling for your email''s third column links. Choose a color that helps them stand out from your text.\r\n*/\r\n.columnThreeContent div a:link, .columnThreeContent div a:visited, /* Yahoo! Mail Override */ .columnThreeContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.columnThreeContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/**\r\n* @tab Middle Columns\r\n* @section column four text\r\n* @tip Set the styling for your email''s fourth column text. Choose a size and color that is easy to read.\r\n*/\r\n.columnFourContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Middle Columns\r\n* @section column four text\r\n* @tip Set the styling for your email''s fourth column text. Choose a size and color that is easy to read.\r\n*/\r\n.columnFourContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:12px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Middle Columns\r\n* @section column four link\r\n* @tip Set the styling for your email''s fourth column links. Choose a color that helps them stand out from your text.\r\n*/\r\n.columnFourContent div a:link, .columnFourContent div a:visited, /* Yahoo! Mail Override */ .columnFourContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.columnFourContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: LOWER COLUMNS; LEFT, CENTER, RIGHT /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Lower Columns\r\n* @section left column text\r\n* @tip Set the styling for your email''s left column text. Choose a size and color that is easy to read.\r\n*/\r\n.leftLowerColumnContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Lower Columns\r\n* @section left column text\r\n* @tip Set the styling for your email''s left column text. Choose a size and color that is easy to read.\r\n*/\r\n.leftLowerColumnContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:14px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Lower Columns\r\n* @section left column link\r\n* @tip Set the styling for your email''s left column links. Choose a color that helps them stand out from your text.\r\n*/\r\n.leftLowerColumnContent div a:link, .leftLowerColumnContent div a:visited, /* Yahoo! Mail Override */ .leftLowerColumnContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.leftLowerColumnContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/**\r\n* @tab Lower Columns\r\n* @section right column text\r\n* @tip Set the styling for your email''s right column text. Choose a size and color that is easy to read.\r\n*/\r\n.rightLowerColumnContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Lower Columns\r\n* @section right column text\r\n* @tip Set the styling for your email''s right column text. Choose a size and color that is easy to read.\r\n*/\r\n.rightLowerColumnContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:14px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Lower Columns\r\n* @section right column link\r\n* @tip Set the styling for your email''s right column links. Choose a color that helps them stand out from your text.\r\n*/\r\n.rightLowerColumnContent div a:link, .rightLowerColumnContent div a:visited, /* Yahoo! Mail Override */ .rightLowerColumnContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.rightLowerColumnContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: FOOTER /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Footer\r\n* @section footer style\r\n* @tip Set the background color and top border for your email''s footer area.\r\n* @theme footer\r\n*/\r\n#templateFooter{\r\n/*@editable*/ background-color:#FFFFFF;\r\n/*@editable*/ border-top:0;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section footer text\r\n* @tip Set the styling for your email''s footer text. Choose a size and color that is easy to read.\r\n* @theme footer\r\n*/\r\n.footerContent div{\r\n/*@editable*/ color:#707070;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:12px;\r\n/*@editable*/ line-height:125%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section footer link\r\n* @tip Set the styling for your email''s footer links. Choose a color that helps them stand out from your text.\r\n*/\r\n.footerContent div a:link, .footerContent div a:visited, /* Yahoo! Mail Override */ .footerContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.footerContent img{\r\ndisplay:inline;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section social bar style\r\n* @tip Set the background color and border for your email''s footer social bar.\r\n* @theme footer\r\n*/\r\n#social{\r\n/*@editable*/ background-color:#FAFAFA;\r\n/*@editable*/ border:0;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section social bar style\r\n* @tip Set the background color and border for your email''s footer social bar.\r\n*/\r\n#social div{\r\n/*@editable*/ text-align:center;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section utility bar style\r\n* @tip Set the background color and border for your email''s footer utility bar.\r\n* @theme footer\r\n*/\r\n#utility{\r\n/*@editable*/ background-color:#FFFFFF;\r\n/*@editable*/ border:0;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section utility bar style\r\n* @tip Set the background color and border for your email''s footer utility bar.\r\n*/\r\n#utility div{\r\n/*@editable*/ text-align:center;\r\n}	</style>\r\n</p>\r\n<center>\r\n<table border="0" cellpadding="0" cellspacing="0" height="100%" id="backgroundTable" width="100%">\r\n<tbody>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Preheader \\\\ -->					<table border="0" cellpadding="10" cellspacing="0" id="templatePreheader" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="preheaderContent" valign="top">\r\n<!-- // Begin Module: Standard Preheader \\ -->									<table border="0" cellpadding="10" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<div>\r\nUse this area to offer a short teaser of your email''s content. Text here will show in the preview area of some email clients.</div>\r\n</td>\r\n<td valign="top" width="190">\r\n<div style="text-align: right;">\r\n{date}</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Standard Preheader \\ -->								</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Preheader \\\\ -->					<table border="0" cellpadding="0" cellspacing="0" id="templateContainer" width="600">\r\n<tbody>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Header \\\\ -->									<table border="0" cellpadding="0" cellspacing="0" id="templateHeader" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="headerContent">\r\n<!-- // Begin Module: Standard Header Image \\\\ -->													<img id="headerImage campaign-icon" src="images/newsletters/images/placeholder_600.gif" style="max-width:600px;" /> <!-- // End Module: Standard Header Image \\\\ --></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Header \\\\ -->								</td>\r\n</tr>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Body \\\\ -->									<table border="0" cellpadding="0" cellspacing="0" id="templateBody" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="bodyContent" colspan="4" valign="top">\r\n<!-- // Begin Module: Standard Content \\\\ -->													<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<div>\r\n<h1 class="h1">\r\nHeading 1</h1>\r\n<h2 class="h2">\r\nHeading 2</h2>\r\n<h3 class="h3">\r\nHeading 3</h3>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\nHi {name},<br />\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam semper leo sit amet tortor blandit, id dictum nisi condimentum. Nulla justo ligula, tristique et euismod ut, mollis vitae nisl. Pellentesque id lacinia arcu. Nunc mollis eros velit, ac hendrerit ipsum auctor eget. Maecenas id massa enim. Nullam sit amet mauris sodales, tincidunt lacus in, suscipit lectus. Maecenas ut semper purus, et mollis velit.<br />\r\n<br />\r\nIn rhoncus a velit id vulputate. Nulla accumsan est in nibh ullamcorper iaculis. Sed id convallis mi, eu commodo sapien. Phasellus hendrerit, tellus in tincidunt venenatis, est elit dictum nisi, in pretium mauris orci quis metus. Vivamus a nisl vitae sapien ultricies tempor tempus eu ligula. Fusce felis mi, accumsan bibendum est non, venenatis cursus elit. Nunc at scelerisque elit. Quisque sed sem lacinia, blandit arcu nec, vulputate ligula. Nulla interdum risus sodales metus bibendum fermentum.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Standard Content \\\\ -->												</td>\r\n</tr>\r\n<tr>\r\n<td class="columnOneContent" valign="top" width="130">\r\n<!-- // Begin Module: Top Image with Content \\\\ -->													<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<img src="images/newsletters/images/placeholder_110.gif" style="max-width:110px;" />\r\n<div>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\n<strong>Repeatable content blocks:</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec iaculis, velit at semper placerat, tellus velit vehicula orci, a tristique lorem orci eu nisl. Sed et arcu quam. Donec varius arcu et ante convallis, quis laoreet lacus mattis.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Top Image with Content \\\\ -->												</td>\r\n<td class="columnTwoContent" valign="top" width="130">\r\n<!-- // Begin Module: Top Image with Content \\\\ -->													<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<img src="images/newsletters/images/placeholder_110.gif" style="max-width:110px;" />\r\n<div>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\n<strong>Repeatable content blocks:</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec iaculis, velit at semper placerat, tellus velit vehicula orci, a tristique lorem orci eu nisl. Sed et arcu quam. Donec varius arcu et ante convallis, quis laoreet lacus mattis.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Top Image with Content \\\\ -->												</td>\r\n<td class="columnThreeContent" valign="top" width="130">\r\n<!-- // Begin Module: Top Image with Content \\\\ -->													<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<img src="images/newsletters/images/placeholder_110.gif" style="max-width:110px;" />\r\n<div>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\n<strong>Repeatable content blocks:</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec iaculis, velit at semper placerat, tellus velit vehicula orci, a tristique lorem orci eu nisl. Sed et arcu quam. Donec varius arcu et ante convallis, quis laoreet lacus mattis.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Top Image with Content \\\\ -->												</td>\r\n<td class="columnFourContent" valign="top" width="130">\r\n<!-- // Begin Module: Top Image with Content \\\\ -->													<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<img src="images/newsletters/images/placeholder_110.gif" style="max-width:110px;" />\r\n<div>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\n<strong>Repeatable content blocks:</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec iaculis, velit at semper placerat, tellus velit vehicula orci, a tristique lorem orci eu nisl. Sed et arcu quam. Donec varius arcu et ante convallis, quis laoreet lacus mattis.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Top Image with Content \\\\ -->												</td>\r\n</tr>\r\n<tr>\r\n<td class="leftLowerColumnContent" colspan="2" valign="top">\r\n<!-- // Begin Module: Top Image with Content \\\\ -->													<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<img src="images/newsletters/images/placeholder_260.gif" style="max-width:260px;" />\r\n<div>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\n<strong>Repeatable content blocks:</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec iaculis, velit at semper placerat, tellus velit vehicula orci, a tristique lorem orci eu nisl. Sed et arcu quam. Donec varius arcu et ante convallis, quis laoreet lacus mattis.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Top Image with Content \\\\ -->												</td>\r\n<td class="rightLowerColumnContent" colspan="2" valign="top">\r\n<!-- // Begin Module: Top Image with Content \\\\ -->													<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<img src="images/newsletters/images/placeholder_260.gif" style="max-width:260px;" />\r\n<div>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\n<strong>Repeatable content blocks:</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec iaculis, velit at semper placerat, tellus velit vehicula orci, a tristique lorem orci eu nisl. Sed et arcu quam. Donec varius arcu et ante convallis, quis laoreet lacus mattis.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Top Image with Content \\\\ -->												</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Body \\\\ -->								</td>\r\n</tr>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Footer \\\\ -->									<table border="0" cellpadding="10" cellspacing="0" id="templateFooter" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="footerContent" valign="top">\r\n<!-- // Begin Module: Standard Footer \\\\ -->													<table border="0" cellpadding="10" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td colspan="2" id="social" valign="middle">\r\n<div>\r\n&nbsp;<a href="http://www.twitter.com">follow on Twitter</a> | <a href="http://www.facebook.com">friend on Facebook</a></div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td valign="top" width="350">\r\n<div style="text-align: center;">\r\n<a href="http://www.yourcompany.com">www.yourcompany.com</a><br />\r\n<br />\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam semper leo sit amet tortor blandit, id dictum nisi condimentum. Nulla justo ligula, tristique et euismod ut, mollis vitae nisl.</div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan="2" id="utility" valign="middle">\r\n<div>\r\n{unsubscribe}</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Standard Footer \\\\ -->												</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Footer \\\\ -->								</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</center>\r\n', 'images/newsletters/thumbnails/gallery-1-4-2.jpg');
INSERT INTO `newsletter_templates` (`id`, `title`, `description`, `body`, `thumbnail`) VALUES(25, 'gallery-4-1', 'Ένα τετράστηλο άρθρων στην κορυφή και ενα άρθρο πλήρους πλάτους από κάτω.', '<p>\r\n<style type="text/css">\r\n/* Client-specific Styles */\r\n#outlook a{padding:0;} /* Force Outlook to provide a "view in browser" button. */\r\nbody{width:100% !important;} .ReadMsgBody{width:100%;} .ExternalClass{width:100%;} /* Force Hotmail to display emails at full width */\r\nbody{-webkit-text-size-adjust:none;} /* Prevent Webkit platforms from changing default text sizes. */\r\n\r\n/* Reset Styles */\r\nbody{margin:0; padding:0;}\r\nimg{border:0; height:auto; line-height:100%; outline:none; text-decoration:none;}\r\ntable td{border-collapse:collapse;}\r\n#backgroundTable{height:100% !important; margin:0; padding:0; width:100% !important;}\r\n\r\n/* Template Styles */\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: COMMON PAGE ELEMENTS /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Page\r\n* @section background color\r\n* @tip Set the background color for your email. You may want to choose one that matches your company''s branding.\r\n* @theme page\r\n*/\r\nbody, #backgroundTable{\r\n/*@editable*/ background-color:#FAFAFA;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section email border\r\n* @tip Set the border for your email.\r\n*/\r\n#templateContainer{\r\n/*@editable*/ border: 1px solid #DDDDDD;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 1\r\n* @tip Set the styling for all first-level headings in your emails. These should be the largest of your headings.\r\n* @style heading 1\r\n*/\r\nh1, .h1{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:34px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 2\r\n* @tip Set the styling for all second-level headings in your emails.\r\n* @style heading 2\r\n*/\r\nh2, .h2{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:30px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 3\r\n* @tip Set the styling for all third-level headings in your emails.\r\n* @style heading 3\r\n*/\r\nh3, .h3{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:26px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 4\r\n* @tip Set the styling for all fourth-level headings in your emails. These should be the smallest of your headings.\r\n* @style heading 4\r\n*/\r\nh4, .h4{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:22px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: PREHEADER /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Header\r\n* @section preheader style\r\n* @tip Set the background color for your email''s preheader area.\r\n* @theme page\r\n*/\r\n#templatePreheader{\r\n/*@editable*/ background-color:#FAFAFA;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section preheader text\r\n* @tip Set the styling for your email''s preheader text. Choose a size and color that is easy to read.\r\n*/\r\n.preheaderContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:10px;\r\n/*@editable*/ line-height:100%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section preheader link\r\n* @tip Set the styling for your email''s preheader links. Choose a color that helps them stand out from your text.\r\n*/\r\n.preheaderContent div a:link, .preheaderContent div a:visited, /* Yahoo! Mail Override */ .preheaderContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: HEADER /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Header\r\n* @section header style\r\n* @tip Set the background color and border for your email''s header area.\r\n* @theme header\r\n*/\r\n#templateHeader{\r\n/*@editable*/ background-color:#FFFFFF;\r\n/*@editable*/ border-bottom:0;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section header text\r\n* @tip Set the styling for your email''s header text. Choose a size and color that is easy to read.\r\n*/\r\n.headerContent{\r\n/*@editable*/ color:#202020;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:34px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\n/*@editable*/ padding:0;\r\n/*@editable*/ text-align:center;\r\n/*@editable*/ vertical-align:middle;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section header link\r\n* @tip Set the styling for your email''s header links. Choose a color that helps them stand out from your text.\r\n*/\r\n.headerContent a:link, .headerContent a:visited, /* Yahoo! Mail Override */ .headerContent a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n#headerImage{\r\nheight:auto;\r\nmax-width:600px;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: MAIN BODY & FULL-WIDTH BAND /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Body\r\n* @section body style\r\n* @tip Set the background color for your email''s body area.\r\n*/\r\n#templateContainer, .bodyContent, .fullWidthBandContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Body\r\n* @section body text\r\n* @tip Set the styling for your email''s main content text. Choose a size and color that is easy to read.\r\n* @theme main\r\n*/\r\n.bodyContent div, .fullWidthBandContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:14px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Body\r\n* @section body link\r\n* @tip Set the styling for your email''s main content links. Choose a color that helps them stand out from your text.\r\n*/\r\n.bodyContent div a:link, .bodyContent div a:visited, /* Yahoo! Mail Override */ .bodyContent div a .yshortcuts /* Yahoo! Mail Override */, .fullWidthBandContent div a:link, .fullWidthBandContent div a:visited, /* Yahoo! Mail Override */ .fullWidthBandContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.bodyContent img, .fullWidthBandContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: COLUMNS; ONE, TWO, THREE, FOUR /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Columns\r\n* @section column one text\r\n* @tip Set the styling for your email''s first column text. Choose a size and color that is easy to read.\r\n*/\r\n.columnOneContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section column one text\r\n* @tip Set the styling for your email''s first column text. Choose a size and color that is easy to read.\r\n*/\r\n.columnOneContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:12px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section column one link\r\n* @tip Set the styling for your email''s first column links. Choose a color that helps them stand out from your text.\r\n*/\r\n.columnOneContent div a:link, .columnOneContent div a:visited, /* Yahoo! Mail Override */ .columnOneContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.columnOneContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section column two text\r\n* @tip Set the styling for your email''s second column text. Choose a size and color that is easy to read.\r\n*/\r\n.columnTwoContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section column two text\r\n* @tip Set the styling for your email''s second column text. Choose a size and color that is easy to read.\r\n*/\r\n.columnTwoContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:12px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section column two link\r\n* @tip Set the styling for your email''s second column links. Choose a color that helps them stand out from your text.\r\n*/\r\n.columnTwoContent div a:link, .columnTwoContent div a:visited, /* Yahoo! Mail Override */ .columnTwoContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.columnTwoContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section column three text\r\n* @tip Set the styling for your email''s third column text. Choose a size and color that is easy to read.\r\n*/\r\n.columnThreeContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section column three text\r\n* @tip Set the styling for your email''s third column text. Choose a size and color that is easy to read.\r\n*/\r\n.columnThreeContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:12px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section column three link\r\n* @tip Set the styling for your email''s third column links. Choose a color that helps them stand out from your text.\r\n*/\r\n.columnThreeContent div a:link, .columnThreeContent div a:visited, /* Yahoo! Mail Override */ .columnThreeContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.columnThreeContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section column four text\r\n* @tip Set the styling for your email''s fourth column text. Choose a size and color that is easy to read.\r\n*/\r\n.columnFourContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section column four text\r\n* @tip Set the styling for your email''s fourth column text. Choose a size and color that is easy to read.\r\n*/\r\n.columnFourContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:12px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section column four link\r\n* @tip Set the styling for your email''s fourth column links. Choose a color that helps them stand out from your text.\r\n*/\r\n.columnFourContent div a:link, .columnFourContent div a:visited, /* Yahoo! Mail Override */ .columnFourContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.columnFourContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: FOOTER /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Footer\r\n* @section footer style\r\n* @tip Set the background color and top border for your email''s footer area.\r\n* @theme footer\r\n*/\r\n#templateFooter{\r\n/*@editable*/ background-color:#FFFFFF;\r\n/*@editable*/ border-top:0;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section footer text\r\n* @tip Set the styling for your email''s footer text. Choose a size and color that is easy to read.\r\n* @theme footer\r\n*/\r\n.footerContent div{\r\n/*@editable*/ color:#707070;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:12px;\r\n/*@editable*/ line-height:125%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section footer link\r\n* @tip Set the styling for your email''s footer links. Choose a color that helps them stand out from your text.\r\n*/\r\n.footerContent div a:link, .footerContent div a:visited, /* Yahoo! Mail Override */ .footerContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.footerContent img{\r\ndisplay:inline;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section social bar style\r\n* @tip Set the background color and border for your email''s footer social bar.\r\n* @theme footer\r\n*/\r\n#social{\r\n/*@editable*/ background-color:#FAFAFA;\r\n/*@editable*/ border:0;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section social bar style\r\n* @tip Set the background color and border for your email''s footer social bar.\r\n*/\r\n#social div{\r\n/*@editable*/ text-align:center;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section utility bar style\r\n* @tip Set the background color and border for your email''s footer utility bar.\r\n* @theme footer\r\n*/\r\n#utility{\r\n/*@editable*/ background-color:#FFFFFF;\r\n/*@editable*/ border:0;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section utility bar style\r\n* @tip Set the background color and border for your email''s footer utility bar.\r\n*/\r\n#utility div{\r\n/*@editable*/ text-align:center;\r\n}	</style>\r\n</p>\r\n<center>\r\n<table border="0" cellpadding="0" cellspacing="0" height="100%" id="backgroundTable" width="100%">\r\n<tbody>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Preheader \\\\ -->					<table border="0" cellpadding="10" cellspacing="0" id="templatePreheader" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="preheaderContent" valign="top">\r\n<!-- // Begin Module: Standard Preheader \\ -->									<table border="0" cellpadding="10" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<div>\r\nUse this area to offer a short teaser of your email''s content. Text here will show in the preview area of some email clients.</div>\r\n</td>\r\n<td valign="top" width="190">\r\n<div style="text-align: right;">\r\n{date}</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Standard Preheader \\ -->								</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Preheader \\\\ -->					<table border="0" cellpadding="0" cellspacing="0" id="templateContainer" width="600">\r\n<tbody>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Header \\\\ -->									<table border="0" cellpadding="0" cellspacing="0" id="templateHeader" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="headerContent">\r\n<!-- // Begin Module: Standard Header Image \\\\ -->													<img id="headerImage campaign-icon" src="images/newsletters/images/placeholder_600.gif" style="max-width:600px;" /> <!-- // End Module: Standard Header Image \\\\ --></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Header \\\\ -->								</td>\r\n</tr>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Body \\\\ -->									<table border="0" cellpadding="0" cellspacing="0" id="templateBody" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="columnOneContent" valign="top" width="130">\r\n<!-- // Begin Module: Top Image with Content \\\\ -->													<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<img src="images/newsletters/images/placeholder_110.gif" style="max-width:110px;" />\r\n<div>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\n<strong>Repeatable content blocks:</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec iaculis, velit at semper placerat, tellus velit vehicula orci, a tristique lorem orci eu nisl. Sed et arcu quam. Donec varius arcu et ante convallis, quis laoreet lacus mattis.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Top Image with Content \\\\ -->												</td>\r\n<td class="columnTwoContent" valign="top" width="130">\r\n<!-- // Begin Module: Top Image with Content \\\\ -->													<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<img src="images/newsletters/images/placeholder_110.gif" style="max-width:110px;" />\r\n<div>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\n<strong>Repeatable content blocks:</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec iaculis, velit at semper placerat, tellus velit vehicula orci, a tristique lorem orci eu nisl. Sed et arcu quam. Donec varius arcu et ante convallis, quis laoreet lacus mattis.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Top Image with Content \\\\ -->												</td>\r\n<td class="columnThreeContent" valign="top" width="130">\r\n<!-- // Begin Module: Top Image with Content \\\\ -->													<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<img src="images/newsletters/images/placeholder_110.gif" style="max-width:110px;" />\r\n<div>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\n<strong>Repeatable content blocks:</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec iaculis, velit at semper placerat, tellus velit vehicula orci, a tristique lorem orci eu nisl. Sed et arcu quam. Donec varius arcu et ante convallis, quis laoreet lacus mattis.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Top Image with Content \\\\ -->												</td>\r\n<td class="columnFourContent" valign="top" width="130">\r\n<!-- // Begin Module: Top Image with Content \\\\ -->													<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<img src="images/newsletters/images/placeholder_110.gif" style="max-width:110px;" />\r\n<div>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\n<strong>Repeatable content blocks:</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec iaculis, velit at semper placerat, tellus velit vehicula orci, a tristique lorem orci eu nisl. Sed et arcu quam. Donec varius arcu et ante convallis, quis laoreet lacus mattis.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Top Image with Content \\\\ -->												</td>\r\n</tr>\r\n<tr>\r\n<td class="bodyContent" colspan="4" valign="top">\r\n<!-- // Begin Module: Standard Content \\\\ -->													<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<div>\r\n<h1 class="h1">\r\nHeading 1</h1>\r\n<h2 class="h2">\r\nHeading 2</h2>\r\n<h3 class="h3">\r\nHeading 3</h3>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\nHi {name},<br />\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam semper leo sit amet tortor blandit, id dictum nisi condimentum. Nulla justo ligula, tristique et euismod ut, mollis vitae nisl. Pellentesque id lacinia arcu. Nunc mollis eros velit, ac hendrerit ipsum auctor eget. Maecenas id massa enim. Nullam sit amet mauris sodales, tincidunt lacus in, suscipit lectus. Maecenas ut semper purus, et mollis velit.<br />\r\n<br />\r\nIn rhoncus a velit id vulputate. Nulla accumsan est in nibh ullamcorper iaculis. Sed id convallis mi, eu commodo sapien. Phasellus hendrerit, tellus in tincidunt venenatis, est elit dictum nisi, in pretium mauris orci quis metus. Vivamus a nisl vitae sapien ultricies tempor tempus eu ligula. Fusce felis mi, accumsan bibendum est non, venenatis cursus elit. Nunc at scelerisque elit. Quisque sed sem lacinia, blandit arcu nec, vulputate ligula. Nulla interdum risus sodales metus bibendum fermentum.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Standard Content \\\\ -->												</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Body \\\\ -->								</td>\r\n</tr>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Footer \\\\ -->									<table border="0" cellpadding="10" cellspacing="0" id="templateFooter" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="footerContent" valign="top">\r\n<!-- // Begin Module: Standard Footer \\\\ -->													<table border="0" cellpadding="10" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td colspan="2" id="social" valign="middle">\r\n<div>\r\n&nbsp;<a href="http://www.twitter.com">follow on Twitter</a> | <a href="http://www.facebook.com">friend on Facebook</a></div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td valign="top" width="350">\r\n<div style="text-align: center;">\r\n<a href="http://www.yourcompany.com">www.yourcompany.com</a><br />\r\n<br />\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam semper leo sit amet tortor blandit, id dictum nisi condimentum. Nulla justo ligula, tristique et euismod ut, mollis vitae nisl.</div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan="2" id="utility" valign="middle">\r\n<div>\r\n{unsubscribe}</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Standard Footer \\\\ -->												</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Footer \\\\ -->								</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</center>\r\n', 'images/newsletters/thumbnails/gallery-4-1.jpg');
INSERT INTO `newsletter_templates` (`id`, `title`, `description`, `body`, `thumbnail`) VALUES(26, 'gallery-basicgallery', 'Ένα βασικό τεσσάρων στηλών template.', '<p>\r\n<style type="text/css">\r\n/* Client-specific Styles */\r\n#outlook a{padding:0;} /* Force Outlook to provide a "view in browser" button. */\r\nbody{width:100% !important;} .ReadMsgBody{width:100%;} .ExternalClass{width:100%;} /* Force Hotmail to display emails at full width */\r\nbody{-webkit-text-size-adjust:none;} /* Prevent Webkit platforms from changing default text sizes. */\r\n\r\n/* Reset Styles */\r\nbody{margin:0; padding:0;}\r\nimg{border:0; height:auto; line-height:100%; outline:none; text-decoration:none;}\r\ntable td{border-collapse:collapse;}\r\n#backgroundTable{height:100% !important; margin:0; padding:0; width:100% !important;}\r\n\r\n/* Template Styles */\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: COMMON PAGE ELEMENTS /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Page\r\n* @section background color\r\n* @tip Set the background color for your email. You may want to choose one that matches your company''s branding.\r\n* @theme page\r\n*/\r\nbody, #backgroundTable{\r\n/*@editable*/ background-color:#FAFAFA;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section email border\r\n* @tip Set the border for your email.\r\n*/\r\n#templateContainer{\r\n/*@editable*/ border: 1px solid #DDDDDD;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 1\r\n* @tip Set the styling for all first-level headings in your emails. These should be the largest of your headings.\r\n* @style heading 1\r\n*/\r\nh1, .h1{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:34px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 2\r\n* @tip Set the styling for all second-level headings in your emails.\r\n* @style heading 2\r\n*/\r\nh2, .h2{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:30px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 3\r\n* @tip Set the styling for all third-level headings in your emails.\r\n* @style heading 3\r\n*/\r\nh3, .h3{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:26px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 4\r\n* @tip Set the styling for all fourth-level headings in your emails. These should be the smallest of your headings.\r\n* @style heading 4\r\n*/\r\nh4, .h4{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:22px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: PREHEADER /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Header\r\n* @section preheader style\r\n* @tip Set the background color for your email''s preheader area.\r\n* @theme page\r\n*/\r\n#templatePreheader{\r\n/*@editable*/ background-color:#FAFAFA;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section preheader text\r\n* @tip Set the styling for your email''s preheader text. Choose a size and color that is easy to read.\r\n*/\r\n.preheaderContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:10px;\r\n/*@editable*/ line-height:100%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section preheader link\r\n* @tip Set the styling for your email''s preheader links. Choose a color that helps them stand out from your text.\r\n*/\r\n.preheaderContent div a:link, .preheaderContent div a:visited, /* Yahoo! Mail Override */ .preheaderContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: HEADER /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Header\r\n* @section header style\r\n* @tip Set the background color and border for your email''s header area.\r\n* @theme header\r\n*/\r\n#templateHeader{\r\n/*@editable*/ background-color:#FFFFFF;\r\n/*@editable*/ border-bottom:0;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section header text\r\n* @tip Set the styling for your email''s header text. Choose a size and color that is easy to read.\r\n*/\r\n.headerContent{\r\n/*@editable*/ color:#202020;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:34px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\n/*@editable*/ padding:0;\r\n/*@editable*/ text-align:center;\r\n/*@editable*/ vertical-align:middle;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section header link\r\n* @tip Set the styling for your email''s header links. Choose a color that helps them stand out from your text.\r\n*/\r\n.headerContent a:link, .headerContent a:visited, /* Yahoo! Mail Override */ .headerContent a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n#headerImage{\r\nheight:auto;\r\nmax-width:600px;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: COLUMNS; ONE, TWO, THREE, FOUR /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Columns\r\n* @section column one text\r\n* @tip Set the styling for your email''s first column text. Choose a size and color that is easy to read.\r\n*/\r\n.columnOneContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section column one text\r\n* @tip Set the styling for your email''s first column text. Choose a size and color that is easy to read.\r\n*/\r\n.columnOneContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:12px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section column one link\r\n* @tip Set the styling for your email''s first column links. Choose a color that helps them stand out from your text.\r\n*/\r\n.columnOneContent div a:link, .columnOneContent div a:visited, /* Yahoo! Mail Override */ .columnOneContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.columnOneContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section column two text\r\n* @tip Set the styling for your email''s second column text. Choose a size and color that is easy to read.\r\n*/\r\n.columnTwoContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section column two text\r\n* @tip Set the styling for your email''s second column text. Choose a size and color that is easy to read.\r\n*/\r\n.columnTwoContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:12px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section column two link\r\n* @tip Set the styling for your email''s second column links. Choose a color that helps them stand out from your text.\r\n*/\r\n.columnTwoContent div a:link, .columnTwoContent div a:visited, /* Yahoo! Mail Override */ .columnTwoContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.columnTwoContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section column three text\r\n* @tip Set the styling for your email''s third column text. Choose a size and color that is easy to read.\r\n*/\r\n.columnThreeContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section column three text\r\n* @tip Set the styling for your email''s third column text. Choose a size and color that is easy to read.\r\n*/\r\n.columnThreeContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:12px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section column three link\r\n* @tip Set the styling for your email''s third column links. Choose a color that helps them stand out from your text.\r\n*/\r\n.columnThreeContent div a:link, .columnThreeContent div a:visited, /* Yahoo! Mail Override */ .columnThreeContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.columnThreeContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section column four text\r\n* @tip Set the styling for your email''s fourth column text. Choose a size and color that is easy to read.\r\n*/\r\n.columnFourContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section column four text\r\n* @tip Set the styling for your email''s fourth column text. Choose a size and color that is easy to read.\r\n*/\r\n.columnFourContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:12px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Columns\r\n* @section column four link\r\n* @tip Set the styling for your email''s fourth column links. Choose a color that helps them stand out from your text.\r\n*/\r\n.columnFourContent div a:link, .columnFourContent div a:visited, /* Yahoo! Mail Override */ .columnFourContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.columnFourContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: FOOTER /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Footer\r\n* @section footer style\r\n* @tip Set the background color and top border for your email''s footer area.\r\n* @theme footer\r\n*/\r\n#templateFooter{\r\n/*@editable*/ background-color:#FFFFFF;\r\n/*@editable*/ border-top:0;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section footer text\r\n* @tip Set the styling for your email''s footer text. Choose a size and color that is easy to read.\r\n* @theme footer\r\n*/\r\n.footerContent div{\r\n/*@editable*/ color:#707070;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:12px;\r\n/*@editable*/ line-height:125%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section footer link\r\n* @tip Set the styling for your email''s footer links. Choose a color that helps them stand out from your text.\r\n*/\r\n.footerContent div a:link, .footerContent div a:visited, /* Yahoo! Mail Override */ .footerContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.footerContent img{\r\ndisplay:inline;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section social bar style\r\n* @tip Set the background color and border for your email''s footer social bar.\r\n* @theme footer\r\n*/\r\n#social{\r\n/*@editable*/ background-color:#FAFAFA;\r\n/*@editable*/ border:0;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section social bar style\r\n* @tip Set the background color and border for your email''s footer social bar.\r\n*/\r\n#social div{\r\n/*@editable*/ text-align:center;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section utility bar style\r\n* @tip Set the background color and border for your email''s footer utility bar.\r\n* @theme footer\r\n*/\r\n#utility{\r\n/*@editable*/ background-color:#FFFFFF;\r\n/*@editable*/ border:0;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section utility bar style\r\n* @tip Set the background color and border for your email''s footer utility bar.\r\n*/\r\n#utility div{\r\n/*@editable*/ text-align:center;\r\n}	</style>\r\n</p>\r\n<center>\r\n<table border="0" cellpadding="0" cellspacing="0" height="100%" id="backgroundTable" width="100%">\r\n<tbody>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Preheader \\\\ -->					<table border="0" cellpadding="10" cellspacing="0" id="templatePreheader" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="preheaderContent" valign="top">\r\n<!-- // Begin Module: Standard Preheader \\ -->									<table border="0" cellpadding="10" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<div>\r\nUse this area to offer a short teaser of your email''s content. Text here will show in the preview area of some email clients.</div>\r\n</td>\r\n<td valign="top" width="190">\r\n<div style="text-align: right;">\r\n{date}</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Standard Preheader \\ -->								</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Preheader \\\\ -->					<table border="0" cellpadding="0" cellspacing="0" id="templateContainer" width="600">\r\n<tbody>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Header \\\\ -->									<table border="0" cellpadding="0" cellspacing="0" id="templateHeader" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="headerContent">\r\n<!-- // Begin Module: Standard Header Image \\\\ -->													<img id="headerImage campaign-icon" src="images/newsletters/images/placeholder_600.gif" style="max-width:600px;" /> <!-- // End Module: Standard Header Image \\\\ --></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Header \\\\ -->								</td>\r\n</tr>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Body \\\\ -->									<table border="0" cellpadding="0" cellspacing="0" id="templateBody" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="columnOneContent" valign="top" width="130">\r\n<!-- // Begin Module: Top Image with Content \\\\ -->													<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<img src="images/newsletters/images/placeholder_110.gif" style="max-width:110px;" />\r\n<div>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\n<strong>Repeatable content blocks:</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec iaculis, velit at semper placerat, tellus velit vehicula orci, a tristique lorem orci eu nisl. Sed et arcu quam. Donec varius arcu et ante convallis, quis laoreet lacus mattis.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Top Image with Content \\\\ -->												</td>\r\n<td class="columnTwoContent" valign="top" width="130">\r\n<!-- // Begin Module: Top Image with Content \\\\ -->													<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<img src="images/newsletters/images/placeholder_110.gif" style="max-width:110px;" />\r\n<div>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\n<strong>Repeatable content blocks:</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec iaculis, velit at semper placerat, tellus velit vehicula orci, a tristique lorem orci eu nisl. Sed et arcu quam. Donec varius arcu et ante convallis, quis laoreet lacus mattis.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Top Image with Content \\\\ -->												</td>\r\n<td class="columnThreeContent" valign="top" width="130">\r\n<!-- // Begin Module: Top Image with Content \\\\ -->													<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<img src="images/newsletters/images/placeholder_110.gif" style="max-width:110px;" />\r\n<div>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\n<strong>Repeatable content blocks:</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec iaculis, velit at semper placerat, tellus velit vehicula orci, a tristique lorem orci eu nisl. Sed et arcu quam. Donec varius arcu et ante convallis, quis laoreet lacus mattis.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Top Image with Content \\\\ -->												</td>\r\n<td class="columnFourContent" valign="top" width="130">\r\n<!-- // Begin Module: Top Image with Content \\\\ -->													<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<img src="images/newsletters/images/placeholder_110.gif" style="max-width:110px;" />\r\n<div>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\n<strong>Repeatable content blocks:</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec iaculis, velit at semper placerat, tellus velit vehicula orci, a tristique lorem orci eu nisl. Sed et arcu quam. Donec varius arcu et ante convallis, quis laoreet lacus mattis.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Top Image with Content \\\\ -->												</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Body \\\\ -->								</td>\r\n</tr>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Footer \\\\ -->									<table border="0" cellpadding="10" cellspacing="0" id="templateFooter" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="footerContent" valign="top">\r\n<!-- // Begin Module: Standard Footer \\\\ -->													<table border="0" cellpadding="10" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td colspan="2" id="social" valign="middle">\r\n<div>\r\n&nbsp;<a href="http://www.twitter.com">follow on Twitter</a> | <a href="http://www.facebook.com">friend on Facebook</a></div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td valign="top" width="350">\r\n<div style="text-align: center;">\r\n<a href="http://www.yourcompany.com">www.yourcompany.com</a><br />\r\n<br />\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam semper leo sit amet tortor blandit, id dictum nisi condimentum. Nulla justo ligula, tristique et euismod ut, mollis vitae nisl.</div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan="2" id="utility" valign="middle">\r\n<div>\r\n{unsubscribe}</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Standard Footer \\\\ -->												</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Footer \\\\ -->								</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</center>\r\n', 'images/newsletters/thumbnails/gallery-basicgallery.jpg');
INSERT INTO `newsletter_templates` (`id`, `title`, `description`, `body`, `thumbnail`) VALUES(27, 'simple-basic', 'Ένα απλό template με ένα κύριο άρθρο πλήρους πλάτους.', '<p>\r\n<style type="text/css">\r\n/* Client-specific Styles */\r\n#outlook a{padding:0;} /* Force Outlook to provide a "view in browser" button. */\r\nbody{width:100% !important;} .ReadMsgBody{width:100%;} .ExternalClass{width:100%;} /* Force Hotmail to display emails at full width */\r\nbody{-webkit-text-size-adjust:none;} /* Prevent Webkit platforms from changing default text sizes. */\r\n\r\n/* Reset Styles */\r\nbody{margin:0; padding:0;}\r\nimg{border:0; height:auto; line-height:100%; outline:none; text-decoration:none;}\r\ntable td{border-collapse:collapse;}\r\n#backgroundTable{height:100% !important; margin:0; padding:0; width:100% !important;}\r\n\r\n/* Template Styles */\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: COMMON PAGE ELEMENTS /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Page\r\n* @section background color\r\n* @tip Set the background color for your email. You may want to choose one that matches your company''s branding.\r\n* @theme page\r\n*/\r\nbody, #backgroundTable{\r\n/*@editable*/ background-color:#FAFAFA;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section email border\r\n* @tip Set the border for your email.\r\n*/\r\n#templateContainer{\r\n/*@editable*/ border: 1px solid #DDDDDD;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 1\r\n* @tip Set the styling for all first-level headings in your emails. These should be the largest of your headings.\r\n* @style heading 1\r\n*/\r\nh1, .h1{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:34px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 2\r\n* @tip Set the styling for all second-level headings in your emails.\r\n* @style heading 2\r\n*/\r\nh2, .h2{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:30px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 3\r\n* @tip Set the styling for all third-level headings in your emails.\r\n* @style heading 3\r\n*/\r\nh3, .h3{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:26px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 4\r\n* @tip Set the styling for all fourth-level headings in your emails. These should be the smallest of your headings.\r\n* @style heading 4\r\n*/\r\nh4, .h4{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:22px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: PREHEADER /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Header\r\n* @section preheader style\r\n* @tip Set the background color for your email''s preheader area.\r\n* @theme page\r\n*/\r\n#templatePreheader{\r\n/*@editable*/ background-color:#FAFAFA;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section preheader text\r\n* @tip Set the styling for your email''s preheader text. Choose a size and color that is easy to read.\r\n*/\r\n.preheaderContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:10px;\r\n/*@editable*/ line-height:100%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section preheader link\r\n* @tip Set the styling for your email''s preheader links. Choose a color that helps them stand out from your text.\r\n*/\r\n.preheaderContent div a:link, .preheaderContent div a:visited, /* Yahoo! Mail Override */ .preheaderContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: HEADER /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Header\r\n* @section header style\r\n* @tip Set the background color and border for your email''s header area.\r\n* @theme header\r\n*/\r\n#templateHeader{\r\n/*@editable*/ background-color:#FFFFFF;\r\n/*@editable*/ border-bottom:0;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section header text\r\n* @tip Set the styling for your email''s header text. Choose a size and color that is easy to read.\r\n*/\r\n.headerContent{\r\n/*@editable*/ color:#202020;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:34px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\n/*@editable*/ padding:0;\r\n/*@editable*/ text-align:center;\r\n/*@editable*/ vertical-align:middle;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section header link\r\n* @tip Set the styling for your email''s header links. Choose a color that helps them stand out from your text.\r\n*/\r\n.headerContent a:link, .headerContent a:visited, /* Yahoo! Mail Override */ .headerContent a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n#headerImage{\r\nheight:auto;\r\nmax-width:600px !important;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: MAIN BODY /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Body\r\n* @section body style\r\n* @tip Set the background color for your email''s body area.\r\n*/\r\n#templateContainer, .bodyContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Body\r\n* @section body text\r\n* @tip Set the styling for your email''s main content text. Choose a size and color that is easy to read.\r\n* @theme main\r\n*/\r\n.bodyContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:14px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Body\r\n* @section body link\r\n* @tip Set the styling for your email''s main content links. Choose a color that helps them stand out from your text.\r\n*/\r\n.bodyContent div a:link, .bodyContent div a:visited, /* Yahoo! Mail Override */ .bodyContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.bodyContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: FOOTER /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Footer\r\n* @section footer style\r\n* @tip Set the background color and top border for your email''s footer area.\r\n* @theme footer\r\n*/\r\n#templateFooter{\r\n/*@editable*/ background-color:#FFFFFF;\r\n/*@editable*/ border-top:0;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section footer text\r\n* @tip Set the styling for your email''s footer text. Choose a size and color that is easy to read.\r\n* @theme footer\r\n*/\r\n.footerContent div{\r\n/*@editable*/ color:#707070;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:12px;\r\n/*@editable*/ line-height:125%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section footer link\r\n* @tip Set the styling for your email''s footer links. Choose a color that helps them stand out from your text.\r\n*/\r\n.footerContent div a:link, .footerContent div a:visited, /* Yahoo! Mail Override */ .footerContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.footerContent img{\r\ndisplay:inline;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section social bar style\r\n* @tip Set the background color and border for your email''s footer social bar.\r\n* @theme footer\r\n*/\r\n#social{\r\n/*@editable*/ background-color:#FAFAFA;\r\n/*@editable*/ border:0;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section social bar style\r\n* @tip Set the background color and border for your email''s footer social bar.\r\n*/\r\n#social div{\r\n/*@editable*/ text-align:center;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section utility bar style\r\n* @tip Set the background color and border for your email''s footer utility bar.\r\n* @theme footer\r\n*/\r\n#utility{\r\n/*@editable*/ background-color:#FFFFFF;\r\n/*@editable*/ border:0;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section utility bar style\r\n* @tip Set the background color and border for your email''s footer utility bar.\r\n*/\r\n#utility div{\r\n/*@editable*/ text-align:center;\r\n}	</style>\r\n</p>\r\n<center>\r\n<table border="0" cellpadding="0" cellspacing="0" height="100%" id="backgroundTable" width="100%">\r\n<tbody>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Preheader \\\\ -->					<table border="0" cellpadding="10" cellspacing="0" id="templatePreheader" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="preheaderContent" valign="top">\r\n<!-- // Begin Module: Standard Preheader \\ -->									<table border="0" cellpadding="10" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<div>\r\nUse this area to offer a short teaser of your email''s content. Text here will show in the preview area of some email clients.</div>\r\n</td>\r\n<td valign="top" width="190">\r\n<div style="text-align: right;">\r\n{date}</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Standard Preheader \\ -->								</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Preheader \\\\ -->					<table border="0" cellpadding="0" cellspacing="0" id="templateContainer" width="600">\r\n<tbody>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Header \\\\ -->									<table border="0" cellpadding="0" cellspacing="0" id="templateHeader" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="headerContent">\r\n<!-- // Begin Module: Standard Header Image \\\\ -->													<img id="headerImage campaign-icon" src="images/newsletters/images/placeholder_600.gif" style="max-width:600px;" /> <!-- // End Module: Standard Header Image \\\\ --></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Header \\\\ -->								</td>\r\n</tr>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Body \\\\ -->									<table border="0" cellpadding="0" cellspacing="0" id="templateBody" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="bodyContent" valign="top">\r\n<!-- // Begin Module: Standard Content \\\\ -->													<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<div>\r\n<h1 class="h1">\r\nHeading 1</h1>\r\n<h2 class="h2">\r\nHeading 2</h2>\r\n<h3 class="h3">\r\nHeading 3</h3>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\nHi {name},<br />\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam semper leo sit amet tortor blandit, id dictum nisi condimentum. Nulla justo ligula, tristique et euismod ut, mollis vitae nisl. Pellentesque id lacinia arcu. Nunc mollis eros velit, ac hendrerit ipsum auctor eget. Maecenas id massa enim. Nullam sit amet mauris sodales, tincidunt lacus in, suscipit lectus. Maecenas ut semper purus, et mollis velit.<br />\r\n<br />\r\nIn rhoncus a velit id vulputate. Nulla accumsan est in nibh ullamcorper iaculis. Sed id convallis mi, eu commodo sapien. Phasellus hendrerit, tellus in tincidunt venenatis, est elit dictum nisi, in pretium mauris orci quis metus. Vivamus a nisl vitae sapien ultricies tempor tempus eu ligula. Fusce felis mi, accumsan bibendum est non, venenatis cursus elit. Nunc at scelerisque elit. Quisque sed sem lacinia, blandit arcu nec, vulputate ligula. Nulla interdum risus sodales metus bibendum fermentum.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Standard Content \\\\ -->												</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Body \\\\ -->								</td>\r\n</tr>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Footer \\\\ -->									<table border="0" cellpadding="10" cellspacing="0" id="templateFooter" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="footerContent" valign="top">\r\n<!-- // Begin Module: Standard Footer \\\\ -->													<table border="0" cellpadding="10" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td colspan="2" id="social" valign="middle">\r\n<div>\r\n&nbsp;<a href="http://www.twitter.com">follow on Twitter</a> | <a href="http://www.facebook.com">friend on Facebook</a></div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td valign="top" width="350">\r\n<div style="text-align: center;">\r\n<a href="http://www.yourcompany.com">www.yourcompany.com</a><br />\r\n<br />\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam semper leo sit amet tortor blandit, id dictum nisi condimentum. Nulla justo ligula, tristique et euismod ut, mollis vitae nisl.</div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan="2" id="utility" valign="middle">\r\n<div>\r\n{unsubscribe}</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Standard Footer \\\\ -->												</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Footer \\\\ -->								</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</center>\r\n', 'images/newsletters/thumbnails/simple-basic.jpg');
INSERT INTO `newsletter_templates` (`id`, `title`, `description`, `body`, `thumbnail`) VALUES(28, 'simple-leftsidebar', 'Ένα απλό template με πλάγια μπάρα στα αριστερά και το κυρίως άρθρο στα δεξιά.', '<p>\r\n<style type="text/css">\r\n/* Client-specific Styles */\r\n#outlook a{padding:0;} /* Force Outlook to provide a "view in browser" button. */\r\nbody{width:100% !important;} .ReadMsgBody{width:100%;} .ExternalClass{width:100%;} /* Force Hotmail to display emails at full width */\r\nbody{-webkit-text-size-adjust:none;} /* Prevent Webkit platforms from changing default text sizes. */\r\n\r\n/* Reset Styles */\r\nbody{margin:0; padding:0;}\r\nimg{border:0; height:auto; line-height:100%; outline:none; text-decoration:none;}\r\ntable td{border-collapse:collapse;}\r\n#backgroundTable{height:100% !important; margin:0; padding:0; width:100% !important;}\r\n\r\n/* Template Styles */\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: COMMON PAGE ELEMENTS /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Page\r\n* @section background color\r\n* @tip Set the background color for your email. You may want to choose one that matches your company''s branding.\r\n* @theme page\r\n*/\r\nbody, #backgroundTable{\r\n/*@editable*/ background-color:#FAFAFA;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section email border\r\n* @tip Set the border for your email.\r\n*/\r\n#templateContainer{\r\n/*@editable*/ border: 1px solid #DDDDDD;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 1\r\n* @tip Set the styling for all first-level headings in your emails. These should be the largest of your headings.\r\n* @style heading 1\r\n*/\r\nh1, .h1{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:34px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 2\r\n* @tip Set the styling for all second-level headings in your emails.\r\n* @style heading 2\r\n*/\r\nh2, .h2{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:30px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 3\r\n* @tip Set the styling for all third-level headings in your emails.\r\n* @style heading 3\r\n*/\r\nh3, .h3{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:26px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 4\r\n* @tip Set the styling for all fourth-level headings in your emails. These should be the smallest of your headings.\r\n* @style heading 4\r\n*/\r\nh4, .h4{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:22px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: PREHEADER /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Header\r\n* @section preheader style\r\n* @tip Set the background color for your email''s preheader area.\r\n* @theme page\r\n*/\r\n#templatePreheader{\r\n/*@editable*/ background-color:#FAFAFA;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section preheader text\r\n* @tip Set the styling for your email''s preheader text. Choose a size and color that is easy to read.\r\n*/\r\n.preheaderContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:10px;\r\n/*@editable*/ line-height:100%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section preheader link\r\n* @tip Set the styling for your email''s preheader links. Choose a color that helps them stand out from your text.\r\n*/\r\n.preheaderContent div a:link, .preheaderContent div a:visited, /* Yahoo! Mail Override */ .preheaderContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: HEADER /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Header\r\n* @section header style\r\n* @tip Set the background color and border for your email''s header area.\r\n* @theme header\r\n*/\r\n#templateHeader{\r\n/*@editable*/ background-color:#FFFFFF;\r\n/*@editable*/ border-bottom:0;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section header text\r\n* @tip Set the styling for your email''s header text. Choose a size and color that is easy to read.\r\n*/\r\n.headerContent{\r\n/*@editable*/ color:#202020;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:34px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\n/*@editable*/ padding:0;\r\n/*@editable*/ text-align:center;\r\n/*@editable*/ vertical-align:middle;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section header link\r\n* @tip Set the styling for your email''s header links. Choose a color that helps them stand out from your text.\r\n*/\r\n.headerContent a:link, .headerContent a:visited, /* Yahoo! Mail Override */ .headerContent a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n#headerImage{\r\nheight:auto;\r\nmax-width:600px;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: MAIN BODY /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Body\r\n* @section body style\r\n* @tip Set the background color for your email''s body area.\r\n*/\r\n#templateContainer, .bodyContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Body\r\n* @section body text\r\n* @tip Set the styling for your email''s main content text. Choose a size and color that is easy to read.\r\n* @theme main\r\n*/\r\n.bodyContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:14px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Body\r\n* @section body link\r\n* @tip Set the styling for your email''s main content links. Choose a color that helps them stand out from your text.\r\n*/\r\n.bodyContent div a:link, .bodyContent div a:visited, /* Yahoo! Mail Override */ .bodyContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.bodyContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: SIDEBAR /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Sidebar\r\n* @section sidebar style\r\n* @tip Set the background color and border for your email''s sidebar area.\r\n*/\r\n#templateSidebar{\r\n/*@editable*/ background-color:#FFFFFF;\r\n/*@editable*/ border-right:0;\r\n}\r\n\r\n/**\r\n* @tab Sidebar\r\n* @section sidebar text\r\n* @tip Set the styling for your email''s sidebar text. Choose a size and color that is easy to read.\r\n*/\r\n.sidebarContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:12px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Sidebar\r\n* @section sidebar link\r\n* @tip Set the styling for your email''s sidebar links. Choose a color that helps them stand out from your text.\r\n*/\r\n.sidebarContent div a:link, .sidebarContent div a:visited, /* Yahoo! Mail Override */ .sidebarContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.sidebarContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: FOOTER /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Footer\r\n* @section footer style\r\n* @tip Set the background color and top border for your email''s footer area.\r\n* @theme footer\r\n*/\r\n#templateFooter{\r\n/*@editable*/ background-color:#FFFFFF;\r\n/*@editable*/ border-top:0;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section footer text\r\n* @tip Set the styling for your email''s footer text. Choose a size and color that is easy to read.\r\n* @theme footer\r\n*/\r\n.footerContent div{\r\n/*@editable*/ color:#707070;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:12px;\r\n/*@editable*/ line-height:125%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section footer link\r\n* @tip Set the styling for your email''s footer links. Choose a color that helps them stand out from your text.\r\n*/\r\n.footerContent div a:link, .footerContent div a:visited, /* Yahoo! Mail Override */ .footerContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.footerContent img{\r\ndisplay:inline;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section social bar style\r\n* @tip Set the background color and border for your email''s footer social bar.\r\n* @theme footer\r\n*/\r\n#social{\r\n/*@editable*/ background-color:#FAFAFA;\r\n/*@editable*/ border:0;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section social bar style\r\n* @tip Set the background color and border for your email''s footer social bar.\r\n*/\r\n#social div{\r\n/*@editable*/ text-align:center;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section utility bar style\r\n* @tip Set the background color and border for your email''s footer utility bar.\r\n* @theme footer\r\n*/\r\n#utility{\r\n/*@editable*/ background-color:#FFFFFF;\r\n/*@editable*/ border:0;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section utility bar style\r\n* @tip Set the background color and border for your email''s footer utility bar.\r\n*/\r\n#utility div{\r\n/*@editable*/ text-align:center;\r\n}	</style>\r\n</p>\r\n<center>\r\n<table border="0" cellpadding="0" cellspacing="0" height="100%" id="backgroundTable" width="100%">\r\n<tbody>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Preheader \\\\ -->					<table border="0" cellpadding="10" cellspacing="0" id="templatePreheader" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="preheaderContent" valign="top">\r\n<!-- // Begin Module: Standard Preheader \\ -->									<table border="0" cellpadding="10" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<div>\r\nUse this area to offer a short teaser of your email''s content. Text here will show in the preview area of some email clients.</div>\r\n</td>\r\n<td valign="top" width="190">\r\n<div style="text-align: right;">\r\n{date}</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Standard Preheader \\ -->								</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Preheader \\\\ -->					<table border="0" cellpadding="0" cellspacing="0" id="templateContainer" width="600">\r\n<tbody>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Header \\\\ -->									<table border="0" cellpadding="0" cellspacing="0" id="templateHeader" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="headerContent">\r\n<!-- // Begin Module: Standard Header Image \\\\ -->													<img id="headerImage campaign-icon" src="images/newsletters/images/placeholder_600.gif" style="max-width:600px;" /> <!-- // End Module: Standard Header Image \\\\ --></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Header \\\\ -->								</td>\r\n</tr>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Body \\\\ -->									<table border="0" cellpadding="0" cellspacing="0" id="templateBody" width="600">\r\n<tbody>\r\n<tr>\r\n<!-- // Begin Sidebar \\\\  -->												<td id="templateSidebar" valign="top" width="200">\r\n<table border="0" cellpadding="0" cellspacing="0" width="200">\r\n<tbody>\r\n<tr>\r\n<td class="sidebarContent" valign="top">\r\n<!-- // Begin Module: Social Block with Icons \\\\ -->																	<table border="0" cellpadding="0" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td style="padding-top:10px; padding-right:20px; padding-left:20px;" valign="top">\r\n<table border="0" cellpadding="0" cellspacing="4">\r\n<tbody>\r\n<tr>\r\n<td align="left" valign="middle" width="16">\r\n<img src="images/newsletters/images/icon_facebook.png" style="margin:0 !important;" /></td>\r\n<td align="left" valign="top">\r\n<div>\r\n<a href="http://www.facebook.com">Friend on Facebook</a></div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td align="left" valign="middle" width="16">\r\n<img src="images/newsletters/images/icon_twitter.png" style="margin:0 !important;" /></td>\r\n<td align="left" valign="top">\r\n<div>\r\n<a href="http://www.twitter.com">Follow on Twitter</a></div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Social Block with Icons \\\\ --><!-- // Begin Module: Top Image with Content \\\\ -->																	<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<img src="images/newsletters/images/placeholder_160.gif" style="max-width:160px;" />\r\n<div>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\n<strong>Repeatable content blocks:</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec iaculis, velit at semper placerat, tellus velit vehicula orci, a tristique lorem orci eu nisl. Sed et arcu quam. Donec varius arcu et ante convallis, quis laoreet lacus mattis.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Top Image with Content \\\\ -->																</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<!-- // End Sidebar \\\\ -->												<td valign="top">\r\n<table border="0" cellpadding="0" cellspacing="0">\r\n<tbody>\r\n<tr>\r\n<td class="bodyContent" valign="top">\r\n<!-- // Begin Module: Standard Content \\\\ -->																	<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<div>\r\n<h1 class="h1">\r\nHeading 1</h1>\r\n<h2 class="h2">\r\nHeading 2</h2>\r\n<h3 class="h3">\r\nHeading 3</h3>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\nHi {name},<br />\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam semper leo sit amet tortor blandit, id dictum nisi condimentum. Nulla justo ligula, tristique et euismod ut, mollis vitae nisl. Pellentesque id lacinia arcu. Nunc mollis eros velit, ac hendrerit ipsum auctor eget. Maecenas id massa enim. Nullam sit amet mauris sodales, tincidunt lacus in, suscipit lectus. Maecenas ut semper purus, et mollis velit.<br />\r\n<br />\r\nIn rhoncus a velit id vulputate. Nulla accumsan est in nibh ullamcorper iaculis. Sed id convallis mi, eu commodo sapien. Phasellus hendrerit, tellus in tincidunt venenatis, est elit dictum nisi, in pretium mauris orci quis metus. Vivamus a nisl vitae sapien ultricies tempor tempus eu ligula. Fusce felis mi, accumsan bibendum est non, venenatis cursus elit. Nunc at scelerisque elit. Quisque sed sem lacinia, blandit arcu nec, vulputate ligula. Nulla interdum risus sodales metus bibendum fermentum.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Standard Content \\\\ -->																</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Body \\\\ -->								</td>\r\n</tr>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Footer \\\\ -->									<table border="0" cellpadding="10" cellspacing="0" id="templateFooter" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="footerContent" valign="top">\r\n<!-- // Begin Module: Standard Footer \\\\ -->													<table border="0" cellpadding="10" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td colspan="2" id="social" valign="middle">\r\n<div>\r\n&nbsp;<a href="http://www.twitter.com">follow on Twitter</a> | <a href="http://www.facebook.com">friend on Facebook</a></div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td valign="top" width="350">\r\n<div style="text-align: center;">\r\n<a href="http://www.yourcompany.com">www.yourcompany.com</a><br />\r\n<br />\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam semper leo sit amet tortor blandit, id dictum nisi condimentum. Nulla justo ligula, tristique et euismod ut, mollis vitae nisl.</div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan="2" id="utility" valign="middle">\r\n<div>\r\n{unsubscribe}</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Standard Footer \\\\ -->												</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Footer \\\\ -->								</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</center>\r\n', 'images/newsletters/thumbnails/simple-leftsidebar.jpg');
INSERT INTO `newsletter_templates` (`id`, `title`, `description`, `body`, `thumbnail`) VALUES(29, 'simple-letterhead-centerlogo', 'Επικεφαλίδα με λογότυπο στο κέντρο και από κάτω το κυρίως περιεχόμενο πλήρους πλάτους.', '<p>\r\n<style type="text/css">\r\n/* Client-specific Styles */\r\n#outlook a{padding:0;} /* Force Outlook to provide a "view in browser" button. */\r\nbody{width:100% !important;} .ReadMsgBody{width:100%;} .ExternalClass{width:100%;} /* Force Hotmail to display emails at full width */\r\nbody{-webkit-text-size-adjust:none;} /* Prevent Webkit platforms from changing default text sizes. */\r\n\r\n/* Reset Styles */\r\nbody{margin:0; padding:0;}\r\nimg{border:0; height:auto; line-height:100%; outline:none; text-decoration:none;}\r\ntable td{border-collapse:collapse;}\r\n#backgroundTable{height:100% !important; margin:0; padding:0; width:100% !important;}\r\n\r\n/* Template Styles */\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: COMMON PAGE ELEMENTS /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Page\r\n* @section background color\r\n* @tip Set the background color for your email. You may want to choose one that matches your company''s branding.\r\n* @theme page\r\n*/\r\nbody, #backgroundTable{\r\n/*@editable*/ background-color:#FAFAFA;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section email border\r\n* @tip Set the border for your email.\r\n*/\r\n#templateContainer{\r\n/*@editable*/ border:0;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 1\r\n* @tip Set the styling for all first-level headings in your emails. These should be the largest of your headings.\r\n* @style heading 1\r\n*/\r\nh1, .h1{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:40px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:2%;\r\nmargin-right:0;\r\nmargin-bottom:1%;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 2\r\n* @tip Set the styling for all second-level headings in your emails.\r\n* @style heading 2\r\n*/\r\nh2, .h2{\r\n/*@editable*/ color:#404040;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:18px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:2%;\r\nmargin-right:0;\r\nmargin-bottom:1%;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 3\r\n* @tip Set the styling for all third-level headings in your emails.\r\n* @style heading 3\r\n*/\r\nh3, .h3{\r\n/*@editable*/ color:#606060;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:16px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:2%;\r\nmargin-right:0;\r\nmargin-bottom:1%;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 4\r\n* @tip Set the styling for all fourth-level headings in your emails. These should be the smallest of your headings.\r\n* @style heading 4\r\n*/\r\nh4, .h4{\r\n/*@editable*/ color:#808080;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:14px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:2%;\r\nmargin-right:0;\r\nmargin-bottom:1%;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: PREHEADER /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Header\r\n* @section preheader style\r\n* @tip Set the background color for your email''s preheader area.\r\n* @theme page\r\n*/\r\n#templatePreheader{\r\n/*@editable*/ background-color:#FAFAFA;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section preheader text\r\n* @tip Set the styling for your email''s preheader text. Choose a size and color that is easy to read.\r\n*/\r\n.preheaderContent div{\r\n/*@editable*/ color:#707070;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:10px;\r\n/*@editable*/ line-height:100%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section preheader link\r\n* @tip Set the styling for your email''s preheader links. Choose a color that helps them stand out from your text.\r\n*/\r\n.preheaderContent div a:link, .preheaderContent div a:visited, /* Yahoo! Mail Override */ .preheaderContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section social bar style\r\n* @tip Set the background color and border for your email''s footer social bar.\r\n*/\r\n#social div{\r\n/*@editable*/ text-align:right;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: HEADER /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Header\r\n* @section header style\r\n* @tip Set the background color and border for your email''s header area.\r\n* @theme header\r\n*/\r\n#templateHeader{\r\n/*@editable*/ background-color:#FFFFFF;\r\n/*@editable*/ border-bottom:5px solid #505050;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section left header text\r\n* @tip Set the styling for your email''s header text. Choose a size and color that is easy to read.\r\n*/\r\n.leftHeaderContent div{\r\n/*@editable*/ color:#202020;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:32px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\n/*@editable*/ text-align:right;\r\n/*@editable*/ vertical-align:middle;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section right header text\r\n* @tip Set the styling for your email''s header text. Choose a size and color that is easy to read.\r\n*/\r\n.rightHeaderContent div{\r\n/*@editable*/ color:#202020;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:32px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\n/*@editable*/ text-align:left;\r\n/*@editable*/ vertical-align:middle;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section header link\r\n* @tip Set the styling for your email''s header links. Choose a color that helps them stand out from your text.\r\n*/\r\n.leftHeaderContent div a:link, .leftHeaderContent div a:visited, .rightHeaderContent div a:link, .rightHeaderContent div a:visited{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n#headerImage{\r\nheight:auto;\r\nmax-width:180px !important;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: MAIN BODY /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Body\r\n* @section body style\r\n* @tip Set the background color for your email''s body area.\r\n*/\r\n#templateContainer, .bodyContent{\r\n/*@editable*/ background-color:#FDFDFD;\r\n}\r\n\r\n/**\r\n* @tab Body\r\n* @section body text\r\n* @tip Set the styling for your email''s main content text. Choose a size and color that is easy to read.\r\n* @theme main\r\n*/\r\n.bodyContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:14px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Body\r\n* @section body link\r\n* @tip Set the styling for your email''s main content links. Choose a color that helps them stand out from your text.\r\n*/\r\n.bodyContent div a:link, .bodyContent div a:visited, /* Yahoo! Mail Override */ .bodyContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.bodyContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: FOOTER /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Footer\r\n* @section footer style\r\n* @tip Set the background color and top border for your email''s footer area.\r\n* @theme footer\r\n*/\r\n#templateFooter{\r\n/*@editable*/ background-color:#FAFAFA;\r\n/*@editable*/ border-top:3px solid #909090;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section footer text\r\n* @tip Set the styling for your email''s footer text. Choose a size and color that is easy to read.\r\n* @theme footer\r\n*/\r\n.footerContent div{\r\n/*@editable*/ color:#707070;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:11px;\r\n/*@editable*/ line-height:125%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section footer link\r\n* @tip Set the styling for your email''s footer links. Choose a color that helps them stand out from your text.\r\n*/\r\n.footerContent div a:link, .footerContent div a:visited, /* Yahoo! Mail Override */ .footerContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.footerContent img{\r\ndisplay:inline;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section social bar style\r\n* @tip Set the background color and border for your email''s footer social bar.\r\n* @theme footer\r\n*/\r\n#social{\r\n/*@editable*/ background-color:#FFFFFF;\r\n/*@editable*/ border:0;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section social bar style\r\n* @tip Set the background color and border for your email''s footer social bar.\r\n*/\r\n#social div{\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section utility bar style\r\n* @tip Set the background color and border for your email''s footer utility bar.\r\n* @theme footer\r\n*/\r\n#utility{\r\n/*@editable*/ background-color:#FAFAFA;\r\n/*@editable*/ border-top:0;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section utility bar style\r\n* @tip Set the background color and border for your email''s footer utility bar.\r\n*/\r\n#utility div{\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n#monkeyRewards img{\r\nmax-width:170px !important;\r\n}	</style>\r\n</p>\r\n<center>\r\n<table border="0" cellpadding="0" cellspacing="0" height="100%" id="backgroundTable" width="100%">\r\n<tbody>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Preheader \\\\ -->					<table border="0" cellpadding="10" cellspacing="0" id="templatePreheader" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="preheaderContent" valign="top">\r\n<!-- // Begin Module: Standard Preheader \\ -->									<table border="0" cellpadding="10" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<div>\r\nUse this area to offer a short teaser of your email''s content. Text here will show in the preview area of some email clients.</div>\r\n</td>\r\n<td valign="top" width="190">\r\n<div style="text-align: right;">\r\n{date}</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Standard Preheader \\ -->								</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Preheader \\\\ -->					<table border="0" cellpadding="0" cellspacing="0" id="templateContainer" width="600">\r\n<tbody>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Header \\\\ -->									<table border="0" cellpadding="0" cellspacing="0" id="templateHeader" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="headerContent">\r\n<!-- // Begin Module: Letterhead, Center Header Image \\\\ -->													<table border="0" cellpadding="10" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td class="leftHeaderContent">\r\n<div>\r\nHeading 1</div>\r\n</td>\r\n<td valign="middle" width="180">\r\n<img id="headerImage campaign-icon" src="images/newsletters/images/placeholder_180x100.gif" style="max-width:180px;" /></td>\r\n<td class="rightHeaderContent">\r\n<div>\r\nHeading 1</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Letterhead, Center Header Image \\\\ -->												</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Header \\\\ -->								</td>\r\n</tr>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Body \\\\ -->									<table border="0" cellpadding="10" cellspacing="0" id="templateBody" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="bodyContent" valign="top">\r\n<!-- // Begin Module: Standard Content \\\\ -->													<table border="0" cellpadding="10" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<div>\r\n<h2 class="h2">\r\nHeading 2</h2>\r\n<h3 class="h3">\r\nHeading 3</h3>\r\nHi {name},<br />\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam semper leo sit amet tortor blandit, id dictum nisi condimentum. Nulla justo ligula, tristique et euismod ut, mollis vitae nisl. Pellentesque id lacinia arcu. Nunc mollis eros velit, ac hendrerit ipsum auctor eget. Maecenas id massa enim. Nullam sit amet mauris sodales, tincidunt lacus in, suscipit lectus. Maecenas ut semper purus, et mollis velit.<br />\r\n<br />\r\n<h4 class="h4">\r\nHeading 4</h4>\r\nIn rhoncus a velit id vulputate. Nulla accumsan est in nibh ullamcorper iaculis. Sed id convallis mi, eu commodo sapien. Phasellus hendrerit, tellus in tincidunt venenatis, est elit dictum nisi, in pretium mauris orci quis metus. Vivamus a nisl vitae sapien ultricies tempor tempus eu ligula. Fusce felis mi, accumsan bibendum est non, venenatis cursus elit. Nunc at scelerisque elit. Quisque sed sem lacinia, blandit arcu nec, vulputate ligula. Nulla interdum risus sodales metus bibendum fermentum.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Standard Content \\\\ -->												</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Body \\\\ -->								</td>\r\n</tr>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Footer \\\\ -->									<table border="0" cellpadding="0" cellspacing="0" id="templateFooter" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="footerContent" valign="top">\r\n<!-- // Begin Module: Standard Footer \\\\ -->													<table border="0" cellpadding="10" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td colspan="2" id="social" valign="middle">\r\n<div>\r\n&nbsp;<a href="http://www.twitter.com">follow on Twitter</a> | <a href="http://www.facebook.com">friend on Facebook</a></div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td valign="top" width="350">\r\n<div>\r\n<a href="http://www.yourcompany.com">www.yourcompany.com</a><br />\r\n<br />\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam semper leo sit amet tortor blandit, id dictum nisi condimentum. Nulla justo ligula, tristique et euismod ut, mollis vitae nisl.</div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan="2" id="utility" valign="middle">\r\n<div>\r\n{unsubscribe}</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Standard Footer \\\\ -->												</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Footer \\\\ -->								</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</center>\r\n', 'images/newsletters/thumbnails/simple-letterhead-centerlogo.jpg');
INSERT INTO `newsletter_templates` (`id`, `title`, `description`, `body`, `thumbnail`) VALUES(30, 'simple-letterhead-leftlogo', 'Επικεφαλίδα με λογότυπο στα αριστερά και από κάτω το κυρίως περιεχόμενο με πλάγια μπάρα στα αριστερά.', '<p>\r\n<style type="text/css">\r\n/* Client-specific Styles */\r\n#outlook a{padding:0;} /* Force Outlook to provide a "view in browser" button. */\r\nbody{width:100% !important;} .ReadMsgBody{width:100%;} .ExternalClass{width:100%;} /* Force Hotmail to display emails at full width */\r\nbody{-webkit-text-size-adjust:none;} /* Prevent Webkit platforms from changing default text sizes. */\r\n\r\n/* Reset Styles */\r\nbody{margin:0; padding:0;}\r\nimg{border:0; height:auto; line-height:100%; outline:none; text-decoration:none;}\r\ntable td{border-collapse:collapse;}\r\n#backgroundTable{height:100% !important; margin:0; padding:0; width:100% !important;}\r\n\r\n/* Template Styles */\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: COMMON PAGE ELEMENTS /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Page\r\n* @section background color\r\n* @tip Set the background color for your email. You may want to choose one that matches your company''s branding.\r\n* @theme page\r\n*/\r\nbody, #backgroundTable{\r\n/*@editable*/ background-color:#FAFAFA;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section email border\r\n* @tip Set the border for your email.\r\n*/\r\n#templateContainer{\r\n/*@editable*/ border:0;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 1\r\n* @tip Set the styling for all first-level headings in your emails. These should be the largest of your headings.\r\n* @style heading 1\r\n*/\r\nh1, .h1{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:40px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:2%;\r\nmargin-right:0;\r\nmargin-bottom:1%;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 2\r\n* @tip Set the styling for all second-level headings in your emails.\r\n* @style heading 2\r\n*/\r\nh2, .h2{\r\n/*@editable*/ color:#404040;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:18px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:2%;\r\nmargin-right:0;\r\nmargin-bottom:1%;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 3\r\n* @tip Set the styling for all third-level headings in your emails.\r\n* @style heading 3\r\n*/\r\nh3, .h3{\r\n/*@editable*/ color:#606060;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:16px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:2%;\r\nmargin-right:0;\r\nmargin-bottom:1%;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 4\r\n* @tip Set the styling for all fourth-level headings in your emails. These should be the smallest of your headings.\r\n* @style heading 4\r\n*/\r\nh4, .h4{\r\n/*@editable*/ color:#808080;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:14px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:2%;\r\nmargin-right:0;\r\nmargin-bottom:1%;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: PREHEADER /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Header\r\n* @section preheader style\r\n* @tip Set the background color for your email''s preheader area.\r\n* @theme page\r\n*/\r\n#templatePreheader{\r\n/*@editable*/ background-color:#FAFAFA;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section preheader text\r\n* @tip Set the styling for your email''s preheader text. Choose a size and color that is easy to read.\r\n*/\r\n.preheaderContent div{\r\n/*@editable*/ color:#707070;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:10px;\r\n/*@editable*/ line-height:100%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section preheader link\r\n* @tip Set the styling for your email''s preheader links. Choose a color that helps them stand out from your text.\r\n*/\r\n.preheaderContent div a:link, .preheaderContent div a:visited, /* Yahoo! Mail Override */ .preheaderContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section social bar style\r\n* @tip Set the background color and border for your email''s footer social bar.\r\n*/\r\n#social div{\r\n/*@editable*/ text-align:right;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: HEADER /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Header\r\n* @section header style\r\n* @tip Set the background color and border for your email''s header area.\r\n* @theme header\r\n*/\r\n#templateHeader{\r\n/*@editable*/ background-color:#FFFFFF;\r\n/*@editable*/ border-bottom:5px solid #505050;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section header text\r\n* @tip Set the styling for your email''s header text. Choose a size and color that is easy to read.\r\n*/\r\n.headerContent{\r\n/*@editable*/ color:#202020;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:34px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\n/*@editable*/ padding:10px;\r\n/*@editable*/ text-align:right;\r\n/*@editable*/ vertical-align:middle;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section header link\r\n* @tip Set the styling for your email''s header links. Choose a color that helps them stand out from your text.\r\n*/\r\n.headerContent a:link, .headerContent a:visited, /* Yahoo! Mail Override */ .headerContent a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n#headerImage{\r\nheight:auto;\r\nmax-width:600px !important;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: MAIN BODY /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Body\r\n* @section body style\r\n* @tip Set the background color for your email''s body area.\r\n*/\r\n#templateContainer, .bodyContent{\r\n/*@editable*/ background-color:#FDFDFD;\r\n}\r\n\r\n/**\r\n* @tab Body\r\n* @section body text\r\n* @tip Set the styling for your email''s main content text. Choose a size and color that is easy to read.\r\n* @theme main\r\n*/\r\n.bodyContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:14px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:justify;\r\n}\r\n\r\n/**\r\n* @tab Body\r\n* @section body link\r\n* @tip Set the styling for your email''s main content links. Choose a color that helps them stand out from your text.\r\n*/\r\n.bodyContent div a:link, .bodyContent div a:visited, /* Yahoo! Mail Override */ .bodyContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.bodyContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: SIDEBAR /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Sidebar\r\n* @section sidebar style\r\n* @tip Set the background color and border for your email''s sidebar area.\r\n*/\r\n#templateSidebar{\r\n/*@editable*/ background-color:#FDFDFD;\r\n}\r\n\r\n/**\r\n* @tab Sidebar\r\n* @section sidebar style\r\n* @tip Set the background color and border for your email''s sidebar area.\r\n*/\r\n.sidebarContent{\r\n/*@editable*/ border-right:1px solid #DDDDDD;\r\n}\r\n\r\n/**\r\n* @tab Sidebar\r\n* @section sidebar text\r\n* @tip Set the styling for your email''s sidebar text. Choose a size and color that is easy to read.\r\n*/\r\n.sidebarContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:10px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Sidebar\r\n* @section sidebar link\r\n* @tip Set the styling for your email''s sidebar links. Choose a color that helps them stand out from your text.\r\n*/\r\n.sidebarContent div a:link, .sidebarContent div a:visited, /* Yahoo! Mail Override */ .sidebarContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.sidebarContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: FOOTER /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Footer\r\n* @section footer style\r\n* @tip Set the background color and top border for your email''s footer area.\r\n* @theme footer\r\n*/\r\n#templateFooter{\r\n/*@editable*/ background-color:#FAFAFA;\r\n/*@editable*/ border-top:3px solid #909090;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section footer text\r\n* @tip Set the styling for your email''s footer text. Choose a size and color that is easy to read.\r\n* @theme footer\r\n*/\r\n.footerContent div{\r\n/*@editable*/ color:#707070;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:11px;\r\n/*@editable*/ line-height:125%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section footer link\r\n* @tip Set the styling for your email''s footer links. Choose a color that helps them stand out from your text.\r\n*/\r\n.footerContent div a:link, .footerContent div a:visited, /* Yahoo! Mail Override */ .footerContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.footerContent img{\r\ndisplay:inline;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section social bar style\r\n* @tip Set the background color and border for your email''s footer social bar.\r\n* @theme footer\r\n*/\r\n#social{\r\n/*@editable*/ background-color:#FFFFFF;\r\n/*@editable*/ border:0;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section social bar style\r\n* @tip Set the background color and border for your email''s footer social bar.\r\n*/\r\n#social div{\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section utility bar style\r\n* @tip Set the background color and border for your email''s footer utility bar.\r\n* @theme footer\r\n*/\r\n#utility{\r\n/*@editable*/ background-color:#FAFAFA;\r\n/*@editable*/ border-top:0;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section utility bar style\r\n* @tip Set the background color and border for your email''s footer utility bar.\r\n*/\r\n#utility div{\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n#monkeyRewards img{\r\nmax-width:170px !important;\r\n}	</style>\r\n</p>\r\n<center>\r\n<table border="0" cellpadding="0" cellspacing="0" height="100%" id="backgroundTable" width="100%">\r\n<tbody>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Preheader \\\\ -->					<table border="0" cellpadding="10" cellspacing="0" id="templatePreheader" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="preheaderContent" valign="top">\r\n<!-- // Begin Module: Standard Preheader \\ -->									<table border="0" cellpadding="10" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<div>\r\nUse this area to offer a short teaser of your email''s content. Text here will show in the preview area of some email clients.</div>\r\n</td>\r\n<td valign="top" width="190">\r\n<div style="text-align: right;">\r\n{date}</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Standard Preheader \\ -->								</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Preheader \\\\ -->					<table border="0" cellpadding="0" cellspacing="0" id="templateContainer" width="600">\r\n<tbody>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Header \\\\ -->									<table border="0" cellpadding="0" cellspacing="0" id="templateHeader" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="headerContent">\r\n<img id="headerImage campaign-icon" src="images/newsletters/images/placeholder_180x100.gif" style="max-width:180px;" /></td>\r\n<td class="headerContent" style="padding-left:10px; padding-right:20px;" width="100%">\r\n<div>\r\n<h1>\r\nHeading 1</h1>\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Header \\\\ -->								</td>\r\n</tr>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Body \\\\ -->									<table border="0" cellpadding="10" cellspacing="0" id="templateBody" width="600">\r\n<tbody>\r\n<tr>\r\n<!-- // Begin Sidebar \\\\  -->												<td id="templateSidebar" valign="top" width="180">\r\n<table border="0" cellpadding="0" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<!-- // Begin Module: Standard Content \\\\ -->																	<table border="0" cellpadding="20" cellspacing="0" class="sidebarContent" width="100%">\r\n<tbody>\r\n<tr>\r\n<td style="padding-left:10px;" valign="top">\r\n<div>\r\n<strong>Basic content module</strong><br />\r\nFar far away, behind the word mountains.<br />\r\n<br />\r\n<strong>Far from the countries</strong><br />\r\nVokalia and Consonantia, there live the blind texts.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Standard Content \\\\ -->																</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<!-- // End Sidebar \\\\ -->												<td class="bodyContent" valign="top">\r\n<!-- // Begin Module: Standard Content \\\\ -->													<table border="0" cellpadding="10" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td style="padding-left:0;" valign="top">\r\n<div>\r\n<h2 class="h2">\r\nHeading 2</h2>\r\n<h3 class="h3">\r\nHeading 3</h3>\r\nHi {name},<br />\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam semper leo sit amet tortor blandit, id dictum nisi condimentum. Nulla justo ligula, tristique et euismod ut, mollis vitae nisl. Pellentesque id lacinia arcu. Nunc mollis eros velit, ac hendrerit ipsum auctor eget. Maecenas id massa enim. Nullam sit amet mauris sodales, tincidunt lacus in, suscipit lectus. Maecenas ut semper purus, et mollis velit.<br />\r\n<br />\r\n<h4 class="h4">\r\nHeading 4</h4>\r\nIn rhoncus a velit id vulputate. Nulla accumsan est in nibh ullamcorper iaculis. Sed id convallis mi, eu commodo sapien. Phasellus hendrerit, tellus in tincidunt venenatis, est elit dictum nisi, in pretium mauris orci quis metus. Vivamus a nisl vitae sapien ultricies tempor tempus eu ligula. Fusce felis mi, accumsan bibendum est non, venenatis cursus elit. Nunc at scelerisque elit. Quisque sed sem lacinia, blandit arcu nec, vulputate ligula. Nulla interdum risus sodales metus bibendum fermentum.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Standard Content \\\\ -->												</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Body \\\\ -->								</td>\r\n</tr>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Footer \\\\ -->									<table border="0" cellpadding="0" cellspacing="0" id="templateFooter" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="footerContent" valign="top">\r\n<!-- // Begin Module: Standard Footer \\\\ -->													<table border="0" cellpadding="10" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td colspan="2" id="social" valign="middle">\r\n<div>\r\n&nbsp;<a href="http://www.twitter.com">follow on Twitter</a> | <a href="http://www.facebook.com">friend on Facebook</a></div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td valign="top" width="350">\r\n<div>\r\n<a href="http://www.yourcompany.com">www.yourcompany.com</a><br />\r\n<br />\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam semper leo sit amet tortor blandit, id dictum nisi condimentum. Nulla justo ligula, tristique et euismod ut, mollis vitae nisl.</div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan="2" id="utility" valign="middle">\r\n<div>\r\n{unsubscribe}</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Standard Footer \\\\ -->												</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Footer \\\\ -->								</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</center>\r\n', 'images/newsletters/thumbnails/simple-letterhead-leftlogo.jpg');
INSERT INTO `newsletter_templates` (`id`, `title`, `description`, `body`, `thumbnail`) VALUES(31, 'simple-letterhead-rightlogo', 'Επικεφαλίδα με λογότυπο στα δεξιά και από κάτω το κυρίως περιεχόμενο με πλάγια μπάρα στα δεξιά.', '<p>\r\n<style type="text/css">\r\n/* Client-specific Styles */\r\n#outlook a{padding:0;} /* Force Outlook to provide a "view in browser" button. */\r\nbody{width:100% !important;} .ReadMsgBody{width:100%;} .ExternalClass{width:100%;} /* Force Hotmail to display emails at full width */\r\nbody{-webkit-text-size-adjust:none;} /* Prevent Webkit platforms from changing default text sizes. */\r\n\r\n/* Reset Styles */\r\nbody{margin:0; padding:0;}\r\nimg{border:0; height:auto; line-height:100%; outline:none; text-decoration:none;}\r\ntable td{border-collapse:collapse;}\r\n#backgroundTable{height:100% !important; margin:0; padding:0; width:100% !important;}\r\n\r\n\r\n/* Template Styles */\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: COMMON PAGE ELEMENTS /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Page\r\n* @section background color\r\n* @tip Set the background color for your email. You may want to choose one that matches your company''s branding.\r\n* @theme page\r\n*/\r\nbody, #backgroundTable{\r\n/*@editable*/ background-color:#FAFAFA;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section email border\r\n* @tip Set the border for your email.\r\n*/\r\n#templateContainer{\r\n/*@editable*/ border:0;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 1\r\n* @tip Set the styling for all first-level headings in your emails. These should be the largest of your headings.\r\n* @style heading 1\r\n*/\r\nh1, .h1{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:40px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:2%;\r\nmargin-right:0;\r\nmargin-bottom:1%;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 2\r\n* @tip Set the styling for all second-level headings in your emails.\r\n* @style heading 2\r\n*/\r\nh2, .h2{\r\n/*@editable*/ color:#404040;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:18px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:2%;\r\nmargin-right:0;\r\nmargin-bottom:1%;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 3\r\n* @tip Set the styling for all third-level headings in your emails.\r\n* @style heading 3\r\n*/\r\nh3, .h3{\r\n/*@editable*/ color:#606060;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:16px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:2%;\r\nmargin-right:0;\r\nmargin-bottom:1%;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 4\r\n* @tip Set the styling for all fourth-level headings in your emails. These should be the smallest of your headings.\r\n* @style heading 4\r\n*/\r\nh4, .h4{\r\n/*@editable*/ color:#808080;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:14px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:2%;\r\nmargin-right:0;\r\nmargin-bottom:1%;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: PREHEADER /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Header\r\n* @section preheader style\r\n* @tip Set the background color for your email''s preheader area.\r\n* @theme page\r\n*/\r\n#templatePreheader{\r\n/*@editable*/ background-color:#FAFAFA;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section preheader text\r\n* @tip Set the styling for your email''s preheader text. Choose a size and color that is easy to read.\r\n*/\r\n.preheaderContent div{\r\n/*@editable*/ color:#707070;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:10px;\r\n/*@editable*/ line-height:100%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section preheader link\r\n* @tip Set the styling for your email''s preheader links. Choose a color that helps them stand out from your text.\r\n*/\r\n.preheaderContent div a:link, .preheaderContent div a:visited, /* Yahoo! Mail Override */ .preheaderContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section social bar style\r\n* @tip Set the background color and border for your email''s footer social bar.\r\n*/\r\n#social div{\r\n/*@editable*/ text-align:right;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: HEADER /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Header\r\n* @section header style\r\n* @tip Set the background color and border for your email''s header area.\r\n* @theme header\r\n*/\r\n#templateHeader{\r\n/*@editable*/ background-color:#FFFFFF;\r\n/*@editable*/ border-bottom:5px solid #505050;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section header text\r\n* @tip Set the styling for your email''s header text. Choose a size and color that is easy to read.\r\n*/\r\n.headerContent{\r\n/*@editable*/ color:#202020;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:34px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\n/*@editable*/ padding:10px;\r\n/*@editable*/ text-align:right;\r\n/*@editable*/ vertical-align:middle;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section header link\r\n* @tip Set the styling for your email''s header links. Choose a color that helps them stand out from your text.\r\n*/\r\n.headerContent a:link, .headerContent a:visited, /* Yahoo! Mail Override */ .headerContent a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n#headerImage{\r\nheight:auto;\r\nmax-width:600px !important;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: MAIN BODY /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Body\r\n* @section body style\r\n* @tip Set the background color for your email''s body area.\r\n*/\r\n#templateContainer, .bodyContent{\r\n/*@editable*/ background-color:#FDFDFD;\r\n}\r\n\r\n/**\r\n* @tab Body\r\n* @section body text\r\n* @tip Set the styling for your email''s main content text. Choose a size and color that is easy to read.\r\n* @theme main\r\n*/\r\n.bodyContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:14px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:justify;\r\n}\r\n\r\n/**\r\n* @tab Body\r\n* @section body link\r\n* @tip Set the styling for your email''s main content links. Choose a color that helps them stand out from your text.\r\n*/\r\n.bodyContent div a:link, .bodyContent div a:visited, /* Yahoo! Mail Override */ .bodyContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.bodyContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: SIDEBAR /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Sidebar\r\n* @section sidebar style\r\n* @tip Set the background color and border for your email''s sidebar area.\r\n*/\r\n#templateSidebar{\r\n/*@editable*/ background-color:#FDFDFD;\r\n}\r\n\r\n/**\r\n* @tab Sidebar\r\n* @section sidebar style\r\n* @tip Set the background color and border for your email''s sidebar area.\r\n*/\r\n.sidebarContent{\r\n/*@editable*/ border-left:1px solid #DDDDDD;\r\n}\r\n\r\n/**\r\n* @tab Sidebar\r\n* @section sidebar text\r\n* @tip Set the styling for your email''s sidebar text. Choose a size and color that is easy to read.\r\n*/\r\n.sidebarContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:10px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Sidebar\r\n* @section sidebar link\r\n* @tip Set the styling for your email''s sidebar links. Choose a color that helps them stand out from your text.\r\n*/\r\n.sidebarContent div a:link, .sidebarContent div a:visited, /* Yahoo! Mail Override */ .sidebarContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.sidebarContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: FOOTER /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Footer\r\n* @section footer style\r\n* @tip Set the background color and top border for your email''s footer area.\r\n* @theme footer\r\n*/\r\n#templateFooter{\r\n/*@editable*/ background-color:#FAFAFA;\r\n/*@editable*/ border-top:3px solid #909090;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section footer text\r\n* @tip Set the styling for your email''s footer text. Choose a size and color that is easy to read.\r\n* @theme footer\r\n*/\r\n.footerContent div{\r\n/*@editable*/ color:#707070;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:11px;\r\n/*@editable*/ line-height:125%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section footer link\r\n* @tip Set the styling for your email''s footer links. Choose a color that helps them stand out from your text.\r\n*/\r\n.footerContent div a:link, .footerContent div a:visited, /* Yahoo! Mail Override */ .footerContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.footerContent img{\r\ndisplay:inline;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section social bar style\r\n* @tip Set the background color and border for your email''s footer social bar.\r\n* @theme footer\r\n*/\r\n#social{\r\n/*@editable*/ background-color:#FFFFFF;\r\n/*@editable*/ border:0;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section social bar style\r\n* @tip Set the background color and border for your email''s footer social bar.\r\n*/\r\n#social div{\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section utility bar style\r\n* @tip Set the background color and border for your email''s footer utility bar.\r\n* @theme footer\r\n*/\r\n#utility{\r\n/*@editable*/ background-color:#FAFAFA;\r\n/*@editable*/ border-top:0;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section utility bar style\r\n* @tip Set the background color and border for your email''s footer utility bar.\r\n*/\r\n#utility div{\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n#monkeyRewards img{\r\nmax-width:170px !important;\r\n}	</style>\r\n</p>\r\n<center>\r\n<table border="0" cellpadding="0" cellspacing="0" height="100%" id="backgroundTable" width="100%">\r\n<tbody>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Preheader \\\\ -->					<table border="0" cellpadding="10" cellspacing="0" id="templatePreheader" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="preheaderContent" valign="top">\r\n<!-- // Begin Module: Standard Preheader \\ -->									<table border="0" cellpadding="10" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<div>\r\nUse this area to offer a short teaser of your email''s content. Text here will show in the preview area of some email clients.</div>\r\n</td>\r\n<td valign="top" width="190">\r\n<div style="text-align: right;">\r\n{date}</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Standard Preheader \\ -->								</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Preheader \\\\ -->					<table border="0" cellpadding="0" cellspacing="0" id="templateContainer" width="600">\r\n<tbody>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Header \\\\ -->									<table border="0" cellpadding="0" cellspacing="0" id="templateHeader" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="headerContent" style="padding-left:20px; padding-right:10px;" width="100%">\r\n<div>\r\n<h1>\r\nHeading 1</h1>\r\n</div>\r\n</td>\r\n<td class="headerContent">\r\n<img id="headerImage campaign-icon" src="images/newsletters/images/placeholder_180x100.gif" style="max-width:180px;" /></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Header \\\\ -->								</td>\r\n</tr>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Body \\\\ -->									<table border="0" cellpadding="10" cellspacing="0" id="templateBody" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="bodyContent" valign="top">\r\n<!-- // Begin Module: Standard Content \\\\ -->													<table border="0" cellpadding="10" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td style="padding-right:0;" valign="top">\r\n<div>\r\n<h2 class="h2">\r\nHeading 2</h2>\r\n<h3 class="h3">\r\nHeading 3</h3>\r\nHi {name},<br />\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam semper leo sit amet tortor blandit, id dictum nisi condimentum. Nulla justo ligula, tristique et euismod ut, mollis vitae nisl. Pellentesque id lacinia arcu. Nunc mollis eros velit, ac hendrerit ipsum auctor eget. Maecenas id massa enim. Nullam sit amet mauris sodales, tincidunt lacus in, suscipit lectus. Maecenas ut semper purus, et mollis velit.<br />\r\n<br />\r\n<h4 class="h4">\r\nHeading 4</h4>\r\nIn rhoncus a velit id vulputate. Nulla accumsan est in nibh ullamcorper iaculis. Sed id convallis mi, eu commodo sapien. Phasellus hendrerit, tellus in tincidunt venenatis, est elit dictum nisi, in pretium mauris orci quis metus. Vivamus a nisl vitae sapien ultricies tempor tempus eu ligula. Fusce felis mi, accumsan bibendum est non, venenatis cursus elit. Nunc at scelerisque elit. Quisque sed sem lacinia, blandit arcu nec, vulputate ligula. Nulla interdum risus sodales metus bibendum fermentum.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Standard Content \\\\ -->												</td>\r\n<!-- // Begin Sidebar \\\\  -->												<td id="templateSidebar" valign="top" width="180">\r\n<table border="0" cellpadding="0" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<!-- // Begin Module: Standard Content \\\\ -->																	<table border="0" cellpadding="20" cellspacing="0" class="sidebarContent" width="100%">\r\n<tbody>\r\n<tr>\r\n<td style="padding-right:10px;" valign="top">\r\n<div>\r\n<strong>Basic content module</strong><br />\r\nFar far away, behind the word mountains.<br />\r\n<br />\r\n<strong>Far from the countries</strong><br />\r\nVokalia and Consonantia, there live the blind texts.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Standard Content \\\\ -->																</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<!-- // End Sidebar \\\\ -->											</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Body \\\\ -->								</td>\r\n</tr>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Footer \\\\ -->									<table border="0" cellpadding="0" cellspacing="0" id="templateFooter" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="footerContent" valign="top">\r\n<!-- // Begin Module: Standard Footer \\\\ -->													<table border="0" cellpadding="10" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td colspan="2" id="social" valign="middle">\r\n<div>\r\n&nbsp;<a href="http://www.twitter.com">follow on Twitter</a> | <a href="http://www.facebook.com">friend on Facebook</a></div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td valign="top" width="350">\r\n<div>\r\n<a href="http://www.yourcompany.com">www.yourcompany.com</a><br />\r\n<br />\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam semper leo sit amet tortor blandit, id dictum nisi condimentum. Nulla justo ligula, tristique et euismod ut, mollis vitae nisl.</div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan="2" id="utility" valign="middle">\r\n<div>\r\n{unsubscribe}</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Standard Footer \\\\ -->												</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Footer \\\\ -->								</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</center>\r\n', 'images/newsletters/thumbnails/simple-letterhead-rightlogo.jpg');
INSERT INTO `newsletter_templates` (`id`, `title`, `description`, `body`, `thumbnail`) VALUES(32, 'simple-postcard', 'Μεγάλη εικόνα πλήρους πλάτους στην κορυφή και κυρίως άρθρο πλήρους πλάτους από κάτω.', '<p>\r\n<style type="text/css">\r\n/* Client-specific Styles */\r\n#outlook a{padding:0;} /* Force Outlook to provide a "view in browser" button. */\r\nbody{width:100% !important;} .ReadMsgBody{width:100%;} .ExternalClass{width:100%;} /* Force Hotmail to display emails at full width */\r\nbody{-webkit-text-size-adjust:none;} /* Prevent Webkit platforms from changing default text sizes. */\r\n\r\n/* Reset Styles */\r\nbody{margin:0; padding:0;}\r\nimg{border:0; height:auto; line-height:100%; outline:none; text-decoration:none;}\r\ntable td{border-collapse:collapse;}\r\n#backgroundTable{height:100% !important; margin:0; padding:0; width:100% !important;}\r\n\r\n/* Template Styles */\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: COMMON PAGE ELEMENTS /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Page\r\n* @section background color\r\n* @tip Set the background color for your email. You may want to choose one that matches your company''s branding.\r\n* @theme page\r\n*/\r\nbody, #backgroundTable{\r\n/*@editable*/ background-color:#FAFAFA;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section email border\r\n* @tip Set the border for your email.\r\n*/\r\n#templateContainer{\r\n/*@editable*/ border: 1px solid #DDDDDD;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 1\r\n* @tip Set the styling for all first-level headings in your emails. These should be the largest of your headings.\r\n* @style heading 1\r\n*/\r\nh1, .h1{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:34px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 2\r\n* @tip Set the styling for all second-level headings in your emails.\r\n* @style heading 2\r\n*/\r\nh2, .h2{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:30px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 3\r\n* @tip Set the styling for all third-level headings in your emails.\r\n* @style heading 3\r\n*/\r\nh3, .h3{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:26px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 4\r\n* @tip Set the styling for all fourth-level headings in your emails. These should be the smallest of your headings.\r\n* @style heading 4\r\n*/\r\nh4, .h4{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:22px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: PREHEADER /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Header\r\n* @section preheader style\r\n* @tip Set the background color for your email''s preheader area.\r\n* @theme page\r\n*/\r\n#templatePreheader{\r\n/*@editable*/ background-color:#FAFAFA;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section preheader text\r\n* @tip Set the styling for your email''s preheader text. Choose a size and color that is easy to read.\r\n*/\r\n.preheaderContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:10px;\r\n/*@editable*/ line-height:100%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section preheader link\r\n* @tip Set the styling for your email''s preheader links. Choose a color that helps them stand out from your text.\r\n*/\r\n.preheaderContent div a:link, .preheaderContent div a:visited, /* Yahoo! Mail Override */ .preheaderContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: HEADER /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Header\r\n* @section header style\r\n* @tip Set the background color and border for your email''s header area.\r\n* @theme header\r\n*/\r\n#templateHeader{\r\n/*@editable*/ background-color:#FFFFFF;\r\n/*@editable*/ border-bottom:0;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section header text\r\n* @tip Set the styling for your email''s header text. Choose a size and color that is easy to read.\r\n*/\r\n.headerContent{\r\n/*@editable*/ color:#202020;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:34px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\n/*@editable*/ padding:0;\r\n/*@editable*/ text-align:center;\r\n/*@editable*/ vertical-align:middle;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section header link\r\n* @tip Set the styling for your email''s header links. Choose a color that helps them stand out from your text.\r\n*/\r\n.headerContent a:link, .headerContent a:visited, /* Yahoo! Mail Override */ .headerContent a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n#headerImage{\r\nheight:auto;\r\nmax-width:600px;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: MAIN BODY /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Body\r\n* @section body style\r\n* @tip Set the background color for your email''s body area.\r\n*/\r\n#templateContainer, .bodyContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Body\r\n* @section body text\r\n* @tip Set the styling for your email''s main content text. Choose a size and color that is easy to read.\r\n* @theme main\r\n*/\r\n.bodyContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:14px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Body\r\n* @section body link\r\n* @tip Set the styling for your email''s main content links. Choose a color that helps them stand out from your text.\r\n*/\r\n.bodyContent div a:link, .bodyContent div a:visited, /* Yahoo! Mail Override */ .bodyContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.bodyContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: FOOTER /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Footer\r\n* @section footer style\r\n* @tip Set the background color and top border for your email''s footer area.\r\n* @theme footer\r\n*/\r\n#templateFooter{\r\n/*@editable*/ background-color:#FFFFFF;\r\n/*@editable*/ border-top:0;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section footer text\r\n* @tip Set the styling for your email''s footer text. Choose a size and color that is easy to read.\r\n* @theme footer\r\n*/\r\n.footerContent div{\r\n/*@editable*/ color:#707070;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:12px;\r\n/*@editable*/ line-height:125%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section footer link\r\n* @tip Set the styling for your email''s footer links. Choose a color that helps them stand out from your text.\r\n*/\r\n.footerContent div a:link, .footerContent div a:visited, /* Yahoo! Mail Override */ .footerContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.footerContent img{\r\ndisplay:inline;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section social bar style\r\n* @tip Set the background color and border for your email''s footer social bar.\r\n* @theme footer\r\n*/\r\n#social{\r\n/*@editable*/ background-color:#FAFAFA;\r\n/*@editable*/ border:0;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section social bar style\r\n* @tip Set the background color and border for your email''s footer social bar.\r\n*/\r\n#social div{\r\n/*@editable*/ text-align:center;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section utility bar style\r\n* @tip Set the background color and border for your email''s footer utility bar.\r\n* @theme footer\r\n*/\r\n#utility{\r\n/*@editable*/ background-color:#FFFFFF;\r\n/*@editable*/ border:0;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section utility bar style\r\n* @tip Set the background color and border for your email''s footer utility bar.\r\n*/\r\n#utility div{\r\n/*@editable*/ text-align:center;\r\n}	</style>\r\n</p>\r\n<center>\r\n<table border="0" cellpadding="0" cellspacing="0" height="100%" id="backgroundTable" width="100%">\r\n<tbody>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Preheader \\\\ -->					<table border="0" cellpadding="10" cellspacing="0" id="templatePreheader" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="preheaderContent" valign="top">\r\n<!-- // Begin Module: Standard Preheader \\ -->									<table border="0" cellpadding="10" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<div>\r\nUse this area to offer a short teaser of your email''s content. Text here will show in the preview area of some email clients.</div>\r\n</td>\r\n<td valign="top" width="190">\r\n<div style="text-align: right;">\r\n{date}</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Standard Preheader \\ -->								</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Preheader \\\\ -->					<table border="0" cellpadding="0" cellspacing="0" id="templateContainer" width="600">\r\n<tbody>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Header \\\\ -->									<table border="0" cellpadding="0" cellspacing="0" id="templateHeader" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="headerContent">\r\n<!-- // Begin Module: Standard Header Image \\\\ -->													<img id="headerImage campaign-icon" src="images/newsletters/images/placeholder_600.gif" style="max-width:600px;" /> <!-- // End Module: Standard Header Image \\\\ --></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Header \\\\ -->								</td>\r\n</tr>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Body \\\\ -->									<table border="0" cellpadding="0" cellspacing="0" id="templateBody" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="bodyContent" valign="top">\r\n<!-- // Begin Module: Standard Postcard Content \\\\ -->													<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<div>\r\n<h1 class="h1">\r\nHeading 1</h1>\r\n</div>\r\n<img src="images/newsletters/images/placeholder_560p.gif" style="max-width:560px;" />\r\n<div>\r\n<h1 class="h1">\r\nHeading 1</h1>\r\n<h2 class="h2">\r\nHeading 2</h2>\r\n<h3 class="h3">\r\nHeading 3</h3>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\nHi {name},<br />\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam semper leo sit amet tortor blandit, id dictum nisi condimentum. Nulla justo ligula, tristique et euismod ut, mollis vitae nisl. Pellentesque id lacinia arcu. Nunc mollis eros velit, ac hendrerit ipsum auctor eget. Maecenas id massa enim. Nullam sit amet mauris sodales, tincidunt lacus in, suscipit lectus. Maecenas ut semper purus, et mollis velit.<br />\r\n<br />\r\nIn rhoncus a velit id vulputate. Nulla accumsan est in nibh ullamcorper iaculis. Sed id convallis mi, eu commodo sapien. Phasellus hendrerit, tellus in tincidunt venenatis, est elit dictum nisi, in pretium mauris orci quis metus. Vivamus a nisl vitae sapien ultricies tempor tempus eu ligula. Fusce felis mi, accumsan bibendum est non, venenatis cursus elit. Nunc at scelerisque elit. Quisque sed sem lacinia, blandit arcu nec, vulputate ligula. Nulla interdum risus sodales metus bibendum fermentum.<br />\r\n<br />\r\n<strong>Repeatable content blocks:</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec iaculis, velit at semper placerat, tellus velit vehicula orci, a tristique lorem orci eu nisl. Sed et arcu quam. Donec varius arcu et ante convallis, quis laoreet lacus mattis.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Standard Postcard Content \\\\ -->												</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Body \\\\ -->								</td>\r\n</tr>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Footer \\\\ -->									<table border="0" cellpadding="10" cellspacing="0" id="templateFooter" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="footerContent" valign="top">\r\n<!-- // Begin Module: Standard Footer \\\\ -->													<table border="0" cellpadding="10" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td colspan="2" id="social" valign="middle">\r\n<div>\r\n&nbsp;<a href="http://www.twitter.com">follow on Twitter</a> | <a href="http://www.facebook.com">friend on Facebook</a></div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td valign="top" width="350">\r\n<div style="text-align: center;">\r\n<a href="http://www.yourcompany.com">www.yourcompany.com</a><br />\r\n<br />\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam semper leo sit amet tortor blandit, id dictum nisi condimentum. Nulla justo ligula, tristique et euismod ut, mollis vitae nisl.</div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan="2" id="utility" valign="middle">\r\n<div>\r\n{unsubscribe}</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Standard Footer \\\\ -->												</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Footer \\\\ -->								</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</center>\r\n', 'images/newsletters/thumbnails/simple-postcard.jpg');
INSERT INTO `newsletter_templates` (`id`, `title`, `description`, `body`, `thumbnail`) VALUES(33, 'simple-rightsidebar', 'Ένα απλό template με πλάγια μπάρα στα δεξιά και το κυρίως άρθρο στα αριστερά.', '<p>\r\n<style type="text/css">\r\n/* Client-specific Styles */\r\n#outlook a{padding:0;} /* Force Outlook to provide a "view in browser" button. */\r\nbody{width:100% !important;} .ReadMsgBody{width:100%;} .ExternalClass{width:100%;} /* Force Hotmail to display emails at full width */\r\nbody{-webkit-text-size-adjust:none;} /* Prevent Webkit platforms from changing default text sizes. */\r\n\r\n/* Reset Styles */\r\nbody{margin:0; padding:0;}\r\nimg{border:0; height:auto; line-height:100%; outline:none; text-decoration:none;}\r\ntable td{border-collapse:collapse;}\r\n#backgroundTable{height:100% !important; margin:0; padding:0; width:100% !important;}\r\n\r\n/* Template Styles */\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: COMMON PAGE ELEMENTS /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Page\r\n* @section background color\r\n* @tip Set the background color for your email. You may want to choose one that matches your company''s branding.\r\n* @theme page\r\n*/\r\nbody, #backgroundTable{\r\n/*@editable*/ background-color:#FAFAFA;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section email border\r\n* @tip Set the border for your email.\r\n*/\r\n#templateContainer{\r\n/*@editable*/ border: 1px solid #DDDDDD;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 1\r\n* @tip Set the styling for all first-level headings in your emails. These should be the largest of your headings.\r\n* @style heading 1\r\n*/\r\nh1, .h1{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:34px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 2\r\n* @tip Set the styling for all second-level headings in your emails.\r\n* @style heading 2\r\n*/\r\nh2, .h2{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:30px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 3\r\n* @tip Set the styling for all third-level headings in your emails.\r\n* @style heading 3\r\n*/\r\nh3, .h3{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:26px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 4\r\n* @tip Set the styling for all fourth-level headings in your emails. These should be the smallest of your headings.\r\n* @style heading 4\r\n*/\r\nh4, .h4{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:22px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: PREHEADER /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Header\r\n* @section preheader style\r\n* @tip Set the background color for your email''s preheader area.\r\n* @theme page\r\n*/\r\n#templatePreheader{\r\n/*@editable*/ background-color:#FAFAFA;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section preheader text\r\n* @tip Set the styling for your email''s preheader text. Choose a size and color that is easy to read.\r\n*/\r\n.preheaderContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:10px;\r\n/*@editable*/ line-height:100%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section preheader link\r\n* @tip Set the styling for your email''s preheader links. Choose a color that helps them stand out from your text.\r\n*/\r\n.preheaderContent div a:link, .preheaderContent div a:visited, /* Yahoo! Mail Override */ .preheaderContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: HEADER /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Header\r\n* @section header style\r\n* @tip Set the background color and border for your email''s header area.\r\n* @theme header\r\n*/\r\n#templateHeader{\r\n/*@editable*/ background-color:#FFFFFF;\r\n/*@editable*/ border-bottom:0;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section header text\r\n* @tip Set the styling for your email''s header text. Choose a size and color that is easy to read.\r\n*/\r\n.headerContent{\r\n/*@editable*/ color:#202020;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:34px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\n/*@editable*/ padding:0;\r\n/*@editable*/ text-align:center;\r\n/*@editable*/ vertical-align:middle;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section header link\r\n* @tip Set the styling for your email''s header links. Choose a color that helps them stand out from your text.\r\n*/\r\n.headerContent a:link, .headerContent a:visited, /* Yahoo! Mail Override */ .headerContent a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n#headerImage{\r\nheight:auto;\r\nmax-width:600px;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: MAIN BODY /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Body\r\n* @section body style\r\n* @tip Set the background color for your email''s body area.\r\n*/\r\n#templateContainer, .bodyContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Body\r\n* @section body text\r\n* @tip Set the styling for your email''s main content text. Choose a size and color that is easy to read.\r\n* @theme main\r\n*/\r\n.bodyContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:14px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Body\r\n* @section body link\r\n* @tip Set the styling for your email''s main content links. Choose a color that helps them stand out from your text.\r\n*/\r\n.bodyContent div a:link, .bodyContent div a:visited, /* Yahoo! Mail Override */ .bodyContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.bodyContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: SIDEBAR /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Sidebar\r\n* @section sidebar style\r\n* @tip Set the background color and border for your email''s sidebar area.\r\n*/\r\n#templateSidebar{\r\n/*@editable*/ background-color:#FFFFFF;\r\n/*@editable*/ border-left:0;\r\n}\r\n\r\n/**\r\n* @tab Sidebar\r\n* @section sidebar text\r\n* @tip Set the styling for your email''s sidebar text. Choose a size and color that is easy to read.\r\n*/\r\n.sidebarContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:12px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Sidebar\r\n* @section sidebar link\r\n* @tip Set the styling for your email''s sidebar links. Choose a color that helps them stand out from your text.\r\n*/\r\n.sidebarContent div a:link, .sidebarContent div a:visited, /* Yahoo! Mail Override */ .sidebarContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.sidebarContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: FOOTER /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Footer\r\n* @section footer style\r\n* @tip Set the background color and top border for your email''s footer area.\r\n* @theme footer\r\n*/\r\n#templateFooter{\r\n/*@editable*/ background-color:#FFFFFF;\r\n/*@editable*/ border-top:0;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section footer text\r\n* @tip Set the styling for your email''s footer text. Choose a size and color that is easy to read.\r\n* @theme footer\r\n*/\r\n.footerContent div{\r\n/*@editable*/ color:#707070;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:12px;\r\n/*@editable*/ line-height:125%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section footer link\r\n* @tip Set the styling for your email''s footer links. Choose a color that helps them stand out from your text.\r\n*/\r\n.footerContent div a:link, .footerContent div a:visited, /* Yahoo! Mail Override */ .footerContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.footerContent img{\r\ndisplay:inline;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section social bar style\r\n* @tip Set the background color and border for your email''s footer social bar.\r\n* @theme footer\r\n*/\r\n#social{\r\n/*@editable*/ background-color:#FAFAFA;\r\n/*@editable*/ border:0;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section social bar style\r\n* @tip Set the background color and border for your email''s footer social bar.\r\n*/\r\n#social div{\r\n/*@editable*/ text-align:center;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section utility bar style\r\n* @tip Set the background color and border for your email''s footer utility bar.\r\n* @theme footer\r\n*/\r\n#utility{\r\n/*@editable*/ background-color:#FFFFFF;\r\n/*@editable*/ border:0;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section utility bar style\r\n* @tip Set the background color and border for your email''s footer utility bar.\r\n*/\r\n#utility div{\r\n/*@editable*/ text-align:center;\r\n}	</style>\r\n</p>\r\n<center>\r\n<table border="0" cellpadding="0" cellspacing="0" height="100%" id="backgroundTable" width="100%">\r\n<tbody>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Preheader \\\\ -->					<table border="0" cellpadding="10" cellspacing="0" id="templatePreheader" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="preheaderContent" valign="top">\r\n<!-- // Begin Module: Standard Preheader \\ -->									<table border="0" cellpadding="10" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<div>\r\nUse this area to offer a short teaser of your email''s content. Text here will show in the preview area of some email clients.</div>\r\n</td>\r\n<td valign="top" width="190">\r\n<div style="text-align: right;">\r\n{date}</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Standard Preheader \\ -->								</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Preheader \\\\ -->					<table border="0" cellpadding="0" cellspacing="0" id="templateContainer" width="600">\r\n<tbody>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Header \\\\ -->									<table border="0" cellpadding="0" cellspacing="0" id="templateHeader" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="headerContent">\r\n<!-- // Begin Module: Standard Header Image \\\\ -->													<img id="headerImage campaign-icon" src="images/newsletters/images/placeholder_600.gif" style="max-width:600px;" /> <!-- // End Module: Standard Header Image \\\\ --></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Header \\\\ -->								</td>\r\n</tr>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Body \\\\ -->									<table border="0" cellpadding="0" cellspacing="0" id="templateBody" width="600">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<table border="0" cellpadding="0" cellspacing="0">\r\n<tbody>\r\n<tr>\r\n<td class="bodyContent" valign="top">\r\n<!-- // Begin Module: Standard Content \\\\ -->																	<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<div>\r\n<h1 class="h1">\r\nHeading 1</h1>\r\n<h2 class="h2">\r\nHeading 2</h2>\r\n<h3 class="h3">\r\nHeading 3</h3>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\nHi {name},<br />\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam semper leo sit amet tortor blandit, id dictum nisi condimentum. Nulla justo ligula, tristique et euismod ut, mollis vitae nisl. Pellentesque id lacinia arcu. Nunc mollis eros velit, ac hendrerit ipsum auctor eget. Maecenas id massa enim. Nullam sit amet mauris sodales, tincidunt lacus in, suscipit lectus. Maecenas ut semper purus, et mollis velit.<br />\r\n<br />\r\nIn rhoncus a velit id vulputate. Nulla accumsan est in nibh ullamcorper iaculis. Sed id convallis mi, eu commodo sapien. Phasellus hendrerit, tellus in tincidunt venenatis, est elit dictum nisi, in pretium mauris orci quis metus. Vivamus a nisl vitae sapien ultricies tempor tempus eu ligula. Fusce felis mi, accumsan bibendum est non, venenatis cursus elit. Nunc at scelerisque elit. Quisque sed sem lacinia, blandit arcu nec, vulputate ligula. Nulla interdum risus sodales metus bibendum fermentum.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Standard Content \\\\ -->																</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<!-- // Begin Sidebar \\\\  -->												<td id="templateSidebar" valign="top" width="200">\r\n<table border="0" cellpadding="0" cellspacing="0" width="200">\r\n<tbody>\r\n<tr>\r\n<td class="sidebarContent" valign="top">\r\n<!-- // Begin Module: Social Block with Icons \\\\ -->																	<table border="0" cellpadding="0" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td style="padding-top:10px; padding-right:20px; padding-left:20px;" valign="top">\r\n<table border="0" cellpadding="0" cellspacing="4">\r\n<tbody>\r\n<tr>\r\n<td align="left" valign="middle" width="16">\r\n<img src="images/newsletters/images/icon_facebook.png" style="margin:0 !important;" /></td>\r\n<td align="left" valign="top">\r\n<div>\r\n<a href="http://www.facebook.com">Friend on Facebook</a></div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td align="left" valign="middle" width="16">\r\n<img src="images/newsletters/images/icon_twitter.png" style="margin:0 !important;" /></td>\r\n<td align="left" valign="top">\r\n<div>\r\n<a href="http://www.twitter.com">Follow on Twitter</a></div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Social Block with Icons \\\\ --><!-- // Begin Module: Top Image with Content \\\\ -->																	<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<img src="images/newsletters/images/placeholder_160.gif" style="max-width:160px;" />\r\n<div>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\n<strong>Repeatable content blocks:</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec iaculis, velit at semper placerat, tellus velit vehicula orci, a tristique lorem orci eu nisl. Sed et arcu quam. Donec varius arcu et ante convallis, quis laoreet lacus mattis.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Top Image with Content \\\\ -->																</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<!-- // End Sidebar \\\\ -->											</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Body \\\\ -->								</td>\r\n</tr>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Footer \\\\ -->									<table border="0" cellpadding="10" cellspacing="0" id="templateFooter" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="footerContent" valign="top">\r\n<!-- // Begin Module: Standard Footer \\\\ -->													<table border="0" cellpadding="10" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td colspan="2" id="social" valign="middle">\r\n<div>\r\n&nbsp;<a href="http://www.twitter.com">follow on Twitter</a> | <a href="http://www.facebook.com">friend on Facebook</a></div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td valign="top" width="350">\r\n<div style="text-align: center;">\r\n<a href="http://www.yourcompany.com">www.yourcompany.com</a><br />\r\n<br />\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam semper leo sit amet tortor blandit, id dictum nisi condimentum. Nulla justo ligula, tristique et euismod ut, mollis vitae nisl.</div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan="2" id="utility" valign="middle">\r\n<div>\r\n{unsubscribe}</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Standard Footer \\\\ -->												</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Footer \\\\ -->								</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</center>\r\n', 'images/newsletters/thumbnails/simple-rightsidebar.jpg');
INSERT INTO `newsletter_templates` (`id`, `title`, `description`, `body`, `thumbnail`) VALUES(34, 'transactional_basic', 'Ένα κυρίως άρθρο πλήρους πλάτους ακολουθούμενο από σύνδεσμο σε μορφή μεγάλου κουμπιού.', '<p>\r\n<style type="text/css">\r\n/* Client-specific Styles */\r\n#outlook a{padding:0;} /* Force Outlook to provide a "view in browser" button. */\r\nbody{width:100% !important;} .ReadMsgBody{width:100%;} .ExternalClass{width:100%;} /* Force Hotmail to display emails at full width */\r\nbody{-webkit-text-size-adjust:none;} /* Prevent Webkit platforms from changing default text sizes. */\r\n\r\n/* Reset Styles */\r\nbody{margin:0; padding:0;}\r\nimg{border:0; height:auto; line-height:100%; outline:none; text-decoration:none;}\r\ntable td{border-collapse:collapse;}\r\n#backgroundTable{height:100% !important; margin:0; padding:0; width:100% !important;}\r\n\r\n/* Template Styles */\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: COMMON PAGE ELEMENTS /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Page\r\n* @section background color\r\n* @tip Set the background color for your email. You may want to choose one that matches your company''s branding.\r\n* @theme page\r\n*/\r\nbody, #backgroundTable{\r\n/*@editable*/ background-color:#FAFAFA;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section email border\r\n* @tip Set the border for your email.\r\n*/\r\n#templateContainer{\r\n/*@editable*/ border: 1px solid #DDDDDD;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 1\r\n* @tip Set the styling for all first-level headings in your emails. These should be the largest of your headings.\r\n* @style heading 1\r\n*/\r\nh1, .h1{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:34px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 2\r\n* @tip Set the styling for all second-level headings in your emails.\r\n* @style heading 2\r\n*/\r\nh2, .h2{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:30px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 3\r\n* @tip Set the styling for all third-level headings in your emails.\r\n* @style heading 3\r\n*/\r\nh3, .h3{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:26px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 4\r\n* @tip Set the styling for all fourth-level headings in your emails. These should be the smallest of your headings.\r\n* @style heading 4\r\n*/\r\nh4, .h4{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:22px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: HEADER /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Header\r\n* @section header style\r\n* @tip Set the background color and border for your email''s header area.\r\n* @theme header\r\n*/\r\n#templateHeader{\r\n/*@editable*/ background-color:#FFFFFF;\r\n/*@editable*/ border-bottom:0;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section header text\r\n* @tip Set the styling for your email''s header text. Choose a size and color that is easy to read.\r\n*/\r\n.headerContent{\r\n/*@editable*/ color:#202020;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:34px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\n/*@editable*/ padding:0;\r\n/*@editable*/ text-align:center;\r\n/*@editable*/ vertical-align:middle;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section header link\r\n* @tip Set the styling for your email''s header links. Choose a color that helps them stand out from your text.\r\n*/\r\n.headerContent a:link, .headerContent a:visited, /* Yahoo! Mail Override */ .headerContent a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n#headerImage{\r\nheight:auto;\r\nmax-width:600px !important;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: MAIN BODY /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Body\r\n* @section body style\r\n* @tip Set the background color for your email''s body area.\r\n*/\r\n#templateContainer, .bodyContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Body\r\n* @section body text\r\n* @tip Set the styling for your email''s main content text. Choose a size and color that is easy to read.\r\n* @theme main\r\n*/\r\n.bodyContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:14px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Body\r\n* @section body link\r\n* @tip Set the styling for your email''s main content links. Choose a color that helps them stand out from your text.\r\n*/\r\n.bodyContent div a:link, .bodyContent div a:visited, /* Yahoo! Mail Override */ .bodyContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n/**\r\n* @tab Body\r\n* @section button style\r\n* @tip Set the styling for your email''s button. Choose a style that draws attention.\r\n*/\r\n.templateButton{\r\n-moz-border-radius:3px;\r\n-webkit-border-radius:3px;\r\n/*@editable*/ background-color:#336699;\r\n/*@editable*/ border:0;\r\nborder-collapse:separate !important;\r\nborder-radius:3px;\r\n}\r\n\r\n/**\r\n* @tab Body\r\n* @section button style\r\n* @tip Set the styling for your email''s button. Choose a style that draws attention.\r\n*/\r\n.templateButton, .templateButton a:link, .templateButton a:visited, /* Yahoo! Mail Override */ .templateButton a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#FFFFFF;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:15px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ letter-spacing:-.5px;\r\n/*@editable*/ line-height:100%;\r\ntext-align:center;\r\ntext-decoration:none;\r\n}\r\n\r\n.bodyContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: FOOTER /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Footer\r\n* @section footer style\r\n* @tip Set the background color and top border for your email''s footer area.\r\n* @theme footer\r\n*/\r\n#templateFooter{\r\n/*@editable*/ background-color:#FFFFFF;\r\n/*@editable*/ border-top:0;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section footer text\r\n* @tip Set the styling for your email''s footer text. Choose a size and color that is easy to read.\r\n* @theme footer\r\n*/\r\n.footerContent div{\r\n/*@editable*/ color:#707070;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:12px;\r\n/*@editable*/ line-height:125%;\r\n/*@editable*/ text-align:center;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section footer link\r\n* @tip Set the styling for your email''s footer links. Choose a color that helps them stand out from your text.\r\n*/\r\n.footerContent div a:link, .footerContent div a:visited, /* Yahoo! Mail Override */ .footerContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.footerContent img{\r\ndisplay:inline;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section utility bar style\r\n* @tip Set the background color and border for your email''s footer utility bar.\r\n* @theme footer\r\n*/\r\n#utility{\r\n/*@editable*/ background-color:#FFFFFF;\r\n/*@editable*/ border:0;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section utility bar style\r\n* @tip Set the background color and border for your email''s footer utility bar.\r\n*/\r\n#utility div{\r\n/*@editable*/ text-align:center;\r\n}	</style>\r\n</p>\r\n<center>\r\n<table border="0" cellpadding="0" cellspacing="0" height="100%" id="backgroundTable" width="100%">\r\n<tbody>\r\n<tr>\r\n<td align="center" style="padding-top:20px;" valign="top">\r\n<table border="0" cellpadding="0" cellspacing="0" id="templateContainer" width="600">\r\n<tbody>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Header \\\\ -->									<table border="0" cellpadding="0" cellspacing="0" id="templateHeader" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="headerContent">\r\n<!-- // Begin Module: Standard Header Image \\\\ -->													<img id="headerImage campaign-icon" src="images/newsletters/images/placeholder_600.gif" style="max-width:600px;" /> <!-- // End Module: Standard Header Image \\\\ --></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Header \\\\ -->								</td>\r\n</tr>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Body \\\\ -->									<table border="0" cellpadding="0" cellspacing="0" id="templateBody" width="600">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<!-- // Begin Module: Standard Content \\\\ -->													<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td class="bodyContent" valign="top">\r\n<div>\r\n<h1 class="h1">\r\nHeading 1</h1>\r\n<h2 class="h2">\r\nHeading 2</h2>\r\n<h3 class="h3">\r\nHeading 3</h3>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\nHi {name},<br />\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam semper leo sit amet tortor blandit, id dictum nisi condimentum. Nulla justo ligula, tristique et euismod ut, mollis vitae nisl. Pellentesque id lacinia arcu. Nunc mollis eros velit, ac hendrerit ipsum auctor eget. Maecenas id massa enim. Nullam sit amet mauris sodales, tincidunt lacus in, suscipit lectus. Maecenas ut semper purus, et mollis velit.<br />\r\n<br />\r\nIn rhoncus a velit id vulputate. Nulla accumsan est in nibh ullamcorper iaculis. Sed id convallis mi, eu commodo sapien. Phasellus hendrerit, tellus in tincidunt venenatis, est elit dictum nisi, in pretium mauris orci quis metus. Vivamus a nisl vitae sapien ultricies tempor tempus eu ligula. Fusce felis mi, accumsan bibendum est non, venenatis cursus elit. Nunc at scelerisque elit. Quisque sed sem lacinia, blandit arcu nec, vulputate ligula. Nulla interdum risus sodales metus bibendum fermentum.</div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td align="center" style="padding-top:0;" valign="top">\r\n<table border="0" cellpadding="15" cellspacing="0" class="templateButton">\r\n<tbody>\r\n<tr>\r\n<td class="templateButtonContent" valign="middle">\r\n<div>\r\n<a href="http://www.yourcompany.com/" target="_blank">Your Link Here</a></div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Standard Content \\\\ -->												</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Body \\\\ -->								</td>\r\n</tr>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Footer \\\\ -->									<table border="0" cellpadding="10" cellspacing="0" id="templateFooter" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="footerContent" valign="top">\r\n<!-- // Begin Module: Transactional Footer \\\\ -->													<table border="0" cellpadding="10" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td valign="top" width="350">\r\n<div style="text-align: center;">\r\n<a href="http://www.yourcompany.com">www.yourcompany.com</a><br />\r\n<br />\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam semper leo sit amet tortor blandit, id dictum nisi condimentum. Nulla justo ligula, tristique et euismod ut, mollis vitae nisl.</div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan="2" id="utility" valign="middle">\r\n<div>\r\n{unsubscribe}</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Transactional Footer \\\\ -->												</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Footer \\\\ -->								</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</center>\r\n', 'images/newsletters/thumbnails/transactional_basic.jpg');
INSERT INTO `newsletter_templates` (`id`, `title`, `description`, `body`, `thumbnail`) VALUES(35, 'transactional_tabular', 'Ένα κυρίως άρθρο πλήρους πλάτους ακολουθούμενο από έναν πίνακα δεδομένων και ένα σύνδεσμο σε μορφή μεγάλου κουμπιού.', '<p>\r\n<style type="text/css">\r\n/* Client-specific Styles */\r\n#outlook a{padding:0;} /* Force Outlook to provide a "view in browser" button. */\r\nbody{width:100% !important;} .ReadMsgBody{width:100%;} .ExternalClass{width:100%;} /* Force Hotmail to display emails at full width */\r\nbody{-webkit-text-size-adjust:none;} /* Prevent Webkit platforms from changing default text sizes. */\r\n\r\n/* Reset Styles */\r\nbody{margin:0; padding:0;}\r\nimg{border:0; height:auto; line-height:100%; outline:none; text-decoration:none;}\r\ntable td{border-collapse:collapse;}\r\n#backgroundTable{height:100% !important; margin:0; padding:0; width:100% !important;}\r\n\r\n/* Template Styles */\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: COMMON PAGE ELEMENTS /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Page\r\n* @section background color\r\n* @tip Set the background color for your email. You may want to choose one that matches your company''s branding.\r\n* @theme page\r\n*/\r\nbody, #backgroundTable{\r\n/*@editable*/ background-color:#FAFAFA;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section email border\r\n* @tip Set the border for your email.\r\n*/\r\n#templateContainer{\r\n/*@editable*/ border: 1px solid #DDDDDD;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 1\r\n* @tip Set the styling for all first-level headings in your emails. These should be the largest of your headings.\r\n* @style heading 1\r\n*/\r\nh1, .h1{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:34px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 2\r\n* @tip Set the styling for all second-level headings in your emails.\r\n* @style heading 2\r\n*/\r\nh2, .h2{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:30px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 3\r\n* @tip Set the styling for all third-level headings in your emails.\r\n* @style heading 3\r\n*/\r\nh3, .h3{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:26px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Page\r\n* @section heading 4\r\n* @tip Set the styling for all fourth-level headings in your emails. These should be the smallest of your headings.\r\n* @style heading 4\r\n*/\r\nh4, .h4{\r\n/*@editable*/ color:#202020;\r\ndisplay:block;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:22px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\nmargin-top:0;\r\nmargin-right:0;\r\nmargin-bottom:10px;\r\nmargin-left:0;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: HEADER /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Header\r\n* @section header style\r\n* @tip Set the background color and border for your email''s header area.\r\n* @theme header\r\n*/\r\n#templateHeader{\r\n/*@editable*/ background-color:#FFFFFF;\r\n/*@editable*/ border-bottom:0;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section header text\r\n* @tip Set the styling for your email''s header text. Choose a size and color that is easy to read.\r\n*/\r\n.headerContent{\r\n/*@editable*/ color:#202020;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:34px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:100%;\r\n/*@editable*/ padding:0;\r\n/*@editable*/ text-align:center;\r\n/*@editable*/ vertical-align:middle;\r\n}\r\n\r\n/**\r\n* @tab Header\r\n* @section header link\r\n* @tip Set the styling for your email''s header links. Choose a color that helps them stand out from your text.\r\n*/\r\n.headerContent a:link, .headerContent a:visited, /* Yahoo! Mail Override */ .headerContent a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n#headerImage{\r\nheight:auto;\r\nmax-width:600px !important;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: MAIN BODY /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Body\r\n* @section body style\r\n* @tip Set the background color for your email''s body area.\r\n*/\r\n#templateContainer, .bodyContent{\r\n/*@editable*/ background-color:#FFFFFF;\r\n}\r\n\r\n/**\r\n* @tab Body\r\n* @section body text\r\n* @tip Set the styling for your email''s main content text. Choose a size and color that is easy to read.\r\n* @theme main\r\n*/\r\n.bodyContent div{\r\n/*@editable*/ color:#505050;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:14px;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Body\r\n* @section body link\r\n* @tip Set the styling for your email''s main content links. Choose a color that helps them stand out from your text.\r\n*/\r\n.bodyContent div a:link, .bodyContent div a:visited, /* Yahoo! Mail Override */ .bodyContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n/**\r\n* @tab Body\r\n* @section data table style\r\n* @tip Set the background color and border for your email''s data table.\r\n*/\r\n.templateDataTable{\r\n/*@editable*/ background-color:#FFFFFF;\r\n/*@editable*/ border:1px solid #DDDDDD;\r\n}\r\n\r\n/**\r\n* @tab Body\r\n* @section data table heading text\r\n* @tip Set the styling for your email''s data table text. Choose a size and color that is easy to read.\r\n*/\r\n.dataTableHeading{\r\n/*@editable*/ background-color:#D8E2EA;\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-family:Helvetica;\r\n/*@editable*/ font-size:14px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Body\r\n* @section data table heading link\r\n* @tip Set the styling for your email''s data table links. Choose a color that helps them stand out from your text.\r\n*/\r\n.dataTableHeading a:link, .dataTableHeading a:visited, /* Yahoo! Mail Override */ .dataTableHeading a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#FFFFFF;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n/**\r\n* @tab Body\r\n* @section data table text\r\n* @tip Set the styling for your email''s data table text. Choose a size and color that is easy to read.\r\n*/\r\n.dataTableContent{\r\n/*@editable*/ border-top:1px solid #DDDDDD;\r\n/*@editable*/ border-bottom:0;\r\n/*@editable*/ color:#202020;\r\n/*@editable*/ font-family:Helvetica;\r\n/*@editable*/ font-size:12px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ line-height:150%;\r\n/*@editable*/ text-align:left;\r\n}\r\n\r\n/**\r\n* @tab Body\r\n* @section data table link\r\n* @tip Set the styling for your email''s data table links. Choose a color that helps them stand out from your text.\r\n*/\r\n.dataTableContent a:link, .dataTableContent a:visited, /* Yahoo! Mail Override */ .dataTableContent a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#202020;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n/**\r\n* @tab Body\r\n* @section button style\r\n* @tip Set the styling for your email''s button. Choose a style that draws attention.\r\n*/\r\n.templateButton{\r\n-moz-border-radius:3px;\r\n-webkit-border-radius:3px;\r\n/*@editable*/ background-color:#336699;\r\n/*@editable*/ border:0;\r\nborder-collapse:separate !important;\r\nborder-radius:3px;\r\n}\r\n\r\n/**\r\n* @tab Body\r\n* @section button style\r\n* @tip Set the styling for your email''s button. Choose a style that draws attention.\r\n*/\r\n.templateButton, .templateButton a:link, .templateButton a:visited, /* Yahoo! Mail Override */ .templateButton a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#FFFFFF;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:15px;\r\n/*@editable*/ font-weight:bold;\r\n/*@editable*/ letter-spacing:-.5px;\r\n/*@editable*/ line-height:100%;\r\ntext-align:center;\r\ntext-decoration:none;\r\n}\r\n\r\n.bodyContent img{\r\ndisplay:inline;\r\nheight:auto;\r\n}\r\n\r\n/* /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ STANDARD STYLING: FOOTER /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ */\r\n\r\n/**\r\n* @tab Footer\r\n* @section footer style\r\n* @tip Set the background color and top border for your email''s footer area.\r\n* @theme footer\r\n*/\r\n#templateFooter{\r\n/*@editable*/ background-color:#FFFFFF;\r\n/*@editable*/ border-top:0;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section footer text\r\n* @tip Set the styling for your email''s footer text. Choose a size and color that is easy to read.\r\n* @theme footer\r\n*/\r\n.footerContent div{\r\n/*@editable*/ color:#707070;\r\n/*@editable*/ font-family:Arial;\r\n/*@editable*/ font-size:12px;\r\n/*@editable*/ line-height:125%;\r\n/*@editable*/ text-align:center;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section footer link\r\n* @tip Set the styling for your email''s footer links. Choose a color that helps them stand out from your text.\r\n*/\r\n.footerContent div a:link, .footerContent div a:visited, /* Yahoo! Mail Override */ .footerContent div a .yshortcuts /* Yahoo! Mail Override */{\r\n/*@editable*/ color:#336699;\r\n/*@editable*/ font-weight:normal;\r\n/*@editable*/ text-decoration:underline;\r\n}\r\n\r\n.footerContent img{\r\ndisplay:inline;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section utility bar style\r\n* @tip Set the background color and border for your email''s footer utility bar.\r\n* @theme footer\r\n*/\r\n#utility{\r\n/*@editable*/ background-color:#FFFFFF;\r\n/*@editable*/ border:0;\r\n}\r\n\r\n/**\r\n* @tab Footer\r\n* @section utility bar style\r\n* @tip Set the background color and border for your email''s footer utility bar.\r\n*/\r\n#utility div{\r\n/*@editable*/ text-align:center;\r\n}	</style>\r\n</p>\r\n<center>\r\n<table border="0" cellpadding="0" cellspacing="0" height="100%" id="backgroundTable" width="100%">\r\n<tbody>\r\n<tr>\r\n<td align="center" style="padding-top:20px;" valign="top">\r\n<table border="0" cellpadding="0" cellspacing="0" id="templateContainer" width="600">\r\n<tbody>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Header \\\\ -->									<table border="0" cellpadding="0" cellspacing="0" id="templateHeader" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="headerContent">\r\n<!-- // Begin Module: Standard Header Image \\\\ -->													<img id="headerImage campaign-icon" src="images/newsletters/images/placeholder_600.gif" style="max-width:600px;" /> <!-- // End Module: Standard Header Image \\\\ --></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Header \\\\ -->								</td>\r\n</tr>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Body \\\\ -->									<table border="0" cellpadding="0" cellspacing="0" id="templateBody" width="600">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<!-- // Begin Module: Standard Content \\\\ -->													<table border="0" cellpadding="20" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td class="bodyContent" valign="top">\r\n<div>\r\n<h1 class="h1">\r\nHeading 1</h1>\r\n<h2 class="h2">\r\nHeading 2</h2>\r\n<h3 class="h3">\r\nHeading 3</h3>\r\n<h4 class="h4">\r\nHeading 4</h4>\r\nHi {name},<br />\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam semper leo sit amet tortor blandit, id dictum nisi condimentum. Nulla justo ligula, tristique et euismod ut, mollis vitae nisl. Pellentesque id lacinia arcu. Nunc mollis eros velit, ac hendrerit ipsum auctor eget. Maecenas id massa enim. Nullam sit amet mauris sodales, tincidunt lacus in, suscipit lectus. Maecenas ut semper purus, et mollis velit.</div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style="padding-top:0; padding-bottom:0;" valign="top">\r\n<table border="0" cellpadding="10" cellspacing="0" class="templateDataTable" width="100%">\r\n<tbody>\r\n<tr>\r\n<th class="dataTableHeading" scope="col" valign="top" width="25%">\r\nDATE</th>\r\n<th class="dataTableHeading" scope="col" valign="top" width="25%">\r\nEMAILS SENT</th>\r\n<th class="dataTableHeading" scope="col" valign="top" width="50%">\r\nEMAIL SUBJECT</th>\r\n</tr>\r\n<tr>\r\n<td class="dataTableContent" valign="top">\r\nSEP 29, 2012</td>\r\n<td class="dataTableContent" valign="top">\r\n2,760</td>\r\n<td class="dataTableContent" valign="top">\r\n3-MONTH PASSWORD UPDATE</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td class="bodyContent" valign="top">\r\n<div>\r\nIn rhoncus a velit id vulputate. Nulla accumsan est in nibh ullamcorper iaculis. Sed id convallis mi, eu commodo sapien. Phasellus hendrerit, tellus in tincidunt venenatis, est elit dictum nisi, in pretium mauris orci quis metus. Vivamus a nisl vitae sapien ultricies tempor tempus eu ligula. Fusce felis mi, accumsan bibendum est non, venenatis cursus elit. Nunc at scelerisque elit. Quisque sed sem lacinia, blandit arcu nec, vulputate ligula. Nulla interdum risus sodales metus bibendum fermentum.</div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td align="center" style="padding-top:0;" valign="top">\r\n<table border="0" cellpadding="15" cellspacing="0" class="templateButton">\r\n<tbody>\r\n<tr>\r\n<td class="templateButtonContent" valign="middle">\r\n<div>\r\n<a href="http://www.yourcompany.com/" target="_blank">Your Link Here</a></div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Standard Content \\\\ -->												</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Body \\\\ -->								</td>\r\n</tr>\r\n<tr>\r\n<td align="center" valign="top">\r\n<!-- // Begin Template Footer \\\\ -->									<table border="0" cellpadding="10" cellspacing="0" id="templateFooter" width="600">\r\n<tbody>\r\n<tr>\r\n<td class="footerContent" valign="top">\r\n<!-- // Begin Module: Transactional Footer \\\\ -->													<table border="0" cellpadding="10" cellspacing="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<td colspan="2" id="social" valign="middle">\r\n<div>\r\n&nbsp;<a href="http://www.twitter.com">follow on Twitter</a> | <a href="http://www.facebook.com">friend on Facebook</a></div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td valign="top" width="350">\r\n<div style="text-align: center;">\r\n<a href="http://www.yourcompany.com">www.yourcompany.com</a><br />\r\n<br />\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam semper leo sit amet tortor blandit, id dictum nisi condimentum. Nulla justo ligula, tristique et euismod ut, mollis vitae nisl.</div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan="2" id="utility" valign="middle">\r\n<div>\r\n{unsubscribe}</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Module: Transactional Footer \\\\ -->												</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- // End Template Footer \\\\ -->								</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</center>\r\n<p>\r\n&nbsp;</p>\r\n', 'images/newsletters/thumbnails/transactional_tabular.jpg');

CREATE TABLE IF NOT EXISTS `photogalleries` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `category_id` int(11) NOT NULL DEFAULT '0',
  `title` varchar(255) NOT NULL,
  `userid` int(5) NOT NULL DEFAULT '0',
  `description` text,
  `filename` varchar(100) NOT NULL,
  `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `hits` int(11) NOT NULL DEFAULT '0',
  `state` tinyint(1) NOT NULL DEFAULT '1',
  `sort_order` int(10) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `idx_catid` (`category_id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8;

CREATE TABLE IF NOT EXISTS `photogalleries_cats` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `title` varchar(255) NOT NULL,
  `parent_id` int(11) NOT NULL DEFAULT '0',
  `description` text,
  `sort_order` int(5) NOT NULL DEFAULT '0',
  `access` tinyint(1) NOT NULL DEFAULT '0',
  `state` tinyint(1) NOT NULL DEFAULT '1',
  `catimage` varchar(100) DEFAULT NULL,
  `catpath` varchar(255) NOT NULL DEFAULT '/',
  PRIMARY KEY (`id`),
  KEY `idx_parent` (`parent_id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 ;

CREATE TABLE IF NOT EXISTS `photogalleries_settings` (
  `id` tinyint(1) NOT NULL DEFAULT '1',
  `maxwidth` int(4) NOT NULL DEFAULT '800',
  `maxheight` int(4) NOT NULL DEFAULT '600',
  `resizeby` tinyint(1) NOT NULL DEFAULT '0' COMMENT '0=και τα δύο, 1=το πλάτος, 2=το ύψος',
  `thumbwidth` int(4) NOT NULL DEFAULT '120',
  `thumbheight` int(4) NOT NULL DEFAULT '100',
  `photoquality` int(3) NOT NULL DEFAULT '100',
  `originalphotoresize` tinyint(1) NOT NULL DEFAULT '0' COMMENT '0=Όχι, 1=Ναι',
  `thumbresizeby` tinyint(1) NOT NULL DEFAULT '0' COMMENT '0=και τα δύο, 1=το πλάτος, 2=το ύψος, 3=περικοπή (crop)',
  `categoriesordering` tinyint(1) NOT NULL DEFAULT '0' COMMENT '0=βάση αριθμού ταξινόμησης, 1=βάση τίτλου',
  `categoriesperpage` int(4) NOT NULL DEFAULT '9',
  `categoriescolumns` int(2) NOT NULL DEFAULT '3',
  `showcatthumbnail` tinyint(1) NOT NULL DEFAULT '1' COMMENT '0=Όχι, 1=Τυχαία επιλογή, 2=Επιλεγμένη μικρογραφία',
  `photosordering` tinyint(1) NOT NULL DEFAULT '0' COMMENT '0=βάση ημερομηνίας καταχώρησης, 1=βάση τίτλου',
  `photosperpage` int(4) NOT NULL DEFAULT '9',
  `photoscolumns` int(4) NOT NULL DEFAULT '3',
  `fancybox` varchar(255) DEFAULT ''
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

INSERT INTO `photogalleries_settings` (`id`, `maxwidth`, `maxheight`, `resizeby`, `thumbwidth`, `thumbheight`, `photoquality`, `originalphotoresize`, `thumbresizeby`, `categoriesordering`, `categoriesperpage`, `categoriescolumns`, `showcatthumbnail`, `photosordering`, `photosperpage`, `photoscolumns`, `fancybox`) VALUES(1, 800, 600, 0, 150, 120, 90, 0, 0, 0, 9, 3, 1, 1, 15, 3, 'a:1:{s:15:"fancyboxpadding";i:15;}');

CREATE TABLE IF NOT EXISTS `tags` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  PRIMARY KEY (`id`),
  FULLTEXT KEY `name` (`name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

CREATE TABLE IF NOT EXISTS `tags_content` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `tag_id` int(11) NOT NULL,
  `content_id` int(11) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `tagID` (`tag_id`),
  KEY `itemID` (`content_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

CREATE TABLE IF NOT EXISTS `translations` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `language_id` int(5) NOT NULL DEFAULT '0',
  `reference_id` int(5) NOT NULL DEFAULT '0',
  `reference_table` varchar(100) NOT NULL,
  `reference_field` varchar(100) NOT NULL,
  `value` mediumtext NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 ;

CREATE TABLE IF NOT EXISTS `users` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `fullname` varchar(255) NOT NULL,
  `username` varchar(255) NOT NULL,
  `password` varchar(255) NOT NULL,
  `usergroup` int(5) NOT NULL DEFAULT '0',
  `email` varchar(100) NOT NULL,
  `state` tinyint(3) NOT NULL DEFAULT '1',
  `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `lastvisit` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `activation` varchar(100) DEFAULT NULL,
  `system_admin` tinyint(1) NOT NULL DEFAULT '0',
  `address` varchar(150) DEFAULT NULL,
  `website` varchar(150) DEFAULT NULL,
  `telephone` varchar(50) DEFAULT NULL,
  `signature` text,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;

INSERT INTO `users` (`id`, `fullname`, `username`, `password`, `usergroup`, `email`, `state`, `created`, `lastvisit`, `activation`, `system_admin`, `address`, `website`, `telephone`, `signature`) VALUES(1, 'Administrator', 'admin', '21232f297a57a5a743894a0e4a801fc3', 1, '', 1, NOW(), '0000-00-00 00:00:00', NULL, 1, '', '', '', '');	

CREATE TABLE IF NOT EXISTS `user_groups` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `group_name` varchar(50) NOT NULL,
  `sort_order` int(10) NOT NULL DEFAULT '0',
  `perm_frontend_view_public_content` tinyint(1) NOT NULL DEFAULT '0',
  `perm_frontend_view_registered_content` tinyint(1) NOT NULL DEFAULT '0',
  `perm_frontend_view_comments` tinyint(1) NOT NULL DEFAULT '0',
  `perm_frontend_post_comments` tinyint(1) NOT NULL DEFAULT '0',
  `perm_backend_enter` tinyint(1) NOT NULL DEFAULT '0',
  `perm_backend_manage_categories` tinyint(1) NOT NULL DEFAULT '0',
  `perm_backend_manage_own_articles` tinyint(4) NOT NULL DEFAULT '0',
  `perm_backend_manage_all_articles` tinyint(1) NOT NULL DEFAULT '0',
  `perm_backend_manage_media` tinyint(1) NOT NULL DEFAULT '0',
  `perm_backend_manage_modules` tinyint(1) NOT NULL DEFAULT '0',
  `perm_backend_manage_photo_galleries` tinyint(1) NOT NULL DEFAULT '0',
  `perm_backend_manage_contacts` tinyint(1) NOT NULL DEFAULT '0',
  `perm_backend_manage_users` tinyint(1) NOT NULL DEFAULT '0',
  `perm_backend_manage_general_settings` tinyint(1) NOT NULL DEFAULT '0',
  `perm_backend_manage_newsletter` tinyint(1) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=6 ;


INSERT INTO `user_groups` (`id`, `group_name`, `sort_order`, `perm_frontend_view_public_content`, `perm_frontend_view_registered_content`, `perm_frontend_view_comments`, `perm_frontend_post_comments`, `perm_backend_enter`, `perm_backend_manage_categories`, `perm_backend_manage_own_articles`, `perm_backend_manage_all_articles`, `perm_backend_manage_media`, `perm_backend_manage_modules`, `perm_backend_manage_photo_galleries`, `perm_backend_manage_contacts`, `perm_backend_manage_users`, `perm_backend_manage_general_settings`, `perm_backend_manage_newsletter`) VALUES(1, 'Administrator', 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1);
INSERT INTO `user_groups` (`id`, `group_name`, `sort_order`, `perm_frontend_view_public_content`, `perm_frontend_view_registered_content`, `perm_frontend_view_comments`, `perm_frontend_post_comments`, `perm_backend_enter`, `perm_backend_manage_categories`, `perm_backend_manage_own_articles`, `perm_backend_manage_all_articles`, `perm_backend_manage_media`, `perm_backend_manage_modules`, `perm_backend_manage_photo_galleries`, `perm_backend_manage_contacts`, `perm_backend_manage_users`, `perm_backend_manage_general_settings`, `perm_backend_manage_newsletter`) VALUES(2, 'Manager', 2, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0);
INSERT INTO `user_groups` (`id`, `group_name`, `sort_order`, `perm_frontend_view_public_content`, `perm_frontend_view_registered_content`, `perm_frontend_view_comments`, `perm_frontend_post_comments`, `perm_backend_enter`, `perm_backend_manage_categories`, `perm_backend_manage_own_articles`, `perm_backend_manage_all_articles`, `perm_backend_manage_media`, `perm_backend_manage_modules`, `perm_backend_manage_photo_galleries`, `perm_backend_manage_contacts`, `perm_backend_manage_users`, `perm_backend_manage_general_settings`, `perm_backend_manage_newsletter`) VALUES(3, 'Publisher', 3, 1, 1, 1, 1, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0);
INSERT INTO `user_groups` (`id`, `group_name`, `sort_order`, `perm_frontend_view_public_content`, `perm_frontend_view_registered_content`, `perm_frontend_view_comments`, `perm_frontend_post_comments`, `perm_backend_enter`, `perm_backend_manage_categories`, `perm_backend_manage_own_articles`, `perm_backend_manage_all_articles`, `perm_backend_manage_media`, `perm_backend_manage_modules`, `perm_backend_manage_photo_galleries`, `perm_backend_manage_contacts`, `perm_backend_manage_users`, `perm_backend_manage_general_settings`, `perm_backend_manage_newsletter`) VALUES(4, 'Registered', 4, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `user_groups` (`id`, `group_name`, `sort_order`, `perm_frontend_view_public_content`, `perm_frontend_view_registered_content`, `perm_frontend_view_comments`, `perm_frontend_post_comments`, `perm_backend_enter`, `perm_backend_manage_categories`, `perm_backend_manage_own_articles`, `perm_backend_manage_all_articles`, `perm_backend_manage_media`, `perm_backend_manage_modules`, `perm_backend_manage_photo_galleries`, `perm_backend_manage_contacts`, `perm_backend_manage_users`, `perm_backend_manage_general_settings`, `perm_backend_manage_newsletter`) VALUES(5, 'Anonymous', -1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);	

Youez - 2016 - github.com/yon3zu
LinuXploit