/* DUPLICATOR MYSQL SCRIPT CREATED ON : March 9, 2013, 9:48 pm */

SET FOREIGN_KEY_CHECKS = 0;

CREATE TABLE `wp_commentmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `comment_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8_unicode_ci,
  PRIMARY KEY (`meta_id`),
  KEY `comment_id` (`comment_id`),
  KEY `meta_key` (`meta_key`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

CREATE TABLE `wp_comments` (
  `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0',
  `comment_author` tinytext COLLATE utf8_unicode_ci NOT NULL,
  `comment_author_email` varchar(100) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `comment_author_url` varchar(200) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `comment_author_IP` varchar(100) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_content` text COLLATE utf8_unicode_ci NOT NULL,
  `comment_karma` int(11) NOT NULL DEFAULT '0',
  `comment_approved` varchar(20) COLLATE utf8_unicode_ci NOT NULL DEFAULT '1',
  `comment_agent` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `comment_type` varchar(20) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
  `user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`comment_ID`),
  KEY `comment_approved` (`comment_approved`),
  KEY `comment_post_ID` (`comment_post_ID`),
  KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
  KEY `comment_date_gmt` (`comment_date_gmt`),
  KEY `comment_parent` (`comment_parent`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

CREATE TABLE `wp_duplicator` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `token` varchar(25) COLLATE utf8_unicode_ci NOT NULL,
  `packname` varchar(250) COLLATE utf8_unicode_ci NOT NULL,
  `zipname` varchar(250) COLLATE utf8_unicode_ci NOT NULL,
  `zipsize` int(11) DEFAULT NULL,
  `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `owner` varchar(60) COLLATE utf8_unicode_ci NOT NULL,
  `settings` longtext COLLATE utf8_unicode_ci NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

CREATE TABLE `wp_fbpost_account` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `accesstoken` text COLLATE utf8_unicode_ci,
  `dateexpires` datetime DEFAULT NULL,
  `pages` longtext COLLATE utf8_unicode_ci,
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

CREATE TABLE `wp_fbpost_opt` (
  `name` text COLLATE utf8_unicode_ci,
  `value` text COLLATE utf8_unicode_ci
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

CREATE TABLE `wp_fbpost_search` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `pageid` bigint(20) DEFAULT NULL,
  `category` text COLLATE utf8_unicode_ci,
  `name` text COLLATE utf8_unicode_ci,
  `location` text COLLATE utf8_unicode_ci,
  `url` text COLLATE utf8_unicode_ci,
  `communitypage` text COLLATE utf8_unicode_ci,
  `likes` text COLLATE utf8_unicode_ci,
  `activity` text COLLATE utf8_unicode_ci,
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

CREATE TABLE `wp_fbpost_updates` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `when` datetime DEFAULT NULL,
  `pageid` bigint(20) DEFAULT NULL,
  `contents` text COLLATE utf8_unicode_ci,
  `postid` text COLLATE utf8_unicode_ci,
  `postlink` text COLLATE utf8_unicode_ci,
  `status` text COLLATE utf8_unicode_ci,
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

CREATE TABLE `wp_links` (
  `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `link_url` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `link_name` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `link_image` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `link_target` varchar(25) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `link_description` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `link_visible` varchar(20) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'Y',
  `link_owner` bigint(20) unsigned NOT NULL DEFAULT '1',
  `link_rating` int(11) NOT NULL DEFAULT '0',
  `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `link_rel` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `link_notes` mediumtext COLLATE utf8_unicode_ci NOT NULL,
  `link_rss` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`link_id`),
  KEY `link_visible` (`link_visible`)
) ENGINE=MyISAM AUTO_INCREMENT=8 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

CREATE TABLE `wp_options` (
  `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `blog_id` int(11) NOT NULL DEFAULT '0',
  `option_name` varchar(64) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `option_value` longtext COLLATE utf8_unicode_ci NOT NULL,
  `autoload` varchar(20) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'yes',
  PRIMARY KEY (`option_id`),
  UNIQUE KEY `option_name` (`option_name`)
) ENGINE=MyISAM AUTO_INCREMENT=1537 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

CREATE TABLE `wp_pinterest_automatic` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `action` varchar(50) NOT NULL,
  `data` text NOT NULL,
  `date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `camp` varchar(20) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

CREATE TABLE `wp_postmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `post_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8_unicode_ci,
  PRIMARY KEY (`meta_id`),
  KEY `post_id` (`post_id`),
  KEY `meta_key` (`meta_key`)
) ENGINE=MyISAM AUTO_INCREMENT=5795 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

CREATE TABLE `wp_posts` (
  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `post_author` bigint(20) unsigned NOT NULL DEFAULT '0',
  `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content` longtext COLLATE utf8_unicode_ci NOT NULL,
  `post_title` text COLLATE utf8_unicode_ci NOT NULL,
  `post_excerpt` text COLLATE utf8_unicode_ci NOT NULL,
  `post_status` varchar(20) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'publish',
  `comment_status` varchar(20) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'open',
  `ping_status` varchar(20) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'open',
  `post_password` varchar(20) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `post_name` varchar(200) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `to_ping` text COLLATE utf8_unicode_ci NOT NULL,
  `pinged` text COLLATE utf8_unicode_ci NOT NULL,
  `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content_filtered` text COLLATE utf8_unicode_ci NOT NULL,
  `post_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
  `guid` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `menu_order` int(11) NOT NULL DEFAULT '0',
  `post_type` varchar(20) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'post',
  `post_mime_type` varchar(100) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `comment_count` bigint(20) NOT NULL DEFAULT '0',
  PRIMARY KEY (`ID`),
  KEY `post_name` (`post_name`),
  KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
  KEY `post_parent` (`post_parent`),
  KEY `post_author` (`post_author`)
) ENGINE=MyISAM AUTO_INCREMENT=185 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

CREATE TABLE `wp_term_relationships` (
  `object_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `term_order` int(11) NOT NULL DEFAULT '0',
  PRIMARY KEY (`object_id`,`term_taxonomy_id`),
  KEY `term_taxonomy_id` (`term_taxonomy_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

CREATE TABLE `wp_term_taxonomy` (
  `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `term_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `taxonomy` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `description` longtext COLLATE utf8_unicode_ci NOT NULL,
  `parent` bigint(20) unsigned NOT NULL DEFAULT '0',
  `count` bigint(20) NOT NULL DEFAULT '0',
  PRIMARY KEY (`term_taxonomy_id`),
  UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
  KEY `taxonomy` (`taxonomy`)
) ENGINE=MyISAM AUTO_INCREMENT=9 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

CREATE TABLE `wp_terms` (
  `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(200) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `slug` varchar(200) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `term_group` bigint(10) NOT NULL DEFAULT '0',
  PRIMARY KEY (`term_id`),
  UNIQUE KEY `slug` (`slug`),
  KEY `name` (`name`)
) ENGINE=MyISAM AUTO_INCREMENT=9 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

CREATE TABLE `wp_usermeta` (
  `umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8_unicode_ci,
  PRIMARY KEY (`umeta_id`),
  KEY `user_id` (`user_id`),
  KEY `meta_key` (`meta_key`)
) ENGINE=MyISAM AUTO_INCREMENT=29 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

CREATE TABLE `wp_users` (
  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_login` varchar(60) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `user_pass` varchar(64) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `user_nicename` varchar(50) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `user_email` varchar(100) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `user_url` varchar(100) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `user_activation_key` varchar(60) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `user_status` int(11) NOT NULL DEFAULT '0',
  `display_name` varchar(250) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`ID`),
  KEY `user_login_key` (`user_login`),
  KEY `user_nicename` (`user_nicename`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;


/* INSERT TABLE DATA: wp_fbpost_account */
INSERT INTO `wp_fbpost_account` VALUES("1", "AAAIF2DzpIqsBAAtbxScWNiyWwKpr9pmJSnl1ZB4TRQTHeu95Di6IOBana1s4Dlw1LWG0RZCp7K1OcZB06YiTJ3Oi59WcUQEBIXCHJZAM2wZDZD", "2013-04-15 15:46:58", "");

/* INSERT TABLE DATA: wp_fbpost_opt */
INSERT INTO `wp_fbpost_opt` VALUES("reg_license", "OP1-36e54ca19907b4");
INSERT INTO `wp_fbpost_opt` VALUES("reg_code", "YToxMTp7czo4OiJjdXN0b21lciI7YTo4OntzOjI6ImlkIjtzOjM6IjIwMCI7czox%0ANToicHJpbWFyeV91c2VyX2lkIjtzOjM6IjIwNSI7czo0OiJuYW1lIjtzOjE1OiJL%0AZWl0aCBSb3NzaWdub2wiO3M6MTA6InZhdF9udW1iZXIiO3M6MDoiIjtzOjk6Imhv%0Ad19mb3VuZCI7czowOiIiO3M6NToiYWxpYXMiO3M6MDoiIjtzOjY6InN0YXR1cyI7%0Aczo3OiJlbmFibGVkIjtzOjc6ImNyZWF0ZWQiO3M6MTA6IjEzNTA1MTY2NjUiO31z%0AOjQ6InVzZXIiO2E6MTp7aTowO2E6MTQ6e3M6MjoiaWQiO3M6MzoiMjA1IjtzOjEw%0AOiJzZXNzaW9uX2lkIjtzOjMyOiJmMGZiMzJmNjY0ZGM3NTczNjYzOWRlMGZhMTJk%0AMjIyNiI7czoxMToibGFzdF9sb2dnZWQiO3M6MToiMCI7czoxMDoiZmlyc3RfbmFt%0AZSI7czo1OiJLZWl0aCI7czo5OiJsYXN0X25hbWUiO3M6OToiUm9zc2lnbm9sIjtz%0AOjg6InBhc3N3b3JkIjtzOjMyOiJjY2FiYmZjMWI0MWU4ODlmYzIwYTQ3ZGExYjcx%0AZjVjNiI7czo4OiJ1c2VybmFtZSI7czoxMToiUm9zc2lnbm9sLksiO3M6NToiZW1h%0AaWwiO3M6MTc6IktlaWZlcnNmbEBhb2wuY29tIjtzOjE3OiJzZWN1cml0eV9xdWVz%0AdGlvbiI7czowOiIiO3M6MjQ6InNlY3VyaXR5X3F1ZXN0aW9uX2Fuc3dlciI7czow%0AOiIiO3M6ODoibWF4X3Jvd3MiO3M6MToiNSI7czoyNToiaGVscGRlc2tfZmxvb2Rf%0AcHJvdGVjdGlvbiI7czo4OiJEaXNhYmxlZCI7czo3OiJjcmVhdGVkIjtzOjEwOiIx%0AMzUwNTE2NjY1IjtzOjY6InN0YXR1cyI7czo3OiJlbmFibGVkIjt9fXM6MTg6Imxp%0AY2Vuc2Vfa2V5X3N0cmluZyI7czoxODoiT1AxLTM2ZTU0Y2ExOTkwN2I0IjtzOjg6%0AImluc3RhbmNlIjthOjU6e3M6NjoiZG9tYWluIjthOjI6e2k6MDtzOjIxOiJ0YW1w%0AYS5rZXlsb2Nrc21pdGguaW4iO2k6MTtzOjI1OiJ3d3cudGFtcGEua2V5bG9ja3Nt%0AaXRoLmluIjt9czoyOiJpcCI7YToxOntpOjA7czoxMzoiNTAuMTE2Ljc1LjE1MCI7%0AfXM6OToiZGlyZWN0b3J5IjthOjE6e2k6MDtzOjQ0OiIvaG9tZS9rZXlsb2Nrcy9w%0AdWJsaWNfaHRtbC90YW1wYS9mbC93cC1hZG1pbiI7fXM6MTU6InNlcnZlcl9ob3N0%0AbmFtZSI7YToxOntpOjA7czoyNToiY2hha3JhLndlYnNpdGV3ZWxjb21lLmNvbSI7%0AfXM6OToic2VydmVyX2lwIjthOjE6e2k6MDtzOjE1OiIxODQuMTczLjIxNS4xNzYi%0AO319czo3OiJlbmZvcmNlIjthOjE6e2k6MDtzOjY6ImRvbWFpbiI7fXM6MTM6ImN1%0Ac3RvbV9maWVsZHMiO2E6MTp7czo2OiJvcC1wcm8iO3M6Mjoibm8iO31zOjIzOiJk%0Ab3dubG9hZF9hY2Nlc3NfZXhwaXJlcyI7aTowO3M6MjI6InN1cHBvcnRfYWNjZXNz%0AX2V4cGlyZXMiO2k6MDtzOjE1OiJsaWNlbnNlX2V4cGlyZXMiO3M6NToibmV2ZXIi%0AO3M6MTc6ImxvY2FsX2tleV9leHBpcmVzIjtzOjEwOiIxMzYxMzM2NDAwIjtzOjY6%0AInN0YXR1cyI7czo2OiJhY3RpdmUiO317c3BiYXN9OGViODg0MzkyODJiYzgxOGJj%0ANmRkMmY0YzMxYTYzMGF7c3BiYXN9ZDZlOGUxYTg2OTkzY2JhZDdiN2EyMzY1ZGMz%0AMDc0Zjk%3D");
INSERT INTO `wp_fbpost_opt` VALUES("current_version", "1");
INSERT INTO `wp_fbpost_opt` VALUES("appid", "569376246407851");
INSERT INTO `wp_fbpost_opt` VALUES("appsecret", "d5c769470bc4409aeec72ca29a80e650");
INSERT INTO `wp_fbpost_opt` VALUES("emailaddress", "keifersfl@aol.com");
INSERT INTO `wp_fbpost_opt` VALUES("emailname", "Keith Rossignol");

/* INSERT TABLE DATA: wp_links */
INSERT INTO `wp_links` VALUES("1", "http://codex.wordpress.org/", "Documentation", "", "", "", "Y", "1", "0", "0000-00-00 00:00:00", "", "", "");
INSERT INTO `wp_links` VALUES("2", "http://wordpress.org/news/", "WordPress Blog", "", "", "", "Y", "1", "0", "0000-00-00 00:00:00", "", "", "http://wordpress.org/news/feed/");
INSERT INTO `wp_links` VALUES("3", "http://wordpress.org/extend/ideas/", "Suggest Ideas", "", "", "", "Y", "1", "0", "0000-00-00 00:00:00", "", "", "");
INSERT INTO `wp_links` VALUES("4", "http://wordpress.org/support/", "Support Forum", "", "", "", "Y", "1", "0", "0000-00-00 00:00:00", "", "", "");
INSERT INTO `wp_links` VALUES("5", "http://wordpress.org/extend/plugins/", "Plugins", "", "", "", "Y", "1", "0", "0000-00-00 00:00:00", "", "", "");
INSERT INTO `wp_links` VALUES("6", "http://wordpress.org/extend/themes/", "Themes", "", "", "", "Y", "1", "0", "0000-00-00 00:00:00", "", "", "");
INSERT INTO `wp_links` VALUES("7", "http://planet.wordpress.org/", "WordPress Planet", "", "", "", "Y", "1", "0", "0000-00-00 00:00:00", "", "", "");

/* INSERT TABLE DATA: wp_options */
INSERT INTO `wp_options` VALUES("1495", "0", "_site_transient_timeout_theme_roots", "1362872433", "yes");
INSERT INTO `wp_options` VALUES("1496", "0", "_site_transient_theme_roots", "a:4:{s:22:\"RockStarLeadTheme-v2-4\";s:7:\"/themes\";s:12:\"twentyeleven\";s:7:\"/themes\";s:9:\"twentyten\";s:7:\"/themes\";s:8:\"wpEnigma\";s:7:\"/themes\";}", "yes");
INSERT INTO `wp_options` VALUES("3", "0", "siteurl", "http://tampa.keylocksmith.in/fl", "yes");
INSERT INTO `wp_options` VALUES("4", "0", "blogname", "key lock smith", "yes");
INSERT INTO `wp_options` VALUES("5", "0", "blogdescription", "", "yes");
INSERT INTO `wp_options` VALUES("6", "0", "users_can_register", "0", "yes");
INSERT INTO `wp_options` VALUES("7", "0", "admin_email", "keys@keylocksmith.in", "yes");
INSERT INTO `wp_options` VALUES("8", "0", "start_of_week", "1", "yes");
INSERT INTO `wp_options` VALUES("9", "0", "use_balanceTags", "0", "yes");
INSERT INTO `wp_options` VALUES("10", "0", "use_smilies", "1", "yes");
INSERT INTO `wp_options` VALUES("11", "0", "require_name_email", "1", "yes");
INSERT INTO `wp_options` VALUES("12", "0", "comments_notify", "1", "yes");
INSERT INTO `wp_options` VALUES("13", "0", "posts_per_rss", "10", "yes");
INSERT INTO `wp_options` VALUES("14", "0", "rss_use_excerpt", "0", "yes");
INSERT INTO `wp_options` VALUES("15", "0", "mailserver_url", "mail.example.com", "yes");
INSERT INTO `wp_options` VALUES("16", "0", "mailserver_login", "login@example.com", "yes");
INSERT INTO `wp_options` VALUES("17", "0", "mailserver_pass", "password", "yes");
INSERT INTO `wp_options` VALUES("18", "0", "mailserver_port", "110", "yes");
INSERT INTO `wp_options` VALUES("19", "0", "default_category", "1", "yes");
INSERT INTO `wp_options` VALUES("20", "0", "default_comment_status", "open", "yes");
INSERT INTO `wp_options` VALUES("21", "0", "default_ping_status", "open", "yes");
INSERT INTO `wp_options` VALUES("22", "0", "default_pingback_flag", "1", "yes");
INSERT INTO `wp_options` VALUES("23", "0", "default_post_edit_rows", "20", "yes");
INSERT INTO `wp_options` VALUES("24", "0", "posts_per_page", "10", "yes");
INSERT INTO `wp_options` VALUES("25", "0", "date_format", "F j, Y", "yes");
INSERT INTO `wp_options` VALUES("26", "0", "time_format", "g:i a", "yes");
INSERT INTO `wp_options` VALUES("27", "0", "links_updated_date_format", "F j, Y g:i a", "yes");
INSERT INTO `wp_options` VALUES("28", "0", "links_recently_updated_prepend", "<em>", "yes");
INSERT INTO `wp_options` VALUES("29", "0", "links_recently_updated_append", "</em>", "yes");
INSERT INTO `wp_options` VALUES("30", "0", "links_recently_updated_time", "120", "yes");
INSERT INTO `wp_options` VALUES("31", "0", "comment_moderation", "1", "yes");
INSERT INTO `wp_options` VALUES("32", "0", "moderation_notify", "1", "yes");
INSERT INTO `wp_options` VALUES("33", "0", "permalink_structure", "", "yes");
INSERT INTO `wp_options` VALUES("34", "0", "gzipcompression", "0", "yes");
INSERT INTO `wp_options` VALUES("35", "0", "hack_file", "0", "yes");
INSERT INTO `wp_options` VALUES("36", "0", "blog_charset", "UTF-8", "yes");
INSERT INTO `wp_options` VALUES("37", "0", "moderation_keys", "", "no");
INSERT INTO `wp_options` VALUES("38", "0", "active_plugins", "a:4:{i:0;s:31:\"EzMobileSiteGenerator/index.php\";i:1;s:25:\"duplicator/duplicator.php\";i:2;s:29:\"offline-pandemic/fbposter.php\";i:3;s:37:\"tinymce-advanced/tinymce-advanced.php\";}", "yes");
INSERT INTO `wp_options` VALUES("39", "0", "home", "http://tampa.keylocksmith.in/fl", "yes");
INSERT INTO `wp_options` VALUES("40", "0", "category_base", "", "yes");
INSERT INTO `wp_options` VALUES("41", "0", "ping_sites", "http://rpc.pingomatic.com/", "yes");
INSERT INTO `wp_options` VALUES("42", "0", "advanced_edit", "0", "yes");
INSERT INTO `wp_options` VALUES("43", "0", "comment_max_links", "2", "yes");
INSERT INTO `wp_options` VALUES("44", "0", "gmt_offset", "0", "yes");
INSERT INTO `wp_options` VALUES("45", "0", "default_email_category", "1", "yes");
INSERT INTO `wp_options` VALUES("46", "0", "recently_edited", "", "no");
INSERT INTO `wp_options` VALUES("47", "0", "template", "RockStarLeadTheme-v2-4", "yes");
INSERT INTO `wp_options` VALUES("48", "0", "stylesheet", "RockStarLeadTheme-v2-4", "yes");
INSERT INTO `wp_options` VALUES("49", "0", "comment_whitelist", "1", "yes");
INSERT INTO `wp_options` VALUES("50", "0", "blacklist_keys", "", "no");
INSERT INTO `wp_options` VALUES("51", "0", "comment_registration", "", "yes");
INSERT INTO `wp_options` VALUES("52", "0", "rss_language", "en", "yes");
INSERT INTO `wp_options` VALUES("53", "0", "html_type", "text/html", "yes");
INSERT INTO `wp_options` VALUES("54", "0", "use_trackback", "0", "yes");
INSERT INTO `wp_options` VALUES("55", "0", "default_role", "subscriber", "yes");
INSERT INTO `wp_options` VALUES("56", "0", "db_version", "19470", "yes");
INSERT INTO `wp_options` VALUES("57", "0", "uploads_use_yearmonth_folders", "1", "yes");
INSERT INTO `wp_options` VALUES("58", "0", "upload_path", "", "yes");
INSERT INTO `wp_options` VALUES("59", "0", "blog_public", "1", "yes");
INSERT INTO `wp_options` VALUES("60", "0", "default_link_category", "2", "yes");
INSERT INTO `wp_options` VALUES("61", "0", "show_on_front", "posts", "yes");
INSERT INTO `wp_options` VALUES("62", "0", "tag_base", "", "yes");
INSERT INTO `wp_options` VALUES("63", "0", "show_avatars", "1", "yes");
INSERT INTO `wp_options` VALUES("64", "0", "avatar_rating", "G", "yes");
INSERT INTO `wp_options` VALUES("65", "0", "upload_url_path", "", "yes");
INSERT INTO `wp_options` VALUES("66", "0", "thumbnail_size_w", "150", "yes");
INSERT INTO `wp_options` VALUES("67", "0", "thumbnail_size_h", "150", "yes");
INSERT INTO `wp_options` VALUES("68", "0", "thumbnail_crop", "1", "yes");
INSERT INTO `wp_options` VALUES("69", "0", "medium_size_w", "300", "yes");
INSERT INTO `wp_options` VALUES("70", "0", "medium_size_h", "300", "yes");
INSERT INTO `wp_options` VALUES("71", "0", "avatar_default", "gravatar_default", "yes");
INSERT INTO `wp_options` VALUES("72", "0", "enable_app", "0", "yes");
INSERT INTO `wp_options` VALUES("73", "0", "enable_xmlrpc", "0", "yes");
INSERT INTO `wp_options` VALUES("74", "0", "large_size_w", "1024", "yes");
INSERT INTO `wp_options` VALUES("75", "0", "large_size_h", "1024", "yes");
INSERT INTO `wp_options` VALUES("76", "0", "image_default_link_type", "file", "yes");
INSERT INTO `wp_options` VALUES("77", "0", "image_default_size", "", "yes");
INSERT INTO `wp_options` VALUES("78", "0", "image_default_align", "", "yes");
INSERT INTO `wp_options` VALUES("79", "0", "close_comments_for_old_posts", "", "yes");
INSERT INTO `wp_options` VALUES("80", "0", "close_comments_days_old", "14", "yes");
INSERT INTO `wp_options` VALUES("81", "0", "thread_comments", "1", "yes");
INSERT INTO `wp_options` VALUES("82", "0", "thread_comments_depth", "5", "yes");
INSERT INTO `wp_options` VALUES("83", "0", "page_comments", "", "yes");
INSERT INTO `wp_options` VALUES("84", "0", "comments_per_page", "50", "yes");
INSERT INTO `wp_options` VALUES("85", "0", "default_comments_page", "newest", "yes");
INSERT INTO `wp_options` VALUES("86", "0", "comment_order", "asc", "yes");
INSERT INTO `wp_options` VALUES("87", "0", "sticky_posts", "a:0:{}", "yes");
INSERT INTO `wp_options` VALUES("88", "0", "widget_categories", "a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("89", "0", "widget_text", "a:0:{}", "yes");
INSERT INTO `wp_options` VALUES("90", "0", "widget_rss", "a:0:{}", "yes");
INSERT INTO `wp_options` VALUES("91", "0", "timezone_string", "", "yes");
INSERT INTO `wp_options` VALUES("92", "0", "embed_autourls", "1", "yes");
INSERT INTO `wp_options` VALUES("93", "0", "embed_size_w", "", "yes");
INSERT INTO `wp_options` VALUES("94", "0", "embed_size_h", "600", "yes");
INSERT INTO `wp_options` VALUES("95", "0", "page_for_posts", "0", "yes");
INSERT INTO `wp_options` VALUES("96", "0", "page_on_front", "0", "yes");
INSERT INTO `wp_options` VALUES("97", "0", "default_post_format", "0", "yes");
INSERT INTO `wp_options` VALUES("98", "0", "initial_db_version", "19470", "yes");
INSERT INTO `wp_options` VALUES("99", "0", "wp_user_roles", "a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:62:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:9:\"add_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}}", "yes");
INSERT INTO `wp_options` VALUES("100", "0", "widget_search", "a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("101", "0", "widget_recent-posts", "a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("102", "0", "widget_recent-comments", "a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("103", "0", "widget_archives", "a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("104", "0", "widget_meta", "a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("105", "0", "sidebars_widgets", "a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:7:\"Sidebar\";a:4:{i:0;s:14:\"recent-posts-2\";i:1;s:10:\"archives-2\";i:2;s:12:\"categories-2\";i:3;s:6:\"meta-2\";}s:13:\"array_version\";i:3;}", "yes");
INSERT INTO `wp_options` VALUES("213", "0", "plg_alt_stylesheet", "teal", "yes");
INSERT INTO `wp_options` VALUES("283", "0", "plg_social_side", "true", "yes");
INSERT INTO `wp_options` VALUES("1399", "0", "current_theme", "RockStar Local Lead Theme", "yes");
INSERT INTO `wp_options` VALUES("153", "0", "cron", "a:6:{i:1362865987;a:1:{s:15:\"fbpost_cron_job\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:7:\"fifteen\";s:4:\"args\";a:0:{}s:8:\"interval\";i:900;}}}i:1362869587;a:1:{s:37:\"check_plugin_updates-offline-pandemic\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:12:\"every12hours\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1362872783;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"6bd195077f1d9dee0c0c270210f5fde6\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:184;}}}}i:1362899962;a:3:{s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1362943163;a:1:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}s:7:\"version\";i:2;}", "yes");
INSERT INTO `wp_options` VALUES("155", "0", "_site_transient_update_core", "O:8:\"stdClass\":3:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":9:{s:8:\"response\";s:7:\"upgrade\";s:8:\"download\";s:40:\"http://wordpress.org/wordpress-3.5.1.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":4:{s:4:\"full\";s:40:\"http://wordpress.org/wordpress-3.5.1.zip\";s:10:\"no_content\";s:51:\"http://wordpress.org/wordpress-3.5.1-no-content.zip\";s:11:\"new_bundled\";s:52:\"http://wordpress.org/wordpress-3.5.1-new-bundled.zip\";s:7:\"partial\";b:0;}s:7:\"current\";s:5:\"3.5.1\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"3.5\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1362865232;s:15:\"version_checked\";s:5:\"3.3.1\";}", "yes");
INSERT INTO `wp_options` VALUES("1391", "0", "wphcu_style", "Basic/2", "yes");
INSERT INTO `wp_options` VALUES("1390", "0", "wphcu_data", "2", "yes");
INSERT INTO `wp_options` VALUES("645", "0", "_site_transient_update_themes", "O:8:\"stdClass\":3:{s:12:\"last_checked\";i:1362865583;s:7:\"checked\";a:4:{s:22:\"RockStarLeadTheme-v2-4\";s:3:\"2.4\";s:12:\"twentyeleven\";s:3:\"1.3\";s:9:\"twentyten\";s:3:\"1.3\";s:8:\"wpEnigma\";s:1:\"1\";}s:8:\"response\";a:2:{s:12:\"twentyeleven\";a:3:{s:11:\"new_version\";s:3:\"1.5\";s:3:\"url\";s:47:\"http://wordpress.org/extend/themes/twentyeleven\";s:7:\"package\";s:64:\"http://wordpress.org/extend/themes/download/twentyeleven.1.5.zip\";}s:9:\"twentyten\";a:3:{s:11:\"new_version\";s:3:\"1.5\";s:3:\"url\";s:44:\"http://wordpress.org/extend/themes/twentyten\";s:7:\"package\";s:61:\"http://wordpress.org/extend/themes/download/twentyten.1.5.zip\";}}}", "yes");
INSERT INTO `wp_options` VALUES("160", "0", "_site_transient_timeout_browser_19043e92116368c31fc5b664912203bc", "1360437563", "yes");
INSERT INTO `wp_options` VALUES("161", "0", "_site_transient_browser_19043e92116368c31fc5b664912203bc", "a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:17:\"Internet Explorer\";s:7:\"version\";s:3:\"8.0\";s:10:\"update_url\";s:51:\"http://www.microsoft.com/windows/internet-explorer/\";s:7:\"img_src\";s:45:\"http://s.wordpress.org/images/browsers/ie.png\";s:11:\"img_src_ssl\";s:44:\"https://wordpress.org/images/browsers/ie.png\";s:15:\"current_version\";s:1:\"9\";s:7:\"upgrade\";b:1;s:8:\"insecure\";b:0;}", "yes");
INSERT INTO `wp_options` VALUES("162", "0", "dashboard_widget_options", "a:4:{s:25:\"dashboard_recent_comments\";a:1:{s:5:\"items\";i:5;}s:24:\"dashboard_incoming_links\";a:5:{s:4:\"home\";s:31:\"http://tampa.keylocksmith.in/fl\";s:4:\"link\";s:107:\"http://blogsearch.google.com/blogsearch?scoring=d&partner=wordpress&q=link:http://tampa.keylocksmith.in/fl/\";s:3:\"url\";s:140:\"http://blogsearch.google.com/blogsearch_feeds?scoring=d&ie=utf-8&num=10&output=rss&partner=wordpress&q=link:http://tampa.keylocksmith.in/fl/\";s:5:\"items\";i:10;s:9:\"show_date\";b:0;}s:17:\"dashboard_primary\";a:7:{s:4:\"link\";s:26:\"http://wordpress.org/news/\";s:3:\"url\";s:31:\"http://wordpress.org/news/feed/\";s:5:\"title\";s:14:\"WordPress Blog\";s:5:\"items\";i:2;s:12:\"show_summary\";i:1;s:11:\"show_author\";i:0;s:9:\"show_date\";i:1;}s:19:\"dashboard_secondary\";a:7:{s:4:\"link\";s:28:\"http://planet.wordpress.org/\";s:3:\"url\";s:33:\"http://planet.wordpress.org/feed/\";s:5:\"title\";s:20:\"Other WordPress News\";s:5:\"items\";i:5;s:12:\"show_summary\";i:0;s:11:\"show_author\";i:0;s:9:\"show_date\";i:0;}}", "yes");
INSERT INTO `wp_options` VALUES("1499", "0", "_transient_timeout_feed_mod_ae70568faf05c9fa7a890f3ffd61cd1b", "1362908458", "no");
INSERT INTO `wp_options` VALUES("1500", "0", "_transient_feed_mod_ae70568faf05c9fa7a890f3ffd61cd1b", "1362865258", "no");
INSERT INTO `wp_options` VALUES("1501", "0", "_transient_timeout_dash_20494a3d90a6669585674ed0eb8dcd8f", "1362908458", "no");
INSERT INTO `wp_options` VALUES("1497", "0", "_transient_timeout_feed_ae70568faf05c9fa7a890f3ffd61cd1b", "1362908458", "no");
INSERT INTO `wp_options` VALUES("1498", "0", "_transient_feed_ae70568faf05c9fa7a890f3ffd61cd1b", "a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:4:\"\n  \n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:33:\"\n    \n    \n    \n    \n    \n    \n  \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:3:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"link:http://tampa.keylocksmith.in/fl/ - Google Blog Search\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:95:\"http://www.google.com/search?ie=utf-8&q=link:http://tampa.keylocksmith.in/fl/&tbm=blg&tbs=sbd:1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"Your search - <b>link:http://tampa.keylocksmith.in/fl/</b> - did not match any documents.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://a9.com/-/spec/opensearch/1.1/\";a:3:{s:12:\"totalResults\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:10:\"startIndex\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:12:\"itemsPerPage\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"10\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";a:9:{s:12:\"content-type\";s:28:\"text/xml; charset=ISO-8859-1\";s:4:\"date\";s:29:\"Sat, 09 Mar 2013 21:40:58 GMT\";s:7:\"expires\";s:2:\"-1\";s:13:\"cache-control\";s:18:\"private, max-age=0\";s:10:\"set-cookie\";a:2:{i:0;s:143:\"PREF=ID=bbe64a2b8ab22ea9:FF=0:TM=1362865258:LM=1362865258:S=nDXF5EQoqAcUrHH9; expires=Mon, 09-Mar-2015 21:40:58 GMT; path=/; domain=.google.com\";i:1;s:212:\"NID=67=Y3MMTZnEf7vqOEht_8_Z8PVcnr69Bs_77kqywwvC0o2fTSNXv3Oubvf5pRYRCQrmPAYO1xyLcL67tbeQwMR1ZjzAJA8giL9G-o7hFDOBL0zhNBR1JYwyB9obL7QI6NHw; expires=Sun, 08-Sep-2013 21:40:58 GMT; path=/; domain=.google.com; HttpOnly\";}s:3:\"p3p\";s:122:\"CP=\"This is not a P3P policy! See http://www.google.com/support/accounts/bin/answer.py?hl=en&answer=151657 for more info.\"\";s:6:\"server\";s:3:\"gws\";s:16:\"x-xss-protection\";s:13:\"1; mode=block\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";}s:5:\"build\";s:14:\"20090627192103\";}", "no");
INSERT INTO `wp_options` VALUES("1505", "0", "_transient_timeout_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca", "1362908459", "no");
INSERT INTO `wp_options` VALUES("1506", "0", "_transient_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca", "1362865259", "no");
INSERT INTO `wp_options` VALUES("1507", "0", "_transient_timeout_dash_4077549d03da2e451c8b5f002294ff51", "1362908459", "no");
INSERT INTO `wp_options` VALUES("1508", "0", "_transient_dash_4077549d03da2e451c8b5f002294ff51", "<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'http://wordpress.org/news/2013/01/wordpress-3-5-1/\' title=\'WordPress 3.5.1 is now available. Version 3.5.1 is the first maintenance release of 3.5, fixing 37 bugs. It is also a security release for all previous WordPress versions. For a full list of changes, consult the list of tickets and the changelog, which include: Editor: Prevent certain HTML elements from being unexpectedly removed or modified in rare [&hellip;]\'>WordPress 3.5.1 Maintenance and Security Release</a> <span class=\"rss-date\">January 24, 2013</span><div class=\'rssSummary\'>WordPress 3.5.1 is now available. Version 3.5.1 is the first maintenance release of 3.5, fixing 37 bugs. It is also a security release for all previous WordPress versions. For a full list of changes, consult the list of tickets and the changelog, which include: Editor: Prevent certain HTML elements from being unexpectedly removed or modified in rare [&hellip;]</div></li><li><a class=\'rsswidget\' href=\'http://wordpress.org/news/2013/01/2012-a-look-back/\' title=\'Another year is coming to a close, and it’s time to look back and reflect on what we’ve accomplished in the past twelve months. The WordPress community is stronger than ever, and some of the accomplishments of the past year are definitely worth remembering. Software Releases We had two major releases of the WordPress web [&hellip;]\'>2012: A Look Back</a> <span class=\"rss-date\">January 1, 2013</span><div class=\'rssSummary\'>Another year is coming to a close, and it’s time to look back and reflect on what we’ve accomplished in the past twelve months. The WordPress community is stronger than ever, and some of the accomplishments of the past year are definitely worth remembering. Software Releases We had two major releases of the WordPress web [&hellip;]</div></li></ul></div>", "no");
INSERT INTO `wp_options` VALUES("1503", "0", "_transient_timeout_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca", "1362908459", "no");
INSERT INTO `wp_options` VALUES("1504", "0", "_transient_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca", "a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:50:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"http://wordpress.org/news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 07 Mar 2013 14:21:02 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"http://wordpress.org/?v=3.6-alpha-23646\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:10:{i:0;a:6:{s:4:\"data\";s:45:\"\n		\n		\n		\n		\n		\n				\n		\n\n		\n		\n				\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"WordPress 3.5.1 Maintenance and Security Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"http://wordpress.org/news/2013/01/wordpress-3-5-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"http://wordpress.org/news/2013/01/wordpress-3-5-1/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 24 Jan 2013 22:23:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=2531\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:359:\"WordPress 3.5.1 is now available. Version 3.5.1 is the first maintenance release of 3.5, fixing 37 bugs. It is also a security release for all previous WordPress versions. For a full list of changes, consult the list of tickets and the changelog, which include: Editor: Prevent certain HTML elements from being unexpectedly removed or modified in rare [...]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Andrew Nacin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2499:\"<p>WordPress 3.5.1 is now available. Version 3.5.1 is the first maintenance release of 3.5, <a href=\"http://core.trac.wordpress.org/milestone/3.5.1\">fixing 37 bugs</a>. It is also a security release for all previous WordPress versions. For a full list of changes, consult the <a href=\"http://core.trac.wordpress.org/query?milestone=3.5.1\">list of tickets</a> and the <a href=\"http://core.trac.wordpress.org/log/branches/3.5?rev=23341&amp;stop_rev=23167\">changelog</a>, which include:</p>\n<ul>\n<li>Editor: Prevent certain HTML elements from being unexpectedly removed or modified in rare cases.</li>\n<li>Media: Fix a collection of minor workflow and compatibility issues in the new media manager.</li>\n<li>Networks: Suggest proper rewrite rules when creating a new network.</li>\n<li>Prevent scheduled posts from being stripped of certain HTML, such as video embeds, when they are published.</li>\n<li>Work around some misconfigurations that may have caused some JavaScript in the WordPress admin area to fail.</li>\n<li>Suppress some warnings that could occur when a plugin misused the database or user APIs.</li>\n</ul>\n<p>Additionally, a bug affecting Windows servers running IIS can prevent updating from 3.5 to 3.5.1. If you receive the error &#8220;Destination directory for file streaming does not exist or is not writable,&#8221; you will need to <a href=\"http://codex.wordpress.org/Version_3.5.1\">follow the steps outlined on the Codex</a>.</p>\n<p>WordPress 3.5.1 also addresses the following security issues:</p>\n<ul>\n<li>A server-side request forgery vulnerability and remote port scanning using pingbacks. This vulnerability, which could potentially be used to expose information and compromise a site, affects all previous WordPress versions. This was fixed by the WordPress security team. We&#8217;d like to thank security researchers <a href=\"http://codeseekah.com/\">Gennady Kovshenin</a> and <a href=\"http://www.ethicalhack3r.co.uk/\">Ryan Dewhurst</a> for reviewing our work.</li>\n<li>Two instances of cross-site scripting via shortcodes and post content. These issues were discovered by Jon Cave of the WordPress security team.</li>\n<li>A cross-site scripting vulnerability in the external library Plupload. Thanks to the Moxiecode team for working with us on this, and for releasing Plupload 1.5.5 to address this issue.</li>\n</ul>\n<p><strong><a href=\"http://wordpress.org/download/\">Download 3.5.1</a> or visit Dashboard → Updates in your site admin to update now.</strong></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"http://wordpress.org/news/2013/01/wordpress-3-5-1/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:42:\"\n		\n		\n		\n		\n		\n				\n\n		\n		\n				\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"2012: A Look Back\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"http://wordpress.org/news/2013/01/2012-a-look-back/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"http://wordpress.org/news/2013/01/2012-a-look-back/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 01 Jan 2013 02:22:20 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Uncategorized\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=2525\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:340:\"Another year is coming to a close, and it&#8217;s time to look back and reflect on what we&#8217;ve accomplished in the past twelve months. The WordPress community is stronger than ever, and some of the accomplishments of the past year are definitely worth remembering. Software Releases We had two major releases of the WordPress web [...]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Jen Mylo\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:4441:\"<p>Another year is coming to a close, and it&#8217;s time to look back and reflect on what we&#8217;ve accomplished in the past twelve months. The WordPress community is stronger than ever, and some of the accomplishments of the past year are definitely worth remembering.</p>\n<h4>Software Releases</h4>\n<p>We had two major releases of the WordPress web application with versions <a href=\"http://wordpress.org/news/2012/06/green/\">3.4</a> and <a href=\"http://wordpress.org/news/2012/12/elvin/\">3.5</a>, as well as 5 security releases during 2012. 3.4 included the theme customizer, while 3.5 became the long awaited &#8220;media release&#8221; featuring a new uploader and gallery management tool. 3.5 contained code contributions from more people than ever, and we hope to continue growing the contributor ranks in the year ahead. We currently have native apps on 6 mobile platforms &#8212; <a href=\"http://ios.wordpress.org/\">iOS</a>, <a href=\"http://android.wordpress.org/\">Android</a>, <a href=\"http://blackberry.wordpress.org/\">Blackberry</a>, <a href=\"http://wpwindowsphone.wordpress.com/\">Windows Phone</a>, <a href=\"http://nokia.wordpress.org/\">Nokia</a>, and <a href=\"http://webos.wordpress.org/\">WebOS</a> &#8212; and saw several updates there as well.</p>\n<h4>Plugin Directory</h4>\n<p>A number of improvements were made to the Plugin Directory in 2012. More cosmetic  updates, like the introduction of branded plugin page headers, make it a nicer browsing experience, while functional changes like better-integrated support forums, plugin reviews, and a favorites system made the plugin directory even more useful as a resource.</p>\n<h4>The &#8220;Make&#8221; Network and Team Reps</h4>\n<p>2012 was the year that saw the creation of <a href=\"http://make.wordpress.org/\">Make.wordpress.org</a>, a network of sites for the teams of contributors responsible for the different areas of the WordPress project. Now anyone can follow along and get involved with the teams that work on <a href=\"http://make.wordpress.org/core/\">core</a>, <a href=\"http://make.wordpress.org/themes/\">theme review</a>, <a href=\"http://make.wordpress.org/support/\">forum support</a>, <a href=\"http://make.wordpress.org/docs/\">documentation</a>, and more. In 2013 we&#8217;ll work to improve these sites to make it easier to become a contributor. Each team also now has elected Team Reps, a new role that has already led to more cross-team communication. Team reps post each week to the <a href=\"https://make.wordpress.org/updates/\">Updates blog</a> so that the other reps can keep up with what&#8217;s going on in other teams.</p>\n<h4>WordPress Community Summit</h4>\n<p>At the end of October, about 100 of the most influential and respected members of the WordPress community attended an inaugural <a href=\"https://make.wordpress.org/summit\">summit</a> to discuss where we all stand, and to figure out where we go next with WordPress. A &#8220;conference of conversations,&#8221; this unconference made everyone an active participant, and while not every issue brought to the table was solved by the end of the event, the right questions were being asked.</p>\n<h4>Meetup.com</h4>\n<p>The WordPress Foundation now has a central account with Meetup.com. We&#8217;ve brought in a couple dozen existing meetup groups as a pilot to test the system, and are in the process of working with more existing meetups (as well as new ones) to join us so that local organizers won&#8217;t have to pay organizer dues and can get more support from the WordPress project.</p>\n<h4>Internet Blackout Day</h4>\n<p>We participated in the protest against SOPA/PIPA, Internet Blackout Day, on January 18. Though we usually stay out of politics, this campaign was important, and we not only participated in the blackout on WordPress.org, we encouraged our users to do so as well, and recommended plugins to provide blackout functionality. It was deemed the <a href=\"http://sopastrike.com/numbers/\">largest online protest in history</a>.</p>\n<h4>WordCamps</h4>\n<p>And finally, it wouldn&#8217;t be a recap without counting up the <a href=\"http://wordcamp.org\">WordCamps</a>! There were 67 WordCamps around the world in 2012, bringing together WordPress users, developers, and fans. If you didn&#8217;t make it to a WordCamp this year, maybe it can be one of your new year resolutions: <a href=\"http://central.wordcamp.org/schedule/\">check the schedule</a> to find one near you!</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"http://wordpress.org/news/2013/01/2012-a-look-back/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:42:\"\n		\n		\n		\n		\n		\n				\n\n		\n		\n				\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"WordPress 3.5 “Elvin”\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"http://wordpress.org/news/2012/12/elvin/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"http://wordpress.org/news/2012/12/elvin/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 11 Dec 2012 16:54:23 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=2517\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:363:\"It&#8217;s the most wonderful time of the year: a new WordPress release is available and chock-full of goodies to delight bloggers and developers alike. We&#8217;re calling this one &#8220;Elvin&#8221; in honor of drummer Elvin Jones, who played with John Coltrane in addition to many others. If you&#8217;ve been around WordPress a while, the most dramatic [...]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:20083:\"<p>It&#8217;s the most wonderful time of the year: a new WordPress release <a href=\"http://wordpress.org/download/\">is available</a> and chock-full of goodies to delight bloggers and developers alike. We&#8217;re calling this one &#8220;Elvin&#8221; in honor of <a href=\"http://en.wikipedia.org/wiki/Elvin_Jones\">drummer Elvin Jones</a>, who played with John Coltrane in addition to many others.</p>\n<p>If you&#8217;ve been around WordPress a while, the most dramatic new change you&#8217;ll notice is a completely re-imagined flow for uploading photos and creating galleries. Media has long been a friction point and we&#8217;ve listened hard and given a lot of thought into crafting this new system. 3.5 includes a new default theme, Twenty Twelve, which has a very clean mobile-first responsive design and works fantastic as a base for a CMS site. Finally we&#8217;ve spent a lot of time refreshing the styles of the dashboard, updating everything to be Retina-ready with beautiful high resolution graphics, a new color picker, and streamlining a couple of fewer-used sections of the admin.</p>\n<p>Here&#8217;s a quick video overview of everything you can share with your friends:</p>\n<div id=\"v-jQDfEbzZ-1\" class=\"video-player\"><embed id=\"v-jQDfEbzZ-1-video\" src=\"http://s0.videopress.com/player.swf?v=1.03&amp;guid=jQDfEbzZ&amp;isDynamicSeeking=true\" type=\"application/x-shockwave-flash\" width=\"692\" height=\"388\" title=\"Introducing WordPress 3.5\" wmode=\"direct\" seamlesstabbing=\"true\" allowfullscreen=\"true\" allowscriptaccess=\"always\" overstretch=\"true\"></embed></div>\n<h3>For Developers</h3>\n<p>You can now put your (or anyone&#8217;s) WordPress.org username on the plugins page and see your favorite tagged ones, to make it easy to install them again when setting up a new site. There&#8217;s a new Tumblr importer. New installs no longer show the links manager. Finally for multisite developers <code>switch_to_blog()</code> is way faster and you can now install MS in a sub-directory. The <a href=\"http://underscorejs.org/\">Underscore</a> and <a href=\"http://backbonejs.org/\">Backbone</a> JavaScript libraries are now available. <a href=\"http://codex.wordpress.org/Version_3.5\">The Codex has a pretty good summary of the developer features above and beyond this</a>, and you can always <a href=\"http://core.trac.wordpress.org/milestone/3.5\">grab a warm beverage and explore Trac directly</a>.</p>\n<h3>Percussion Section</h3>\n<p>Behind every great release is great contributors. 3.5 had more people involved than any release before it:</p>\n<p><a href=\"http://profiles.wordpress.org/aaroncampbell\">Aaron D. Campbell</a>, <a href=\"http://profiles.wordpress.org/aaronholbrook\">aaronholbrook</a>, <a href=\"http://profiles.wordpress.org/jorbin\">Aaron Jorbin</a>, <a href=\"http://profiles.wordpress.org/kawauso\">Adam Harley</a>, <a href=\"http://profiles.wordpress.org/alyssonweb\">akbortoli</a>, <a href=\"http://profiles.wordpress.org/alecrust\">alecrust</a>, <a href=\"http://profiles.wordpress.org/xknown\">Alex Concha</a>, <a href=\"http://profiles.wordpress.org/alexkingorg\">Alex King</a>, <a href=\"http://profiles.wordpress.org/viper007bond\">Alex Mills (Viper007Bond)</a>, <a href=\"http://profiles.wordpress.org/alexvorn2\">alexvorn2</a>, <a href=\"http://profiles.wordpress.org/ampt\">ampt</a>, <a href=\"http://profiles.wordpress.org/sabreuse\">Amy Hendrix (sabreuse)</a>, <a href=\"http://profiles.wordpress.org/andrear\">andrea.r</a>, <a href=\"http://profiles.wordpress.org/nacin\">Andrew Nacin</a>, <a href=\"http://profiles.wordpress.org/azaozz\">Andrew Ozz</a>, <a href=\"http://profiles.wordpress.org/andrewryno\">Andrew Ryno</a>, <a href=\"http://profiles.wordpress.org/andrewspittle\">Andrew Spittle</a>, <a href=\"http://profiles.wordpress.org/andy\">Andy Skelton</a>, <a href=\"http://profiles.wordpress.org/apokalyptik\">apokalyptik</a>, <a href=\"http://profiles.wordpress.org/bainternet\">Bainternet</a>, <a href=\"http://profiles.wordpress.org/barrykooij\">Barry Kooij</a>, <a href=\"http://profiles.wordpress.org/bazza\">bazza</a>, <a href=\"http://profiles.wordpress.org/bbrooks\">bbrooks</a>, <a href=\"http://profiles.wordpress.org/casben79\">Ben Casey</a>, <a href=\"http://profiles.wordpress.org/husobj\">Ben Huson</a>, <a href=\"http://profiles.wordpress.org/benkulbertis\">Ben Kulbertis</a>, <a href=\"http://profiles.wordpress.org/bergius\">bergius</a>, <a href=\"http://profiles.wordpress.org/neoxx\">Bernhard Riedl</a>, <a href=\"http://profiles.wordpress.org/betzster\">betzster</a>, <a href=\"http://profiles.wordpress.org/bananastalktome\">Billy (bananastalktome)</a>, <a href=\"http://profiles.wordpress.org/bolo1988\">bolo1988</a>, <a href=\"http://profiles.wordpress.org/bradparbs\">bradparbs</a>, <a href=\"http://profiles.wordpress.org/bradthomas127\">bradthomas127</a>, <a href=\"http://profiles.wordpress.org/bradyvercher\">Brady Vercher</a>, <a href=\"http://profiles.wordpress.org/brandondove\">Brandon Dove</a>, <a href=\"http://profiles.wordpress.org/brianlayman\">Brian Layman</a>, <a href=\"http://profiles.wordpress.org/rzen\">Brian Richards</a>, <a href=\"http://profiles.wordpress.org/sennza\">Bronson Quick</a>, <a href=\"http://profiles.wordpress.org/bpetty\">Bryan Petty</a>, <a href=\"http://profiles.wordpress.org/cannona\">cannona</a>, <a href=\"http://profiles.wordpress.org/sixhours\">Caroline Moore</a>, <a href=\"http://profiles.wordpress.org/caspie\">Caspie</a>, <a href=\"http://profiles.wordpress.org/cdog\">cdog</a>, <a href=\"http://profiles.wordpress.org/thee17\">Charles Frees-Melvin</a>, <a href=\"http://profiles.wordpress.org/chellycat\">chellycat</a>, <a href=\"http://profiles.wordpress.org/chexee\">Chelsea Otakan</a>, <a href=\"http://profiles.wordpress.org/chouby\">Chouby</a>, <a href=\"http://profiles.wordpress.org/c3mdigital\">Chris Olbekson</a>, <a href=\"http://profiles.wordpress.org/cfinke\">Christopher Finke</a>, <a href=\"http://profiles.wordpress.org/chriswallace\">Chris Wallace</a>, <a href=\"http://profiles.wordpress.org/corvannoorloos\">Cor van Noorloos</a>, <a href=\"http://profiles.wordpress.org/scribu\">Cristi Burc&#259;</a>, <a href=\"http://profiles.wordpress.org/mrroundhill\">Dan</a>, <a href=\"http://profiles.wordpress.org/dan-rivera\">Dan Rivera</a>, <a href=\"http://profiles.wordpress.org/koopersmith\">Daryl Koopersmith</a>, <a href=\"http://profiles.wordpress.org/lessbloat\">Dave Martin</a>, <a href=\"http://profiles.wordpress.org/deltafactory\">deltafactory</a>, <a href=\"http://profiles.wordpress.org/dd32\">Dion Hulse</a>, <a href=\"http://profiles.wordpress.org/djzone\">DjZoNe</a>, <a href=\"http://profiles.wordpress.org/dllh\">dllh</a>, <a href=\"http://profiles.wordpress.org/ocean90\">Dominik Schilling</a>, <a href=\"http://profiles.wordpress.org/doublesharp\">doublesharp</a>, <a href=\"http://profiles.wordpress.org/drewapicture\">Drew Jaynes (DrewAPicture)</a>, <a href=\"http://profiles.wordpress.org/drewstrojny\">Drew Strojny</a>, <a href=\"http://profiles.wordpress.org/eddiemoya\">Eddie Moya</a>, <a href=\"http://profiles.wordpress.org/elyobo\">elyobo</a>, <a href=\"http://profiles.wordpress.org/emiluzelac\">Emil Uzelac</a>, <a href=\"http://profiles.wordpress.org/empireoflight\">Empireoflight</a>, <a href=\"http://profiles.wordpress.org/ericlewis\">Eric Andrew Lewis</a>, <a href=\"http://profiles.wordpress.org/ethitter\">Erick Hitter</a>, <a href=\"http://profiles.wordpress.org/ericmann\">Eric Mann</a>, <a href=\"http://profiles.wordpress.org/ericwahlforss\">ericwahlforss</a>, <a href=\"http://profiles.wordpress.org/evansolomon\">Evan Solomon</a>, <a href=\"http://profiles.wordpress.org/fadingdust\">fadingdust</a>, <a href=\"http://profiles.wordpress.org/f-j-kaiser\">F J Kaiser</a>, <a href=\"http://profiles.wordpress.org/foxinni\">foxinni</a>, <a href=\"http://profiles.wordpress.org/garyc40\">Gary Cao</a>, <a href=\"http://profiles.wordpress.org/garyj\">Gary Jones</a>, <a href=\"http://profiles.wordpress.org/pento\">Gary Pendergast</a>, <a href=\"http://profiles.wordpress.org/geertdd\">GeertDD</a>, <a href=\"http://profiles.wordpress.org/mamaduka\">George Mamadashvili</a>, <a href=\"http://profiles.wordpress.org/georgestephanis\">George Stephanis</a>, <a href=\"http://profiles.wordpress.org/ghosttoast\">GhostToast</a>, <a href=\"http://profiles.wordpress.org/gnarf\">gnarf</a>, <a href=\"http://profiles.wordpress.org/goldenapples\">goldenapples</a>, <a href=\"http://profiles.wordpress.org/webord\">Gustavo Bordoni</a>, <a href=\"http://profiles.wordpress.org/hakre\">hakre</a>, <a href=\"http://profiles.wordpress.org/hanni\">hanni</a>, <a href=\"http://profiles.wordpress.org/hardy101\">hardy101</a>, <a href=\"http://profiles.wordpress.org/hebbet\">hebbet</a>, <a href=\"http://profiles.wordpress.org/helenyhou\">Helen Hou-Sandi</a>, <a href=\"http://profiles.wordpress.org/hugobaeta\">Hugo Baeta</a>, <a href=\"http://profiles.wordpress.org/iamfriendly\">iamfriendly</a>, <a href=\"http://profiles.wordpress.org/iandstewart\">Ian Stewart</a>, <a href=\"http://profiles.wordpress.org/ikailo\">ikailo</a>, <a href=\"http://profiles.wordpress.org/ipstenu\">Ipstenu (Mika Epstein)</a>, <a href=\"http://profiles.wordpress.org/itworx\">itworx</a>, <a href=\"http://profiles.wordpress.org/j-idris\">j-idris</a>, <a href=\"http://profiles.wordpress.org/jakemgold\">Jake Goldman</a>, <a href=\"http://profiles.wordpress.org/jakubtyrcha\">jakub.tyrcha</a>, <a href=\"http://profiles.wordpress.org/jamescollins\">James Collins</a>, <a href=\"http://profiles.wordpress.org/jammitch\">jammitch</a>, <a href=\"http://profiles.wordpress.org/jane\">Jane Wells</a>, <a href=\"http://profiles.wordpress.org/japh\">Japh</a>, <a href=\"http://profiles.wordpress.org/jarretc\">JarretC</a>, <a href=\"http://profiles.wordpress.org/madtownlems\">Jason Lemahieu (MadtownLems)</a>, <a href=\"http://profiles.wordpress.org/javert03\">javert03</a>, <a href=\"http://profiles.wordpress.org/jbrinley\">jbrinley</a>, <a href=\"http://profiles.wordpress.org/jcakec\">jcakec</a>, <a href=\"http://profiles.wordpress.org/jblz\">Jeff Bowen</a>, <a href=\"http://profiles.wordpress.org/jeffsebring\">Jeff Sebring</a>, <a href=\"http://profiles.wordpress.org/jeremyfelt\">Jeremy Felt</a>, <a href=\"http://profiles.wordpress.org/hd-j\">Jeremy Herve</a>, <a href=\"http://profiles.wordpress.org/jerrysarcastic\">Jerry Bates (JerrySarcastic)</a>, <a href=\"http://profiles.wordpress.org/jayjdk\">Jesper Johansen (Jayjdk)</a>, <a href=\"http://profiles.wordpress.org/jndetlefsen\">jndetlefsen</a>, <a href=\"http://profiles.wordpress.org/joehoyle\">Joe Hoyle</a>, <a href=\"http://profiles.wordpress.org/joelhardi\">joelhardi</a>, <a href=\"http://profiles.wordpress.org/jkudish\">Joey Kudish</a>, <a href=\"http://profiles.wordpress.org/johnbillion\">John Blackbourn (johnbillion)</a>, <a href=\"http://profiles.wordpress.org/johnjamesjacoby\">John James Jacoby</a>, <a href=\"http://profiles.wordpress.org/johnpbloch\">John P. Bloch</a>, <a href=\"http://profiles.wordpress.org/jond3r\">Jonas Bolinder</a>, <a href=\"http://profiles.wordpress.org/jondavidjohn\">Jonathan D. Johnson</a>, <a href=\"http://profiles.wordpress.org/duck_\">Jon Cave</a>, <a href=\"http://profiles.wordpress.org/joostdekeijzer\">joostdekeijzer</a>, <a href=\"http://profiles.wordpress.org/koke\">Jorge Bernal</a>, <a href=\"http://profiles.wordpress.org/josephscott\">Joseph Scott</a>, <a href=\"http://profiles.wordpress.org/pottersys\">Juan</a>, <a href=\"http://profiles.wordpress.org/justinsainton\">Justin Sainton</a>, <a href=\"http://profiles.wordpress.org/jtsternberg\">Justin Sternberg</a>, <a href=\"http://profiles.wordpress.org/greenshady\">Justin Tadlock</a>, <a href=\"http://profiles.wordpress.org/trepmal\">Kailey Lampert (trepmal)</a>, <a href=\"http://profiles.wordpress.org/ryelle\">Kelly Dwan</a>, <a href=\"http://profiles.wordpress.org/keruspe\">Keruspe</a>, <a href=\"http://profiles.wordpress.org/kitchin\">kitchin</a>, <a href=\"http://profiles.wordpress.org/knutsp\">Knut Sparhell</a>, <a href=\"http://profiles.wordpress.org/kovshenin\">Konstantin Kovshenin</a>, <a href=\"http://profiles.wordpress.org/obenland\">Konstantin Obenland</a>, <a href=\"http://profiles.wordpress.org/kopepasah\">Kopepasah</a>, <a href=\"http://profiles.wordpress.org/klagraff\">Kristopher Lagraff</a>, <a href=\"http://profiles.wordpress.org/kurtpayne\">Kurt Payne</a>, <a href=\"http://profiles.wordpress.org/kyrylo\">Kyrylo</a>, <a href=\"http://profiles.wordpress.org/lancewillett\">Lance Willett</a>, <a href=\"http://profiles.wordpress.org/larysa\">Larysa Mykhas</a>, <a href=\"http://profiles.wordpress.org/leogermani\">leogermani</a>, <a href=\"http://profiles.wordpress.org/lesteph\">lesteph</a>, <a href=\"http://profiles.wordpress.org/linuxologos\">linuxologos</a>, <a href=\"http://profiles.wordpress.org/ldebrouwer\">Luc De Brouwer</a>, <a href=\"http://profiles.wordpress.org/lgedeon\">Luke Gedeon</a>, <a href=\"http://profiles.wordpress.org/latz\">Lutz Schroer</a>, <a href=\"http://profiles.wordpress.org/mailnew2ster\">mailnew2ster</a>, <a href=\"http://profiles.wordpress.org/targz-1\">Manuel Schmalstieg</a>, <a href=\"http://profiles.wordpress.org/maor\">Maor Chasen</a>, <a href=\"http://profiles.wordpress.org/mimecine\">Marco</a>, <a href=\"http://profiles.wordpress.org/marcuspope\">MarcusPope</a>, <a href=\"http://profiles.wordpress.org/markjaquith\">Mark Jaquith</a>, <a href=\"http://profiles.wordpress.org/markoheijnen\">Marko Heijnen</a>, <a href=\"http://profiles.wordpress.org/martythornley\">MartyThornley</a>, <a href=\"http://profiles.wordpress.org/mattdanner\">mattdanner</a>, <a href=\"http://profiles.wordpress.org/bigdawggi\">Matthew Richmond</a>, <a href=\"http://profiles.wordpress.org/sivel\">Matt Martz</a>, <a href=\"http://profiles.wordpress.org/iammattthomas\">Matt Thomas</a>, <a href=\"http://profiles.wordpress.org/mattwiebe\">Matt Wiebe</a>, <a href=\"http://profiles.wordpress.org/mattyrob\">mattyrob</a>, <a href=\"http://profiles.wordpress.org/maxcutler\">Max Cutler</a>, <a href=\"http://profiles.wordpress.org/melchoyce\">Mel Choyce</a>, <a href=\"http://profiles.wordpress.org/merty\">Mert Yazicioglu</a>, <a href=\"http://profiles.wordpress.org/mdawaffe\">Michael Adams (mdawaffe)</a>, <a href=\"http://profiles.wordpress.org/mfields\">Michael Fields</a>, <a href=\"http://profiles.wordpress.org/mbijon\">Mike Bijon</a>, <a href=\"http://profiles.wordpress.org/mdgl\">Mike Glendinning</a>, <a href=\"http://profiles.wordpress.org/mikehansenme\">Mike Hansen</a>, <a href=\"http://profiles.wordpress.org/mikelittle\">Mike Little</a>, <a href=\"http://profiles.wordpress.org/mikeschinkel\">Mike Schinkel</a>, <a href=\"http://profiles.wordpress.org/DH-Shredder\">Mike Schroder</a>, <a href=\"http://profiles.wordpress.org/toppa\">Mike Toppa</a>, <a href=\"http://profiles.wordpress.org/dimadin\">Milan Dinic</a>, <a href=\"http://profiles.wordpress.org/mitchoyoshitaka\">mitcho (Michael Yoshitaka Erlewine)</a>, <a href=\"http://profiles.wordpress.org/batmoo\">Mohammad Jangda</a>, <a href=\"http://profiles.wordpress.org/mohanjith\">mohanjith</a>, <a href=\"http://profiles.wordpress.org/mpvanwinkle77\">mpvanwinkle77</a>, <a href=\"http://profiles.wordpress.org/usermrpapa\">Mr Papa</a>, <a href=\"http://profiles.wordpress.org/murky\">murky</a>, <a href=\"http://profiles.wordpress.org/Nao\">Naoko Takano</a>, <a href=\"http://profiles.wordpress.org/alex-ye\">Nashwan Doaqan</a>, <a href=\"http://profiles.wordpress.org/niallkennedy\">Niall Kennedy</a>, <a href=\"http://profiles.wordpress.org/nbachiyski\">Nikolay Bachiyski</a>, <a href=\"http://profiles.wordpress.org/ntm\">ntm</a>, <a href=\"http://profiles.wordpress.org/nvartolomei\">nvartolomei</a>, <a href=\"http://profiles.wordpress.org/pavelevap\">pavelevap</a>, <a href=\"http://profiles.wordpress.org/pdclark\">pdclark</a>, <a href=\"http://profiles.wordpress.org/petemall\">Pete Mall</a>, <a href=\"http://profiles.wordpress.org/westi\">Peter Westwood</a>, <a href=\"http://profiles.wordpress.org/pas5027\">Pete Schuster</a>, <a href=\"http://profiles.wordpress.org/philiparthurmoore\">Philip Arthur Moore</a>, <a href=\"http://profiles.wordpress.org/phill_brown\">Phill Brown</a>, <a href=\"http://profiles.wordpress.org/picklepete\">picklepete</a>, <a href=\"http://profiles.wordpress.org/picklewagon\">Picklewagon</a>, <a href=\"http://profiles.wordpress.org/nprasath002\">Prasath Nadarajah</a>, <a href=\"http://profiles.wordpress.org/r-a-y\">r-a-y</a>, <a href=\"http://profiles.wordpress.org/ramiy\">Rami Yushuvaev</a>, <a href=\"http://profiles.wordpress.org/moraleidame\">Ricardo Moraleida</a>, <a href=\"http://profiles.wordpress.org/miqrogroove\">Robert Chapin (miqrogroove)</a>, <a href=\"http://profiles.wordpress.org/wet\">Robert Wetzlmayr</a>, <a href=\"http://profiles.wordpress.org/wpmuguru\">Ron Rennick</a>, <a href=\"http://profiles.wordpress.org/rstern\">rstern</a>, <a href=\"http://profiles.wordpress.org/ryan\">Ryan Boren</a>, <a href=\"http://profiles.wordpress.org/ryanimel\">Ryan Imel</a>, <a href=\"http://profiles.wordpress.org/ryanjkoehler\">Ryan Koehler</a>, <a href=\"http://profiles.wordpress.org/markel\">Ryan Markel</a>, <a href=\"http://profiles.wordpress.org/rmccue\">Ryan McCue</a>, <a href=\"http://profiles.wordpress.org/zeo\">Safirul Alredha</a>, <a href=\"http://profiles.wordpress.org/solarissmoke\">Samir Shah</a>, <a href=\"http://profiles.wordpress.org/gluten\">Sam Margulies</a>, <a href=\"http://profiles.wordpress.org/otto42\">Samuel Wood (Otto)</a>, <a href=\"http://profiles.wordpress.org/saracannon\">sara cannon</a>, <a href=\"http://profiles.wordpress.org/gandham\">Satish Gandham</a>, <a href=\"http://profiles.wordpress.org/scottgonzalez\">scott.gonzalez</a>, <a href=\"http://profiles.wordpress.org/sc0ttkclark\">Scott Kingsley Clark</a>, <a href=\"http://profiles.wordpress.org/coffee2code\">Scott Reilly</a>, <a href=\"http://profiles.wordpress.org/wonderboymusic\">Scott Taylor</a>, <a href=\"http://profiles.wordpress.org/greglone\">ScreenfeedFr</a>, <a href=\"http://profiles.wordpress.org/sergeysbetkenovgaroru\">sergey.s.betke</a>, <a href=\"http://profiles.wordpress.org/sergeybiryukov\">Sergey Biryukov</a>, <a href=\"http://profiles.wordpress.org/pross\">Simon Prosser</a>, <a href=\"http://profiles.wordpress.org/simonwheatley\">Simon Wheatley</a>, <a href=\"http://profiles.wordpress.org/sirzooro\">sirzooro</a>, <a href=\"http://profiles.wordpress.org/ssamture\">ssamture</a>, <a href=\"http://profiles.wordpress.org/sterlo\">sterlo</a>, <a href=\"http://profiles.wordpress.org/sumindmitriy\">sumindmitriy</a>, <a href=\"http://profiles.wordpress.org/sushkov\">sushkov</a>, <a href=\"http://profiles.wordpress.org/swekitsune\">swekitsune</a>, <a href=\"http://profiles.wordpress.org/iamtakashi\">Takashi Irie</a>, <a href=\"http://profiles.wordpress.org/taylorde\">Taylor Dewey</a>, <a href=\"http://profiles.wordpress.org/tlovett1\">Taylor Lovett</a>, <a href=\"http://profiles.wordpress.org/saltcod\">Terry Sutton</a>, <a href=\"http://profiles.wordpress.org/griffinjt\">Thomas Griffin</a>, <a href=\"http://profiles.wordpress.org/tott\">Thorsten Ott</a>, <a href=\"http://profiles.wordpress.org/timbeks\">timbeks</a>, <a href=\"http://profiles.wordpress.org/timfs\">timfs</a>, <a href=\"http://profiles.wordpress.org/tmoorewp\">Tim Moore</a>, <a href=\"http://profiles.wordpress.org/tobiasbg\">TobiasBg</a>, <a href=\"http://profiles.wordpress.org/tomasm\">TomasM</a>, <a href=\"http://profiles.wordpress.org/tomauger\">Tom Auger</a>, <a href=\"http://profiles.wordpress.org/tommcfarlin\">tommcfarlin</a>, <a href=\"http://profiles.wordpress.org/willmot\">Tom Willmot</a>, <a href=\"http://profiles.wordpress.org/toscho\">toscho</a>, <a href=\"http://profiles.wordpress.org/wpsmith\">Travis Smith</a>, <a href=\"http://profiles.wordpress.org/vhauri\">Vasken Hauri</a>, <a href=\"http://profiles.wordpress.org/viniciusmassuchetto\">Vinicius Massuchetto</a>, <a href=\"http://profiles.wordpress.org/lightningspirit\">Vitor Carvalho</a>, <a href=\"http://profiles.wordpress.org/waclawjacek\">Waclaw</a>, <a href=\"http://profiles.wordpress.org/waldojaquith\">WaldoJaquith</a>, <a href=\"http://profiles.wordpress.org/wojtekszkutnik\">Wojtek Szkutnik</a>, <a href=\"http://profiles.wordpress.org/xibe\">Xavier Borderie</a>, <a href=\"http://profiles.wordpress.org/yoavf\">Yoav Farhi</a>, <a href=\"http://profiles.wordpress.org/yogi-t\">Yogi T</a>, <a href=\"http://profiles.wordpress.org/tollmanz\">Zack Tollman</a>, and <a href=\"http://profiles.wordpress.org/zamoose\">ZaMoose</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"http://wordpress.org/news/2012/12/elvin/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:45:\"\n		\n		\n		\n		\n		\n				\n		\n\n		\n		\n				\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"WordPress 3.5 Release Candidate 3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"http://wordpress.org/news/2012/12/wordpress-3-5-release-candidate-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"http://wordpress.org/news/2012/12/wordpress-3-5-release-candidate-3/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 04 Dec 2012 08:37:39 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:7:\"Testing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"http://wordpress.org/news/2012/12/wordpress-3-5-release-candidate-3/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:339:\"The third release candidate for WordPress 3.5 is now available. We&#8217;ve made a number of changes over the last week since RC2 that we can&#8217;t wait to get into your hands. Hope you&#8217;re ready to do some testing! Final UI improvements for the new media manager, based on lots of great feedback. Show more information about [...]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Andrew Nacin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:1950:\"<p>The third release candidate for WordPress 3.5 is now available. We&#8217;ve made a number of changes over the last week since <a title=\"WordPress 3.5 Release Candidate 2\" href=\"http://wordpress.org/news/2012/11/wordpress-3-5-release-candidate-2/\">RC2</a> that we can&#8217;t wait to get into your hands. Hope you&#8217;re ready to do some testing!</p>\n<ul>\n<li><span style=\"line-height: 13px\">Final UI improvements for the new media manager, based on lots of great feedback.</span></li>\n<li>Show more information about uploading errors when they occur.</li>\n<li>When inserting an image into a post, don&#8217;t forget the alternative text.</li>\n<li>Fixes for the new admin button styles.</li>\n<li>Improvements for mobile devices, Internet Explorer, and right-to-left languages.</li>\n<li>Fix cookies for subdomain installs when multisite is installed in a subdirectory.</li>\n<li>Fix ms-files.php rewriting for very old multisite installs.</li>\n</ul>\n<p>At this point, we only have a <a href=\"http://core.trac.wordpress.org/report/5\">few minor issues</a> left. If all goes well, you will see WordPress 3.5 very soon. If you run into any issues, please post to the <a href=\"http://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area in the support forums</a>.</p>\n<p>If you&#8217;d like to know what to test, visit the About page (<strong><img style=\"vertical-align: middle\" alt=\"\" src=\"http://wordpress.org/wp-content/themes/twentyten/images/wordpress.png\" /> → About</strong> in the toolbar) and check out the list of features. This is still development software, so your boss may get mad if you install this on a live site. To test WordPress 3.5, try the <a href=\"http://wordpress.org/extend/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you&#8217;ll want &#8220;bleeding edge nightlies&#8221;). Or you can <a href=\"http://wordpress.org/wordpress-3.5-RC3.zip\">download the release candidate here (zip)</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"http://wordpress.org/news/2012/12/wordpress-3-5-release-candidate-3/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:45:\"\n		\n		\n		\n		\n		\n				\n		\n\n		\n		\n				\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"WordPress 3.5 Release Candidate 2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"http://wordpress.org/news/2012/11/wordpress-3-5-release-candidate-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"http://wordpress.org/news/2012/11/wordpress-3-5-release-candidate-2/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 29 Nov 2012 19:55:12 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:7:\"Testing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=2494\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:339:\"The second release candidate for WordPress 3.5 is now available for download and testing. We&#8217;re still working on about a dozen remaining issues, but we hope to deliver WordPress 3.5 to your hands as early as next week. If you&#8217;d like to know what to test, visit the About page ( → About in the toolbar) and check out [...]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Andrew Nacin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:1509:\"<p>The second release candidate for WordPress 3.5 is now available for download and testing.</p>\n<p>We&#8217;re still working on about a dozen remaining issues, but we hope to deliver WordPress 3.5 to your hands as early as next week. If you&#8217;d like to know what to test, visit the About page (<strong><img alt=\"\" src=\"http://wordpress.org/wp-content/themes/twentyten/images/wordpress.png\" /> → About</strong> in the toolbar) and check out the list of features! As usual, this is still development software and we suggest you do not install this on a live site unless you are adventurous.</p>\n<p><strong>Think you&#8217;ve found a bug?</strong> Please post to the <a href=\"http://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area in the support forums</a>.</p>\n<p><strong>Developers,</strong> please continue to test your plugins and themes, so that if there is a compatibility issue, we can figure it out before the final release. You can find our <a href=\"http://core.trac.wordpress.org/report/6\">list of known issues here</a>.</p>\n<p>To test WordPress 3.5, try the <a href=\"http://wordpress.org/extend/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you&#8217;ll want &#8220;bleeding edge nightlies&#8221;). Or you can <a href=\"http://wordpress.org/wordpress-3.5-RC2.zip\">download the release candidate here (zip)</a>.</p>\n<p><em>&#8211;<br />\n</em><em>We are getting close<br />\n</em><em>Should have asked for haiku help<br />\n</em><em>Please test RC2</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"http://wordpress.org/news/2012/11/wordpress-3-5-release-candidate-2/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:45:\"\n		\n		\n		\n		\n		\n				\n		\n\n		\n		\n				\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"WordPress 3.5 Release Candidate\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"http://wordpress.org/news/2012/11/wordpress-3-5-release-candidate/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"http://wordpress.org/news/2012/11/wordpress-3-5-release-candidate/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 22 Nov 2012 13:35:09 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:7:\"Testing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=2479\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:341:\"The first release candidate for WordPress 3.5 is now available. We hope to ship WordPress 3.5 in two weeks. But to do that, we need your help! If you haven&#8217;t tested 3.5 yet, there&#8217;s no time like the present. (The oft-repeated warning: Please, not on a live site, unless you&#8217;re adventurous.) Think you&#8217;ve found a [...]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Andrew Nacin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:1545:\"<p>The first release candidate for WordPress 3.5 is now available.</p>\n<p>We hope to ship WordPress 3.5 in <em>two weeks</em>. But to do that, we need your help! If you haven&#8217;t tested 3.5 yet, there&#8217;s no time like the present. (The oft-repeated warning: Please, not on a live site, unless you&#8217;re adventurous.)</p>\n<p><strong>Think you&#8217;ve found a bug?</strong> Please post to the <a href=\"http://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area in the support forums</a>. If any known issues come up, you’ll be able to <a href=\"http://core.trac.wordpress.org/report/6\">find them here</a>. <strong>Developers,</strong> please test your plugins and themes, so that if there is a compatibility issue, we can figure it out before the final release.</p>\n<p>To test WordPress 3.5, try the <a href=\"http://wordpress.org/extend/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you&#8217;ll want &#8220;bleeding edge nightlies&#8221;). Or you can <a href=\"http://wordpress.org/wordpress-3.5-RC1.zip\">download the release candidate here (zip)</a>.</p>\n<p>If you&#8217;d like to know what to <del>break</del> test, visit the About page (<strong><img style=\"vertical-align: text-top\" alt=\"\" src=\"http://wordpress.org/wp-content/themes/twentyten/images/wordpress.png\" /> → About</strong> in the toolbar) and check out the list of features! Trust me, you want to try out media.</p>\n<p><em>Release candidate</em><br />\n<em>Three point five in two weeks time</em><br />\n<em>Please test all the things</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"http://wordpress.org/news/2012/11/wordpress-3-5-release-candidate/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:48:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n		\n		\n				\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 3.5 Beta 3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"http://wordpress.org/news/2012/11/wordpress-3-5-beta-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"http://wordpress.org/news/2012/11/wordpress-3-5-beta-3/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 13 Nov 2012 04:26:23 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:7:\"Testing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=2467\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:341:\"The third beta release of WordPress 3.5 is now available for download and testing. Hey, developers! We expect to WordPress 3.5 to be ready in just a few short weeks. Please, please test your plugins and themes against beta 3. Media management has been rewritten, and we&#8217;ve taken great pains to ensure most plugins will work the [...]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Andrew Nacin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2677:\"<p>The third beta release of WordPress 3.5 is now available for download and testing.</p>\n<p><strong>Hey, developers!</strong> We expect to WordPress 3.5 to be ready in just a few short weeks. <em>Please, please</em> test your plugins and themes against beta 3. Media management has been rewritten, and we&#8217;ve taken great pains to ensure most plugins will work the same as before, but we&#8217;re not perfect. We would like to hear about any incompatibilities we&#8217;ve caused so we can work with you to address them <em>before</em> release, rather than after. I think you&#8217;ll agree it&#8217;s much better that way. <img src=\'http://wordpress.org/news/wp-includes/images/smilies/icon_smile.gif\' alt=\':-)\' class=\'wp-smiley\' /> </p>\n<p>To test WordPress 3.5, try the <a href=\"http://wordpress.org/extend/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href=\"http://wordpress.org/wordpress-3.5-beta3.zip\">download the beta here</a> (zip). For more on 3.5, <a title=\"WordPress 3.5 Beta 1\" href=\"http://wordpress.org/news/2012/09/wordpress-3-5-beta-1/\">check out the extensive Beta 1 blog post</a>, which covers what’s new in version 3.5 and how you can help. We made <a href=\"http://core.trac.wordpress.org/log/trunk?action=stop_on_copy&amp;mode=stop_on_copy&amp;rev=22557&amp;stop_rev=22224&amp;limit=400\">more than 300 changes</a> since <a href=\"http://wordpress.org/news/2012/10/wordpress-3-5-beta-2/\">beta 2</a>. <span style=\"line-height: 13px\">At this point, the Add Media dialog is complete, and we&#8217;re now just working on fixing up inserting images into the editor. We&#8217;ve also u</span>pdated to jQuery UI 1.9.1, SimplePie 1.3.1, and TinyMCE 3.5.7.</p>\n<p>The usual warnings apply: We can see the light at the end of the tunnel, but this is software still in development, so we don’t recommend that you run it on a production site. Set up a test site to play with the new version.</p>\n<p>As always, if you think you’ve found a bug, you can post to the <a href=\"http://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. Or, if you’re comfortable writing a reproducible bug report, <a href=\"http://core.trac.wordpress.org/\">file one on the WordPress Trac</a>. There, you can also find <a href=\"http://core.trac.wordpress.org/report/5\">a list of known bugs</a> and <a href=\"http://core.trac.wordpress.org/query?status=closed&amp;group=component&amp;milestone=3.5\">everything we’ve fixed</a> so far.</p>\n<p><em>Beta three is out</em><br />\n<em>Soon, a release candidate</em><br />\n<em>Three point five is near</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"http://wordpress.org/news/2012/11/wordpress-3-5-beta-3/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:45:\"\n		\n		\n		\n		\n		\n				\n		\n\n		\n		\n				\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 3.5 Beta 2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"http://wordpress.org/news/2012/10/wordpress-3-5-beta-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"http://wordpress.org/news/2012/10/wordpress-3-5-beta-2/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 13 Oct 2012 00:02:08 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:7:\"Testing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=2458\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:342:\"Two weeks after the first beta, WordPress 3.5 Beta 2 is now available for download and testing. This is software still in development, so we don’t recommend that you run it on a production site. Set up a test site to play with the new version. To test WordPress 3.5, try the WordPress Beta Tester plugin (you’ll want “bleeding [...]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Andrew Nacin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:1856:\"<p>Two weeks after the first beta, WordPress 3.5 Beta 2 is now available for download and testing.</p>\n<p>This is software still in development, so we don’t recommend that you run it on a production site. Set up a test site to play with the new version. To test WordPress 3.5, try the <a href=\"http://wordpress.org/extend/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href=\"http://wordpress.org/wordpress-3.5-beta2.zip\">download the beta here</a> (zip).</p>\n<p>For more, <a title=\"WordPress 3.5 Beta 1\" href=\"http://wordpress.org/news/2012/09/wordpress-3-5-beta-1/\"><strong>check out the extensive Beta 1 blog post</strong></a>, which covers what&#8217;s new in version 3.5 and how you can help. What&#8217;s new since beta 1? I&#8217;m glad you asked:</p>\n<ul>\n<li>New workflow for working with image galleries, including drag-and-drop reordering and quick caption editing.</li>\n<li>New image editing API. (<a title=\"Ticket 6821\" href=\"http://core.trac.wordpress.org/ticket/6821\">#6821</a>)</li>\n<li><del>New user interface for setting static front pages for the Reading Settings screen. (<a title=\"Ticket 16379\" href=\"http://core.trac.wordpress.org/ticket/16379\">#16379</a>)</del></li>\n</ul>\n<p>As always, if you think you’ve found a bug, you can post to the <a href=\"http://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. Or, if you’re comfortable writing a reproducible bug report, <a href=\"http://core.trac.wordpress.org/\">file one on the WordPress Trac</a>. There, you can also find <a href=\"http://core.trac.wordpress.org/report/5\">a list of known bugs</a> and <a href=\"http://core.trac.wordpress.org/query?status=closed&amp;group=component&amp;milestone=3.5\">everything we’ve fixed</a> so far. Happy testing!</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"http://wordpress.org/news/2012/10/wordpress-3-5-beta-2/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:45:\"\n		\n		\n		\n		\n		\n				\n		\n\n		\n		\n				\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"WordPress 3.5 Beta 1 (and a bonus!)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"http://wordpress.org/news/2012/09/wordpress-3-5-beta-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"http://wordpress.org/news/2012/09/wordpress-3-5-beta-1/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 27 Sep 2012 22:37:49 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:7:\"Testing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=2443\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:376:\"I&#8217;m excited to announce the availability of WordPress 3.5 Beta 1. This is software still in development and we really don’t recommend that you run it on a production site — set up a test site just to play with the new version. To test WordPress 3.5, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can download [...]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Andrew Nacin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:6696:\"<p>I&#8217;m excited to announce the availability of WordPress 3.5 Beta 1.</p>\n<p>This is software still in development and <strong>we <em>really</em> don’t recommend that you run it on a production site</strong> — set up a test site just to play with the new version. To test WordPress 3.5, try the <a href=\"http://wordpress.org/extend/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href=\"http://wordpress.org/wordpress-3.5-beta-1.zip\">download the beta here</a> (zip).</p>\n<p>In just three short months, we&#8217;ve already made a few hundred changes to improve your WordPress experience. The biggest thing we&#8217;ve been working on is overhauling the media experience from the ground up. We&#8217;ve made it all fair game: How you upload photos, arrange galleries, insert images into posts, and more. It&#8217;s still rough around the edges and some pieces are missing — which means now is the <em>perfect</em> time to test it out, report issues, and help shape our headline feature.</p>\n<p>As always, if you think you’ve found a bug, you can post to the <a href=\"http://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. Or, if you’re comfortable writing a reproducible bug report, <a href=\"http://core.trac.wordpress.org/\">file one on the WordPress Trac</a>. There, you can also find <a href=\"http://core.trac.wordpress.org/report/5\">a list of known bugs</a> and <a href=\"http://core.trac.wordpress.org/query?status=closed&amp;group=component&amp;milestone=3.5\">everything we&#8217;ve fixed</a> so far.</p>\n<p>Here&#8217;s some more of what&#8217;s new:</p>\n<ul>\n<li><strong>Appearance: </strong>A simplified welcome screen. A new color picker. And the all-HiDPI (retina) dashboard.</li>\n<li><strong>Accessibility:</strong> Keyboard navigation and screen reader support have both been improved.</li>\n<li><strong>Plugins: </strong>You can browse and install plugins you&#8217;ve marked as favorites on WordPress.org, directly from your dashboard.</li>\n<li><strong>Mobile: </strong>It&#8217;ll be easier to link up your WordPress install with <a href=\"http://wordpress.org/extend/mobile/\">our mobile apps</a>, as XML-RPC is now enabled by default.</li>\n<li><strong>Links: </strong>We&#8217;ve hidden the Link Manager for new installs. (Don&#8217;t worry, <a href=\"http://wordpress.org/extend/plugins/link-manager/\">there&#8217;s a plugin for that</a>.)</li>\n</ul>\n<p><strong>Developers: </strong>We love you. We do. And one of the things we strive to do with every release is be compatible with all existing plugins and themes. To make sure we don&#8217;t break anything, we need your help. <strong>Please, please test your plugins and themes against 3.5.</strong> If something isn&#8217;t quite right, please let us know. (Chances are, it wasn&#8217;t intentional.) And despite all of the changes to media, we&#8217;re still aiming to be backwards compatible with plugins that make changes to the existing media library. It&#8217;s a tall task, and it means we need your help.</p>\n<p>Here&#8217;s some more things we think developers will enjoy (and should test their plugins and themes against):</p>\n<ul>\n<li><strong>External libraries updated:</strong> TinyMCE  <del>3.5.6</del> 3.5.7. SimplePie <del>1.3</del> 1.3.1. jQuery <del>1.8.2</del> 1.8.3. jQuery UI <del>1.9 (and it&#8217;s not even released yet)</del> 1.9.2. We&#8217;ve also added Backbone 0.9.2 and Underscore <del>1.3.3</del> 1.4.2, and you can use protocol-relative links when enqueueing scripts and styles. (<a href=\"http://core.trac.wordpress.org/ticket/16560\">#16560</a>)</li>\n<li><strong>WP Query:</strong> You can now ask to receive posts in the order specified by <code>post__in</code>. (<a href=\"http://core.trac.wordpress.org/ticket/13729\">#13729</a>)</li>\n<li><strong>XML-RPC:</strong> New user management, profile editing, and post revision methods. We&#8217;ve also removed AtomPub. (<a href=\"http://core.trac.wordpress.org/ticket/18428\">#18428</a>, <a href=\"http://core.trac.wordpress.org/ticket/21397\">#21397</a>, <a href=\"http://core.trac.wordpress.org/ticket/21866\">#21866</a>)</li>\n<li><strong>Multisite: </strong>switch_to_blog() is now used in more places, is faster, and more reliable. Also: You can now use multisite in a subdirectory, and uploaded files no longer go through ms-files (for new installs). (<a href=\"http://core.trac.wordpress.org/ticket/21434\">#21434</a>, <a href=\"http://core.trac.wordpress.org/ticket/19796\">#19796</a>, <a href=\"http://core.trac.wordpress.org/ticket/19235\">#19235</a>)</li>\n<li><strong>TinyMCE: </strong>We&#8217;ve added an experimental API for &#8220;views&#8221; which you can use to offer previews and interaction of elements from the visual editor. (<a href=\"http://core.trac.wordpress.org/ticket/21812\">#21812</a>)</li>\n<li><strong>Posts API: </strong>Major performance improvements when working with hierarchies of pages and post ancestors. Also, you can now &#8220;turn on&#8221; native custom columns for taxonomies on edit post screens. (<a href=\"http://core.trac.wordpress.org/ticket/11399\">#11399</a>, <a href=\"http://core.trac.wordpress.org/ticket/21309\">#21309</a>, <a href=\"http://core.trac.wordpress.org/ticket/21240\">#21240</a>)</li>\n<li><strong>Comments API:</strong> Search for comments of a particular status, or with a meta query (same as with WP_Query). (<a href=\"http://core.trac.wordpress.org/ticket/21101\">#21101</a>, <a href=\"http://core.trac.wordpress.org/ticket/21003\">#21003</a>)</li>\n<li><strong>oEmbed: </strong>We&#8217;ve added support for a few oEmbed providers, and we now handle SSL links. (<a href=\"http://core.trac.wordpress.org/ticket/15734\">#15734</a>, <a href=\"http://core.trac.wordpress.org/ticket/21635\">#21635</a>, <a href=\"http://core.trac.wordpress.org/ticket/16996\">#16996</a>, <a href=\"http://core.trac.wordpress.org/ticket/20102\">#20102</a>)</li>\n</ul>\n<p>We&#8217;re looking forward to your feedback. If you break it (find a bug), please report it, and if you’re a developer, try to help us fix it. We&#8217;ve already had more than 200 contributors to version 3.5 — come join us!</p>\n<h3>And as promised, a bonus:</h3>\n<p>We&#8217;re planning a December 5 release for WordPress 3.5. But, we have a special offering for you, today. The newest default theme for WordPress, <strong>Twenty</strong><strong> Twelve</strong>, is now <a href=\"http://wordpress.org/extend/themes/twentytwelve\">available for download</a> from the WordPress themes directory. It&#8217;s a gorgeous and fully responsive theme, and it works with WordPress 3.4.2. Take it for a spin!</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"http://wordpress.org/news/2012/09/wordpress-3-5-beta-1/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:45:\"\n		\n		\n		\n		\n		\n				\n		\n\n		\n		\n				\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"WordPress 3.4.2 Maintenance and Security Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"http://wordpress.org/news/2012/09/wordpress-3-4-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"http://wordpress.org/news/2012/09/wordpress-3-4-2/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 06 Sep 2012 20:07:21 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=2426\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:355:\"WordPress 3.4.2, now available for download, is a maintenance and security release for all previous versions. After nearly 15 million downloads since 3.4 was released not three months ago, we&#8217;ve identified and fixed a number of nagging bugs, including: Fix some issues with older browsers in the administration area. Fix an issue where a theme [...]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Andrew Nacin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:1443:\"<p>WordPress 3.4.2, now available for download, is a maintenance and security release for all previous versions.</p>\n<p>After nearly 15 million downloads since 3.4 was released not three months ago, we&#8217;ve <a href=\"http://core.trac.wordpress.org/query?status=closed&amp;resolution=fixed&amp;milestone=3.4.2&amp;group=resolution&amp;order=severity&amp;desc=1\">identified and fixed a number of nagging bugs</a>, including:</p>\n<ul>\n<li>Fix some issues with older browsers in the administration area.</li>\n<li>Fix an issue where a theme may not preview correctly, or its screenshot may not be displayed.</li>\n<li>Improve plugin compatibility with the visual editor.</li>\n<li>Address pagination problems with some category permalink structures.</li>\n<li>Avoid errors with both oEmbed providers and trackbacks.</li>\n<li>Prevent improperly sized header images from being uploaded.</li>\n</ul>\n<p>Version 3.4.2 also fixes a few security issues and contains some security hardening. The vulnerabilities included potential privilege escalation and a bug that affects multisite installs with untrusted users. These issues were discovered and fixed by the WordPress security team.</p>\n<p><a href=\"http://wordpress.org/download/\"><strong>Download 3.4.2</strong></a><strong> now or visit Dashboard → Updates in your site admin to update now.</strong></p>\n<p><em>Fixes for some bugs<br />\nBack to work on 3.5<br />\nIt&#8217;s time to update</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"http://wordpress.org/news/2012/09/wordpress-3-4-2/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:31:\"http://wordpress.org/news/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"hourly\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";a:8:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Sat, 09 Mar 2013 21:40:59 GMT\";s:12:\"content-type\";s:23:\"text/xml; charset=UTF-8\";s:10:\"connection\";s:5:\"close\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:10:\"x-pingback\";s:36:\"http://wordpress.org/news/xmlrpc.php\";s:13:\"last-modified\";s:29:\"Thu, 07 Mar 2013 14:21:02 GMT\";s:4:\"x-nc\";s:11:\"HIT luv 139\";}s:5:\"build\";s:14:\"20090627192103\";}", "no");
INSERT INTO `wp_options` VALUES("1272", "0", "_site_transient_timeout_browser_2221e5e3579f320a7aec6a4fa27f8d47", "1362929647", "yes");
INSERT INTO `wp_options` VALUES("1273", "0", "_site_transient_browser_2221e5e3579f320a7aec6a4fa27f8d47", "a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:17:\"Internet Explorer\";s:7:\"version\";s:3:\"8.0\";s:10:\"update_url\";s:51:\"http://www.microsoft.com/windows/internet-explorer/\";s:7:\"img_src\";s:45:\"http://s.wordpress.org/images/browsers/ie.png\";s:11:\"img_src_ssl\";s:44:\"https://wordpress.org/images/browsers/ie.png\";s:15:\"current_version\";s:1:\"9\";s:7:\"upgrade\";b:1;s:8:\"insecure\";b:0;}", "yes");
INSERT INTO `wp_options` VALUES("1502", "0", "_transient_dash_20494a3d90a6669585674ed0eb8dcd8f", "<p>This dashboard widget queries <a href=\"http://blogsearch.google.com/\">Google Blog Search</a> so that when another blog links to your site it will show up here. It has found no incoming links&hellip; yet. It&#8217;s okay &#8212; there is no rush.</p>\n", "no");
INSERT INTO `wp_options` VALUES("1338", "0", "_site_transient_timeout_browser_1636867df0afc429d68e0705961810c2", "1363196883", "yes");
INSERT INTO `wp_options` VALUES("1339", "0", "_site_transient_browser_1636867df0afc429d68e0705961810c2", "a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"25.0.1364.152\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}", "yes");
INSERT INTO `wp_options` VALUES("1534", "0", "uninstall_plugins", "a:2:{i:0;b:0;s:25:\"duplicator/duplicator.php\";s:20:\"duplicator_uninstall\";}", "yes");
INSERT INTO `wp_options` VALUES("1535", "0", "duplicator_version_plugin", "0.4.2", "yes");
INSERT INTO `wp_options` VALUES("1536", "0", "duplicator_options", "s:245:\"a:10:{s:6:\"dbhost\";s:9:\"localhost\";s:6:\"dbname\";s:0:\"\";s:6:\"dbuser\";s:0:\"\";s:7:\"url_new\";s:0:\"\";s:8:\"email-me\";s:1:\"0\";s:12:\"email_others\";s:0:\"\";s:10:\"dir_bypass\";s:0:\"\";s:9:\"log_level\";s:1:\"0\";s:8:\"skip_ext\";s:0:\"\";s:11:\"rm_snapshot\";s:1:\"1\";}\";", "yes");
INSERT INTO `wp_options` VALUES("1517", "0", "_transient_timeout_feed_mod_a5420c83891a9c88ad2a4f04584a5efc", "1362908460", "no");
INSERT INTO `wp_options` VALUES("1518", "0", "_transient_feed_mod_a5420c83891a9c88ad2a4f04584a5efc", "1362865260", "no");
INSERT INTO `wp_options` VALUES("1515", "0", "_transient_timeout_feed_a5420c83891a9c88ad2a4f04584a5efc", "1362908460", "no");
INSERT INTO `wp_options` VALUES("1516", "0", "_transient_feed_a5420c83891a9c88ad2a4f04584a5efc", "a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n	\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:72:\"\n		\n		\n		\n		\n		\n		\n				\n\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"WordPress Plugins » View: Most Popular\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"http://wordpress.org/extend/plugins/browse/popular/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"WordPress Plugins » View: Most Popular\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 09 Mar 2013 21:40:16 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"http://bbpress.org/?v=1.1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:15:{i:0;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"WordPress SEO by Yoast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"http://wordpress.org/extend/plugins/wordpress-seo/#post-8321\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 01 Jan 2009 20:34:44 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"8321@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:131:\"Improve your WordPress SEO: Write better content and have a fully optimized WordPress site using the WordPress SEO plugin by Yoast.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Joost de Valk\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:24:\"Jetpack by WordPress.com\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"http://wordpress.org/extend/plugins/jetpack/#post-23862\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 20 Jan 2011 02:21:38 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"23862@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:104:\"Supercharge your WordPress site with powerful features previously only available to WordPress.com users.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:24:\"Michael Adams (mdawaffe)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Akismet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"http://wordpress.org/extend/plugins/akismet/#post-15\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 09 Mar 2007 22:11:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"15@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"Akismet checks your comments against the Akismet web service to see if they look like spam or not.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Contact Form 7\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"http://wordpress.org/extend/plugins/contact-form-7/#post-2141\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 02 Aug 2007 12:45:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"2141@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"Just another contact form plugin. Simple but flexible.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Takayuki Miyoshi\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"Google XML Sitemaps\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"http://wordpress.org/extend/plugins/google-sitemap-generator/#post-132\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 09 Mar 2007 22:31:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"132@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:105:\"This plugin will generate a special XML sitemap which will help search engines to better index your blog.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Arne\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"NextGEN Gallery\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"http://wordpress.org/extend/plugins/nextgen-gallery/#post-1169\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 23 Apr 2007 20:08:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"1169@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:120:\"The most popular WordPress gallery plugin and one of the most popular plugins of all time with over 6 million downloads.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Alex Rabe\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"WordPress Importer\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"http://wordpress.org/extend/plugins/wordpress-importer/#post-18101\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 20 May 2010 17:42:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"18101@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:101:\"Import posts, pages, comments, custom fields, categories, tags and more from a WordPress export file.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Brian Colinger\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"All in One SEO Pack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"http://wordpress.org/extend/plugins/all-in-one-seo-pack/#post-753\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 30 Mar 2007 20:08:18 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"753@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"WordPress SEO plugin to automatically optimize your Wordpress blog for Search Engines.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"uberdose\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Ultimate TinyMCE\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"http://wordpress.org/extend/plugins/ultimate-tinymce/#post-32088\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 14 Nov 2011 09:06:40 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"32088@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"Description: Beef up your visual tinymce editor with a plethora of advanced options.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Josh\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Facebook\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"http://wordpress.org/extend/plugins/facebook/#post-37351\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 02 May 2012 19:36:35 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"37351@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:131:\"Add Facebook social plugins and the ability to publish new posts to a Facebook Timeline or Facebook Page. Official Facebook plugin.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Samuel Wood (Otto)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"W3 Total Cache\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"http://wordpress.org/extend/plugins/w3-total-cache/#post-12073\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 29 Jul 2009 18:46:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"12073@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:132:\"Easy Web Performance Optimization (WPO) using caching: browser, page, object, database, minify and content delivery network support.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Frederick Townes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:11;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:24:\"Share Buttons by AddThis\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"http://wordpress.org/extend/plugins/addthis/#post-8124\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 17 Dec 2008 16:03:39 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"8124@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:134:\"AddThis Share Buttons help drive traffic to your site by helping visitors share, bookmark and email your content to over 330 services.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"_mjk_\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:12;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Contact Form\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"http://wordpress.org/extend/plugins/contact-form-plugin/#post-26890\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 26 May 2011 07:34:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"26890@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"Add Contact Form to your WordPress website.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"bestwebsoft\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:13;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"Yet Another Related Posts Plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"http://wordpress.org/extend/plugins/yet-another-related-posts-plugin/#post-2769\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 02 Jan 2008 13:05:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"2769@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:122:\"Display a list of related entries on your site and feeds based on a unique algorithm. Now with thumbnail support built-in!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"mitcho (Michael Yoshitaka Erlewine)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:14;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"Social Media Widget\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"http://wordpress.org/extend/plugins/social-media-widget/#post-18183\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 25 May 2010 02:22:34 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"18183@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:129:\"Adds links to all of your social media and sharing site profiles. Tons of icons come in 3 sizes, 4 icon styles, and 4 animations.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Blink Web Effects\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:52:\"http://wordpress.org/extend/plugins/rss/view/popular\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";a:10:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Sat, 09 Mar 2013 21:41:00 GMT\";s:12:\"content-type\";s:23:\"text/xml; charset=UTF-8\";s:10:\"connection\";s:5:\"close\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:7:\"expires\";s:29:\"Sat, 09 Mar 2013 22:15:16 GMT\";s:13:\"cache-control\";s:0:\"\";s:6:\"pragma\";s:0:\"\";s:13:\"last-modified\";s:31:\"Sat, 09 Mar 2013 21:40:16 +0000\";s:4:\"x-nc\";s:11:\"HIT luv 139\";}s:5:\"build\";s:14:\"20090627192103\";}", "no");
INSERT INTO `wp_options` VALUES("1511", "0", "_transient_timeout_feed_mod_867bd5c64f85878d03a060509cd2f92c", "1362908460", "no");
INSERT INTO `wp_options` VALUES("1512", "0", "_transient_feed_mod_867bd5c64f85878d03a060509cd2f92c", "1362865259", "no");
INSERT INTO `wp_options` VALUES("1513", "0", "_transient_timeout_dash_aa95765b5cc111c56d5993d476b1c2f0", "1362908460", "no");
INSERT INTO `wp_options` VALUES("1514", "0", "_transient_dash_aa95765b5cc111c56d5993d476b1c2f0", "<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'http://feedproxy.google.com/~r/weblogtoolscollection/UXMP/~3/bO5NxobHs5o/\' title=\'New plugins WP-AntiSpambot adds a shortcode that can be used to stop spambots from harvesting emails entered into your WordPress editor while creating pages or posts. Zone Manager (Zoninator) is designed to help you curate your content by assigning and ordering stories within zones that you can create, edit, and delete. Updated plugins Contemplate allows you [&hellip;]\'>Weblog Tools Collection: WordPress Plugin Releases for 3/9</a></li><li><a class=\'rsswidget\' href=\'http://wordpress.tv/2013/03/09/shelia-oliver-selecting-a-theme/\' title=\' [&hellip;]\'>WordPress.tv: Shelia Oliver: Selecting a Theme</a></li><li><a class=\'rsswidget\' href=\'http://wordpress.tv/2013/03/09/troy-dean-workshop-a-better-wordpress-for-your-clients/\' title=\' [&hellip;]\'>WordPress.tv: Troy Dean: A Better WordPress for Your Clients</a></li><li><a class=\'rsswidget\' href=\'http://wordpress.tv/2013/03/08/paul-clark-how-wordpress-saves-lives-freedom-hope-and-custom-post-types/\' title=\' [&hellip;]\'>WordPress.tv: Paul Clark: How WordPress Saves Lives – Freedom, Hope and Custom Post Types</a></li><li><a class=\'rsswidget\' href=\'http://wordpress.tv/2013/03/08/david-albert-creating-themes/\' title=\' [&hellip;]\'>WordPress.tv: David Albert: Creating Themes</a></li></ul></div>", "no");
INSERT INTO `wp_options` VALUES("1519", "0", "_transient_timeout_feed_57bc725ad6568758915363af670fd8bc", "1362908460", "no");
INSERT INTO `wp_options` VALUES("1520", "0", "_transient_feed_57bc725ad6568758915363af670fd8bc", "a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n	\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:72:\"\n		\n		\n		\n		\n		\n		\n				\n\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"WordPress Plugins » View: Newest\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"http://wordpress.org/extend/plugins/browse/new/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"WordPress Plugins » View: Newest\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 09 Mar 2013 21:23:05 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"http://bbpress.org/?v=1.1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:15:{i:0;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:44:\"Dropstream - automated eCommerce fulfillment\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"http://wordpress.org/extend/plugins/wp-dropstream/#post-50348\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 07 Mar 2013 20:05:23 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"50348@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:99:\"Dropstream is a powerful eCommerce plugin that helps you work with third-party fulfillment centers.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"karlfalconer\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"Comment Word Filrer\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"http://wordpress.org/extend/plugins/hamyar-comment-filter/#post-50262\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 06 Mar 2013 10:19:54 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"50262@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"Say goodbye to unpleasant words in you blog comments!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"phantom-wolf\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"Disqus Popular Threads Widget\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"http://wordpress.org/extend/plugins/disqus-popular-threads-widget/#post-50445\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 08 Mar 2013 20:18:48 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"50445@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"Shows your most commented posts from Disqus via widget, shortcode, or template tag.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Ron Zvagelsky\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"Google Drive upload and download link\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"http://wordpress.org/extend/plugins/google-drive-upload-and-download-link/#post-50251\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 05 Mar 2013 19:27:20 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"50251@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:155:\"Inserta un enlace de descarga en el post hacia un archivo en google drive, y exponlo en tu sitio &#124;\nInserts a download link in the post to a file in go\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"oscaruh\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Keep Backup Daily\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"http://wordpress.org/extend/plugins/keep-backup-daily/#post-50343\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 07 Mar 2013 15:26:34 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"50343@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:131:\"Keep Backup Daily backup your wordpress database and email to you daily, weekly, monthly and even yearly according to the settings.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"fahadmahmood\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"GA Nav Menus Tracking\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"http://wordpress.org/extend/plugins/ga-nav-menus-tracking/#post-50144\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 01 Mar 2013 14:01:23 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"50144@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"Add Google analytics tracking events to your WordPress navigation menus.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Paul\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"Recent Tweets Widget\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"http://wordpress.org/extend/plugins/recent-tweets-widget/#post-50399\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 08 Mar 2013 15:11:38 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"50399@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:120:\"Recent Tweets Widget WordPress plugin for new Twitter API v1.1 with cache, so you won&#039;t be rate limited at Twitter!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"ThemePrince\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"Code Snippet Library\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"http://wordpress.org/extend/plugins/code-snippet-library/#post-50215\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 04 Mar 2013 09:17:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"50215@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:106:\"Store a library of reusable code snippets that you can add to any post. Supports 61 programming languages.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Hugh Lashbrooke\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"Simple Share Buttons Adder\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"http://wordpress.org/extend/plugins/simple-share-buttons-adder/#post-50271\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 06 Mar 2013 18:55:53 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"50271@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"A simple plugin that enables you to add share buttons to all of your posts and/or pages.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"David Neal\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"Bible Verse of the Day\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"http://wordpress.org/extend/plugins/bible-verse-of-the-day/#post-50263\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 06 Mar 2013 12:24:08 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"50263@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"This plugins shows the daily inspiring bible verse from DailyVerses.net.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"dailyverses\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"Simple Stock Quotes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"http://wordpress.org/extend/plugins/simple-stock-quotes/#post-50350\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 07 Mar 2013 20:21:55 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"50350@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:123:\"Version: 1.0.1\n\nSimple Stock Quotes allows you to add an AJAX powered stock quote generator to your site content or widgets\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Grant Kimball\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:11;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"Social media in the sidebar\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"http://wordpress.org/extend/plugins/social-media-in-the-sidebar/#post-50234\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 05 Mar 2013 05:59:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"50234@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:95:\"Social media integration icon in the sidebar. drag the widget in the sidebar and add your icons\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Tresspasser\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:12;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"CPK Ultimate Archives\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"http://wordpress.org/extend/plugins/cpk-ultimate-archives/#post-50134\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 28 Feb 2013 22:25:13 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"50134@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"An improved version of the default WP Archives widget that allows complex filtering.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"cpkwebsolutions\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:13;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"Custom Messages In RSS Feed\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"http://wordpress.org/extend/plugins/custom-messages-in-rss-feed/#post-50174\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 02 Mar 2013 04:22:10 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"50174@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"This plugin allows you to insert/append custom messages into your RSS feed.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Keral Patel\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:14;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"微博通同步新版\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"http://wordpress.org/extend/plugins/wbto/#post-50345\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 07 Mar 2013 17:10:55 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"50345@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:105:\"自动把你的博客文章同步到微博通，支持标题+内容截断+抓取图像+更新不同步。\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"xiaohudie\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:48:\"http://wordpress.org/extend/plugins/rss/view/new\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";a:10:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Sat, 09 Mar 2013 21:41:00 GMT\";s:12:\"content-type\";s:23:\"text/xml; charset=UTF-8\";s:10:\"connection\";s:5:\"close\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:7:\"expires\";s:29:\"Sat, 09 Mar 2013 21:58:05 GMT\";s:13:\"cache-control\";s:0:\"\";s:6:\"pragma\";s:0:\"\";s:13:\"last-modified\";s:31:\"Sat, 09 Mar 2013 21:23:05 +0000\";s:4:\"x-nc\";s:11:\"HIT luv 139\";}s:5:\"build\";s:14:\"20090627192103\";}", "no");
INSERT INTO `wp_options` VALUES("1525", "0", "_transient_timeout_feed_mod_1a5f760f2e2b48827d4974a60857e7c2", "1362908461", "no");
INSERT INTO `wp_options` VALUES("1526", "0", "_transient_feed_mod_1a5f760f2e2b48827d4974a60857e7c2", "1362865261", "no");
INSERT INTO `wp_options` VALUES("1529", "0", "_transient_timeout_dash_de3249c4736ad3bd2cd29147c4a0d43e", "1362908461", "no");
INSERT INTO `wp_options` VALUES("1530", "0", "_transient_dash_de3249c4736ad3bd2cd29147c4a0d43e", "<h4>Most Popular</h4>\n<h5><a href=\'http://wordpress.org/extend/plugins/ultimate-tinymce/\'>Ultimate TinyMCE</a></h5>&nbsp;<span>(<a href=\'plugin-install.php?tab=plugin-information&amp;plugin=ultimate-tinymce&amp;_wpnonce=b414fd480c&amp;TB_iframe=true&amp;width=600&amp;height=800\' class=\'thickbox\' title=\'Ultimate TinyMCE\'>Install</a>)</span>\n<p>Description: Beef up your visual tinymce editor with a plethora of advanced options.</p>\n<h4>Newest Plugins</h4>\n<h5><a href=\'http://wordpress.org/extend/plugins/disqus-popular-threads-widget/\'>Disqus Popular Threads Widget</a></h5>&nbsp;<span>(<a href=\'plugin-install.php?tab=plugin-information&amp;plugin=disqus-popular-threads-widget&amp;_wpnonce=442800491b&amp;TB_iframe=true&amp;width=600&amp;height=800\' class=\'thickbox\' title=\'Disqus Popular Threads Widget\'>Install</a>)</span>\n<p>Shows your most commented posts from Disqus via widget, shortcode, or template tag.</p>\n<h4>Recently Updated</h4>\n<h5><a href=\'http://wordpress.org/extend/plugins/wp-dropstream/\'>Dropstream - automated eCommerce fulfillment</a></h5>&nbsp;<span>(<a href=\'plugin-install.php?tab=plugin-information&amp;plugin=wp-dropstream&amp;_wpnonce=eef198f4df&amp;TB_iframe=true&amp;width=600&amp;height=800\' class=\'thickbox\' title=\'Dropstream - automated eCommerce fulfillment\'>Install</a>)</span>\n<p>Dropstream is a powerful eCommerce plugin that helps you work with third-party fulfillment centers.</p>\n", "no");
INSERT INTO `wp_options` VALUES("1134", "0", "_site_transient_timeout_browser_5c0232a4d8aaf7c49f977e33742fbcb4", "1362573621", "yes");
INSERT INTO `wp_options` VALUES("1135", "0", "_site_transient_browser_5c0232a4d8aaf7c49f977e33742fbcb4", "a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:12:\"25.0.1364.97\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}", "yes");
INSERT INTO `wp_options` VALUES("843", "0", "_wpred_redirecturl", "http://tampa.keylocksmith.in/fl/?pbcezmobsite=locksmith-tampa", "yes");
INSERT INTO `wp_options` VALUES("844", "0", "_wpred_mobileoverridedays", "", "yes");
INSERT INTO `wp_options` VALUES("752", "0", "external_updates-offline-pandemic", "O:8:\"stdClass\":3:{s:9:\"lastCheck\";i:1362844822;s:14:\"checkedVersion\";s:3:\"1.0\";s:6:\"update\";O:12:\"PluginUpdate\":6:{s:2:\"id\";i:0;s:4:\"slug\";s:16:\"offline-pandemic\";s:7:\"version\";s:3:\"1.0\";s:8:\"homepage\";N;s:12:\"download_url\";s:60:\"http://www.ezprofitplugins.com/pupdates/offline-pandemic.zip\";s:14:\"upgrade_notice\";N;}}", "yes");
INSERT INTO `wp_options` VALUES("1533", "0", "_site_transient_update_plugins", "O:8:\"stdClass\":3:{s:12:\"last_checked\";i:1362865588;s:7:\"checked\";a:10:{s:19:\"akismet/akismet.php\";s:5:\"2.5.3\";s:24:\"bd-hit-counter/image.php\";s:3:\"2.2\";s:47:\"bounce-grab-corner-peel-exit-pop/bouncegrab.php\";s:3:\"1.0\";s:25:\"duplicator/duplicator.php\";s:5:\"0.4.2\";s:35:\"EzMobileRedirectGenerator/index.php\";s:7:\"2.01.06\";s:31:\"EzMobileSiteGenerator/index.php\";s:7:\"4.00.04\";s:37:\"jquery-page-peel/jquery-page-peel.php\";s:5:\"1.3.1\";s:29:\"offline-pandemic/fbposter.php\";s:3:\"1.0\";s:37:\"tinymce-advanced/tinymce-advanced.php\";s:5:\"3.5.8\";s:30:\"wp-pinsuite/pinterest-auto.php\";s:5:\"1.2.2\";}s:8:\"response\";a:1:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":5:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:7:\"akismet\";s:11:\"new_version\";s:5:\"2.5.7\";s:3:\"url\";s:44:\"http://wordpress.org/extend/plugins/akismet/\";s:7:\"package\";s:55:\"http://downloads.wordpress.org/plugin/akismet.2.5.7.zip\";}}}", "yes");
INSERT INTO `wp_options` VALUES("611", "0", "albg_settings_section", "a:2:{s:17:\"albg_redirect_url\";s:43:\"http://tampa.keylocksmith.in/fl/?page_id=64\";s:17:\"albg_banner_image\";s:80:\"http://tampa.keylocksmith.in/fl/wp-content/uploads/2013/02/ecover1_spiral250.png\";}", "yes");
INSERT INTO `wp_options` VALUES("1393", "0", "wphcu_display_credit", "0", "yes");
INSERT INTO `wp_options` VALUES("1392", "0", "wphcu_display_footer", "1", "yes");
INSERT INTO `wp_options` VALUES("658", "0", "wphcu_align", "center", "yes");
INSERT INTO `wp_options` VALUES("619", "0", "jQuery-page-peel-version", "1.3.1", "yes");
INSERT INTO `wp_options` VALUES("620", "0", "jQuery-page-peel-link", "feed", "yes");
INSERT INTO `wp_options` VALUES("621", "0", "jQuery-page-peel-rel", "", "yes");
INSERT INTO `wp_options` VALUES("622", "0", "jQuery-page-peel-target", "_blank", "yes");
INSERT INTO `wp_options` VALUES("623", "0", "jQuery-page-peel-onclick", "", "yes");
INSERT INTO `wp_options` VALUES("624", "0", "jQuery-page-peel-z-index", "99", "yes");
INSERT INTO `wp_options` VALUES("661", "0", "wphcu_exclude_ips", "1", "yes");
INSERT INTO `wp_options` VALUES("626", "0", "pagepeel_version", "0.3", "yes");
INSERT INTO `wp_options` VALUES("627", "0", "pagepeel_image_small", "http://tampa.keylocksmith.in/fl/wp-content/plugins/page-peel/small.jpg", "yes");
INSERT INTO `wp_options` VALUES("628", "0", "pagepeel_image_big", "http://tampa.keylocksmith.in/fl/wp-content/plugins/page-peel/big.jpg", "yes");
INSERT INTO `wp_options` VALUES("629", "0", "pagepeel_ad_url", "http://www.cubescripts.com/add-a-comment-script.php", "yes");
INSERT INTO `wp_options` VALUES("1396", "0", "wphcu_css", ".credits_off {display:none;}", "yes");
INSERT INTO `wp_options` VALUES("1395", "0", "wphcu_check_update", "1", "yes");
INSERT INTO `wp_options` VALUES("1394", "0", "wphcu_count_only_unique", "0", "yes");
INSERT INTO `wp_options` VALUES("845", "0", "_wpred_mobileoverridehours", "", "yes");
INSERT INTO `wp_options` VALUES("846", "0", "_wpred_mobileoverridecode", "ezmbred", "yes");
INSERT INTO `wp_options` VALUES("847", "0", "_wpred_mobilepageoverride", "", "yes");
INSERT INTO `wp_options` VALUES("1523", "0", "_transient_timeout_feed_1a5f760f2e2b48827d4974a60857e7c2", "1362908460", "no");
INSERT INTO `wp_options` VALUES("1524", "0", "_transient_feed_1a5f760f2e2b48827d4974a60857e7c2", "a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n	\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:72:\"\n		\n		\n		\n		\n		\n		\n				\n\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"WordPress Plugins » View: Recently Updated\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"http://wordpress.org/extend/plugins/browse/updated/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"WordPress Plugins » View: Recently Updated\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 09 Mar 2013 21:27:40 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"http://bbpress.org/?v=1.1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:15:{i:0;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"Disqus Popular Threads Widget\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"http://wordpress.org/extend/plugins/disqus-popular-threads-widget/#post-50445\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 08 Mar 2013 20:18:48 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"50445@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"Shows your most commented posts from Disqus via widget, shortcode, or template tag.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Ron Zvagelsky\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"ytlink\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"http://wordpress.org/extend/plugins/ytlink/#post-50136\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 01 Mar 2013 03:04:21 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"50136@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"Makes a preview-pic out of the short youtube-id, uses fancybox or prettyPhoto\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"xundeenergie\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"GEO Redirector\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"http://wordpress.org/extend/plugins/geo-redirector/#post-44105\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 07 Oct 2012 05:30:09 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"44105@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:97:\"This plugin will allow you to redirect your URLs according to the visitors geographical location.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Anushka\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"AIO Cache & Performance\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"http://wordpress.org/extend/plugins/aio-cache/#post-49357\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 10 Feb 2013 07:52:05 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"49357@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"AIO Cache is a Very Simple and Fast Cache &#38; Performance Plugin.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"adamsassets\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Metaphor Widgets\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"http://wordpress.org/extend/plugins/mtphr-widgets/#post-49892\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 23 Feb 2013 00:38:42 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"49892@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:100:\"Adds the following widgets: Twitter, Social, Recent Comments, Recent Posts, Contact, Post Navigation\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"metaphorcreations\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Organize Series\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"http://wordpress.org/extend/plugins/organize-series/#post-211\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 09 Mar 2007 22:53:14 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"211@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"A plugin for managing the article series you write.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"nerrad\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"Comment Word Filrer\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"http://wordpress.org/extend/plugins/hamyar-comment-filter/#post-50262\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 06 Mar 2013 10:19:54 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"50262@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"Say goodbye to unpleasant words in you blog comments!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"phantom-wolf\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"OnePress Social Locker\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"http://wordpress.org/extend/plugins/social-locker/#post-49687\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 18 Feb 2013 16:32:51 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"49687@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:146:\"Adds a set of very crafty social buttons on your site (Facebook, Twitter, Google). Give people a reason why they need to click the social buttons!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"OnePress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"Easy VKontakte Connect\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"http://wordpress.org/extend/plugins/easy-vkontakte-connect/#post-36827\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 16 Apr 2012 20:35:35 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"36827@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:115:\"This plugin allows you autopublish blog posts with pictures to VKontakte wall and provide VKontakte Wall Analytics.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"alekseysolo\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:44:\"Dropstream - automated eCommerce fulfillment\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"http://wordpress.org/extend/plugins/wp-dropstream/#post-50348\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 07 Mar 2013 20:05:23 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"50348@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:99:\"Dropstream is a powerful eCommerce plugin that helps you work with third-party fulfillment centers.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"karlfalconer\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Easy\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"http://wordpress.org/extend/plugins/easy/#post-43264\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 17 Sep 2012 19:27:48 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"43264@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"Easy, but complex widget website builder.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"2046\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:11;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"GA Nav Menus Tracking\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"http://wordpress.org/extend/plugins/ga-nav-menus-tracking/#post-50144\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 01 Mar 2013 14:01:23 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"50144@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"Add Google analytics tracking events to your WordPress navigation menus.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Paul\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:12;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"My Videotag\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"http://wordpress.org/extend/plugins/my-videotag/#post-21728\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 22 Oct 2010 13:51:51 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"21728@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:148:\"Implements Tag &#34;Video&#34; in posts and comments which automatically identifies videos from sites like: youtube, googlevideo, dailymotion, etc..\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"giObanii fiOri\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:13;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"ExtraWatch Live Stats and Visitor Counter PRO\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"http://wordpress.org/extend/plugins/extrawatch-pro/#post-36268\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 29 Mar 2012 22:09:41 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"36268@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:147:\"Popular visitor live tracking component ported from Joomla. Features: live stats,graphs,goals,history,anti-spam,blocking,nightly reports and more..\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"matto3c\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:14;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Keyring\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"http://wordpress.org/extend/plugins/keyring/#post-31084\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 13 Oct 2011 16:20:49 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"31084@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"An authentication framework that handles authorization with external web services.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Beau Lebens\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:52:\"http://wordpress.org/extend/plugins/rss/view/updated\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";a:7:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Sat, 09 Mar 2013 21:41:00 GMT\";s:12:\"content-type\";s:23:\"text/xml; charset=UTF-8\";s:10:\"connection\";s:5:\"close\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:13:\"last-modified\";s:29:\"Fri, 08 Mar 2013 20:18:48 GMT\";s:4:\"x-nc\";s:11:\"HIT luv 139\";}s:5:\"build\";s:14:\"20090627192103\";}", "no");
INSERT INTO `wp_options` VALUES("1521", "0", "_transient_timeout_feed_mod_57bc725ad6568758915363af670fd8bc", "1362908460", "no");
INSERT INTO `wp_options` VALUES("1522", "0", "_transient_feed_mod_57bc725ad6568758915363af670fd8bc", "1362865260", "no");
INSERT INTO `wp_options` VALUES("642", "0", "theme_mods_FbForcerElite", "a:2:{i:0;b:0;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1360512133;s:4:\"data\";a:2:{s:19:\"wp_inactive_widgets\";a:2:{i:0;s:8:\"search-2\";i:1;s:17:\"recent-comments-2\";}s:18:\"orphaned_widgets_1\";a:4:{i:0;s:14:\"recent-posts-2\";i:1;s:10:\"archives-2\";i:2;s:12:\"categories-2\";i:3;s:6:\"meta-2\";}}}}", "yes");
INSERT INTO `wp_options` VALUES("513", "0", "theme_mods_RockStarLeadTheme-v2-4", "a:1:{i:0;b:0;}", "yes");
INSERT INTO `wp_options` VALUES("184", "0", "can_compress_scripts", "1", "yes");
INSERT INTO `wp_options` VALUES("1509", "0", "_transient_timeout_feed_867bd5c64f85878d03a060509cd2f92c", "1362908459", "no");
INSERT INTO `wp_options` VALUES("1510", "0", "_transient_feed_867bd5c64f85878d03a060509cd2f92c", "a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:61:\"\n	\n	\n	\n	\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"WordPress Planet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"en\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"WordPress Planet - http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:50:{i:0;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"Weblog Tools Collection: WordPress Plugin Releases for 3/9\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"http://weblogtoolscollection.com/?p=12746\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"http://feedproxy.google.com/~r/weblogtoolscollection/UXMP/~3/bO5NxobHs5o/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1269:\"<h3>New plugins</h3>\n<p><a href=\"http://wordpress.org/extend/plugins/wp-antispambot/\"><strong>WP-AntiSpambot</strong></a> adds a shortcode that can be used to stop spambots from harvesting emails entered into your WordPress editor while creating pages or posts.</p>\n<p><a href=\"http://wordpress.org/extend/plugins/zoninator/\"><strong>Zone Manager (Zoninator)</strong></a> is designed to help you curate your content by assigning and ordering stories within zones that you can create, edit, and delete.</p>\n<h3>Updated plugins</h3>\n<p><a href=\"http://wordpress.org/extend/plugins/contemplate/\"><strong>Contemplate</strong></a> allows you to create unlimited shortcodes containing any text/HTML you like.</p>\n<p><a href=\"http://wordpress.org/extend/plugins/genericond/\"><strong>Genericon&#8217;d</strong></a> enables easy use of the <a href=\"http://genericons.com\">Genericons</a> icon font set from within WordPress. Icons can be inserted using either HTML or a shortcode.</p>\n<p><a href=\"http://wordpress.org/extend/plugins/safe-report-comments/\"><strong>Safe Report Comments</strong></a> gives your visitors the ability to report a comment as inappropriate.</p>\n<img src=\"http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/bO5NxobHs5o\" height=\"1\" width=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 09 Mar 2013 14:00:08 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"James\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"WordPress.tv: Shelia Oliver: Selecting a Theme\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=17804\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"http://wordpress.tv/2013/03/09/shelia-oliver-selecting-a-theme/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:642:\"<div id=\"v-wWC1dNmC-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/17804/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/17804/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=17804&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/03/09/shelia-oliver-selecting-a-theme/\"><img alt=\"Shelia Oliver: Selecting a Theme\" src=\"http://videos.videopress.com/wWC1dNmC/video-09a458d26f_std.original.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 09 Mar 2013 07:00:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"WordPress.tv: Troy Dean: A Better WordPress for Your Clients\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=17575\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"http://wordpress.tv/2013/03/09/troy-dean-workshop-a-better-wordpress-for-your-clients/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:701:\"<div id=\"v-u0oYwdlO-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/17575/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/17575/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=17575&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/03/09/troy-dean-workshop-a-better-wordpress-for-your-clients/\"><img alt=\"Troy Dean: A Better WordPress for Your Clients\" src=\"http://videos.videopress.com/u0oYwdlO/workshop_better_wordpress_your_clients_std.original.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 09 Mar 2013 07:00:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"Aditya\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:91:\"WordPress.tv: Paul Clark: How WordPress Saves Lives – Freedom, Hope and Custom Post Types\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=17826\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:103:\"http://wordpress.tv/2013/03/08/paul-clark-how-wordpress-saves-lives-freedom-hope-and-custom-post-types/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:737:\"<div id=\"v-BadwqS0c-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/17826/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/17826/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=17826&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/03/08/paul-clark-how-wordpress-saves-lives-freedom-hope-and-custom-post-types/\"><img alt=\"Paul Clark: How WordPress Saves Lives &#8211; Freedom, Hope and Custom Post Types\" src=\"http://videos.videopress.com/BadwqS0c/video-a47f3d8431_scruberthumbnail_0.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 08 Mar 2013 07:00:24 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"WordPress.tv: David Albert: Creating Themes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=17832\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"http://wordpress.tv/2013/03/08/david-albert-creating-themes/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:642:\"<div id=\"v-GUObb3Lv-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/17832/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/17832/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=17832&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/03/08/david-albert-creating-themes/\"><img alt=\"David Albert: Creating Themes\" src=\"http://videos.videopress.com/GUObb3Lv/video-ae688e4604_scruberthumbnail_1.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 08 Mar 2013 07:00:13 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"WordPress.tv: Joseph Ortenzi: Inclusive Design Principles for WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=17572\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"http://wordpress.tv/2013/03/07/inclusive-design-principles-for-wordpress/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:638:\"<div id=\"v-8f95CIQ7-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/17572/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/17572/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=17572&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/03/07/inclusive-design-principles-for-wordpress/\"><img alt=\"Joseph-Ortenzi.mov\" src=\"http://videos.videopress.com/8f95CIQ7/video-e6c0b8e434_std.original.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 08 Mar 2013 01:45:08 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"WordPress.tv: Giuliano Ambrosio: Sfruttare il Potenziale Nativo di WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=17333\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"http://wordpress.tv/2013/03/07/giuliano-ambrosio-sfruttare-il-potenziale-nativo-di-wordpress/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:708:\"<div id=\"v-mDLSbyoz-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/17333/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/17333/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=17333&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/03/07/giuliano-ambrosio-sfruttare-il-potenziale-nativo-di-wordpress/\"><img alt=\"Giuliano Ambrosio: Sfruttare il Potenziale Nativo di WordPress\" src=\"http://videos.videopress.com/mDLSbyoz/video-a2388d6b97_scruberthumbnail_0.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 07 Mar 2013 15:50:48 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"WordPress.tv: Luca Bartoli: Sviluppare plugin per WordPress, Best Practice e Silver Bullet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=17326\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:106:\"http://wordpress.tv/2013/03/07/luca-bartoli-sviluppare-plugin-per-wordpress-best-practice-e-silver-bullet/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:735:\"<div id=\"v-RxUKTwkX-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/17326/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/17326/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=17326&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/03/07/luca-bartoli-sviluppare-plugin-per-wordpress-best-practice-e-silver-bullet/\"><img alt=\"Luca Bartoli: Sviluppare plugin per WordPress, Best Practice e Silver Bullet\" src=\"http://videos.videopress.com/RxUKTwkX/video-0919b4b753_scruberthumbnail_1.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 07 Mar 2013 15:49:33 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"WordPress.tv Blog: Meet the Moderators: Phil Erb\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"http://wptvblog.wordpress.com/?p=234\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"http://wptvblog.wordpress.com/2013/03/07/phil-erb/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4346:\"<p>In the last posts, we chatted with <a title=\"Meet the Moderators: Chandra Maharzan\" href=\"http://wptvblog.wordpress.com/2013/02/20/chandra-maharzan/\" target=\"_blank\">Chandra Maharzan</a> and <a title=\"Meet the Moderators: Jerry Bates\" href=\"http://wptvblog.wordpress.com/2013/02/20/jerry-bates/\" target=\"_blank\">Jerry Bates</a>, two moderators at <a href=\"http://wordpress.tv/\" target=\"_blank\">WordPress.tv</a>. We&#8217;d like to introduce a third volunteer on this team. Everyone, meet Phil Erb.</p>\n<p><span id=\"more-234\"></span></p>\n<h3>Phil Erb<br />\nScranton, Pennsylvania</h3>\n<h4><img class=\"alignleft size-medium wp-image-254\" alt=\"Phil Erb\" src=\"http://wptvblog.files.wordpress.com/2013/02/phil.jpg?w=300&h=225\" width=\"300\" height=\"225\" /></h4>\n<h4>Tell us a bit about yourself.</h4>\n<p>I&#8217;m a systems administrator/programmer at the University of Scranton. While I do some work with WordPress at the university, most of my WordPress projects are after hours as a consultant or just for fun.</p>\n<h4>How did you get involved with WordPress?</h4>\n<p>I&#8217;ve been creating websites since 2002 &#8212; the <a href=\"http://philerb.com/\" target=\"_blank\">philerb.com</a> domain name turned 10 years old in September! &#8212; originally purely by hand, then by creating very basic CMS-type systems with Perl, PHP, and MySQL. I&#8217;d installed WordPress in 2007 and 2008 to play with it, but never had time to sit down and learn it. It wasn&#8217;t until just before 3.0 came out that I convinced myself custom-coded solutions aren&#8217;t the way to go. Now, I&#8217;m consulting on the side and working on WordPress sites for nonprofits and small businesses.</p>\n<p>I didn&#8217;t really become involved with the WordPress community until last fall. Last year, I began following more WordPress folks on Twitter and started answering questions in the forums. I attended my first WordCamp &#8211; <a href=\"http://central.wordcamp.org/wordcamps/wordcamp-philly/\" target=\"_blank\">WordCamp Philly</a> &#8212; in October.<strong> </strong>I&#8217;ve helped set up a <a href=\"http://www.nepawp.com\" target=\"_blank\">Northeast Pennsylvania WordPress meetup</a> &#8212; we had our first meetup recently in Scranton and are planning our next one for March 26. (We can be found on <a href=\"http://www.meetup.com/nepawp/\" target=\"_blank\">Meetup.com</a> or on Twitter <a href=\"https://twitter.com/nepawp\" target=\"_blank\">@nepawp</a>.)</p>\n<p>For WordPress 3.5, I published my first plugin (<a href=\"http://wordpress.org/extend/plugins/disable-xml-rpc/\" target=\"_blank\">Disable XML-RPC</a>). It&#8217;s a simple one-line plugin, but it&#8217;s left me wanting to create more. I&#8217;ve set a goal to contribute at least one thing to core in 2013.</p>\n<h4><span>Why do you want to be a WordPress.tv moderator?</span></h4>\n<p>I&#8217;ve only been to one WordCamp so far, but I love watching the videos from other conferences. They&#8217;ve helped me understand how much you can do with WordPress and inspire me in my own projects. I wanted to get more involved in the community so was very excited when I read about the need for moderators for <a href=\"http://wordpress.tv/\" target=\"_blank\">WordPress.tv</a>. I now have a (good) excuse to sit down and watch videos about WordPress, by some of the best in the business, every day.</p>\n<h4>What other things do you like to do?</h4>\n<p>When I&#8217;m not immersed in code or following the WordPress universe via Twitter on my phone, I&#8217;m playing with (and wrangling) my two kids: three-year-old Adam and one-year-old Rachel.</p>\n<p><i>If you&#8217;re interested in getting involved in WordPress events, such as WordCamps and WordPress meetups, check out the </i><a href=\"http://make.wordpress.org/events/\"><i>Making WordPress Events</i></a><i> discussion forum. You can also see what Phil and the WordPress.tv moderators are up to at </i><a href=\"http://wptvmods.wordpress.com/\"><i>wptvmods</i></a><i>.</i></p>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptvblog.wordpress.com/234/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptvblog.wordpress.com/234/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wptvblog.wordpress.com&blog=5310177&post=234&subd=wptvblog&ref=&feed=1\" width=\"1\" height=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 07 Mar 2013 08:01:47 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Cheri Lucas\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"Weblog Tools Collection: WordPress Theme Releases for 3/6\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"http://weblogtoolscollection.com/?p=12737\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"http://feedproxy.google.com/~r/weblogtoolscollection/UXMP/~3/QRLNoZmiDdY/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1389:\"<p><a href=\"http://wordpress.org/extend/themes/chun\"><img class=\"alignnone size-thumbnail wp-image-12738\" alt=\"screenshot\" src=\"http://i0.wp.com/weblogtoolscollection.com/wp-content/uploads/2013/03/screenshot1.png?resize=150%2C150\" /></a></p>\n<p><a href=\"http://wordpress.org/extend/themes/chun\"><strong>Chun</strong></a> is a free responsive HTML5 boilerplate theme.</p>\n<p><a href=\"http://wordpress.org/extend/themes/opus-primus\"><img class=\"alignnone size-thumbnail wp-image-12739\" alt=\"screenshot-1\" src=\"http://i1.wp.com/weblogtoolscollection.com/wp-content/uploads/2013/03/screenshot-11.png?resize=150%2C150\" /></a></p>\n<p><a href=\"http://wordpress.org/extend/themes/opus-primus\"><strong>Opus Primus</strong></a> is designed and developed to be extensible and easily modified, based in the principles of decisions not options.</p>\n<p><a href=\"http://wordpress.org/extend/themes/superhero\"><img class=\"alignnone size-thumbnail wp-image-12740\" alt=\"screenshot-2\" src=\"http://i0.wp.com/weblogtoolscollection.com/wp-content/uploads/2013/03/screenshot-2.png?resize=150%2C150\" /></a></p>\n<p><a href=\"http://wordpress.org/extend/themes/superhero\"><strong>Superhero</strong></a> features full-bleed featured posts and featured images, a fixed header, and subtle CSS3 transitions.</p>\n<img src=\"http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/QRLNoZmiDdY\" height=\"1\" width=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 06 Mar 2013 14:00:46 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"James\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"Lorelle on WP: WordPress Course at PCC-Rock Creek in Beaverton\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"http://lorelle.wordpress.com/?p=8268\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"http://lorelle.wordpress.com/2013/03/06/wordpress-course-at-pcc-rock-creek-in-beaverton/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:515:\"I will be teaching a WordPress Introduction college course at Portland Community College in Beaverton, just west of Portland, Oregon, starting April 3 &#8211; June 12, 2013. The course is a hybrid online course meetings Wednesdays from 6-9PM with a minimum of two hours online per week. Called &#8220;CMS Website Creation: WordPress,&#8221; this 3 credit [...]<img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=lorelle.wordpress.com&blog=72&post=8268&subd=lorelle&ref=&feed=1\" width=\"1\" height=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 06 Mar 2013 12:44:18 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Lorelle VanFossen\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:11;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"Lorelle on WP: Introduction to WordPress Class at Clark College Continuing Education\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"http://lorelle.wordpress.com/?p=8253\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:110:\"http://lorelle.wordpress.com/2013/03/05/introduction-to-wordpress-class-at-clark-college-continuing-education/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:520:\"I will be teaching another Introduction to WordPress course at Clark College Corporate and Continuing Education in Vancouver, Washington, starting Saturdays, April 27 through July 13, 2013. The class will be at the Columbia Tech Center in eastern Vancouver, just across the Columbia River off Interstate 205, just a few minutes from downtown Portland, Oregon. [...]<img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=lorelle.wordpress.com&blog=72&post=8253&subd=lorelle&ref=&feed=1\" width=\"1\" height=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 05 Mar 2013 21:13:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Lorelle VanFossen\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:12;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"WordPress.tv Blog: Meet the Moderators: Chandra Maharzan\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"http://wptvblog.wordpress.com/?p=231\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"http://wptvblog.wordpress.com/2013/03/05/chandra-maharzan/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4316:\"<p>In last week&#8217;s post, we talked to <a title=\"Meet the Moderators: Jerry Bates\" href=\"http://wptvblog.wordpress.com/2013/02/20/jerry-bates/\" target=\"_blank\">Jerry Bates</a>, one of the moderators at <a href=\"http://wordpress.tv/\" target=\"_blank\">WordPress.tv</a>. Let&#8217;s continue our &#8220;Meet the Moderators&#8221; Q&amp;A series with another member of this team, hailing all the way from Nepal: Chandra Maharzan.</p>\n<p><span id=\"more-231\"></span></p>\n<h3>Chandra Maharzan<br />\nKathmandu, Nepal</h3>\n<h4><img class=\"size-medium wp-image-248 alignright\" alt=\"Chandra Maharzan\" src=\"http://wptvblog.files.wordpress.com/2013/02/chandra.jpg?w=225&h=300\" width=\"225\" height=\"300\" />Tell us about yourself and your work.</h4>\n<p>I&#8217;m a theme designer, and since 2008 I&#8217;ve worked at <a href=\"http://graphpaperpress.com/\" target=\"_blank\">Graph Paper Press</a> to produce photography themes. Some of my themes have been on &#8220;top 100 free WP themes&#8221; lists on sites like <em><a href=\"http://www.smashingmagazine.com/\">Smashing Magazine</a>, </em>and <a href=\"http://theme.wordpress.com/themes/gridspace/\" target=\"_blank\">Gridspace</a> &#8212; one of the themes I crafted &#8212; is the 10th most popular theme in WordPress.com&#8217;s <a href=\"http://theme.wordpress.com/\" target=\"_blank\">Theme Showcase</a>. I currently have three free themes at WordPress.org, and one of them, <a href=\"http://theme.wordpress.com/themes/book-lite/\" target=\"_blank\">Book Lite</a>, is now available on WordPress.com, too. I also create minimal themes at <a href=\"http://www.wpshoppe.com/\" target=\"_blank\">WPshoppe</a> and review themes at <a href=\"http://wordpress.org/\" target=\"_blank\">WordPress.org</a>.</p>\n<p>In 2011, I set up a WordPress group in Kathmandu, and we meet monthly. We organized our first <a href=\"http://2012.nepal.wordcamp.org/\" target=\"_blank\">WordCamp Nepal</a> in November, which was pretty awesome!</p>\n<p><em></em><em>Pictured at right: Chandra (right) with Philip Arthur Moore, theme wrangler at <a href=\"http://automattic.com/\" target=\"_blank\">Automattic</a>, in WordCamp Nepal.</em></p>\n<h4>How did you get involved with WordPress?</h4>\n<p>I began using WordPress extensively for client projects. I, along with others, thought that if WordPress was so efficient, time-saving, and cost-effective, we should share our experience with others. In April 2011, we had our first WordPress meetup with just four people. We created a Facebook group and soon after found people who were really into WordPress. While the group didn&#8217;t expand that much, we continued our monthly meetups. In August 2011, I was able to go to WordCamp San Francisco &#8212; an eye opener! I was determined to do a WordCamp in Kathmandu, so that&#8217;s how it started. We now have over 600 people in the group, and students in colleges are excited to start WordPress clubs.</p>\n<h4>Why do you want to be a WordPress.tv moderator?</h4>\n<p>I have learned many new things from the videos at <a href=\"http://wordpress.tv/\" target=\"_blank\">WordPress.tv</a>. But I do wish the videos were more interactive (with slides), and had high-quality sound. So, as a listener, sometimes you get lost. I want to improve our future videos and make WordPress.tv the best resource for WordPress! I want to help the WordPress community beyond the local level.</p>\n<h4>What other things do you like to do?</h4>\n<p>I have a baby girl who takes up a lot of my time. I also keep busy photographing and making music.</p>\n<p><i>Stay tuned for the next Q&amp;A in this series! If you&#8217;re interested in getting involved in WordPress events, such as WordCamps and WordPress meetups, check out the </i><a href=\"http://make.wordpress.org/events/\"><i>Making WordPress Events</i></a><i> discussion forum. You can also see what Chandra and the WordPress.tv moderators are up to at </i><a href=\"http://wptvmods.wordpress.com/\"><i>wptvmods</i></a><i>.</i></p>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptvblog.wordpress.com/231/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptvblog.wordpress.com/231/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wptvblog.wordpress.com&blog=5310177&post=231&subd=wptvblog&ref=&feed=1\" width=\"1\" height=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 05 Mar 2013 18:00:20 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Cheri Lucas\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:13;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"Weblog Tools Collection: WordPress Plugin Releases for 3/4\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"http://weblogtoolscollection.com/?p=12733\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"http://feedproxy.google.com/~r/weblogtoolscollection/UXMP/~3/sSMZLJ7BZjc/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1710:\"<h3>New plugins</h3>\n<p><a href=\"http://wordpress.org/extend/plugins/eshop-shipping-extension/\"><strong>eShop Shipping Extension</strong></a> overrides <a href=\"http://wordpress.org/extend/plugins/eshop/\">eShop&#8217;s</a> default shipping methods, interacting directly with Canada Post, UPS, USPS, Fedex, and Correios for real-time shipping rates and services.</p>\n<p><a href=\"http://wordpress.org/extend/plugins/genericond/\"><strong>Genericon&#8217;d</strong></a> enables easy use of the <a href=\"http://genericons.com\">Genericons</a> icon font set from within WordPress. Icons can be inserted using either HTML or a shortcode.</p>\n<h3>Updated plugins</h3>\n<p><a href=\"http://wordpress.org/extend/plugins/backwpup/\"><strong>BackWPup</strong></a> allows you to backup your WordPress database, files, and more.</p>\n<p><a href=\"http://wordpress.org/extend/plugins/facebook/\"><strong>Facebook</strong></a> makes your site deeply social by integrating functionality from Facebook.</p>\n<p><a href=\"http://wordpress.org/extend/plugins/posterous-importer/\"><strong>Posterous Importer</strong></a> imports posts, comments, tags, and attachments from a Posterous.com blog.</p>\n<p><a href=\"http://www.viper007bond.com/wordpress-plugins/syntaxhighlighter/\"><strong>SyntaxHighlighter Evolved</strong></a> allows you to easily post syntax-highlighted code to your site without having to escape the code or anything.</p>\n<p><a href=\"http://wordpress.org/extend/plugins/watu/\"><strong>Watu</strong></a> allows you to create exams with unlimited questions and answers, and define grades based on collected points.</p>\n<img src=\"http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/sSMZLJ7BZjc\" height=\"1\" width=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 04 Mar 2013 14:00:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"James\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:14;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"WordPress.tv: Sanjib Shah: Internationalizing and Localizing WordPress Theme\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=17658\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"http://wordpress.tv/2013/03/03/sanjib-shah-internationalizing-and-localizing-wordpress-theme/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:702:\"<div id=\"v-TzrHaBqo-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/17658/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/17658/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=17658&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/03/03/sanjib-shah-internationalizing-and-localizing-wordpress-theme/\"><img alt=\"Sanjib Shah: Internationalizing and Localizing WordPress Theme\" src=\"http://videos.videopress.com/TzrHaBqo/video-e34d8b1aea_std.original.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 03 Mar 2013 07:00:37 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:15;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"WordPress.tv: Jason Tucker: How to Stream a Meetup or Live Event\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=17745\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"http://wordpress.tv/2013/03/02/jason-tucker-how-to-stream-a-meetup-or-live-event/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:678:\"<div id=\"v-n3EPve3g-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/17745/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/17745/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=17745&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/03/02/jason-tucker-how-to-stream-a-meetup-or-live-event/\"><img alt=\"Jason Tucker: How to Stream a Meetup or Live Event\" src=\"http://videos.videopress.com/n3EPve3g/video-90195238fa_std.original.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 02 Mar 2013 17:52:20 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:16;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"Alex King: Social 2.8\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://alexking.org/?p=15918\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"http://alexking.org/blog/2013/03/01/social-2-8\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1380:\".threads-post-notice {\n	background: #e8e8e8;\n	padding: 10px;\n}\n.threads-post-notice a {\n	font-weight: bold;\n}\n\n<p><a href=\"http://wordpress.org/extend/plugins/social/\">Social 2.8</a> (courtesy of <a href=\"http://mailchimp.com\">MailChimp</a>) was released today. This release was primarily to change over to using version 1.1 of Twitter&#8217;s API.</p>\n<p>Why should you care? Well, for one thing &#8211; the 1.0 API was starting to break and not get repaired in places. For example, you might have noticed that Social was no longer reliably finding tweets that referenced your posts by URL. This was due to a breakage in Twitter&#8217;s 1.0 search API. However, it works fine in the 1.1 API &#8211; now that is &#8220;fixed&#8221;. Yay!</p>\n<p>So we&#8217;re pleased to be on Twitter&#8217;s 1.1 API, and the great folks at MailChimp have made some additional changes to the Social Proxy to make it easier for us to maintain Twitter API compatibility going forward.</p>\n<p>We also threw in a couple of little bug fixes, check out the <a href=\"http://wordpress.org/extend/plugins/social/changelog/\">changelog</a> in the README for details.</p>\n<p>Enjoy!</p>\n<p class=\"threads-post-notice\">This post is part of the thread: <a href=\"http://alexking.org/blog/thread/social\">Social</a> &#8211; an ongoing story on this site. View the thread timeline for more context on this post.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 02 Mar 2013 00:12:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Alex\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:17;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"Joseph: HTML Purifier\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://josephscott.org/?p=6627\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"http://josephscott.org/archives/2013/03/html-purifier/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1282:\"<p><a href=\"https://sharedat.net/s/fCDw\"><img src=\"https://sharedat.net/f/fC/fCDw/html-purifier.png\" width=\"505\" height=\"168\" class=\"aligncenter\" /></a></p>\n<p>In the world of HTML filtering in PHP <a href=\"http://htmlpurifier.org/\">HTML Purifier</a> appears to be the current top dog.  WordPress long ago forked <a href=\"http://sourceforge.net/projects/kses/\">kses</a> for HTML filtering, which is fine, but as <a href=\"http://urbangiraffe.com/\">John Godley</a> ( a co-worker at <a href=\"http://automattic.com/\">Automattic</a> ) put it:</p>\n<blockquote><p>\nThere is nothing fundamentally wrong with the way WordPress and bbPress filters comments, and in fact there has been no security alert related to this. However, this doesn’t detract from the desire to make things better, and the fact that HTML Purifier is much more thorough and exhaustive.\n</p></blockquote>\n<p>He wrote the <a href=\"http://wordpress.org/extend/plugins/html-purified/\">HTML Purified WordPress plugin</a>, which &#8220;replaces the default WordPress comments filters with HTML Purifier&#8221;.</p>\n<p>For new PHP projects, or ones that allow you to easily swap in/out libraries, it looks like HTML Purifier is the current <a href=\"http://htmlpurifier.org/comparison\">best option for HTML filtering</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 01 Mar 2013 21:15:13 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Joseph Scott\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:18;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"Weblog Tools Collection: WordPress Theme Releases for 3/1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"http://weblogtoolscollection.com/?p=12725\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"http://feedproxy.google.com/~r/weblogtoolscollection/UXMP/~3/oIidvqpyMIY/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1848:\"<p><a href=\"http://themes.vorkshop.com/boiler/\"><img class=\"alignnone size-thumbnail wp-image-12729\" alt=\"boiler\" src=\"http://i0.wp.com/weblogtoolscollection.com/wp-content/uploads/2013/03/boiler.png?resize=150%2C150\" /></a></p>\n<p><a href=\"http://themes.vorkshop.com/boiler/\"><strong>Boiler</strong></a> is a free responsive HTML5 boilerplate theme.</p>\n<p><a href=\"http://emptynestthemes.com/2013/02/28/fluid-wordpress-professional-website-theme/\"><img class=\"alignnone size-thumbnail wp-image-12726\" alt=\"DemoBlog\" src=\"http://i2.wp.com/weblogtoolscollection.com/wp-content/uploads/2013/03/DemoBlog.png?resize=150%2C150\" /></a></p>\n<p><a href=\"http://emptynestthemes.com/2013/02/28/fluid-wordpress-professional-website-theme/\"><strong>Fluid</strong></a> is a professional, elegant, vibrant, yet fairly simple corporate or business theme that uses varying shades of blue, silver, gray, and white with a semi-abstract water ripple header image that could be easily changed.</p>\n<p><a href=\"http://wordpress.org/extend/themes/spine\"><img class=\"alignnone size-thumbnail wp-image-12727\" alt=\"screenshot\" src=\"http://i2.wp.com/weblogtoolscollection.com/wp-content/uploads/2013/03/screenshot.png?resize=150%2C150\" /></a></p>\n<p><a href=\"http://wordpress.org/extend/themes/spine\"><strong>Spine</strong></a> is a white, grey, black, and blue two-column theme.</p>\n<p><a href=\"http://wordpress.org/extend/themes/zeenews\"><img class=\"alignnone size-thumbnail wp-image-12728\" alt=\"screenshot-1\" src=\"http://i2.wp.com/weblogtoolscollection.com/wp-content/uploads/2013/03/screenshot-1.png?resize=150%2C150\" /></a></p>\n<p><a href=\"http://wordpress.org/extend/themes/zeenews\"><strong>zeeNews</strong></a> is a theme for any news, magazine, or blog.</p>\n<img src=\"http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/oIidvqpyMIY\" height=\"1\" width=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 01 Mar 2013 17:45:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"James\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:19;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"WordPress.tv: Utsav Singh Rathour: How, Why and Where to use WordPress Multisite\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=17645\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"http://wordpress.tv/2013/02/28/utsav-singh-rathour-how-why-and-where-to-use-wordpress-multisite/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:715:\"<div id=\"v-198d7ok0-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/17645/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/17645/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=17645&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/02/28/utsav-singh-rathour-how-why-and-where-to-use-wordpress-multisite/\"><img alt=\"Utsav Singh Rathour: How, Why and Where to use WordPress Multisite\" src=\"http://videos.videopress.com/198d7ok0/video-77734b3299_scruberthumbnail_0.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 01 Mar 2013 03:43:40 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:20;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"WordPress.tv: Rabin Shrestha: Data Validation and Sanitization in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=17521\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"http://wordpress.tv/2013/02/28/rabin-shrestha-data-validation-and-sanitization-in-wordpress/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:706:\"<div id=\"v-zk7Fo6to-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/17521/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/17521/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=17521&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/02/28/rabin-shrestha-data-validation-and-sanitization-in-wordpress/\"><img alt=\"Rabin Shrestha: Data Validation and Sanitization in WordPress\" src=\"http://videos.videopress.com/zk7Fo6to/video-c1aa56ac6f_scruberthumbnail_0.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 01 Mar 2013 03:43:20 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:21;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"BuddyPress: Announcing BuddyCamp Miami 2013\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://buddypress.org/?p=154737\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"http://buddypress.org/2013/02/buddycamp-miami-2013/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1126:\"<p>We&#8217;re super-excited to share with you news about the first American (and second ever) BuddyPress conference; <a href=\"http://2013.miami.wordcamp.org/2013/02/27/buddycamp-miami-preview/\">BuddyCamp Miami</a>! Tickets are limited, so <a href=\"http://2013.miami.wordcamp.org/tickets\">get one today</a>.</p>\n<p>BuddyCamp is a mini-conference before <a href=\"http://2013.miami.wordcamp.org/\">WordCamp Miami</a>. It&#8217;s happening on April 5th at the <a href=\"https://plus.google.com/109057042773817854862/about?gl=US&hl=en-US\">University of Miami, Life Science &amp; Technology Park</a>. As you can guess from the name, BuddyCamp Miami is a conference focused on <a href=\"http://buddypress.org/\">BuddyPress</a>. If you want to learn more about BuddyPress and walk away as a power user, meet many of the team behind the project, and share your knowledge with other enthusiasts, then BuddyCamp is perfect for you!</p>\n<p>Tickets are strictly limited, so if you&#8217;re near Miami and love BuddyPress, don&#8217;t hesitate; <a href=\"http://2013.miami.wordcamp.org/tickets/\">get your ticket today</a>! See you there!</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 28 Feb 2013 22:02:54 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Paul Gibbs\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:22;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"WP Windows Phone 7: Version 2.0 Is Here: Gallery Support and Dashboard Access\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"http://wpwindowsphone.wordpress.com/?p=383\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"http://wpwindowsphone.wordpress.com/2013/02/28/version-2-0/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6373:\"<p><a href=\"http://wpwindowsphone.files.wordpress.com/2013/02/wpwindowsphone-2-0-gallery-support.png\"><img src=\"http://wpwindowsphone.files.wordpress.com/2013/02/wpwindowsphone-2-0-gallery-support.png?w=300&h=560\" alt=\"Version 2.0 of WordPress for Windows Phone: Gallery Support\" width=\"300\" height=\"560\" class=\"alignright size-large wp-image-412\" /></a>We promised to release updates faster, and so this is the first of many updates to come. Today we&#8217;re happy to announce gallery support for WordPress.com blogs and direct access to your WordPress Dashboard and public website.</p>\n<p>Galleries are a great way to share pictures with your friends and followers. An image gallery will display thumbnails for all images attached to a particular post or page. Readers can tap or click any image to launch the gallery full-screen, displaying huge versions of your images.</p>\n<p>You can create a gallery straight from your device by attaching two or more pictures to a post or a page. You can even customize the appearance of a gallery by tapping the &#8220;gallery settings&#8221; button and choosing the best options for your site.</p>\n<h3>Gallery Styles</h3>\n<p>You have great control over how the gallery will be displayed: as a thumbnail grid, as a tiled mosaic-style grid, or as a slideshow. A tiled mosaic-style grid has Rectangular, Square, and Circular formatting options, for a total of 5 choices.</p>\n<p>Below is an example of an image gallery using the default thumbnail setting. If you click on any of the images you will be able to see what the carousel view looks like:<br />\n\n<a href=\"http://wpwindowsphone.wordpress.com/2013/02/28/version-2-0/01-dashboard/\" title=\"01-dashboard\"><img /></a>\n<a href=\"http://wpwindowsphone.wordpress.com/2013/02/28/version-2-0/02-write-screen/\" title=\"02 - write screen\"><img /></a>\n<a href=\"http://wpwindowsphone.wordpress.com/2013/02/28/version-2-0/03-gallery-settings/\" title=\"03- gallery settings\"><img /></a>\n<a href=\"http://wpwindowsphone.wordpress.com/2013/02/28/version-2-0/04-gellery-settings/\" title=\"04 - gellery-settings\"><img /></a>\n</p>\n<p><strong>Gallery with square tiles</strong><br />\n\n<a href=\"http://wpwindowsphone.wordpress.com/2013/02/28/version-2-0/attachment/02/\" title=\"Fire Hydrant\"><img /></a>\n<a href=\"http://wpwindowsphone.wordpress.com/2013/02/28/version-2-0/attachment/03/\" title=\"Pier\"><img /></a>\n<a href=\"http://wpwindowsphone.wordpress.com/2013/02/28/version-2-0/attachment/04/\" title=\"Rooftops\"><img /></a>\n<a href=\"http://wpwindowsphone.wordpress.com/2013/02/28/version-2-0/attachment/05/\" title=\"Balcony\"><img /></a>\n<a href=\"http://wpwindowsphone.wordpress.com/2013/02/28/version-2-0/attachment/06/\" title=\"Restaurant\"><img /></a>\n<a href=\"http://wpwindowsphone.wordpress.com/2013/02/28/version-2-0/attachment/07/\" title=\"Boardwalk\"><img /></a>\n</p>\n<p><strong>Gallery with circular tiles</strong><br />\n\n<a href=\"http://wpwindowsphone.wordpress.com/2013/02/28/version-2-0/attachment/02/\" title=\"Fire Hydrant\"><img /></a>\n<a href=\"http://wpwindowsphone.wordpress.com/2013/02/28/version-2-0/attachment/03/\" title=\"Pier\"><img /></a>\n<a href=\"http://wpwindowsphone.wordpress.com/2013/02/28/version-2-0/attachment/04/\" title=\"Rooftops\"><img /></a>\n<a href=\"http://wpwindowsphone.wordpress.com/2013/02/28/version-2-0/attachment/05/\" title=\"Balcony\"><img /></a>\n<a href=\"http://wpwindowsphone.wordpress.com/2013/02/28/version-2-0/attachment/06/\" title=\"Restaurant\"><img /></a>\n<a href=\"http://wpwindowsphone.wordpress.com/2013/02/28/version-2-0/attachment/07/\" title=\"Boardwalk\"><img /></a>\n</p>\n<p><strong>Gallery as a slideshow</strong><br />\n<a href=\"http://wpwindowsphone.wordpress.com/2013/02/28/version-2-0/#gallery-383-1-slideshow\">Click to view slideshow.</a></p>\n<h3><a href=\"http://wpwindowsphone.files.wordpress.com/2013/02/wpwindowsphone-2-0-dashboard-and-website-access.png\"><img src=\"http://wpwindowsphone.files.wordpress.com/2013/02/wpwindowsphone-2-0-dashboard-and-website-access.png?w=300&h=560\" alt=\"Version 2.0 of WordPress for Windows Phone: Dashboard and Website Access\" width=\"300\" height=\"560\" class=\"alignright size-large wp-image-422\" /></a>Easy Site and Dashboard Access</h3>\n<p>A no brainer. We added buttons on the Blog Screen to view your public website as well as a Dashboard link so you can access your full WordPress Dashboard to modify plugins, widgets, and more.</p>\n<h3>More improvements and bug fixes</h3>\n<p>This release also includes improvements for WordPress.com and Jetpack Stats, as well as fixes for crashes and other bugs. You can see the details on what was taken care of on the <a href=\"http://windowsphone.trac.wordpress.org/query?group=status&milestone=2.0.0\" target=\"_blank\">trac roadmap</a>.</p>\n<h3>Download</h3>\n<p>Ready to get the latest? Click the link below to update the best WordPress app for Windows Phone so far.</p>\n<p class=\"download\"><a href=\"http://windowsphone.com/s?appid=5f64ad85-f801-e011-9264-00237de2db9e\"><strong>Download App</strong>WordPress for Windows Phone</a><span class=\"download-info\">Supported: WordPress.com or self-hosted WordPress (v. 2.9+)</span></p>\n<h3>Contributors</h3>\n<p>A huge thanks to the contributors that worked on this release: <a href=\"http://wordpress.org/support/profile/daniloercoli\" target=\"_blank\">daniloercoli</a>, <a href=\"http://wordpress.org/support/profile/sendhil\" target=\"_blank\">sendhil</a>.</p>\n<p>Would you like to get in on the fun? Let us know at <a title=\"WordPress for Windows Phone developer blog\" href=\"http://windowsphonedev.wordpress.org\" target=\"_blank\">windowsphonedev.wordpress.org</a>  or head on over to <a href=\"http://make.wordpress.org/mobile\" target=\"_blank\">make/mobile on WordPress.org</a> and we&#8217;ll help you get started as a contributor.  Do you have an idea for a new feature or have you encountered a bug that needs fixing? Tell us about it on the <a title=\"Project Trac site\" href=\"http://wpwindowsphone.wordpress.com/feed/windowsphone.trac.wordpress.org\" target=\"_blank\">WordPress for Windows Phone Trac</a>.</p>\n<p>Make sure to follow <a href=\"https://twitter.com/wpwindowsphone\" target=\"_blank\">@WPWindowsPhone on Twitter</a> to get the latest news first.</p>\n<br />  <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wpwindowsphone.wordpress.com&blog=16495748&post=383&subd=wpwindowsphone&ref=&feed=1\" width=\"1\" height=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 28 Feb 2013 12:00:47 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"Danilo\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:23;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"WordPress.tv: Roshan Bhattarai: Scaling WordPress for Large Traffic Sites\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=17518\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"http://wordpress.tv/2013/02/27/roshan-bhattarai-scaling-wordpress-for-large-traffic-sites/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:702:\"<div id=\"v-LfFLJl0V-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/17518/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/17518/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=17518&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/02/27/roshan-bhattarai-scaling-wordpress-for-large-traffic-sites/\"><img alt=\"Roshan Bhattarai: Scaling WordPress for Large Traffic Sites\" src=\"http://videos.videopress.com/LfFLJl0V/video-f27526f6a5_scruberthumbnail_0.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 28 Feb 2013 05:45:08 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:24;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"Joseph: Genericons Icon Font\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://josephscott.org/?p=6874\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"http://josephscott.org/archives/2013/02/genericons-icon-font/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1243:\"<p><a href=\"http://genericons.com/\"><img src=\"http://i2.wp.com/themeshaper.com/wp-content/uploads/2013/02/genericons-website.png?resize=580%2C447\" width=\"580\" height=\"447\" class=\"class\" /></a></p>\n<p>Some of my great <a href=\"http://automattic.com/work-with-us/\">co-workers</a> recently released a new icon font &#8211; <a href=\"http://genericons.com/\">Genericons</a></p>\n<p>The details are in <a href=\"http://themeshaper.com/2013/02/27/genericons-icon-font/\">The Genericons Icon Font Story</a> announcement post.  In additional to being a nice general use icon font, it is licensed under GPLv2 (or later), so no more trying to sort out licensing terms to see if the icon font will jive with your existing open source projects.  They are also free, as in no cost.  The font is already in use in the new <a href=\"http://make.wordpress.org/core/2013/02/18/introducing-twenty-thirteen/\">WordPress Twenty Thirteen theme</a> ( demo site is at <a href=\"http://twentythirteendemo.wordpress.com/\">http://twentythirteendemo.wordpress.com/</a> ).</p>\n<p>For more examples check out the bottom of the <a href=\"http://themeshaper.com/2013/02/27/genericons-icon-font/\">announcement post</a> and <a href=\"http://genericons.com/\">genericons.com</a> site.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 27 Feb 2013 18:41:49 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Joseph Scott\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:25;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"Weblog Tools Collection: WordPress Plugin Releases for 2/27\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"http://weblogtoolscollection.com/?p=12717\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"http://feedproxy.google.com/~r/weblogtoolscollection/UXMP/~3/XjhmLTi99gc/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1577:\"<h3>New plugins</h3>\n<p><a href=\"http://wordpress.org/extend/plugins/color-scheme-every-theme/\"><strong>Color Scheme Every Theme</strong></a> lets you change the entire color scheme of the current theme via the theme customizer.</p>\n<p><a href=\"http://wordpress.org/extend/plugins/force-reauthentication/\"><strong>Force ReAuthentication</strong></a> allows a site administrator to log out a user remotely.</p>\n<h3>Updated plugins</h3>\n<p><a href=\"http://wordpress.org/extend/plugins/branded-login-screen/\"><strong>Branded Login Screen</strong></a> allows you to customize your login screen.</p>\n<p><a href=\"http://jetpack.me/\"><strong>Jetpack</strong></a> allows you to supercharge your WordPress site with powerful features previously only available to <a href=\"http://wordpress.com/\">WordPress.com</a> users.</p>\n<p><a href=\"http://wordpress.org/extend/plugins/markdown-on-save-improved/\"><strong>Markdown on Save Improved</strong></a> processes your post with Markdown unless you tell it not to.</p>\n<p><a href=\"http://www.viper007bond.com/wordpress-plugins/syntaxhighlighter/\"><strong>SyntaxHighlighter Evolved</strong></a> allows you to easily post syntax-highlighted code to your site without having to escape the code or anything.</p>\n<p><a href=\"http://wordpress.org/extend/plugins/yet-another-related-posts-plugin/\"><strong>Yet Another Related Posts Plugin</strong></a> displays a list of related entries on your site and feeds based on a unique algorithm.</p>\n<img src=\"http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/XjhmLTi99gc\" height=\"1\" width=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 27 Feb 2013 14:00:10 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"James\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:26;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"WordPress.tv: Sakin Shrestha: Building Secure WordPress Sites\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=17495\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"http://wordpress.tv/2013/02/26/sakin-shrestha-building-secure-wordpress-sites/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:678:\"<div id=\"v-93JEen7f-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/17495/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/17495/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=17495&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/02/26/sakin-shrestha-building-secure-wordpress-sites/\"><img alt=\"Sakin Shrestha: Building Secure WordPress Sites\" src=\"http://videos.videopress.com/93JEen7f/video-ec299cd0a9_scruberthumbnail_0.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 26 Feb 2013 19:00:59 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:27;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"WordPress.tv: Chandra Prakash Thapa: Make a WordPress Multisite in 20 Minutes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=17463\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:94:\"http://wordpress.tv/2013/02/26/chandra-prakash-thapa-make-a-wordpress-multisite-in-20-minutes/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:710:\"<div id=\"v-9pbyrQWe-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/17463/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/17463/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=17463&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/02/26/chandra-prakash-thapa-make-a-wordpress-multisite-in-20-minutes/\"><img alt=\"Chandra Prakash Thapa: Make a WordPress Multisite in 20 Minutes\" src=\"http://videos.videopress.com/9pbyrQWe/video-07efa904f7_scruberthumbnail_0.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 26 Feb 2013 19:00:20 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Michael\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:28;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"WordPress.tv: Kris Thapa: WP Ambulance\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=17477\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"http://wordpress.tv/2013/02/25/kris-thapa-wp-ambulance/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:632:\"<div id=\"v-t1l38Nye-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/17477/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/17477/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=17477&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/02/25/kris-thapa-wp-ambulance/\"><img alt=\"Kris Thapa: WP Ambulance\" src=\"http://videos.videopress.com/t1l38Nye/video-7c39f13be7_scruberthumbnail_0.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 26 Feb 2013 06:40:29 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:29;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"WordPress.tv: Jimba Tamang: Responsive and Retina Design\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=17475\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"http://wordpress.tv/2013/02/25/jimba-tamang-responsive-and-retina-design/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:668:\"<div id=\"v-QXRzzTva-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/17475/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/17475/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=17475&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/02/25/jimba-tamang-responsive-and-retina-design/\"><img alt=\"Jimba Tamang: Responsive and Retina Design\" src=\"http://videos.videopress.com/QXRzzTva/video-194fe6aeaf_scruberthumbnail_1.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 26 Feb 2013 06:39:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:30;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"WordPress.tv: Noel Tock: Going Beyond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=16409\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"http://wordpress.tv/2013/02/25/noel-tock-going-beyond/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:630:\"<div id=\"v-dFgXWJrr-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/16409/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/16409/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=16409&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/02/25/noel-tock-going-beyond/\"><img alt=\"Noel Tock: Going Beyond\" src=\"http://videos.videopress.com/dFgXWJrr/video-183217cb51_scruberthumbnail_0.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 25 Feb 2013 18:35:21 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:31;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"WordPress.tv: Thomas Bensmann: Responsive Design Principles and Techniques\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=16417\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:91:\"http://wordpress.tv/2013/02/25/thomas-bensmann-responsive-design-principles-and-techniques/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:704:\"<div id=\"v-mVgfvDBW-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/16417/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/16417/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=16417&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/02/25/thomas-bensmann-responsive-design-principles-and-techniques/\"><img alt=\"Thomas Bensmann: Responsive design principles and techniques\" src=\"http://videos.videopress.com/mVgfvDBW/video-4193551b8a_scruberthumbnail_1.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 25 Feb 2013 18:33:57 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:32;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"Weblog Tools Collection: WordPress Theme Releases for 2/25\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"http://weblogtoolscollection.com/?p=12707\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"http://feedproxy.google.com/~r/weblogtoolscollection/UXMP/~3/cgwOUIGfh70/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1744:\"<p><a href=\"http://wordpress.org/extend/themes/pyramid\"><img class=\"alignnone size-thumbnail wp-image-12708\" alt=\"screenshot\" src=\"http://i2.wp.com/weblogtoolscollection.com/wp-content/uploads/2013/02/screenshot5.png?resize=150%2C150\" /></a></p>\n<p><a href=\"http://wordpress.org/extend/themes/pyramid\"><strong>Pyramid</strong></a> is a simple and clean theme.</p>\n<p><a href=\"http://emptynestthemes.com/2013/02/23/studio-wordpress-professional-website-theme/\"><img class=\"alignnone size-thumbnail wp-image-12710\" alt=\"DemoBlog\" src=\"http://i1.wp.com/weblogtoolscollection.com/wp-content/uploads/2013/02/DemoBlog4.png?resize=150%2C150\" /></a></p>\n<p><a href=\"http://emptynestthemes.com/2013/02/23/studio-wordpress-professional-website-theme/\"><strong>Studio</strong></a> is a responsive 1-column theme that includes a static page layout as well as a blog page.</p>\n<p><a href=\"http://wordpress.org/extend/themes/teal\"><img class=\"alignnone size-thumbnail wp-image-12709\" alt=\"screenshot-1\" src=\"http://i0.wp.com/weblogtoolscollection.com/wp-content/uploads/2013/02/screenshot-15.png?resize=150%2C150\" /></a></p>\n<p><a href=\"http://wordpress.org/extend/themes/teal\"><strong>Teal</strong></a> is a responsive magazine theme.</p>\n<p><a href=\"http://3oneseven.com/22/wordpress-theme-zen/\"><img class=\"alignnone size-thumbnail wp-image-12711\" alt=\"screenshot copy\" src=\"http://i0.wp.com/weblogtoolscollection.com/wp-content/uploads/2013/02/screenshot-copy.png?resize=150%2C150\" /></a></p>\n<p><a href=\"http://3oneseven.com/22/wordpress-theme-zen/\"><strong>Zen</strong></a> is drenched in white with some paintings in the header and footer.</p>\n<img src=\"http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/cgwOUIGfh70\" height=\"1\" width=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 25 Feb 2013 14:00:13 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"James\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:33;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"WordPress.tv: Ivelina Dimova: The Power of Option Frameworks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=16395\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"http://wordpress.tv/2013/02/25/ivelina-dimova-the-power-of-option-frameworks/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:676:\"<div id=\"v-QCofbLb7-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/16395/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/16395/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=16395&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/02/25/ivelina-dimova-the-power-of-option-frameworks/\"><img alt=\"Ivelina Dimova: The Power of Option Frameworks\" src=\"http://videos.videopress.com/QCofbLb7/video-51fba88a84_scruberthumbnail_1.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 25 Feb 2013 07:00:57 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:34;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"WordPress.tv: Bigyan Ghimire: GovtPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=16195\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"http://wordpress.tv/2013/02/25/bigyan-ghimire-govtpress/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:622:\"<div id=\"v-4z053sdp-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/16195/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/16195/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=16195&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/02/25/bigyan-ghimire-govtpress/\"><img alt=\"GovtPress.mov\" src=\"http://videos.videopress.com/4z053sdp/video-7a53bfb555_scruberthumbnail_1.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 25 Feb 2013 07:00:20 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:35;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"WordPress.tv: Marko Heijnen: Rocking a WordPress Network\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=13368\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"http://wordpress.tv/2013/02/25/marko-heijnen-rocking-a-wordpress-network/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:695:\"<div id=\"v-lkViNspn-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/13368/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/13368/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=13368&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/02/25/marko-heijnen-rocking-a-wordpress-network/\"><img alt=\"Marko Heijnen: Rocking a WordPress Network\" src=\"http://videos.videopress.com/lkViNspn/4211-01_rocking_a_wordpress_network_marko_heijnen_std.original.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 25 Feb 2013 07:00:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:36;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"WordPress.tv: Jan Hagen: How do we create great user experiences?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=16397\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"http://wordpress.tv/2013/02/24/jan-hagen-how-do-we-create-great-user-experiences/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:679:\"<div id=\"v-uaHV4SJG-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/16397/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/16397/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=16397&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/02/24/jan-hagen-how-do-we-create-great-user-experiences/\"><img alt=\"Jan Hagen: How do we create great user experiences?\" src=\"http://videos.videopress.com/uaHV4SJG/video-40776f741c_std.original.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 24 Feb 2013 19:00:16 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:37;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"WordPress.tv: David Tufts: Web Apps For The Masses\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=16883\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"http://wordpress.tv/2013/02/24/david-tufts-web-apps-for-the-masses/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:650:\"<div id=\"v-xrFpEgKP-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/16883/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/16883/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=16883&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/02/24/david-tufts-web-apps-for-the-masses/\"><img alt=\"David Tufts: Web Apps For The Masses\" src=\"http://videos.videopress.com/xrFpEgKP/video-a05a33cd6c_std.original.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 24 Feb 2013 07:00:20 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:38;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"WordPress.tv: Sé Reed: WordPress 101 – Installing WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=17396\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"http://wordpress.tv/2013/02/24/se-reed-wordpress-101-installing-wordpress/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:679:\"<div id=\"v-8AgcSoDt-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/17396/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/17396/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=17396&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/02/24/se-reed-wordpress-101-installing-wordpress/\"><img alt=\"Sé Reed: WordPress 101 &#8211; Installing WordPress\" src=\"http://videos.videopress.com/8AgcSoDt/video-2f5bdabfa4_scruberthumbnail_2.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 24 Feb 2013 07:00:01 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:39;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"WordPress.tv: Cristi Burca: Command Line Learnings For Make Benefit Glorious Nation Of WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=16391\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:113:\"http://wordpress.tv/2013/02/23/cristi-burka-command-line-learnings-for-make-benefit-glorious-nation-of-wordpress/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:812:\"<div id=\"v-K3i4bs89-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/16391/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/16391/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=16391&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/02/23/cristi-burka-command-line-learnings-for-make-benefit-glorious-nation-of-wordpress/\"><img alt=\"Cristi Burka-Command Line Learnings For Make Benefit Glorious Nation Of WordPress\" src=\"http://videos.videopress.com/K3i4bs89/cristi-burka-command-line-learnings-for-make-benefit-glorious-nation-of-wordpress_scruberthumbnail_0.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 24 Feb 2013 03:15:10 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:40;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"WordPress.tv: John Hawkins: Introduction to Multisite\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=16945\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"http://wordpress.tv/2013/02/23/john-hawkins-introduction-to-multisite/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:656:\"<div id=\"v-BKzDePi1-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/16945/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/16945/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=16945&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/02/23/john-hawkins-introduction-to-multisite/\"><img alt=\"John Hawkins: Introduction to Multisite\" src=\"http://videos.videopress.com/BKzDePi1/video-e19a94fb3b_std.original.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 23 Feb 2013 19:00:56 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:41;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"WordPress.tv: Justin Briggs: WordPress SEO\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"http://wordpress.tv/?p=6094\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"http://wordpress.tv/2013/02/23/justin-briggs-wordpress-seo/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:641:\"<div id=\"v-jEsieWc4-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/6094/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/6094/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=6094&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/02/23/justin-briggs-wordpress-seo/\"><img alt=\"Justin Briggs WordPress SEO\" src=\"http://videos.videopress.com/jEsieWc4/justin-briggs-wordpress-seo_std.original.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 23 Feb 2013 19:00:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:42;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"Weblog Tools Collection: WordPress Plugin Releases for 2/23\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"http://weblogtoolscollection.com/?p=12701\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"http://feedproxy.google.com/~r/weblogtoolscollection/UXMP/~3/NQqqbEQiLRE/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1282:\"<h3>New plugins</h3>\n<p><a href=\"http://wordpress.org/extend/plugins/emoji-emoticons/\"><strong>Emoji Emoticons</strong></a> provides support for Emoji Emoticons.</p>\n<p><a href=\"http://wordpress.org/extend/plugins/super-cpt/\"><strong>SuperCPT</strong></a> provides insanely easy and attractive custom post types, custom post meta, and custom taxonomies.</p>\n<h3>Updated plugins</h3>\n<p><a href=\"http://wordpress.org/extend/plugins/confident-captcha/\"><strong>Confident CAPTCHA</strong></a> is a clickable, picture CAPTCHA that stops spam and malicious bots, while remaining very easy for people to solve.</p>\n<p><a href=\"http://wordpress.org/extend/plugins/font-emoticons/\"><strong>Font Emoticons</strong></a> replaces WordPress&#8217; smileys with font-based emoticons.</p>\n<p><a href=\"http://wordpress.org/extend/plugins/hotspots/\"><strong>HotSpots</strong></a> draws a heat map of mouse clicks overlayed on your webpage allowing you to improve usability by analyzing user behaviour.</p>\n<p><a href=\"http://wordpress.org/extend/plugins/q2w3-fixed-widget/\"><strong>Q2W3 Fixed Widget</strong></a> fixes positioning of the selected widgets when the page is scrolled down.</p>\n<img src=\"http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/NQqqbEQiLRE\" height=\"1\" width=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 23 Feb 2013 14:00:48 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"James\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:43;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"WordPress.tv: Eric Mann: Building a WordPress Plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=17288\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"http://wordpress.tv/2013/02/23/eric-mann-building-a-wordpress-plugin/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:660:\"<div id=\"v-IVKzR9xx-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/17288/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/17288/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=17288&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/02/23/eric-mann-building-a-wordpress-plugin/\"><img alt=\"Eric Mann: Building a WordPress Plugin\" src=\"http://videos.videopress.com/IVKzR9xx/video-8286b03043_scruberthumbnail_0.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 23 Feb 2013 07:00:50 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:44;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"WordPress.tv: Thomas Griffin: Using Ajax In Your Plugins\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=16881\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"http://wordpress.tv/2013/02/23/thomas-griffin-using-ajax-in-your-plugins-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:664:\"<div id=\"v-kJhTlZoS-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/16881/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/16881/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=16881&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/02/23/thomas-griffin-using-ajax-in-your-plugins-2/\"><img alt=\"Thomas Griffin: Using Ajax In Your Plugins\" src=\"http://videos.videopress.com/kJhTlZoS/video-3ad53c4607_std.original.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 23 Feb 2013 07:00:34 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:45;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"WordPress.tv: Tony Perez: WordPress Security – The Nitty Gritty\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=16844\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"http://wordpress.tv/2013/02/22/tony-perez-wordpress-security-the-nitty-gritty/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:673:\"<div id=\"v-c22rGEbh-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/16844/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/16844/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=16844&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/02/22/tony-perez-wordpress-security-the-nitty-gritty/\"><img alt=\"Tony Perez: WordPress Security- The Nitty Gritty\" src=\"http://videos.videopress.com/c22rGEbh/video-ea91c6d787_std.original.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 22 Feb 2013 19:00:41 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:46;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"WordPress.tv: Zack Tollman: Grokking The WordPress Object Cache\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=16835\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"http://wordpress.tv/2013/02/22/zack-tollman-grokking-the-wordpress-object-cache/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:676:\"<div id=\"v-pRckM0T6-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/16835/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/16835/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=16835&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/02/22/zack-tollman-grokking-the-wordpress-object-cache/\"><img alt=\"Zack Tollman: Grokking The WordPress Object Cache\" src=\"http://videos.videopress.com/pRckM0T6/video-6bee16bf97_std.original.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 22 Feb 2013 19:00:05 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:47;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"Matt: Rapping Truth To Power\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"http://ma.tt/?p=42144\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:44:\"http://ma.tt/2013/02/rapping-truth-to-power/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:483:\"<p><a href=\"http://dish.andrewsullivan.com/2013/02/21/rapping-truth-to-power/\">Rapping Truth To Power</a>. &#8220;The study’s authors concluded that &#8216;the overwhelming message in hip-hop wasn’t that the rappers disliked the idea of justice, but they disliked the way it was being implemented.&#8217;&#8221; This is part of why sites like <a href=\"http://rapgenius.com/\">Rap Genius</a> are so important. <cite>Hat tip: <a href=\"http://www.heyelise.com/\">Elise</a>.</cite></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 22 Feb 2013 15:40:57 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:48;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"WordPress.tv: Nando Caban-Mendez: If You Build It, They Will Come, Right?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=13394\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:87:\"http://wordpress.tv/2013/02/22/nando-caban-mendez-if-you-build-it-they-will-come-right/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:654:\"<div id=\"v-zjdc6mvI-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/13394/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/13394/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=13394&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/02/22/nando-caban-mendez-if-you-build-it-they-will-come-right/\"><img alt=\"Nando Caban-Mendez\" src=\"http://videos.videopress.com/zjdc6mvI/nando-caban-mendez_std.original.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 22 Feb 2013 07:00:56 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:49;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"WordPress.tv: Trafton Esler: Hosting Showdown\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=16838\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"http://wordpress.tv/2013/02/22/trafton-esler-hosting-showdown/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:640:\"<div id=\"v-u2CiH7GL-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/16838/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/16838/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=16838&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/02/22/trafton-esler-hosting-showdown/\"><img alt=\"Trafton Esler: Hosting Showdown\" src=\"http://videos.videopress.com/u2CiH7GL/video-0b9b69cf2c_std.original.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 22 Feb 2013 07:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";a:9:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Sat, 09 Mar 2013 21:40:59 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:14:\"content-length\";s:5:\"88569\";s:10:\"connection\";s:5:\"close\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:13:\"last-modified\";s:29:\"Sat, 09 Mar 2013 21:15:37 GMT\";s:4:\"x-nc\";s:11:\"HIT luv 139\";s:13:\"accept-ranges\";s:5:\"bytes\";}s:5:\"build\";s:14:\"20090627192103\";}", "no");
INSERT INTO `wp_options` VALUES("908", "0", "_WPMSG_CurrentSite", "123", "yes");
INSERT INTO `wp_options` VALUES("911", "0", "_site_transient_timeout_browser_7525991292230ded02f335bd9024d439", "1361898869", "yes");
INSERT INTO `wp_options` VALUES("912", "0", "_site_transient_browser_7525991292230ded02f335bd9024d439", "a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:7:\"Firefox\";s:7:\"version\";s:4:\"19.0\";s:10:\"update_url\";s:23:\"http://www.firefox.com/\";s:7:\"img_src\";s:50:\"http://s.wordpress.org/images/browsers/firefox.png\";s:11:\"img_src_ssl\";s:49:\"https://wordpress.org/images/browsers/firefox.png\";s:15:\"current_version\";s:2:\"16\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}", "yes");
INSERT INTO `wp_options` VALUES("1527", "0", "_transient_timeout_plugin_slugs", "1362951992", "no");
INSERT INTO `wp_options` VALUES("1528", "0", "_transient_plugin_slugs", "a:10:{i:0;s:19:\"akismet/akismet.php\";i:1;s:24:\"bd-hit-counter/image.php\";i:2;s:47:\"bounce-grab-corner-peel-exit-pop/bouncegrab.php\";i:3;s:25:\"duplicator/duplicator.php\";i:4;s:35:\"EzMobileRedirectGenerator/index.php\";i:5;s:31:\"EzMobileSiteGenerator/index.php\";i:6;s:37:\"jquery-page-peel/jquery-page-peel.php\";i:7;s:29:\"offline-pandemic/fbposter.php\";i:8;s:37:\"tinymce-advanced/tinymce-advanced.php\";i:9;s:30:\"wp-pinsuite/pinterest-auto.php\";}", "no");
INSERT INTO `wp_options` VALUES("1386", "0", "_site_transient_timeout_wporg_theme_feature_list", "1362619119", "yes");
INSERT INTO `wp_options` VALUES("1387", "0", "_site_transient_wporg_theme_feature_list", "a:5:{s:6:\"Colors\";a:15:{i:0;s:5:\"black\";i:1;s:4:\"blue\";i:2;s:5:\"brown\";i:3;s:4:\"gray\";i:4;s:5:\"green\";i:5;s:6:\"orange\";i:6;s:4:\"pink\";i:7;s:6:\"purple\";i:8;s:3:\"red\";i:9;s:6:\"silver\";i:10;s:3:\"tan\";i:11;s:5:\"white\";i:12;s:6:\"yellow\";i:13;s:4:\"dark\";i:14;s:5:\"light\";}s:7:\"Columns\";a:6:{i:0;s:10:\"one-column\";i:1;s:11:\"two-columns\";i:2;s:13:\"three-columns\";i:3;s:12:\"four-columns\";i:4;s:12:\"left-sidebar\";i:5;s:13:\"right-sidebar\";}s:5:\"Width\";a:2:{i:0;s:11:\"fixed-width\";i:1;s:14:\"flexible-width\";}s:8:\"Features\";a:19:{i:0;s:8:\"blavatar\";i:1;s:10:\"buddypress\";i:2;s:17:\"custom-background\";i:3;s:13:\"custom-colors\";i:4;s:13:\"custom-header\";i:5;s:11:\"custom-menu\";i:6;s:12:\"editor-style\";i:7;s:21:\"featured-image-header\";i:8;s:15:\"featured-images\";i:9;s:15:\"flexible-header\";i:10;s:20:\"front-page-post-form\";i:11;s:19:\"full-width-template\";i:12;s:12:\"microformats\";i:13;s:12:\"post-formats\";i:14;s:20:\"rtl-language-support\";i:15;s:11:\"sticky-post\";i:16;s:13:\"theme-options\";i:17;s:17:\"threaded-comments\";i:18;s:17:\"translation-ready\";}s:7:\"Subject\";a:3:{i:0;s:7:\"holiday\";i:1;s:13:\"photoblogging\";i:2;s:8:\"seasonal\";}}", "yes");
INSERT INTO `wp_options` VALUES("871", "0", "_site_transient_browser_0500d055af73003b7bc4fe19036bbffc", "a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:12:\"24.0.1312.57\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}", "yes");
INSERT INTO `wp_options` VALUES("204", "0", "theme_mods_twentyeleven", "a:1:{s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1359833741;s:4:\"data\";a:6:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}s:9:\"sidebar-4\";a:0:{}s:9:\"sidebar-5\";a:0:{}}}}", "yes");
INSERT INTO `wp_options` VALUES("206", "0", "theme_mods_wpEnigma", "a:2:{i:0;b:0;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1362608316;s:4:\"data\";a:6:{s:19:\"wp_inactive_widgets\";a:0:{}s:15:\"sidebar-widgets\";a:5:{i:0;s:14:\"recent-posts-2\";i:1;s:17:\"recent-comments-2\";i:2;s:10:\"archives-2\";i:3;s:12:\"categories-2\";i:4;s:6:\"meta-2\";}s:15:\"footer1-widgets\";a:0:{}s:15:\"footer2-widgets\";a:0:{}s:15:\"footer3-widgets\";a:0:{}s:15:\"footer4-widgets\";a:0:{}}}}", "yes");
INSERT INTO `wp_options` VALUES("207", "0", "theme_switched", "", "yes");
INSERT INTO `wp_options` VALUES("212", "0", "key", "klho26hybi3s27", "yes");
INSERT INTO `wp_options` VALUES("208", "0", "of_options", "a:53:{s:0:\"\";N;s:4:\"logo\";s:0:\"\";s:6:\"layout\";s:8:\"2c-r.css\";s:14:\"custom_favicon\";s:0:\"\";s:16:\"google_analytics\";s:0:\"\";s:18:\"enig-checkfullpost\";b:0;s:16:\"enig-hbackground\";s:7:\"#ded5c9\";s:15:\"enig-background\";s:7:\"#643b02\";s:7:\"enig-bg\";s:0:\"\";s:11:\"footer_text\";s:28:\"&copy; 2012 Company Name Inc\";s:9:\"body_font\";a:4:{s:4:\"size\";s:4:\"13px\";s:4:\"face\";s:5:\"times\";s:5:\"style\";s:6:\"normal\";s:5:\"color\";s:7:\"#8e8e8e\";}s:10:\"custom_css\";s:0:\"\";s:12:\"enig-rotator\";b:1;s:11:\"enig-slider\";s:11:\"slider1.php\";s:18:\"enig-checkcarousel\";b:1;s:22:\"enig-postfoliocarousel\";s:18:\"Select a category:\";s:19:\"enig-checkcarousel1\";b:1;s:23:\"enig-postfoliocarousel1\";s:18:\"Select a category:\";s:18:\"enig-checkpurchase\";b:1;s:13:\"enig-purchase\";s:56:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit.\";s:17:\"enig-purchasetext\";s:9:\"Read More\";s:17:\"enig-purchaselink\";s:0:\"\";s:15:\"enig-checktesti\";b:1;s:18:\"enig-titleboxtesti\";s:10:\"What We Do\";s:13:\"enig-cattesti\";s:18:\"Select a category:\";s:15:\"enig-titletesti\";s:12:\"Testimonials\";s:14:\"enig=texttesti\";s:0:\"\";s:14:\"enig-checkbox1\";b:1;s:20:\"enig-featuretextbox1\";s:12:\"Feature Post\";s:16:\"enig-featurebox1\";s:0:\"\";s:14:\"enig-titlebox1\";s:10:\"Title Here\";s:17:\"enig-subtitlebox1\";s:8:\"Subtitle\";s:17:\"enig-featuredboxl\";s:14:\"Select a post:\";s:15:\"enig-video1box1\";s:18:\"Select a category:\";s:19:\"enig-rotator-image1\";s:74:\"http://tampa.keylocksmith.in/fl/wp-content/uploads/2013/02/KeyHeader91.png\";s:19:\"enig-rotator-image2\";s:0:\"\";s:19:\"enig-rotator-image3\";s:0:\"\";s:19:\"enig-rotator-image4\";s:0:\"\";s:19:\"enig-rotator-image5\";s:0:\"\";s:17:\"enig-slider-title\";s:0:\"\";s:15:\"enig-slider-url\";s:0:\"\";s:16:\"enig-slider-info\";s:0:\"\";s:19:\"enig-product-image1\";s:0:\"\";s:19:\"enig-product-image2\";s:0:\"\";s:19:\"enig-product-image3\";s:0:\"\";s:19:\"enig-product-image4\";s:0:\"\";s:13:\"enig-carousel\";s:18:\"Select a category:\";s:14:\"enig-postfolio\";s:18:\"Select a category:\";s:13:\"enig-facebook\";s:0:\"\";s:10:\"enig-yahoo\";s:0:\"\";s:12:\"enig-twitter\";s:0:\"\";s:13:\"enig-linkedin\";s:0:\"\";s:11:\"enig-google\";s:0:\"\";}", "yes");
INSERT INTO `wp_options` VALUES("514", "0", "plg_autoplay", "true", "yes");
INSERT INTO `wp_options` VALUES("515", "0", "plg_email_override", "", "yes");
INSERT INTO `wp_options` VALUES("637", "0", "fbvoter_license", "", "yes");
INSERT INTO `wp_options` VALUES("211", "0", "theme_mods_RockStarLeadTheme-v2-3", "a:2:{i:0;b:0;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1360286988;s:4:\"data\";a:2:{s:19:\"wp_inactive_widgets\";a:0:{}s:7:\"Sidebar\";a:4:{i:0;s:14:\"recent-posts-2\";i:1;s:10:\"archives-2\";i:2;s:12:\"categories-2\";i:3;s:6:\"meta-2\";}}}}", "yes");
INSERT INTO `wp_options` VALUES("214", "0", "plg_alt_background", "blue", "yes");
INSERT INTO `wp_options` VALUES("215", "0", "plg_sidebar_contact_img", "blue-female", "yes");
INSERT INTO `wp_options` VALUES("216", "0", "plg_top_bar_text", "Best Locksmith In Tampa Florida", "yes");
INSERT INTO `wp_options` VALUES("217", "0", "plg_header_image", "http://tampa.keylocksmith.in/fl/wp-content/uploads/2013/02/KeyHeader10.png", "yes");
INSERT INTO `wp_options` VALUES("218", "0", "plg_header_image_on", "true", "yes");
INSERT INTO `wp_options` VALUES("219", "0", "plg_email_address", "keifersfl@aol.com", "yes");
INSERT INTO `wp_options` VALUES("220", "0", "plg_ccemail_address", "", "yes");
INSERT INTO `wp_options` VALUES("221", "0", "plg_phone_number", "813-314-7840", "yes");
INSERT INTO `wp_options` VALUES("222", "0", "plg_form_heading", "Request   Report", "yes");
INSERT INTO `wp_options` VALUES("223", "0", "plg_form_add", "Your Project", "yes");
INSERT INTO `wp_options` VALUES("224", "0", "plg_video", "LOxhryw0iAw", "yes");
INSERT INTO `wp_options` VALUES("225", "0", "plg_video_text", "", "yes");
INSERT INTO `wp_options` VALUES("226", "0", "plg_list_1", "24 Hour Road Side Service", "yes");
INSERT INTO `wp_options` VALUES("227", "0", "plg_list_2", "", "yes");
INSERT INTO `wp_options` VALUES("228", "0", "plg_list_3", "Emergency House Calls", "yes");
INSERT INTO `wp_options` VALUES("229", "0", "plg_list_4", "", "yes");
INSERT INTO `wp_options` VALUES("230", "0", "plg_list_5", "", "yes");
INSERT INTO `wp_options` VALUES("231", "0", "plg_list_6", "", "yes");
INSERT INTO `wp_options` VALUES("232", "0", "plg_list_7", "", "yes");
INSERT INTO `wp_options` VALUES("233", "0", "plg_list_8", "", "yes");
INSERT INTO `wp_options` VALUES("234", "0", "plg_list_9", "", "yes");
INSERT INTO `wp_options` VALUES("235", "0", "plg_list_10", "", "yes");
INSERT INTO `wp_options` VALUES("236", "0", "plg_facebook_id", "", "yes");
INSERT INTO `wp_options` VALUES("237", "0", "plg_twitter_id", "", "yes");
INSERT INTO `wp_options` VALUES("238", "0", "plg_copyright", "", "yes");
INSERT INTO `wp_options` VALUES("239", "0", "plg_analytics_code", "", "yes");
INSERT INTO `wp_options` VALUES("870", "0", "_site_transient_timeout_browser_0500d055af73003b7bc4fe19036bbffc", "1361890672", "yes");
INSERT INTO `wp_options` VALUES("636", "0", "fbvoter_activate", "0", "yes");
INSERT INTO `wp_options` VALUES("280", "0", "plg_form_message", "true", "yes");
INSERT INTO `wp_options` VALUES("282", "0", "plg_form_project", "true", "yes");
INSERT INTO `wp_options` VALUES("1264", "0", "category_children", "a:0:{}", "yes");
INSERT INTO `wp_options` VALUES("373", "0", "recently_activated", "a:4:{s:30:\"wp-pinsuite/pinterest-auto.php\";i:1362606700;s:47:\"bounce-grab-corner-peel-exit-pop/bouncegrab.php\";i:1362606453;s:24:\"bd-hit-counter/image.php\";i:1362606440;s:35:\"EzMobileRedirectGenerator/index.php\";i:1362605375;}", "yes");
INSERT INTO `wp_options` VALUES("1531", "0", "_site_transient_timeout_poptags_40cd750bba9870f18aada2478b24840a", "1362876359", "yes");
INSERT INTO `wp_options` VALUES("1532", "0", "_site_transient_poptags_40cd750bba9870f18aada2478b24840a", "a:40:{s:6:\"widget\";a:3:{s:4:\"name\";s:6:\"widget\";s:4:\"slug\";s:6:\"widget\";s:5:\"count\";s:4:\"3406\";}s:4:\"post\";a:3:{s:4:\"name\";s:4:\"Post\";s:4:\"slug\";s:4:\"post\";s:5:\"count\";s:4:\"2207\";}s:6:\"plugin\";a:3:{s:4:\"name\";s:6:\"plugin\";s:4:\"slug\";s:6:\"plugin\";s:5:\"count\";s:4:\"2091\";}s:5:\"admin\";a:3:{s:4:\"name\";s:5:\"admin\";s:4:\"slug\";s:5:\"admin\";s:5:\"count\";s:4:\"1732\";}s:5:\"posts\";a:3:{s:4:\"name\";s:5:\"posts\";s:4:\"slug\";s:5:\"posts\";s:5:\"count\";s:4:\"1645\";}s:7:\"sidebar\";a:3:{s:4:\"name\";s:7:\"sidebar\";s:4:\"slug\";s:7:\"sidebar\";s:5:\"count\";s:4:\"1450\";}s:7:\"twitter\";a:3:{s:4:\"name\";s:7:\"twitter\";s:4:\"slug\";s:7:\"twitter\";s:5:\"count\";s:4:\"1165\";}s:6:\"google\";a:3:{s:4:\"name\";s:6:\"google\";s:4:\"slug\";s:6:\"google\";s:5:\"count\";s:4:\"1161\";}s:8:\"comments\";a:3:{s:4:\"name\";s:8:\"comments\";s:4:\"slug\";s:8:\"comments\";s:5:\"count\";s:4:\"1153\";}s:6:\"images\";a:3:{s:4:\"name\";s:6:\"images\";s:4:\"slug\";s:6:\"images\";s:5:\"count\";s:4:\"1119\";}s:4:\"page\";a:3:{s:4:\"name\";s:4:\"page\";s:4:\"slug\";s:4:\"page\";s:5:\"count\";s:4:\"1066\";}s:5:\"image\";a:3:{s:4:\"name\";s:5:\"image\";s:4:\"slug\";s:5:\"image\";s:5:\"count\";s:3:\"983\";}s:5:\"links\";a:3:{s:4:\"name\";s:5:\"links\";s:4:\"slug\";s:5:\"links\";s:5:\"count\";s:3:\"892\";}s:3:\"seo\";a:3:{s:4:\"name\";s:3:\"seo\";s:4:\"slug\";s:3:\"seo\";s:5:\"count\";s:3:\"836\";}s:8:\"facebook\";a:3:{s:4:\"name\";s:8:\"Facebook\";s:4:\"slug\";s:8:\"facebook\";s:5:\"count\";s:3:\"826\";}s:9:\"shortcode\";a:3:{s:4:\"name\";s:9:\"shortcode\";s:4:\"slug\";s:9:\"shortcode\";s:5:\"count\";s:3:\"767\";}s:9:\"wordpress\";a:3:{s:4:\"name\";s:9:\"wordpress\";s:4:\"slug\";s:9:\"wordpress\";s:5:\"count\";s:3:\"724\";}s:7:\"gallery\";a:3:{s:4:\"name\";s:7:\"gallery\";s:4:\"slug\";s:7:\"gallery\";s:5:\"count\";s:3:\"719\";}s:6:\"social\";a:3:{s:4:\"name\";s:6:\"social\";s:4:\"slug\";s:6:\"social\";s:5:\"count\";s:3:\"665\";}s:3:\"rss\";a:3:{s:4:\"name\";s:3:\"rss\";s:4:\"slug\";s:3:\"rss\";s:5:\"count\";s:3:\"664\";}s:5:\"pages\";a:3:{s:4:\"name\";s:5:\"pages\";s:4:\"slug\";s:5:\"pages\";s:5:\"count\";s:3:\"617\";}s:7:\"widgets\";a:3:{s:4:\"name\";s:7:\"widgets\";s:4:\"slug\";s:7:\"widgets\";s:5:\"count\";s:3:\"613\";}s:6:\"jquery\";a:3:{s:4:\"name\";s:6:\"jquery\";s:4:\"slug\";s:6:\"jquery\";s:5:\"count\";s:3:\"593\";}s:4:\"ajax\";a:3:{s:4:\"name\";s:4:\"AJAX\";s:4:\"slug\";s:4:\"ajax\";s:5:\"count\";s:3:\"573\";}s:5:\"email\";a:3:{s:4:\"name\";s:5:\"email\";s:4:\"slug\";s:5:\"email\";s:5:\"count\";s:3:\"524\";}s:5:\"media\";a:3:{s:4:\"name\";s:5:\"media\";s:4:\"slug\";s:5:\"media\";s:5:\"count\";s:3:\"503\";}s:10:\"buddypress\";a:3:{s:4:\"name\";s:10:\"buddypress\";s:4:\"slug\";s:10:\"buddypress\";s:5:\"count\";s:3:\"498\";}s:10:\"javascript\";a:3:{s:4:\"name\";s:10:\"javascript\";s:4:\"slug\";s:10:\"javascript\";s:5:\"count\";s:3:\"496\";}s:5:\"video\";a:3:{s:4:\"name\";s:5:\"video\";s:4:\"slug\";s:5:\"video\";s:5:\"count\";s:3:\"490\";}s:4:\"feed\";a:3:{s:4:\"name\";s:4:\"feed\";s:4:\"slug\";s:4:\"feed\";s:5:\"count\";s:3:\"471\";}s:5:\"photo\";a:3:{s:4:\"name\";s:5:\"photo\";s:4:\"slug\";s:5:\"photo\";s:5:\"count\";s:3:\"466\";}s:7:\"content\";a:3:{s:4:\"name\";s:7:\"content\";s:4:\"slug\";s:7:\"content\";s:5:\"count\";s:3:\"444\";}s:6:\"photos\";a:3:{s:4:\"name\";s:6:\"photos\";s:4:\"slug\";s:6:\"photos\";s:5:\"count\";s:3:\"441\";}s:4:\"link\";a:3:{s:4:\"name\";s:4:\"link\";s:4:\"slug\";s:4:\"link\";s:5:\"count\";s:3:\"432\";}s:8:\"category\";a:3:{s:4:\"name\";s:8:\"category\";s:4:\"slug\";s:8:\"category\";s:5:\"count\";s:3:\"404\";}s:4:\"spam\";a:3:{s:4:\"name\";s:4:\"spam\";s:4:\"slug\";s:4:\"spam\";s:5:\"count\";s:3:\"401\";}s:5:\"stats\";a:3:{s:4:\"name\";s:5:\"stats\";s:4:\"slug\";s:5:\"stats\";s:5:\"count\";s:3:\"399\";}s:5:\"flash\";a:3:{s:4:\"name\";s:5:\"flash\";s:4:\"slug\";s:5:\"flash\";s:5:\"count\";s:3:\"383\";}s:7:\"youtube\";a:3:{s:4:\"name\";s:7:\"youtube\";s:4:\"slug\";s:7:\"youtube\";s:5:\"count\";s:3:\"382\";}s:7:\"comment\";a:3:{s:4:\"name\";s:7:\"comment\";s:4:\"slug\";s:7:\"comment\";s:5:\"count\";s:3:\"378\";}}", "yes");
INSERT INTO `wp_options` VALUES("377", "0", "_transient_plugins_delete_result_1", "1", "yes");
INSERT INTO `wp_options` VALUES("379", "0", "tadv_version", "3420", "yes");
INSERT INTO `wp_options` VALUES("380", "0", "tadv_plugins", "a:6:{i:0;s:5:\"style\";i:1;s:8:\"emotions\";i:2;s:5:\"print\";i:3;s:13:\"searchreplace\";i:4;s:10:\"xhtmlxtras\";i:5;s:8:\"advimage\";}", "yes");
INSERT INTO `wp_options` VALUES("381", "0", "tadv_options", "a:7:{s:8:\"advlink1\";i:0;s:8:\"advimage\";i:1;s:11:\"editorstyle\";i:0;s:11:\"hideclasses\";i:0;s:11:\"contextmenu\";i:0;s:8:\"no_autop\";i:0;s:7:\"advlist\";i:0;}", "yes");
INSERT INTO `wp_options` VALUES("382", "0", "tadv_toolbars", "a:4:{s:9:\"toolbar_1\";a:27:{i:0;s:4:\"bold\";i:1;s:6:\"italic\";i:2;s:13:\"strikethrough\";i:3;s:9:\"underline\";i:4;s:10:\"separator1\";i:5;s:7:\"bullist\";i:6;s:7:\"numlist\";i:7;s:7:\"outdent\";i:8;s:6:\"indent\";i:9;s:10:\"separator2\";i:10;s:11:\"justifyleft\";i:11;s:13:\"justifycenter\";i:12;s:12:\"justifyright\";i:13;s:10:\"separator3\";i:14;s:4:\"link\";i:15;s:6:\"unlink\";i:16;s:10:\"separator4\";i:17;s:5:\"image\";i:18;s:10:\"styleprops\";i:19;s:11:\"separator12\";i:20;s:7:\"wp_more\";i:21;s:7:\"wp_page\";i:22;s:10:\"separator5\";i:23;s:12:\"spellchecker\";i:24;s:6:\"search\";i:25;s:10:\"separator6\";i:26;s:10:\"fullscreen\";}s:9:\"toolbar_2\";a:21:{i:0;s:14:\"fontsizeselect\";i:1;s:12:\"formatselect\";i:2;s:9:\"pastetext\";i:3;s:9:\"pasteword\";i:4;s:12:\"removeformat\";i:5;s:10:\"separator8\";i:6;s:7:\"charmap\";i:7;s:5:\"print\";i:8;s:10:\"separator9\";i:9;s:9:\"forecolor\";i:10;s:9:\"backcolor\";i:11;s:8:\"emotions\";i:12;s:11:\"separator10\";i:13;s:3:\"sup\";i:14;s:3:\"sub\";i:15;s:5:\"media\";i:16;s:11:\"separator11\";i:17;s:4:\"undo\";i:18;s:4:\"redo\";i:19;s:7:\"attribs\";i:20;s:7:\"wp_help\";}s:9:\"toolbar_3\";a:3:{i:0;s:10:\"fontselect\";i:1;s:11:\"styleselect\";i:2;s:11:\"justifyfull\";}s:9:\"toolbar_4\";a:0:{}}", "no");
INSERT INTO `wp_options` VALUES("383", "0", "tadv_btns1", "a:27:{i:0;s:4:\"bold\";i:1;s:6:\"italic\";i:2;s:13:\"strikethrough\";i:3;s:9:\"underline\";i:4;s:9:\"separator\";i:5;s:7:\"bullist\";i:6;s:7:\"numlist\";i:7;s:7:\"outdent\";i:8;s:6:\"indent\";i:9;s:9:\"separator\";i:10;s:11:\"justifyleft\";i:11;s:13:\"justifycenter\";i:12;s:12:\"justifyright\";i:13;s:9:\"separator\";i:14;s:4:\"link\";i:15;s:6:\"unlink\";i:16;s:9:\"separator\";i:17;s:5:\"image\";i:18;s:10:\"styleprops\";i:19;s:9:\"separator\";i:20;s:7:\"wp_more\";i:21;s:7:\"wp_page\";i:22;s:9:\"separator\";i:23;s:12:\"spellchecker\";i:24;s:6:\"search\";i:25;s:9:\"separator\";i:26;s:10:\"fullscreen\";}", "no");
INSERT INTO `wp_options` VALUES("384", "0", "tadv_btns2", "a:21:{i:0;s:14:\"fontsizeselect\";i:1;s:12:\"formatselect\";i:2;s:9:\"pastetext\";i:3;s:9:\"pasteword\";i:4;s:12:\"removeformat\";i:5;s:9:\"separator\";i:6;s:7:\"charmap\";i:7;s:5:\"print\";i:8;s:9:\"separator\";i:9;s:9:\"forecolor\";i:10;s:9:\"backcolor\";i:11;s:8:\"emotions\";i:12;s:9:\"separator\";i:13;s:3:\"sup\";i:14;s:3:\"sub\";i:15;s:5:\"media\";i:16;s:9:\"separator\";i:17;s:4:\"undo\";i:18;s:4:\"redo\";i:19;s:7:\"attribs\";i:20;s:7:\"wp_help\";}", "no");
INSERT INTO `wp_options` VALUES("385", "0", "tadv_btns3", "a:3:{i:0;s:10:\"fontselect\";i:1;s:11:\"styleselect\";i:2;s:11:\"justifyfull\";}", "no");
INSERT INTO `wp_options` VALUES("386", "0", "tadv_btns4", "a:0:{}", "no");
INSERT INTO `wp_options` VALUES("387", "0", "tadv_allbtns", "a:66:{i:0;s:2:\"hr\";i:1;s:6:\"wp_adv\";i:2;s:10:\"blockquote\";i:3;s:4:\"bold\";i:4;s:6:\"italic\";i:5;s:13:\"strikethrough\";i:6;s:9:\"underline\";i:7;s:7:\"bullist\";i:8;s:7:\"numlist\";i:9;s:7:\"outdent\";i:10;s:6:\"indent\";i:11;s:11:\"justifyleft\";i:12;s:13:\"justifycenter\";i:13;s:12:\"justifyright\";i:14;s:11:\"justifyfull\";i:15;s:3:\"cut\";i:16;s:4:\"copy\";i:17;s:5:\"paste\";i:18;s:4:\"link\";i:19;s:6:\"unlink\";i:20;s:5:\"image\";i:21;s:7:\"wp_more\";i:22;s:7:\"wp_page\";i:23;s:6:\"search\";i:24;s:7:\"replace\";i:25;s:10:\"fontselect\";i:26;s:14:\"fontsizeselect\";i:27;s:7:\"wp_help\";i:28;s:10:\"fullscreen\";i:29;s:11:\"styleselect\";i:30;s:12:\"formatselect\";i:31;s:9:\"forecolor\";i:32;s:9:\"backcolor\";i:33;s:9:\"pastetext\";i:34;s:9:\"pasteword\";i:35;s:12:\"removeformat\";i:36;s:7:\"cleanup\";i:37;s:12:\"spellchecker\";i:38;s:7:\"charmap\";i:39;s:5:\"print\";i:40;s:4:\"undo\";i:41;s:4:\"redo\";i:42;s:13:\"tablecontrols\";i:43;s:4:\"cite\";i:44;s:3:\"ins\";i:45;s:3:\"del\";i:46;s:4:\"abbr\";i:47;s:7:\"acronym\";i:48;s:7:\"attribs\";i:49;s:5:\"layer\";i:50;s:5:\"advhr\";i:51;s:4:\"code\";i:52;s:11:\"visualchars\";i:53;s:11:\"nonbreaking\";i:54;s:3:\"sub\";i:55;s:3:\"sup\";i:56;s:9:\"visualaid\";i:57;s:10:\"insertdate\";i:58;s:10:\"inserttime\";i:59;s:6:\"anchor\";i:60;s:10:\"styleprops\";i:61;s:8:\"emotions\";i:62;s:5:\"media\";i:63;s:7:\"iespell\";i:64;s:9:\"separator\";i:65;s:1:\"|\";}", "no");
INSERT INTO `wp_options` VALUES("390", "0", "_transient_random_seed", "389620ecf1b394242bbaf0fd64089edd", "yes");
INSERT INTO `wp_options` VALUES("394", "0", "DEF_WPMSGREG_USERNAME", "", "yes");
INSERT INTO `wp_options` VALUES("395", "0", "DEF_WPMSGREG_EMAIL", "", "yes");
INSERT INTO `wp_options` VALUES("396", "0", "_WPMSG_DEFPageTheme", "EzThemeBlueOnBlue", "yes");
INSERT INTO `wp_options` VALUES("397", "0", "_WPMSG_DEFMenuStyle", "Vertical", "yes");
INSERT INTO `wp_options` VALUES("398", "0", "_WPMSG_DEFMenuPosition", "T", "yes");
INSERT INTO `wp_options` VALUES("399", "0", "_WPMSG_DEFDisplayQRCode", "Y", "yes");
INSERT INTO `wp_options` VALUES("400", "0", "_WPMSG_DEFDisplayPreview", "Y", "yes");
INSERT INTO `wp_options` VALUES("401", "0", "_WPMSG_DEFMapZoom", "14", "yes");
INSERT INTO `wp_options` VALUES("402", "0", "_WPMSG_DEFDirectionsPrompt", "Start Location", "yes");
INSERT INTO `wp_options` VALUES("403", "0", "_WPMSG_DEFDirectionsButtonText", "Get Directions", "yes");
INSERT INTO `wp_options` VALUES("404", "0", "_WPMSG_DEFDirectionsPosition", "A", "yes");
INSERT INTO `wp_options` VALUES("405", "0", "_WPMSG_DEFOptinNamePrompt", "Name", "yes");
INSERT INTO `wp_options` VALUES("406", "0", "_WPMSG_DEFOptinEmailPrompt", "Email", "yes");
INSERT INTO `wp_options` VALUES("407", "0", "_WPMSG_DEFOptinSubmitPrompt", "Submit", "yes");
INSERT INTO `wp_options` VALUES("408", "0", "_WPMSG_DEFContactNamePrompt", "Name", "yes");
INSERT INTO `wp_options` VALUES("409", "0", "_WPMSG_DEFContactPhonePrompt", "Telephone", "yes");
INSERT INTO `wp_options` VALUES("410", "0", "_WPMSG_DEFContactEmailPrompt", "Email", "yes");
INSERT INTO `wp_options` VALUES("411", "0", "_WPMSG_DEFContactMessagePrompt", "Enter Your Message", "yes");
INSERT INTO `wp_options` VALUES("412", "0", "_WPMSG_DEFContactSubmitPrompt", "Send Message", "yes");
INSERT INTO `wp_options` VALUES("413", "0", "_WPMSG_DEFWPMSGDEFContactAcknowledgementDisplayMessage", "Thank You. Your message has been sent.", "yes");
INSERT INTO `wp_options` VALUES("414", "0", "_WPMSG_ThemesActivated", "Y", "yes");
INSERT INTO `wp_options` VALUES("415", "0", "_WPMSG_VersionNbr", "4.00.04", "yes");
INSERT INTO `wp_options` VALUES("416", "0", "_WPMSG_SitemapRebuildReqd", "", "yes");

/* INSERT TABLE DATA: wp_postmeta */
INSERT INTO `wp_postmeta` VALUES("13", "9", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"935\";s:6:\"height\";s:3:\"600\";s:14:\"hwstring_small\";s:23:\"height=\'82\' width=\'128\'\";s:4:\"file\";s:20:\"2013/02/Graphic1.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:20:\"Graphic1-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:20:\"Graphic1-300x192.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"192\";}s:21:\"single-post-thumbnail\";a:3:{s:4:\"file\";s:18:\"Graphic1-75x48.jpg\";s:5:\"width\";s:2:\"75\";s:6:\"height\";s:2:\"48\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("12", "9", "_wp_attached_file", "2013/02/Graphic1.jpg");
INSERT INTO `wp_postmeta` VALUES("11", "8", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"975\";s:6:\"height\";s:3:\"175\";s:14:\"hwstring_small\";s:23:\"height=\'22\' width=\'128\'\";s:4:\"file\";s:19:\"2013/02/header1.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:19:\"header1-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:18:\"header1-300x53.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:2:\"53\";}s:21:\"single-post-thumbnail\";a:3:{s:4:\"file\";s:17:\"header1-75x13.jpg\";s:5:\"width\";s:2:\"75\";s:6:\"height\";s:2:\"13\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("10", "8", "_wp_attached_file", "2013/02/header1.jpg");
INSERT INTO `wp_postmeta` VALUES("14", "10", "_wp_attached_file", "2013/02/Graphic2.jpg");
INSERT INTO `wp_postmeta` VALUES("15", "10", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:14:\"hwstring_small\";s:23:\"height=\'96\' width=\'128\'\";s:4:\"file\";s:20:\"2013/02/Graphic2.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:20:\"Graphic2-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:20:\"Graphic2-300x225.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"225\";}s:21:\"single-post-thumbnail\";a:3:{s:4:\"file\";s:18:\"Graphic2-75x56.jpg\";s:5:\"width\";s:2:\"75\";s:6:\"height\";s:2:\"56\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("16", "11", "_wp_attached_file", "2013/02/Graphic21.jpg");
INSERT INTO `wp_postmeta` VALUES("17", "11", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"935\";s:6:\"height\";s:3:\"600\";s:14:\"hwstring_small\";s:23:\"height=\'82\' width=\'128\'\";s:4:\"file\";s:21:\"2013/02/Graphic21.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:21:\"Graphic21-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:21:\"Graphic21-300x192.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"192\";}s:21:\"single-post-thumbnail\";a:3:{s:4:\"file\";s:19:\"Graphic21-75x48.jpg\";s:5:\"width\";s:2:\"75\";s:6:\"height\";s:2:\"48\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("18", "12", "_wp_attached_file", "2013/02/Graphic22.jpg");
INSERT INTO `wp_postmeta` VALUES("19", "12", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"935\";s:6:\"height\";s:3:\"550\";s:14:\"hwstring_small\";s:23:\"height=\'75\' width=\'128\'\";s:4:\"file\";s:21:\"2013/02/Graphic22.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:21:\"Graphic22-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:21:\"Graphic22-300x176.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"176\";}s:21:\"single-post-thumbnail\";a:3:{s:4:\"file\";s:19:\"Graphic22-75x44.jpg\";s:5:\"width\";s:2:\"75\";s:6:\"height\";s:2:\"44\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("20", "13", "_wp_attached_file", "2013/02/Graphic23.jpg");
INSERT INTO `wp_postmeta` VALUES("21", "13", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"935\";s:6:\"height\";s:3:\"400\";s:14:\"hwstring_small\";s:23:\"height=\'54\' width=\'128\'\";s:4:\"file\";s:21:\"2013/02/Graphic23.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:21:\"Graphic23-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:21:\"Graphic23-300x128.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"128\";}s:21:\"single-post-thumbnail\";a:3:{s:4:\"file\";s:19:\"Graphic23-75x32.jpg\";s:5:\"width\";s:2:\"75\";s:6:\"height\";s:2:\"32\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("22", "14", "_wp_attached_file", "2013/02/KeyHeader1.png");
INSERT INTO `wp_postmeta` VALUES("23", "14", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"939\";s:6:\"height\";s:3:\"401\";s:14:\"hwstring_small\";s:23:\"height=\'54\' width=\'128\'\";s:4:\"file\";s:22:\"2013/02/KeyHeader1.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:22:\"KeyHeader1-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:22:\"KeyHeader1-300x128.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"128\";}s:21:\"single-post-thumbnail\";a:3:{s:4:\"file\";s:20:\"KeyHeader1-75x32.png\";s:5:\"width\";s:2:\"75\";s:6:\"height\";s:2:\"32\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("24", "15", "_wp_attached_file", "2013/02/KeyHeader2.png");
INSERT INTO `wp_postmeta` VALUES("25", "15", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"939\";s:6:\"height\";s:3:\"401\";s:14:\"hwstring_small\";s:23:\"height=\'54\' width=\'128\'\";s:4:\"file\";s:22:\"2013/02/KeyHeader2.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:22:\"KeyHeader2-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:22:\"KeyHeader2-300x128.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"128\";}s:21:\"single-post-thumbnail\";a:3:{s:4:\"file\";s:20:\"KeyHeader2-75x32.png\";s:5:\"width\";s:2:\"75\";s:6:\"height\";s:2:\"32\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("26", "16", "_wp_attached_file", "2013/02/KeyHeader3.png");
INSERT INTO `wp_postmeta` VALUES("27", "16", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"939\";s:6:\"height\";s:3:\"401\";s:14:\"hwstring_small\";s:23:\"height=\'54\' width=\'128\'\";s:4:\"file\";s:22:\"2013/02/KeyHeader3.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:22:\"KeyHeader3-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:22:\"KeyHeader3-300x128.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"128\";}s:21:\"single-post-thumbnail\";a:3:{s:4:\"file\";s:20:\"KeyHeader3-75x32.png\";s:5:\"width\";s:2:\"75\";s:6:\"height\";s:2:\"32\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("28", "17", "_wp_attached_file", "2013/02/KeyHeader31.png");
INSERT INTO `wp_postmeta` VALUES("29", "17", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"939\";s:6:\"height\";s:3:\"401\";s:14:\"hwstring_small\";s:23:\"height=\'54\' width=\'128\'\";s:4:\"file\";s:23:\"2013/02/KeyHeader31.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:23:\"KeyHeader31-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:23:\"KeyHeader31-300x128.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"128\";}s:21:\"single-post-thumbnail\";a:3:{s:4:\"file\";s:21:\"KeyHeader31-75x32.png\";s:5:\"width\";s:2:\"75\";s:6:\"height\";s:2:\"32\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("30", "18", "_wp_attached_file", "2013/02/KeyHeader32.png");
INSERT INTO `wp_postmeta` VALUES("31", "18", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"939\";s:6:\"height\";s:3:\"401\";s:14:\"hwstring_small\";s:23:\"height=\'54\' width=\'128\'\";s:4:\"file\";s:23:\"2013/02/KeyHeader32.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:23:\"KeyHeader32-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:23:\"KeyHeader32-300x128.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"128\";}s:21:\"single-post-thumbnail\";a:3:{s:4:\"file\";s:21:\"KeyHeader32-75x32.png\";s:5:\"width\";s:2:\"75\";s:6:\"height\";s:2:\"32\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("32", "19", "_wp_attached_file", "2013/02/KeyHeader33.png");
INSERT INTO `wp_postmeta` VALUES("33", "19", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"939\";s:6:\"height\";s:3:\"401\";s:14:\"hwstring_small\";s:23:\"height=\'54\' width=\'128\'\";s:4:\"file\";s:23:\"2013/02/KeyHeader33.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:23:\"KeyHeader33-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:23:\"KeyHeader33-300x128.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"128\";}s:21:\"single-post-thumbnail\";a:3:{s:4:\"file\";s:21:\"KeyHeader33-75x32.png\";s:5:\"width\";s:2:\"75\";s:6:\"height\";s:2:\"32\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("34", "20", "_wp_attached_file", "2013/02/KeyHeader34.png");
INSERT INTO `wp_postmeta` VALUES("35", "20", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"939\";s:6:\"height\";s:3:\"401\";s:14:\"hwstring_small\";s:23:\"height=\'54\' width=\'128\'\";s:4:\"file\";s:23:\"2013/02/KeyHeader34.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:23:\"KeyHeader34-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:23:\"KeyHeader34-300x128.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"128\";}s:21:\"single-post-thumbnail\";a:3:{s:4:\"file\";s:21:\"KeyHeader34-75x32.png\";s:5:\"width\";s:2:\"75\";s:6:\"height\";s:2:\"32\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("36", "21", "_wp_attached_file", "2013/02/KeyHeader35.png");
INSERT INTO `wp_postmeta` VALUES("37", "21", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"939\";s:6:\"height\";s:3:\"401\";s:14:\"hwstring_small\";s:23:\"height=\'54\' width=\'128\'\";s:4:\"file\";s:23:\"2013/02/KeyHeader35.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:23:\"KeyHeader35-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:23:\"KeyHeader35-300x128.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"128\";}s:21:\"single-post-thumbnail\";a:3:{s:4:\"file\";s:21:\"KeyHeader35-75x32.png\";s:5:\"width\";s:2:\"75\";s:6:\"height\";s:2:\"32\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("38", "22", "_wp_attached_file", "2013/02/KeyHeader36.png");
INSERT INTO `wp_postmeta` VALUES("39", "22", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"939\";s:6:\"height\";s:3:\"401\";s:14:\"hwstring_small\";s:23:\"height=\'54\' width=\'128\'\";s:4:\"file\";s:23:\"2013/02/KeyHeader36.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:23:\"KeyHeader36-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:23:\"KeyHeader36-300x128.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"128\";}s:21:\"single-post-thumbnail\";a:3:{s:4:\"file\";s:21:\"KeyHeader36-75x32.png\";s:5:\"width\";s:2:\"75\";s:6:\"height\";s:2:\"32\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("40", "23", "_wp_attached_file", "2013/02/KeyHeader37.png");
INSERT INTO `wp_postmeta` VALUES("41", "23", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"939\";s:6:\"height\";s:3:\"401\";s:14:\"hwstring_small\";s:23:\"height=\'54\' width=\'128\'\";s:4:\"file\";s:23:\"2013/02/KeyHeader37.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:23:\"KeyHeader37-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:23:\"KeyHeader37-300x128.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"128\";}s:21:\"single-post-thumbnail\";a:3:{s:4:\"file\";s:21:\"KeyHeader37-75x32.png\";s:5:\"width\";s:2:\"75\";s:6:\"height\";s:2:\"32\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("42", "24", "_wp_attached_file", "2013/02/KeyHeader38.png");
INSERT INTO `wp_postmeta` VALUES("43", "24", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"939\";s:6:\"height\";s:3:\"401\";s:14:\"hwstring_small\";s:23:\"height=\'54\' width=\'128\'\";s:4:\"file\";s:23:\"2013/02/KeyHeader38.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:23:\"KeyHeader38-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:23:\"KeyHeader38-300x128.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"128\";}s:21:\"single-post-thumbnail\";a:3:{s:4:\"file\";s:21:\"KeyHeader38-75x32.png\";s:5:\"width\";s:2:\"75\";s:6:\"height\";s:2:\"32\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("44", "25", "_wp_attached_file", "2013/02/KeyHeader39.png");
INSERT INTO `wp_postmeta` VALUES("45", "25", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"939\";s:6:\"height\";s:3:\"401\";s:14:\"hwstring_small\";s:23:\"height=\'54\' width=\'128\'\";s:4:\"file\";s:23:\"2013/02/KeyHeader39.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:23:\"KeyHeader39-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:23:\"KeyHeader39-300x128.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"128\";}s:21:\"single-post-thumbnail\";a:3:{s:4:\"file\";s:21:\"KeyHeader39-75x32.png\";s:5:\"width\";s:2:\"75\";s:6:\"height\";s:2:\"32\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("46", "26", "_wp_attached_file", "2013/02/KeyHeader310.png");
INSERT INTO `wp_postmeta` VALUES("47", "26", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"939\";s:6:\"height\";s:3:\"401\";s:14:\"hwstring_small\";s:23:\"height=\'54\' width=\'128\'\";s:4:\"file\";s:24:\"2013/02/KeyHeader310.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:24:\"KeyHeader310-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:24:\"KeyHeader310-300x128.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"128\";}s:21:\"single-post-thumbnail\";a:3:{s:4:\"file\";s:22:\"KeyHeader310-75x32.png\";s:5:\"width\";s:2:\"75\";s:6:\"height\";s:2:\"32\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("48", "27", "_wp_attached_file", "2013/02/KeyHeader311.png");
INSERT INTO `wp_postmeta` VALUES("49", "27", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"939\";s:6:\"height\";s:3:\"401\";s:14:\"hwstring_small\";s:23:\"height=\'54\' width=\'128\'\";s:4:\"file\";s:24:\"2013/02/KeyHeader311.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:24:\"KeyHeader311-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:24:\"KeyHeader311-300x128.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"128\";}s:21:\"single-post-thumbnail\";a:3:{s:4:\"file\";s:22:\"KeyHeader311-75x32.png\";s:5:\"width\";s:2:\"75\";s:6:\"height\";s:2:\"32\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("50", "28", "_wp_attached_file", "2013/02/KeyHeader312.png");
INSERT INTO `wp_postmeta` VALUES("51", "28", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"939\";s:6:\"height\";s:3:\"401\";s:14:\"hwstring_small\";s:23:\"height=\'54\' width=\'128\'\";s:4:\"file\";s:24:\"2013/02/KeyHeader312.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:24:\"KeyHeader312-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:24:\"KeyHeader312-300x128.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"128\";}s:21:\"single-post-thumbnail\";a:3:{s:4:\"file\";s:22:\"KeyHeader312-75x32.png\";s:5:\"width\";s:2:\"75\";s:6:\"height\";s:2:\"32\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("52", "29", "_wp_attached_file", "2013/02/KeyHeader313.png");
INSERT INTO `wp_postmeta` VALUES("53", "29", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"939\";s:6:\"height\";s:3:\"401\";s:14:\"hwstring_small\";s:23:\"height=\'54\' width=\'128\'\";s:4:\"file\";s:24:\"2013/02/KeyHeader313.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:24:\"KeyHeader313-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:24:\"KeyHeader313-300x128.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"128\";}s:21:\"single-post-thumbnail\";a:3:{s:4:\"file\";s:22:\"KeyHeader313-75x32.png\";s:5:\"width\";s:2:\"75\";s:6:\"height\";s:2:\"32\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("54", "30", "_wp_attached_file", "2013/02/KeyHeader314.png");
INSERT INTO `wp_postmeta` VALUES("55", "30", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"939\";s:6:\"height\";s:3:\"401\";s:14:\"hwstring_small\";s:23:\"height=\'54\' width=\'128\'\";s:4:\"file\";s:24:\"2013/02/KeyHeader314.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:24:\"KeyHeader314-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:24:\"KeyHeader314-300x128.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"128\";}s:21:\"single-post-thumbnail\";a:3:{s:4:\"file\";s:22:\"KeyHeader314-75x32.png\";s:5:\"width\";s:2:\"75\";s:6:\"height\";s:2:\"32\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("56", "31", "_wp_attached_file", "2013/02/KeyHeader315.png");
INSERT INTO `wp_postmeta` VALUES("57", "31", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"939\";s:6:\"height\";s:3:\"401\";s:14:\"hwstring_small\";s:23:\"height=\'54\' width=\'128\'\";s:4:\"file\";s:24:\"2013/02/KeyHeader315.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:24:\"KeyHeader315-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:24:\"KeyHeader315-300x128.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"128\";}s:21:\"single-post-thumbnail\";a:3:{s:4:\"file\";s:22:\"KeyHeader315-75x32.png\";s:5:\"width\";s:2:\"75\";s:6:\"height\";s:2:\"32\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("58", "32", "_wp_attached_file", "2013/02/KeyHeader316.png");
INSERT INTO `wp_postmeta` VALUES("59", "32", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"939\";s:6:\"height\";s:3:\"401\";s:14:\"hwstring_small\";s:23:\"height=\'54\' width=\'128\'\";s:4:\"file\";s:24:\"2013/02/KeyHeader316.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:24:\"KeyHeader316-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:24:\"KeyHeader316-300x128.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"128\";}s:21:\"single-post-thumbnail\";a:3:{s:4:\"file\";s:22:\"KeyHeader316-75x32.png\";s:5:\"width\";s:2:\"75\";s:6:\"height\";s:2:\"32\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("60", "33", "_wp_attached_file", "2013/02/KeyHeader317.png");
INSERT INTO `wp_postmeta` VALUES("61", "33", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"939\";s:6:\"height\";s:3:\"401\";s:14:\"hwstring_small\";s:23:\"height=\'54\' width=\'128\'\";s:4:\"file\";s:24:\"2013/02/KeyHeader317.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:24:\"KeyHeader317-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:24:\"KeyHeader317-300x128.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"128\";}s:21:\"single-post-thumbnail\";a:3:{s:4:\"file\";s:22:\"KeyHeader317-75x32.png\";s:5:\"width\";s:2:\"75\";s:6:\"height\";s:2:\"32\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("62", "34", "_wp_attached_file", "2013/02/KeyHeader318.png");
INSERT INTO `wp_postmeta` VALUES("63", "34", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"939\";s:6:\"height\";s:3:\"401\";s:14:\"hwstring_small\";s:23:\"height=\'54\' width=\'128\'\";s:4:\"file\";s:24:\"2013/02/KeyHeader318.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:24:\"KeyHeader318-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:24:\"KeyHeader318-300x128.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"128\";}s:21:\"single-post-thumbnail\";a:3:{s:4:\"file\";s:22:\"KeyHeader318-75x32.png\";s:5:\"width\";s:2:\"75\";s:6:\"height\";s:2:\"32\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("64", "35", "_wp_attached_file", "2013/02/KeyHeader319.png");
INSERT INTO `wp_postmeta` VALUES("65", "35", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"939\";s:6:\"height\";s:3:\"401\";s:14:\"hwstring_small\";s:23:\"height=\'54\' width=\'128\'\";s:4:\"file\";s:24:\"2013/02/KeyHeader319.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:24:\"KeyHeader319-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:24:\"KeyHeader319-300x128.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"128\";}s:21:\"single-post-thumbnail\";a:3:{s:4:\"file\";s:22:\"KeyHeader319-75x32.png\";s:5:\"width\";s:2:\"75\";s:6:\"height\";s:2:\"32\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("66", "36", "_wp_attached_file", "2013/02/KeyHeader320.png");
INSERT INTO `wp_postmeta` VALUES("67", "36", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"939\";s:6:\"height\";s:3:\"401\";s:14:\"hwstring_small\";s:23:\"height=\'54\' width=\'128\'\";s:4:\"file\";s:24:\"2013/02/KeyHeader320.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:24:\"KeyHeader320-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:24:\"KeyHeader320-300x128.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"128\";}s:21:\"single-post-thumbnail\";a:3:{s:4:\"file\";s:22:\"KeyHeader320-75x32.png\";s:5:\"width\";s:2:\"75\";s:6:\"height\";s:2:\"32\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("68", "37", "_wp_attached_file", "2013/02/KeyHeader3.jpeg");
INSERT INTO `wp_postmeta` VALUES("69", "37", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"939\";s:6:\"height\";s:3:\"401\";s:14:\"hwstring_small\";s:23:\"height=\'54\' width=\'128\'\";s:4:\"file\";s:23:\"2013/02/KeyHeader3.jpeg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:22:\"KeyHeader3-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:22:\"KeyHeader3-300x128.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"128\";}s:21:\"single-post-thumbnail\";a:3:{s:4:\"file\";s:20:\"KeyHeader3-75x32.jpg\";s:5:\"width\";s:2:\"75\";s:6:\"height\";s:2:\"32\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("70", "38", "_wp_attached_file", "2013/02/3.png");
INSERT INTO `wp_postmeta` VALUES("71", "38", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"939\";s:6:\"height\";s:3:\"401\";s:14:\"hwstring_small\";s:23:\"height=\'54\' width=\'128\'\";s:4:\"file\";s:13:\"2013/02/3.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:13:\"3-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:13:\"3-300x128.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"128\";}s:21:\"single-post-thumbnail\";a:3:{s:4:\"file\";s:11:\"3-75x32.png\";s:5:\"width\";s:2:\"75\";s:6:\"height\";s:2:\"32\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("72", "39", "_wp_attached_file", "2013/02/31.png");
INSERT INTO `wp_postmeta` VALUES("73", "39", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"939\";s:6:\"height\";s:3:\"401\";s:14:\"hwstring_small\";s:23:\"height=\'54\' width=\'128\'\";s:4:\"file\";s:14:\"2013/02/31.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:14:\"31-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:14:\"31-300x128.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"128\";}s:21:\"single-post-thumbnail\";a:3:{s:4:\"file\";s:12:\"31-75x32.png\";s:5:\"width\";s:2:\"75\";s:6:\"height\";s:2:\"32\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("74", "40", "_wp_attached_file", "2013/02/32.png");
INSERT INTO `wp_postmeta` VALUES("75", "40", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"939\";s:6:\"height\";s:3:\"401\";s:14:\"hwstring_small\";s:23:\"height=\'54\' width=\'128\'\";s:4:\"file\";s:14:\"2013/02/32.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:14:\"32-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:14:\"32-300x128.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"128\";}s:21:\"single-post-thumbnail\";a:3:{s:4:\"file\";s:12:\"32-75x32.png\";s:5:\"width\";s:2:\"75\";s:6:\"height\";s:2:\"32\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("76", "41", "_wp_attached_file", "2013/02/33.png");
INSERT INTO `wp_postmeta` VALUES("77", "41", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"939\";s:6:\"height\";s:3:\"401\";s:14:\"hwstring_small\";s:23:\"height=\'54\' width=\'128\'\";s:4:\"file\";s:14:\"2013/02/33.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:14:\"33-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:14:\"33-300x128.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"128\";}s:21:\"single-post-thumbnail\";a:3:{s:4:\"file\";s:12:\"33-75x32.png\";s:5:\"width\";s:2:\"75\";s:6:\"height\";s:2:\"32\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("78", "42", "_wp_attached_file", "2013/02/4.png");
INSERT INTO `wp_postmeta` VALUES("79", "42", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"939\";s:6:\"height\";s:3:\"401\";s:14:\"hwstring_small\";s:23:\"height=\'54\' width=\'128\'\";s:4:\"file\";s:13:\"2013/02/4.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:13:\"4-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:13:\"4-300x128.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"128\";}s:21:\"single-post-thumbnail\";a:3:{s:4:\"file\";s:11:\"4-75x32.png\";s:5:\"width\";s:2:\"75\";s:6:\"height\";s:2:\"32\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("80", "43", "_wp_attached_file", "2013/02/KeyHeader6.png");
INSERT INTO `wp_postmeta` VALUES("81", "43", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"939\";s:6:\"height\";s:3:\"401\";s:14:\"hwstring_small\";s:23:\"height=\'54\' width=\'128\'\";s:4:\"file\";s:22:\"2013/02/KeyHeader6.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:22:\"KeyHeader6-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:22:\"KeyHeader6-300x128.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"128\";}s:21:\"single-post-thumbnail\";a:3:{s:4:\"file\";s:20:\"KeyHeader6-75x32.png\";s:5:\"width\";s:2:\"75\";s:6:\"height\";s:2:\"32\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("82", "44", "_wp_attached_file", "2013/02/KeyHeader61.png");
INSERT INTO `wp_postmeta` VALUES("83", "44", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"939\";s:6:\"height\";s:3:\"401\";s:14:\"hwstring_small\";s:23:\"height=\'54\' width=\'128\'\";s:4:\"file\";s:23:\"2013/02/KeyHeader61.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:23:\"KeyHeader61-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:23:\"KeyHeader61-300x128.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"128\";}s:21:\"single-post-thumbnail\";a:3:{s:4:\"file\";s:21:\"KeyHeader61-75x32.png\";s:5:\"width\";s:2:\"75\";s:6:\"height\";s:2:\"32\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("93", "50", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("94", "50", "_edit_lock", "1359987810:1");
INSERT INTO `wp_postmeta` VALUES("95", "50", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("96", "52", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("97", "52", "_edit_lock", "1359987595:1");
INSERT INTO `wp_postmeta` VALUES("110", "61", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("111", "61", "_edit_lock", "1359942098:1");
INSERT INTO `wp_postmeta` VALUES("112", "61", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("113", "64", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("114", "64", "_edit_lock", "1362764275:1");
INSERT INTO `wp_postmeta` VALUES("115", "64", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("118", "75", "_wp_attached_file", "2013/02/KeyHeader4.png");
INSERT INTO `wp_postmeta` VALUES("119", "75", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"939\";s:6:\"height\";s:3:\"401\";s:14:\"hwstring_small\";s:23:\"height=\'54\' width=\'128\'\";s:4:\"file\";s:22:\"2013/02/KeyHeader4.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:22:\"KeyHeader4-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:22:\"KeyHeader4-300x128.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"128\";}s:21:\"single-post-thumbnail\";a:3:{s:4:\"file\";s:20:\"KeyHeader4-75x32.png\";s:5:\"width\";s:2:\"75\";s:6:\"height\";s:2:\"32\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("120", "76", "_wp_attached_file", "2013/02/KeyHeader41.png");
INSERT INTO `wp_postmeta` VALUES("121", "76", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"939\";s:6:\"height\";s:3:\"401\";s:14:\"hwstring_small\";s:23:\"height=\'54\' width=\'128\'\";s:4:\"file\";s:23:\"2013/02/KeyHeader41.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:23:\"KeyHeader41-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:23:\"KeyHeader41-300x128.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"128\";}s:21:\"single-post-thumbnail\";a:3:{s:4:\"file\";s:21:\"KeyHeader41-75x32.png\";s:5:\"width\";s:2:\"75\";s:6:\"height\";s:2:\"32\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("122", "77", "_wp_attached_file", "2013/02/KeyHeader42.png");
INSERT INTO `wp_postmeta` VALUES("123", "77", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"939\";s:6:\"height\";s:3:\"401\";s:14:\"hwstring_small\";s:23:\"height=\'54\' width=\'128\'\";s:4:\"file\";s:23:\"2013/02/KeyHeader42.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:23:\"KeyHeader42-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:23:\"KeyHeader42-300x128.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"128\";}s:21:\"single-post-thumbnail\";a:3:{s:4:\"file\";s:21:\"KeyHeader42-75x32.png\";s:5:\"width\";s:2:\"75\";s:6:\"height\";s:2:\"32\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("124", "78", "_wp_attached_file", "2013/02/KeyHeader43.png");
INSERT INTO `wp_postmeta` VALUES("125", "78", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"939\";s:6:\"height\";s:3:\"401\";s:14:\"hwstring_small\";s:23:\"height=\'54\' width=\'128\'\";s:4:\"file\";s:23:\"2013/02/KeyHeader43.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:23:\"KeyHeader43-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:23:\"KeyHeader43-300x128.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"128\";}s:21:\"single-post-thumbnail\";a:3:{s:4:\"file\";s:21:\"KeyHeader43-75x32.png\";s:5:\"width\";s:2:\"75\";s:6:\"height\";s:2:\"32\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("126", "79", "_wp_attached_file", "2013/02/KeyHeader44.png");
INSERT INTO `wp_postmeta` VALUES("127", "79", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"939\";s:6:\"height\";s:3:\"401\";s:14:\"hwstring_small\";s:23:\"height=\'54\' width=\'128\'\";s:4:\"file\";s:23:\"2013/02/KeyHeader44.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:23:\"KeyHeader44-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:23:\"KeyHeader44-300x128.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"128\";}s:21:\"single-post-thumbnail\";a:3:{s:4:\"file\";s:21:\"KeyHeader44-75x32.png\";s:5:\"width\";s:2:\"75\";s:6:\"height\";s:2:\"32\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("128", "80", "_wp_attached_file", "2013/02/KeyHeader45.png");
INSERT INTO `wp_postmeta` VALUES("129", "80", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"939\";s:6:\"height\";s:3:\"401\";s:14:\"hwstring_small\";s:23:\"height=\'54\' width=\'128\'\";s:4:\"file\";s:23:\"2013/02/KeyHeader45.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:23:\"KeyHeader45-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:23:\"KeyHeader45-300x128.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"128\";}s:21:\"single-post-thumbnail\";a:3:{s:4:\"file\";s:21:\"KeyHeader45-75x32.png\";s:5:\"width\";s:2:\"75\";s:6:\"height\";s:2:\"32\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("130", "81", "_wp_attached_file", "2013/02/KeyHeader46.png");
INSERT INTO `wp_postmeta` VALUES("131", "81", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"939\";s:6:\"height\";s:3:\"401\";s:14:\"hwstring_small\";s:23:\"height=\'54\' width=\'128\'\";s:4:\"file\";s:23:\"2013/02/KeyHeader46.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:23:\"KeyHeader46-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:23:\"KeyHeader46-300x128.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"128\";}s:21:\"single-post-thumbnail\";a:3:{s:4:\"file\";s:21:\"KeyHeader46-75x32.png\";s:5:\"width\";s:2:\"75\";s:6:\"height\";s:2:\"32\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("132", "82", "_wp_attached_file", "2013/02/KeyHeader47.png");
INSERT INTO `wp_postmeta` VALUES("133", "82", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"939\";s:6:\"height\";s:3:\"401\";s:14:\"hwstring_small\";s:23:\"height=\'54\' width=\'128\'\";s:4:\"file\";s:23:\"2013/02/KeyHeader47.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:23:\"KeyHeader47-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:23:\"KeyHeader47-300x128.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"128\";}s:21:\"single-post-thumbnail\";a:3:{s:4:\"file\";s:21:\"KeyHeader47-75x32.png\";s:5:\"width\";s:2:\"75\";s:6:\"height\";s:2:\"32\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("134", "83", "_wp_attached_file", "2013/02/KeyHeader48.png");
INSERT INTO `wp_postmeta` VALUES("135", "83", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"939\";s:6:\"height\";s:3:\"401\";s:14:\"hwstring_small\";s:23:\"height=\'54\' width=\'128\'\";s:4:\"file\";s:23:\"2013/02/KeyHeader48.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:23:\"KeyHeader48-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:23:\"KeyHeader48-300x128.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"128\";}s:21:\"single-post-thumbnail\";a:3:{s:4:\"file\";s:21:\"KeyHeader48-75x32.png\";s:5:\"width\";s:2:\"75\";s:6:\"height\";s:2:\"32\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("136", "84", "_wp_attached_file", "2013/02/KeyHeader49.png");
INSERT INTO `wp_postmeta` VALUES("137", "84", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"939\";s:6:\"height\";s:3:\"401\";s:14:\"hwstring_small\";s:23:\"height=\'54\' width=\'128\'\";s:4:\"file\";s:23:\"2013/02/KeyHeader49.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:23:\"KeyHeader49-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:23:\"KeyHeader49-300x128.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"128\";}s:21:\"single-post-thumbnail\";a:3:{s:4:\"file\";s:21:\"KeyHeader49-75x32.png\";s:5:\"width\";s:2:\"75\";s:6:\"height\";s:2:\"32\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("138", "85", "_wp_attached_file", "2013/02/KeyHeader410.png");
INSERT INTO `wp_postmeta` VALUES("139", "85", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"939\";s:6:\"height\";s:3:\"401\";s:14:\"hwstring_small\";s:23:\"height=\'54\' width=\'128\'\";s:4:\"file\";s:24:\"2013/02/KeyHeader410.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:24:\"KeyHeader410-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:24:\"KeyHeader410-300x128.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"128\";}s:21:\"single-post-thumbnail\";a:3:{s:4:\"file\";s:22:\"KeyHeader410-75x32.png\";s:5:\"width\";s:2:\"75\";s:6:\"height\";s:2:\"32\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("140", "86", "_wp_attached_file", "2013/02/KeyHeader411.png");
INSERT INTO `wp_postmeta` VALUES("141", "86", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"939\";s:6:\"height\";s:3:\"401\";s:14:\"hwstring_small\";s:23:\"height=\'54\' width=\'128\'\";s:4:\"file\";s:24:\"2013/02/KeyHeader411.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:24:\"KeyHeader411-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:24:\"KeyHeader411-300x128.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"128\";}s:21:\"single-post-thumbnail\";a:3:{s:4:\"file\";s:22:\"KeyHeader411-75x32.png\";s:5:\"width\";s:2:\"75\";s:6:\"height\";s:2:\"32\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("142", "87", "_wp_attached_file", "2013/02/KeyHeader412.png");
INSERT INTO `wp_postmeta` VALUES("143", "87", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"939\";s:6:\"height\";s:3:\"401\";s:14:\"hwstring_small\";s:23:\"height=\'54\' width=\'128\'\";s:4:\"file\";s:24:\"2013/02/KeyHeader412.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:24:\"KeyHeader412-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:24:\"KeyHeader412-300x128.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"128\";}s:21:\"single-post-thumbnail\";a:3:{s:4:\"file\";s:22:\"KeyHeader412-75x32.png\";s:5:\"width\";s:2:\"75\";s:6:\"height\";s:2:\"32\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("144", "88", "_wp_attached_file", "2013/02/KeyHeader413.png");
INSERT INTO `wp_postmeta` VALUES("145", "88", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"939\";s:6:\"height\";s:3:\"401\";s:14:\"hwstring_small\";s:23:\"height=\'54\' width=\'128\'\";s:4:\"file\";s:24:\"2013/02/KeyHeader413.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:24:\"KeyHeader413-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:24:\"KeyHeader413-300x128.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"128\";}s:21:\"single-post-thumbnail\";a:3:{s:4:\"file\";s:22:\"KeyHeader413-75x32.png\";s:5:\"width\";s:2:\"75\";s:6:\"height\";s:2:\"32\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("146", "89", "_wp_attached_file", "2013/02/KeyHeader414.png");
INSERT INTO `wp_postmeta` VALUES("147", "89", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"939\";s:6:\"height\";s:3:\"401\";s:14:\"hwstring_small\";s:23:\"height=\'54\' width=\'128\'\";s:4:\"file\";s:24:\"2013/02/KeyHeader414.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:24:\"KeyHeader414-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:24:\"KeyHeader414-300x128.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"128\";}s:21:\"single-post-thumbnail\";a:3:{s:4:\"file\";s:22:\"KeyHeader414-75x32.png\";s:5:\"width\";s:2:\"75\";s:6:\"height\";s:2:\"32\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("148", "90", "_wp_attached_file", "2013/02/KeyHeader7.png");
INSERT INTO `wp_postmeta` VALUES("149", "90", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"939\";s:6:\"height\";s:3:\"401\";s:14:\"hwstring_small\";s:23:\"height=\'54\' width=\'128\'\";s:4:\"file\";s:22:\"2013/02/KeyHeader7.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:22:\"KeyHeader7-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:22:\"KeyHeader7-300x128.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"128\";}s:21:\"single-post-thumbnail\";a:3:{s:4:\"file\";s:20:\"KeyHeader7-75x32.png\";s:5:\"width\";s:2:\"75\";s:6:\"height\";s:2:\"32\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("150", "91", "_wp_attached_file", "2013/02/KeyHeader71.png");
INSERT INTO `wp_postmeta` VALUES("151", "91", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"939\";s:6:\"height\";s:3:\"401\";s:14:\"hwstring_small\";s:23:\"height=\'54\' width=\'128\'\";s:4:\"file\";s:23:\"2013/02/KeyHeader71.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:23:\"KeyHeader71-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:23:\"KeyHeader71-300x128.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"128\";}s:21:\"single-post-thumbnail\";a:3:{s:4:\"file\";s:21:\"KeyHeader71-75x32.png\";s:5:\"width\";s:2:\"75\";s:6:\"height\";s:2:\"32\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("152", "92", "_wp_attached_file", "2013/02/KeyHeader321.png");
INSERT INTO `wp_postmeta` VALUES("153", "92", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"939\";s:6:\"height\";s:3:\"401\";s:14:\"hwstring_small\";s:23:\"height=\'54\' width=\'128\'\";s:4:\"file\";s:24:\"2013/02/KeyHeader321.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:24:\"KeyHeader321-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:24:\"KeyHeader321-300x128.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"128\";}s:21:\"single-post-thumbnail\";a:3:{s:4:\"file\";s:22:\"KeyHeader321-75x32.png\";s:5:\"width\";s:2:\"75\";s:6:\"height\";s:2:\"32\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("154", "93", "_wp_attached_file", "2013/02/KeyHeader72.png");
INSERT INTO `wp_postmeta` VALUES("155", "93", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"939\";s:6:\"height\";s:3:\"401\";s:14:\"hwstring_small\";s:23:\"height=\'54\' width=\'128\'\";s:4:\"file\";s:23:\"2013/02/KeyHeader72.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:23:\"KeyHeader72-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:23:\"KeyHeader72-300x128.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"128\";}s:21:\"single-post-thumbnail\";a:3:{s:4:\"file\";s:21:\"KeyHeader72-75x32.png\";s:5:\"width\";s:2:\"75\";s:6:\"height\";s:2:\"32\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("156", "94", "_wp_attached_file", "2013/02/KeyHeader73.png");
INSERT INTO `wp_postmeta` VALUES("157", "94", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"939\";s:6:\"height\";s:3:\"401\";s:14:\"hwstring_small\";s:23:\"height=\'54\' width=\'128\'\";s:4:\"file\";s:23:\"2013/02/KeyHeader73.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:23:\"KeyHeader73-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:23:\"KeyHeader73-300x128.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"128\";}s:21:\"single-post-thumbnail\";a:3:{s:4:\"file\";s:21:\"KeyHeader73-75x32.png\";s:5:\"width\";s:2:\"75\";s:6:\"height\";s:2:\"32\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("158", "95", "_wp_attached_file", "2013/02/KeyHeader74.png");
INSERT INTO `wp_postmeta` VALUES("159", "95", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"939\";s:6:\"height\";s:3:\"401\";s:14:\"hwstring_small\";s:23:\"height=\'54\' width=\'128\'\";s:4:\"file\";s:23:\"2013/02/KeyHeader74.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:23:\"KeyHeader74-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:23:\"KeyHeader74-300x128.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"128\";}s:21:\"single-post-thumbnail\";a:3:{s:4:\"file\";s:21:\"KeyHeader74-75x32.png\";s:5:\"width\";s:2:\"75\";s:6:\"height\";s:2:\"32\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("160", "96", "_wp_attached_file", "2013/02/KeyHeader75.png");
INSERT INTO `wp_postmeta` VALUES("161", "96", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"939\";s:6:\"height\";s:3:\"401\";s:14:\"hwstring_small\";s:23:\"height=\'54\' width=\'128\'\";s:4:\"file\";s:23:\"2013/02/KeyHeader75.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:23:\"KeyHeader75-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:23:\"KeyHeader75-300x128.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"128\";}s:21:\"single-post-thumbnail\";a:3:{s:4:\"file\";s:21:\"KeyHeader75-75x32.png\";s:5:\"width\";s:2:\"75\";s:6:\"height\";s:2:\"32\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("162", "97", "_wp_attached_file", "2013/02/KeyHeader76.png");
INSERT INTO `wp_postmeta` VALUES("163", "97", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"939\";s:6:\"height\";s:3:\"401\";s:14:\"hwstring_small\";s:23:\"height=\'54\' width=\'128\'\";s:4:\"file\";s:23:\"2013/02/KeyHeader76.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:23:\"KeyHeader76-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:23:\"KeyHeader76-300x128.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"128\";}s:21:\"single-post-thumbnail\";a:3:{s:4:\"file\";s:21:\"KeyHeader76-75x32.png\";s:5:\"width\";s:2:\"75\";s:6:\"height\";s:2:\"32\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("164", "98", "_wp_attached_file", "2013/02/KeyHeader77.png");
INSERT INTO `wp_postmeta` VALUES("165", "98", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"939\";s:6:\"height\";s:3:\"401\";s:14:\"hwstring_small\";s:23:\"height=\'54\' width=\'128\'\";s:4:\"file\";s:23:\"2013/02/KeyHeader77.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:23:\"KeyHeader77-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:23:\"KeyHeader77-300x128.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"128\";}s:21:\"single-post-thumbnail\";a:3:{s:4:\"file\";s:21:\"KeyHeader77-75x32.png\";s:5:\"width\";s:2:\"75\";s:6:\"height\";s:2:\"32\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("166", "99", "_wp_attached_file", "2013/02/KeyHeader78.png");
INSERT INTO `wp_postmeta` VALUES("167", "99", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"939\";s:6:\"height\";s:3:\"401\";s:14:\"hwstring_small\";s:23:\"height=\'54\' width=\'128\'\";s:4:\"file\";s:23:\"2013/02/KeyHeader78.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:23:\"KeyHeader78-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:23:\"KeyHeader78-300x128.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"128\";}s:21:\"single-post-thumbnail\";a:3:{s:4:\"file\";s:21:\"KeyHeader78-75x32.png\";s:5:\"width\";s:2:\"75\";s:6:\"height\";s:2:\"32\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("168", "100", "_wp_attached_file", "2013/02/KeyHeader79.png");
INSERT INTO `wp_postmeta` VALUES("169", "100", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"939\";s:6:\"height\";s:3:\"401\";s:14:\"hwstring_small\";s:23:\"height=\'54\' width=\'128\'\";s:4:\"file\";s:23:\"2013/02/KeyHeader79.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:23:\"KeyHeader79-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:23:\"KeyHeader79-300x128.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"128\";}s:21:\"single-post-thumbnail\";a:3:{s:4:\"file\";s:21:\"KeyHeader79-75x32.png\";s:5:\"width\";s:2:\"75\";s:6:\"height\";s:2:\"32\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("170", "101", "_wp_attached_file", "2013/02/KeyHeader710.png");
INSERT INTO `wp_postmeta` VALUES("171", "101", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"939\";s:6:\"height\";s:3:\"401\";s:14:\"hwstring_small\";s:23:\"height=\'54\' width=\'128\'\";s:4:\"file\";s:24:\"2013/02/KeyHeader710.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:24:\"KeyHeader710-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:24:\"KeyHeader710-300x128.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"128\";}s:21:\"single-post-thumbnail\";a:3:{s:4:\"file\";s:22:\"KeyHeader710-75x32.png\";s:5:\"width\";s:2:\"75\";s:6:\"height\";s:2:\"32\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("172", "102", "_wp_attached_file", "2013/02/KeyHeader711.png");
INSERT INTO `wp_postmeta` VALUES("173", "102", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"939\";s:6:\"height\";s:3:\"401\";s:14:\"hwstring_small\";s:23:\"height=\'54\' width=\'128\'\";s:4:\"file\";s:24:\"2013/02/KeyHeader711.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:24:\"KeyHeader711-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:24:\"KeyHeader711-300x128.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"128\";}s:21:\"single-post-thumbnail\";a:3:{s:4:\"file\";s:22:\"KeyHeader711-75x32.png\";s:5:\"width\";s:2:\"75\";s:6:\"height\";s:2:\"32\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("174", "103", "_wp_attached_file", "2013/02/KeyHeader712.png");
INSERT INTO `wp_postmeta` VALUES("175", "103", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"939\";s:6:\"height\";s:3:\"401\";s:14:\"hwstring_small\";s:23:\"height=\'54\' width=\'128\'\";s:4:\"file\";s:24:\"2013/02/KeyHeader712.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:24:\"KeyHeader712-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:24:\"KeyHeader712-300x128.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"128\";}s:21:\"single-post-thumbnail\";a:3:{s:4:\"file\";s:22:\"KeyHeader712-75x32.png\";s:5:\"width\";s:2:\"75\";s:6:\"height\";s:2:\"32\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("176", "104", "_wp_attached_file", "2013/02/KeyHeader713.png");
INSERT INTO `wp_postmeta` VALUES("177", "104", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"939\";s:6:\"height\";s:3:\"401\";s:14:\"hwstring_small\";s:23:\"height=\'54\' width=\'128\'\";s:4:\"file\";s:24:\"2013/02/KeyHeader713.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:24:\"KeyHeader713-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:24:\"KeyHeader713-300x128.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"128\";}s:21:\"single-post-thumbnail\";a:3:{s:4:\"file\";s:22:\"KeyHeader713-75x32.png\";s:5:\"width\";s:2:\"75\";s:6:\"height\";s:2:\"32\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("178", "105", "_wp_attached_file", "2013/02/KeyHeader714.png");
INSERT INTO `wp_postmeta` VALUES("179", "105", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"939\";s:6:\"height\";s:3:\"401\";s:14:\"hwstring_small\";s:23:\"height=\'54\' width=\'128\'\";s:4:\"file\";s:24:\"2013/02/KeyHeader714.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:24:\"KeyHeader714-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:24:\"KeyHeader714-300x128.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"128\";}s:21:\"single-post-thumbnail\";a:3:{s:4:\"file\";s:22:\"KeyHeader714-75x32.png\";s:5:\"width\";s:2:\"75\";s:6:\"height\";s:2:\"32\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("180", "106", "_wp_attached_file", "2013/02/KeyHeader8.png");
INSERT INTO `wp_postmeta` VALUES("181", "106", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"939\";s:6:\"height\";s:3:\"401\";s:14:\"hwstring_small\";s:23:\"height=\'54\' width=\'128\'\";s:4:\"file\";s:22:\"2013/02/KeyHeader8.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:22:\"KeyHeader8-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:22:\"KeyHeader8-300x128.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"128\";}s:21:\"single-post-thumbnail\";a:3:{s:4:\"file\";s:20:\"KeyHeader8-75x32.png\";s:5:\"width\";s:2:\"75\";s:6:\"height\";s:2:\"32\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("191", "111", "_WPMSGOPTION_LogoBackgroundColor", "FDFC63");
INSERT INTO `wp_postmeta` VALUES("190", "111", "_WPMSGOPTION_PageBackgroundColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("192", "111", "_WPMSGOPTION_FooterBackgroundColor", "FDFC63");
INSERT INTO `wp_postmeta` VALUES("193", "111", "_WPMSGOPTION_ParagraphTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("194", "111", "_WPMSGOPTION_ParagraphTextSize", "");
INSERT INTO `wp_postmeta` VALUES("195", "111", "_WPMSGOPTION_BackgroundImage", "");
INSERT INTO `wp_postmeta` VALUES("196", "111", "_WPMSGOPTION_BackgroundImageRepeat", "");
INSERT INTO `wp_postmeta` VALUES("197", "111", "_WPMSGOPTION_BackgroundImagePosition", "");
INSERT INTO `wp_postmeta` VALUES("198", "111", "_WPMSGOPTION_TopbarStartColor", "202020");
INSERT INTO `wp_postmeta` VALUES("199", "111", "_WPMSGOPTION_TopbarEndColor", "858585");
INSERT INTO `wp_postmeta` VALUES("200", "111", "_WPMSGOPTION_TopbarTextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("201", "111", "_WPMSGOPTION_TopbarButtonColor", "std");
INSERT INTO `wp_postmeta` VALUES("202", "111", "_WPMSGOPTION_H1TextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("203", "111", "_WPMSGOPTION_H1TextSize", "");
INSERT INTO `wp_postmeta` VALUES("204", "111", "_WPMSGOPTION_H1TextShadow", "");
INSERT INTO `wp_postmeta` VALUES("205", "111", "_WPMSGOPTION_H2TextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("206", "111", "_WPMSGOPTION_H2TextSize", "");
INSERT INTO `wp_postmeta` VALUES("207", "111", "_WPMSGOPTION_H2TextShadow", "");
INSERT INTO `wp_postmeta` VALUES("208", "111", "_WPMSGOPTION_H3TextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("209", "111", "_WPMSGOPTION_H3TextSize", "");
INSERT INTO `wp_postmeta` VALUES("210", "111", "_WPMSGOPTION_H3TextShadow", "");
INSERT INTO `wp_postmeta` VALUES("211", "111", "_WPMSGOPTION_H4TextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("212", "111", "_WPMSGOPTION_H4TextSize", "");
INSERT INTO `wp_postmeta` VALUES("213", "111", "_WPMSGOPTION_H4TextShadow", "");
INSERT INTO `wp_postmeta` VALUES("214", "111", "_WPMSGOPTION_H5TextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("215", "111", "_WPMSGOPTION_H5TextSize", "");
INSERT INTO `wp_postmeta` VALUES("216", "111", "_WPMSGOPTION_H5TextShadow", "");
INSERT INTO `wp_postmeta` VALUES("217", "111", "_WPMSGOPTION_H6TextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("218", "111", "_WPMSGOPTION_H6TextSize", "");
INSERT INTO `wp_postmeta` VALUES("219", "111", "_WPMSGOPTION_H6TextShadow", "");
INSERT INTO `wp_postmeta` VALUES("220", "111", "_WPMSGOPTION_MenuBackgroundColor", "FDB242");
INSERT INTO `wp_postmeta` VALUES("221", "111", "_WPMSGOPTION_IconTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("222", "111", "_WPMSGOPTION_MenuTextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("223", "111", "_WPMSGOPTION_MenuTextSize", "");
INSERT INTO `wp_postmeta` VALUES("224", "111", "_WPMSGOPTION_MenuBorderColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("225", "111", "_WPMSGOPTION_MenuBorderWidth", "");
INSERT INTO `wp_postmeta` VALUES("226", "111", "_WPMSGOPTION_MenuBorderStyle", "None");
INSERT INTO `wp_postmeta` VALUES("227", "111", "_WPMSGOPTION_MenuOpacity", "1");
INSERT INTO `wp_postmeta` VALUES("228", "111", "_WPMSGOPTION_MenuArrowImage", "LightOpenArrow");
INSERT INTO `wp_postmeta` VALUES("229", "111", "_WPMSGOPTION_MenuArrowColor", "Transparent");
INSERT INTO `wp_postmeta` VALUES("230", "111", "_WPMSGOPTION_MenuSelectedBackgroundColor", "015FE6");
INSERT INTO `wp_postmeta` VALUES("231", "111", "_WPMSGOPTION_MenuSelectedTextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("232", "111", "_WPMSGOPTION_MenuSeparatorColor", "878787");
INSERT INTO `wp_postmeta` VALUES("233", "111", "_WPMSGOPTION_BlockquoteBackgroundColor", "FDFC63");
INSERT INTO `wp_postmeta` VALUES("234", "111", "_WPMSGOPTION_BlockquoteTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("235", "111", "_WPMSGOPTION_BlockquoteTextSize", "");
INSERT INTO `wp_postmeta` VALUES("236", "111", "_WPMSGOPTION_BlockquoteBorderColor", "FDFC63");
INSERT INTO `wp_postmeta` VALUES("237", "111", "_WPMSGOPTION_BlockquoteBorderWidth", "");
INSERT INTO `wp_postmeta` VALUES("238", "111", "_WPMSGOPTION_BlockquoteBorderStyle", "None");
INSERT INTO `wp_postmeta` VALUES("239", "111", "_WPMSGOPTION_TableBackgroundColor", "FDFC63");
INSERT INTO `wp_postmeta` VALUES("240", "111", "_WPMSGOPTION_TableTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("241", "111", "_WPMSGOPTION_TableTextSize", "");
INSERT INTO `wp_postmeta` VALUES("242", "111", "_WPMSGOPTION_TableBorderColor", "FDB242");
INSERT INTO `wp_postmeta` VALUES("243", "111", "_WPMSGOPTION_TableBorderWidth", "2");
INSERT INTO `wp_postmeta` VALUES("244", "111", "_WPMSGOPTION_TableBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("245", "111", "_WPMSGOPTION_TableWidth", "95");
INSERT INTO `wp_postmeta` VALUES("246", "111", "_WPMSGOPTION_TablePadding", "2");
INSERT INTO `wp_postmeta` VALUES("247", "111", "_WPMSGOPTION_ClickToCallBackgroundColor", "04BF04");
INSERT INTO `wp_postmeta` VALUES("248", "111", "_WPMSGOPTION_ClickToCallTextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("249", "111", "_WPMSGOPTION_ClickToCallTextSize", "");
INSERT INTO `wp_postmeta` VALUES("250", "111", "_WPMSGOPTION_ClickToCallBorderColor", "04BF04");
INSERT INTO `wp_postmeta` VALUES("251", "111", "_WPMSGOPTION_ClickToCallBorderWidth", "");
INSERT INTO `wp_postmeta` VALUES("252", "111", "_WPMSGOPTION_ClickToCallBorderStyle", "None");
INSERT INTO `wp_postmeta` VALUES("253", "111", "_WPMSGOPTION_OptinFormBackgroundColor", "FDFC63");
INSERT INTO `wp_postmeta` VALUES("254", "111", "_WPMSGOPTION_OptinFormInputBackgroundColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("255", "111", "_WPMSGOPTION_OptinFormSubmitBackgroundColor", "E6E6E6");
INSERT INTO `wp_postmeta` VALUES("256", "111", "_WPMSGOPTION_OptinFormSubmitTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("257", "111", "_WPMSGOPTION_OptinFormTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("258", "111", "_WPMSGOPTION_OptinFormTextSize", "");
INSERT INTO `wp_postmeta` VALUES("259", "111", "_WPMSGOPTION_OptinFormBorderColor", "000000");
INSERT INTO `wp_postmeta` VALUES("260", "111", "_WPMSGOPTION_OptinFormBorderWidth", "2");
INSERT INTO `wp_postmeta` VALUES("261", "111", "_WPMSGOPTION_OptinFormBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("262", "111", "_WPMSGOPTION_ContactFormBackgroundColor", "FDFC63");
INSERT INTO `wp_postmeta` VALUES("263", "111", "_WPMSGOPTION_ContactFormInputBackgroundColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("264", "111", "_WPMSGOPTION_ContactFormSubmitBackgroundColor", "E6E6E6");
INSERT INTO `wp_postmeta` VALUES("265", "111", "_WPMSGOPTION_ContactFormSubmitTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("266", "111", "_WPMSGOPTION_ContactFormTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("267", "111", "_WPMSGOPTION_ContactFormTextSize", "");
INSERT INTO `wp_postmeta` VALUES("268", "111", "_WPMSGOPTION_ContactFormBorderColor", "000000");
INSERT INTO `wp_postmeta` VALUES("269", "111", "_WPMSGOPTION_ContactFormBorderWidth", "2");
INSERT INTO `wp_postmeta` VALUES("270", "111", "_WPMSGOPTION_ContactFormBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("271", "111", "_WPMSGOPTION_DirectionsBackgroundColor", "FDFC63");
INSERT INTO `wp_postmeta` VALUES("272", "111", "_WPMSGOPTION_DirectionsInputBackgroundColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("273", "111", "_WPMSGOPTION_DirectionsSubmitBackgroundColor", "E6E6E6");
INSERT INTO `wp_postmeta` VALUES("274", "111", "_WPMSGOPTION_DirectionsSubmitTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("275", "111", "_WPMSGOPTION_DirectionsTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("276", "111", "_WPMSGOPTION_DirectionsTextSize", "");
INSERT INTO `wp_postmeta` VALUES("277", "111", "_WPMSGOPTION_DirectionsBorderColor", "000000");
INSERT INTO `wp_postmeta` VALUES("278", "111", "_WPMSGOPTION_DirectionsBorderWidth", "2");
INSERT INTO `wp_postmeta` VALUES("279", "111", "_WPMSGOPTION_DirectionsBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("280", "111", "_WPMSGOPTION_SlideshowBackgroundColor", "FDFC63");
INSERT INTO `wp_postmeta` VALUES("281", "111", "_WPMSGOPTION_SlideshowTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("282", "111", "_WPMSGOPTION_SlideshowTextSize", "");
INSERT INTO `wp_postmeta` VALUES("283", "111", "_WPMSGOPTION_SlideshowBorderColor", "000000");
INSERT INTO `wp_postmeta` VALUES("284", "111", "_WPMSGOPTION_SlideshowBorderWidth", "2");
INSERT INTO `wp_postmeta` VALUES("285", "111", "_WPMSGOPTION_SlideshowBorderStyle", "Dashed");
INSERT INTO `wp_postmeta` VALUES("286", "111", "_WPMSGOPTION_AccordianTitleBackgroundColor", "FDB242");
INSERT INTO `wp_postmeta` VALUES("287", "111", "_WPMSGOPTION_AccordianTitleTextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("288", "111", "_WPMSGOPTION_AccordianTitleTextSize", "");
INSERT INTO `wp_postmeta` VALUES("289", "111", "_WPMSGOPTION_AccordianTitleSelectedBackgroundColor", "015FE6");
INSERT INTO `wp_postmeta` VALUES("290", "111", "_WPMSGOPTION_AccordianTitleSelectedTextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("291", "111", "_WPMSGOPTION_AccordianBackgroundColor", "FDFC63");
INSERT INTO `wp_postmeta` VALUES("292", "111", "_WPMSGOPTION_AccordianTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("293", "111", "_WPMSGOPTION_AccordianTextSize", "");
INSERT INTO `wp_postmeta` VALUES("294", "111", "_WPMSGOPTION_AccordianSeparatorColor", "878787");
INSERT INTO `wp_postmeta` VALUES("295", "111", "_WPMSGOPTION_AccordianBorderColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("296", "111", "_WPMSGOPTION_AccordianBorderWidth", "");
INSERT INTO `wp_postmeta` VALUES("297", "111", "_WPMSGOPTION_AccordianBorderStyle", "None");
INSERT INTO `wp_postmeta` VALUES("298", "111", "_WPMSGOPTION_AccordianArrowImage", "LightTriangle");
INSERT INTO `wp_postmeta` VALUES("299", "111", "_WPMSGOPTION_AccordianArrowColor", "Transparent");
INSERT INTO `wp_postmeta` VALUES("300", "111", "_WPMSGOPTION_CouponBackgroundColor", "FDFC63");
INSERT INTO `wp_postmeta` VALUES("301", "111", "_WPMSGOPTION_CouponTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("302", "111", "_WPMSGOPTION_CouponTextSize", "");
INSERT INTO `wp_postmeta` VALUES("303", "111", "_WPMSGOPTION_CouponBorderColor", "000000");
INSERT INTO `wp_postmeta` VALUES("304", "111", "_WPMSGOPTION_CouponBorderWidth", "");
INSERT INTO `wp_postmeta` VALUES("305", "111", "_WPMSGOPTION_CouponBorderStyle", "None");
INSERT INTO `wp_postmeta` VALUES("306", "111", "_WPMSGOPTION_SearchBackgroundColor", "FDFC63");
INSERT INTO `wp_postmeta` VALUES("307", "111", "_WPMSGOPTION_SearchTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("308", "111", "_WPMSGOPTION_SearchTextSize", "");
INSERT INTO `wp_postmeta` VALUES("309", "111", "_WPMSGOPTION_SearchBorderColor", "000000");
INSERT INTO `wp_postmeta` VALUES("310", "111", "_WPMSGOPTION_SearchBorderWidth", "2");
INSERT INTO `wp_postmeta` VALUES("311", "111", "_WPMSGOPTION_SearchBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("312", "111", "_WPMSGOPTION_SearchInputBackgroundColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("313", "111", "_WPMSGOPTION_SearchSubmitBackgroundColor", "E6E6E6");
INSERT INTO `wp_postmeta` VALUES("314", "111", "_WPMSGOPTION_SearchSubmitTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("315", "111", "_WPMSGOPTION_SearchSelectedBackgroundColor", "015FE6");
INSERT INTO `wp_postmeta` VALUES("316", "111", "_WPMSGOPTION_SearchSelectedTextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("317", "111", "_WPMSGOPTION_SearchHighlightColor", "E6E6E6");
INSERT INTO `wp_postmeta` VALUES("318", "111", "_WPMSGOPTION_RssBackgroundColor", "FDFC63");
INSERT INTO `wp_postmeta` VALUES("319", "111", "_WPMSGOPTION_RssTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("320", "111", "_WPMSGOPTION_RssTextSize", "");
INSERT INTO `wp_postmeta` VALUES("321", "111", "_WPMSGOPTION_RssBorderColor", "000000");
INSERT INTO `wp_postmeta` VALUES("322", "111", "_WPMSGOPTION_RssBorderWidth", "2");
INSERT INTO `wp_postmeta` VALUES("323", "111", "_WPMSGOPTION_RssBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("324", "111", "_WPMSGOPTION_RssSelectedBackgroundColor", "015FE6");
INSERT INTO `wp_postmeta` VALUES("325", "111", "_WPMSGOPTION_RssSelectedTextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("326", "111", "_WPMSGOPTION_ThemeStyleCSS", "<style  type=\"text/css\" >body{position:relative;-webkit-text-size-adjust:none;min-height:416px;{--wpmsgtknsinglepageminimumheight--}font-family:helvetica,sans-serif;-webkit-background-size:.438em 100%;Background:#FFFFFF;-webkit-touch-callout:none;margin:0;margin-right:auto; margin-left:auto;}img.alignright {float:right; max-width:100%; margin:0 0 1em 1em}img.alignleft {float:left; max-width:100%; margin:0 1em 1em 0}img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}a img.alignright {float:right; max-width:100%; margin:0 0 1em 1em}a img.alignleft {float:left; max-width:100%; margin:0 1em 1em 0}a img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}#accordion {background:#FDFC63;border-color:#FFFFFF;border-width:px;border-style:None;margin:5px 5px 5px 5px;border-radius:8px}#accordion H2 {padding-top: 5pxpadding-bottom: 5px; padding-left: 15px; padding-right: 15px; margin: 0px 0px 0px 0px; background:#FDB242;font-size:17px;color:#FFFFFF;cursor: pointer; height:43px;overflow:hidden;border-top:1px solid #878787;font-weight: bold; line-height: 40px;}#accordion H2:first-child{border-top:none;border-radius:8px}#accordion H2:last-child{border-bottom-left-radius:8px;border-bottom-right-radius:8px}#accordion H2.current {background-color:#015FE6; color:#FFFFFF; cursor: default}#accordion div.acchead {padding-top: 5pxpadding-bottom: 5px; padding-left: 15px; padding-right: 15px; margin: 0px 0px 0px 0px; font-weight:bold;font-size:17px;background:#FDB242;font-size:17px;color:#FFFFFF;cursor: pointer; height:43px;overflow:hidden;border-top:1px solid #878787;line-height: 40px;}#accordion div.acchead:first-child{border-top:none;border-top-left-radius:8px;border-top-right-radius:8px;}#accordion div.acchead.current {background-color:#015FE6; color:#FFFFFF; cursor: default}#accordion .pane {padding-top: 15pxpadding-bottom: 15px; padding-left: 15px; padding-right: 15px; display: none; color:#000000;border-bottom-left-radius:8px;border-bottom-right-radius:8px;}#accordion .acchead .accarrow {float: right;valign: center;width:24px!important;height:24px!important;right:10px;top:18px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/arrows/Down_LightTriangle_Transparent.png) 0 0 no-repeat;margin:0!important ;margin-top: 15px;padding-top: 15px;}.images {background:#FDFC63;color:#000000;border-color:#000000;border-width:2px;border-style:;{--wpmsgtknslideshowheight--}{--wpmsgtknslideshowwidth--}overflow:hidden;margin-left:auto;margin-right:auto;position:relative;cursor:pointer;-moz-border-radius:5px;-moz-box-shadow:0 0 25px #666;-webkit-border-radius:5px;-webkit-box-shadow:0 0 25px #666;border-radius:5px;box-shadow:0 0 25px #666;}.images div {display:none;position:absolute;top:0;left:0;width: 100%;}.images div p a img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}.images div p img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}.images div a img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}.images div img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}.images img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}.images h3 {font-size:22px;font-weight:normal;margin:0 0 20px 0;color:#456;}.slidetabs {clear:both;}.slidetabs a {width:8px;height:8px;float:left;margin:3px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navigator.png) 0 0 no-repeat;display:block;font-size:1px;}.slidetabs a:hover {background-position:0 -8px;}.slidetabs a.current {background-position:0 -16px; } .forward, .backward {float:left;background:#fff url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/hori_large.png) no-repeat;display:block;width:30px;height:30px;cursor:pointer;font-size:1px;text-indent:-9999em;}.forward { background-position: 0 -30px; clear:right; }.forward:hover { background-position:-30px -30px; }.forward:active{ background-position:-60px -30px; } .backward:hover{ background-position:-30px 0; }.backward:active{ background-position:-60px 0; }.disabled {visibility:hidden !important;}.gallery { list-style: none; padding: 0; margin: 0; }.gallery:after { clear: both; content: \".\"; display: block; height: 0; visibility: hidden; }.gallery li { float: left; width: 33.33333333%; }.gallery li a { display: block; margin: 5px; border: 1px solid #3c3c3c; }.gallery li img { display: block; width: 100%; height: auto; }.highlight { background:#E6E6E6;}.highlight_important { background:#E6E6E6;}.center{display:block;text-align:center!important;margin:auto}a:hover .arrow{background:0 -13px!important}#topbar.transparent{background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#202020), to(#858585));background-image: -webkit-linear-gradient(top, #202020, #858585);background-image:-moz-linear-gradient(top, #202020, #858585);background-image: -ms-linear-gradient(top, #202020, #858585);background-image:-o-linear-gradient(top, #202020, #858585);}#topbar{position:relative;left:0;top:0;width:auto;}#title{position:absolute;font-weight:bold;top:0;left:0;right:0;text-align:center;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;color:#FFF;color:#FFFFFF;text-shadow:rgba(0,0,0,0.6) 0 -1px 0;padding:0 10px;}#logo{Background:#FFFFFF;}#content{width:100%;position:relative;min-height:250px;{--wpmsgtknsinglepageminimumheight--}height:auto;z-index:0;overflow:hidden;{--wpmsgtknsinglepagebackgroundimage--}}p {padding:0 5px;color:#000000;}h1 {padding:0 5px;color:#000000;}h2 {padding:0 5px;color:#000000;}h3 {padding:0 5px;color:#000000;}h4 {padding:0 5px;color:#000000;}h5 {padding:0 5px;color:#000000;}h6 {padding:0 5px;color:#000000;}blockquote {background:#FDFC63;color:#000000;border-color:#FDFC63;border-width:px;border-style:None;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 6px 10px;padding:0 5px;border-radius:8px}blockquote p {background:#FDFC63;color:#000000;}.ezmbfooter p {padding:0 5px;color:#000000;}.ezmbtable {width:95%;margin-left:auto;margin-right:auto;border-collapse:collapse;background:#FDFC63;color:#000000;border-color:#FDB242;border-width:2px;border-style:Solid;}.ezmbtable td {background:#FDFC63;color:#000000;border-color:#FDB242;border-width:2px;border-style:Solid;padding:2px;}.ezmbtable td p {background:#FDFC63;color:#000000;}.ezmbiconlist {color:#000000;}.menulist {background:#FDB242;color:#FFFFFF;border-color:#FFFFFF;border-width:px;border-style:None;opacity:1;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.menulist span.name{color:#FFFFFF;text-decoration:none}.menulist span.menudesc{color:#;text-decoration:none}.menulist td a{text-decoration:none}.menulist td a img{vertical-align:text-top;text-decoration:none}.menulist td{vertical-align:text-top;}.searchlist {background:#FDFC63;color:#000000;border-color:#000000;border-width:2px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.searchform {background:#FDFC63;color:#000000;border-color:#000000;border-width:2px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.searchform .button input {background:#E6E6E6;color:#000000;}.searchlist:hover,{background:-webkit-gradient(linear,0% 0%,0% 100%,from(#058cf5),to(#015fe6))}.searchlist a:hover {background-color:#CCF}.searchlist li a:hover{background:#015FE6;}.searchlist a{display:block;height:43px;width:auto;text-decoration:none}.searchlist a img{width:auto;height:32px;float:left;margin:5px 0 0 5px}.searchlist .name{width:auto;font-weight:bold;font-size:17px;color:#000000;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;float:left;margin:11px 0 0 7px}.searchlist a:hover .name{color:#FFFFFF;}.searchlistsnippet{padding-left:5px;padding-right:5px;}.rssfeedlist {background:#FDFC63;color:#000000;border-color:#000000;border-width:2px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.rssfeedlist:hover{background:-webkit-gradient(linear,0% 0%,0% 100%,from(#058cf5),to(#015fe6))}.rssfeedlist a:hover {background-color:#CCF}.rssfeedlist li a:hover{background-color:#015fe6}.rssfeedlist a{display:block;min-height:43px;width:auto;text-decoration:none}.rssfeedlist a img{width:auto;height:32px;float:left;margin:5px 0 0 5px}.rssfeedlist .name{width:auto;font-weight:bold;font-size:17px;color:#000000;float:left;margin:11px 0 0 7px}.rssfeedlist a:hover .name{color:#FFFFFF;}.rssfeedlistsnippet{padding-left:5px;padding-right:5px;}.ezmbcouponwidget {background:#FDFC63;color:#000000;border-color:#000000;border-width:px;border-style:None;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.optinform {background:#FDFC63;color:#000000;border-color:#000000;border-width:2px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.optinform .button input {background:#E6E6E6;color:#000000;}.contactform {background:#FDFC63;color:#000000;border-color:#000000;border-width:2px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.contactform .button input {background:#E6E6E6;color:#000000;}.customform {background:#FDFC63;color:#000000;border-color:#000000;border-width:2px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.customform .button input {background:#E6E6E6;color:#000000;}li.customformrow{position:relative;list-style-type:none;display:block;height:43px;overflow:hidden;border-top:1px solid #878787;border-top:1px solid #878787;width:auto}li.customformrowbelow{position:relative;list-style-type:none;display:block;height:43px;overflow:hidden;width:auto}p.customformrow{-webkit-margin-before: 0px;border-top:1px solid #878787;width:auto}.customformrow .customformlabel, .customformrow .customformlabelfull, .customformtextbox .customformlabel, .customformradiorow .customformlabel{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;padding-left:5px;overflow:hidden}.customformrow .customformlabel{line-height:44px;}.customformrow .customformlabelfull{line-height:44px;width:100%;height:auto;}.customformrow input {width:50%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.customformrowbelow input {width:100%;min-width:95%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}input.customformrowrequired{background: #ff8080;}.customformrow input:not([type=\'checkbox\']) {-webkit-appearance:none;}.customformrow select{width:50%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.customformrow:first-child input{border-top-right-radius:8px}.customformrow:last-child input{border-bottom-right-radius:8px}.customformtextbox{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.customformtextbox img{max-width:100%}.customformtextbox p{margin-top:2px;color:#000;margin-bottom:2px;text-align:justify}.customformtextbox ul{list-style:circle!important;margin:3px 0}.customformtextbox li{margin:0!important}.customformtextbox textarea{margin-top:5px;font-size:medium;padding:0}.customformradiorow{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.customformrow input[type=\"checkbox\"]{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOff.png)no-repeat;-webkit-appearance:none;border:0;margin:4px 4px 0 0}.customformrow input[type=\"checkbox\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOn.png)no-repeat;}.customformradiorow input[type=\"radio\"]{-webkit-appearance:none;border:0;width:100%;height: 43px;z-index:2;position:absolute;left:50%;margin:0;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOff.png) no-repeat;-webkit-border-radius:0}.customformradiorow input[type=\"radio\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOn.png) no-repeat;}.customformradiorow .customformradiorowinput {height: 40px;}.customformradiorow label{position: absolute;margin-top: 6px;margin-left:60%;text-overflow: ellipsis;}.customformradiorowbelow{position:relative;overflow:hidden;padding:5px 9px}.customformradiorowbelowlabel{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.customformradiorowbelowlabel .customformlabel{left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;padding-left:5px;overflow:hidden}.customformradiorowbelow input[type=\"radio\"]{-webkit-appearance:none;border:0;width:100%;height: 43px;z-index:2;position:absolute;left:10px;margin:0;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOff.png) no-repeat;-webkit-border-radius:0}.customformradiorowbelow input[type=\"radio\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOn.png) no-repeat;}.customformradiorowbelow .customformradiorowinputbelow {height: 40px;}span.customformlabelfull{font-weight:bold;font-size:17px;}.customformradiorowbelow label{position: absolute;margin-top: 6px;margin-left:45px;text-overflow: ellipsis;}li.customformrowbelow select{width:100%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.customformrowcheckboxright{position:relative;overflow:hidden;border-top:1px solid #878787;height: 40px;padding:5px 9px}.customformrowcheckboxright .customformlabel {left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;line-height:44px;overflow:hidden}.customformrowcheckboxright input[type=\"checkbox\"]{position: absolute;height: 40px;width: 35px;right:0;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOff.png)no-repeat;-webkit-appearance:none;border:0;margin:4px 4px 0 0}.customformrowcheckboxright input[type=\"checkbox\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOn.png) no-repeat;}.customformrowcheckboxleft{position:relative;overflow:hidden;border-top:1px solid #878787;height: 40px;padding:5px 9px}.customformrowcheckboxleft .customformlabel {margin-left:40px;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;line-height:44px;overflow:hidden}.customformrowcheckboxleft input[type=\"checkbox\"]{position: absolute;height: 40px;width: 35px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOff.png)no-repeat;-webkit-appearance:none;border:0;margin:4px 4px 0 0}.customformrowcheckboxleft input[type=\"checkbox\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOn.png) no-repeat;} .directions {background:#FDFC63;color:#000000;border-color:#000000;border-width:2px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.directions .button input {background:#E6E6E6;color:#000000;}.clear {clear: both;}.ezmbphone {margin-left: auto;margin-right: auto;text-align: center;}.ezmbphoneimg {margin-left: auto;margin-right: auto;text-align: center;}.phonebtnimg {margin-left: auto;margin-right: auto;text-align: center;}.phonebtn, .phonebtn:visited {background:#04BF04;color:#FFFFFF;border-color:#04BF04;border-width:px;border-style:None;-webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.6);text-shadow: 0 -1px 1px rgba(0,0,0,0.25);border-bottom: 1px solid rgba(0,0,0,0.25);display: inline-block; padding: 5px 10px 6px; text-decoration: none;border-radius: 10px;position: relative;cursor: pointer;font-weight:bold;}.ezmbfooter {Background:#FDFC63;margin:0;}.ezmbfooter p {margin:0;}.textbox{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.searchbox{height:44px;background:-webkit-gradient(linear,0% 0%,0% 100%,from(#f1f3f4),color-stop(3%,#e0e4e7),color-stop(50%,#c7cfd4),color-stop(51%,#bec7cd),color-stop(97%,#b4bec6),to(#8999a5));width:100%;margin:-13px 0 13px}.searchbox form{height:24px;border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/searchfield.png) 4 14 1 24;display:block;position:relative;top:8px;border-width:4px 14px 1px 24px;margin:auto}fieldset{border:0;margin:0;padding:0}.searchbox input[type=\"text\"]{border:0;-webkit-appearance:none;height:18px;float:left;font-size:13px;position:relative;top:2px;left:2px;padding:0}.textbox img{max-width:100%}.textbox p{margin-top:2px;color:#000;margin-bottom:2px;text-align:justify}.textbox ul{list-style:circle!important;margin:3px 0}.textbox li{margin:0!important}.menulist li:first-child,.menulist li.form:first-child{border-top:0}.menu,.checkbox,.radiobutton,.select,li.button,li.bigfield,li.smallfield,li.searchsmallfield,li.optinsmallfield,li.contactsmallfield,li.mapsmallfield{position:relative;list-style-type:none;display:block;height:43px;overflow:hidden;border-top:1px solid #878787;border-top:1px solid #878787;width:auto}.menulist li:first-child:hover,.menulist li:first-child a,.radiobutton:first-child input,.select:first-child select,li.button:first-child input,.bigfield:first-child input{border-top-left-radius:8px;border-top-right-radius:8px}.menulist li:last-child:hover,.menulist li:last-child a,.radiobutton:last-child input,.select:last-child select,li.button:last-child input,.bigfield:last-child input{border-bottom-left-radius:8px;border-bottom-right-radius:8px}.menu:hover,.store:hover,.list #content li a:hover,.list .withimage:hover,.applist li:hover:nth-child(n),.ipodlist li:hover:nth-child(n){background:#015FE6;color:#FFFFFF;}.menu a:hover .comment{color:#FFFFFF;}.menu a{display:block;height:43px;width:auto;text-decoration:none}.menu a img{width:auto;height:32px;float:left;margin:5px 0 0 5px}.menu .name,.checkbox .name,.radiobutton .name{width:auto;font-weight:bold;font-size:17px;color:#FFFFFF;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;float:left;margin:11px 0 0 7px}.menu-item{position:relative;list-style-type:none;display:block;height:43px;overflow:hidden;border-top:1px solid #878787;border-top:1px solid #878787;width:auto}.menu-item a{display:block;height:43px;width:auto;text-decoration:none}.menu-item a img{width:auto;height:32px;float:left;margin:5px 0 0 5px}.menu-item .name,.checkbox .name,.radiobutton .name{width:auto;font-weight:bold;font-size:17px;color:#FFFFFF;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;float:left;margin:11px 0 0 7px}.menu-item:hover{background:#015FE6;color:#FFFFFF;}.menu-item a:hover .comment{color:#FFFFFF;}.menu-item .comment{width:auto;font-size:17px;text-overflow:ellipsis;overflow:hidden;max-width:75%;white-space:nowrap;float:right;color:#324f85;margin:11px 30px 0 0}.menu-item .arrow{position:absolute;width:24px!important;height:24px!important;right:10px;top:12px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/arrows/LightOpenArrow_Transparent.png) 0 0 no-repeat;margin:0!important}.menu-item .arrowleft{float:left;width:24px!important;height:24px!important;left:10px;top:12px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/arrows/LightOpenArrow_Transparent.png) 0 0 no-repeat;margin:0!important}.menu-item a:hover .name{color:#FFFFFF;}.menu .comment{width:auto;font-size:17px;text-overflow:ellipsis;overflow:hidden;max-width:75%;white-space:nowrap;float:right;color:#324f85;margin:11px 30px 0 0}.menu .arrow,.store .arrow,.musiclist .arrow,.list .arrow{position:absolute;width:24px!important;height:24px!important;right:10px;top:12px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/arrows/LightOpenArrow_Transparent.png) 0 0 no-repeat;margin:0!important}.menu .arrowleft,.store .arrowleft,.musiclist .arrowleft,.list .arrowleft{float:left;width:24px!important;height:24px!important;left:10px;top:12px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/arrows/LightOpenArrow_Transparent.png) 0 0 no-repeat;margin:0!important}#leftnav,#leftbutton{position:absolute;font-size:12px;left:9px;font-weight:bold}#leftnav,#leftbutton,#rightnav,#rightbutton{z-index:5000}#leftnav a,#rightnav a,#leftbutton a,#rightbutton a{display:block;color:#fff;text-shadow:rgba(0,0,0,0.6) 0 -1px 0;text-decoration:none}.black #leftnav a:first-child,.transparent #leftnav a:first-child{border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleftblack.png) 0 5 0 13-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleftblack.png) 0 5 0 13-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleftblack.png) 0 5 0 13-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleftblack.png) 0 5 0 13}.black #leftnav a,.transparent #leftnav a{border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleftblack.png) 0 5 0 13-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleftblack.png) 0 5 0 13-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleftblack.png) 0 5 0 13-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleftblack.png) 0 5 0 13}.black #rightnav a:first-child,.transparent #rightnav a:first-child{-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navrightblack.png) 0 13 0 5-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navrightblack.png) 0 13 0 5-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navrightblack.png) 0 13 0 5-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navrightblack.png) 0 13 0 5}.black #rightnav a,.transparent #rightnav a{-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkrightblack.png) 0 13 0 5-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkrightblack.png) 0 13 0 5-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkrightblack.png) 0 13 0 5-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkrightblack.png) 0 13 0 5}.black #leftbutton a,.black #rightbutton a,.transparent #leftbutton a,.transparent #rightbutton a{border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbuttonblack.png) 0 5 0 5-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbuttonblack.png) 0 5 0 5-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbuttonblack.png) 0 5 0 5-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbuttonblack.png) 0 5 0 5}#leftnav a:first-child{z-index:2;border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleft_std.png) 0 5 0 13;-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleft_std.png) 0 5 0 13;-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleft_std.png) 0 5 0 13;-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleft_std.png) 0 5 0 13;width:auto;border-width:0 5px 0 13px;border-radius:16px 6px 6px 16px}#leftnav a{border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleft.png) 0 5 0 13;-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleft.png) 0 5 0 13;-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleft.png) 0 5 0 13;-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleft.png) 0 5 0 13;z-index:3;margin-left:-4px;padding-right:4px;float:left;border-width:0 5px 0 13px;border-radius:16px 6px 6px 16px}#rightnav,#rightbutton{position:absolute;font-size:12px;right:9px;font-weight:bold}#rightnav a{border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkright.png) 0 13 0 5;-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkright.png) 0 13 0 5;-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkright.png) 0 13 0 5;-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkright.png) 0 13 0 5;z-index:3;margin-right:-4px;padding-left:4px;float:right;border-width:0 13px 0 5px;border-radius:6px 16px 16px 6px}#rightnav a:first-child{z-index:2;border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navright_std.png) 0 13 0 5;-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navright_std.png) 0 13 0 5;-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navright_std.png) 0 13 0 5;-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navright_std.png) 0 13 0 5;border-width:0 13px 0 5px;border-radius:6px 16px 16px 6px}#leftbutton a,#rightbutton a{border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbutton_std.png) 0 5 0 5;-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbutton_std.png) 0 5 0 5;-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbutton_std.png) 0 5 0 5;-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbutton_std.png) 0 5 0 5;border-width:0 5px;border-radius:6px}.gform_body ul { list-style-type: none; }.radiobutton .name{z-index:1}.select select{color:#000;font-weight:bold;font-size:17px;border-radius:0}.select option{max-width:90%}.select .arrow{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/arrow.png);width:8px;height:13px;display:block;-webkit-transform:rotate(90deg);position:absolute;right:10px;top:18px}.button input{width:100%;height:100%;-webkit-appearance:none;border:0;font-weight:bold;font-size:17px;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;background:none;border-radius:0}.textbox textarea{margin-top:5px;font-size:medium;padding:0}.bigfield input{-webkit-appearance:none;border:0;height:100%;background:transparent;font-weight:bold;font-size:17px;padding:0 0 0 5px;border-radius:0}.smallfield .name{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;line-height:44px;font-size:17px;padding-left:5px;overflow:hidden}.smallfield input{width:50%;position:absolute;right:0;height:44px;-webkit-appearance:none;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.smallfield:first-child input{border-top-right-radius:8px}.smallfield:last-child input{border-bottom-right-radius:8px}.searchsmallfield .name{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;line-height:44px;font-size:17px;padding-left:5px;overflow:hidden}.searchsmallfield input{width:50%;position:absolute;right:0;height:44px;-webkit-appearance:none;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.searchsmallfield:first-child input{border-top-right-radius:8px}.searchsmallfield:last-child input{border-bottom-right-radius:8px}.optinsmallfield .name{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;line-height:44px;font-size:17px;padding-left:5px;overflow:hidden}.optinsmallfield input{width:50%;position:absolute;right:0;height:44px;-webkit-appearance:none;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.optinsmallfield:first-child input{border-top-right-radius:8px}.optinsmallfield:last-child input{border-bottom-right-radius:8px}.contactsmallfield .name{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;line-height:44px;font-size:17px;padding-left:5px;overflow:hidden}.contactsmallfield input{width:50%;position:absolute;right:0;height:44px;-webkit-appearance:none;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.contactsmallfield:first-child input{border-top-right-radius:8px}.contactsmallfield:last-child input{border-bottom-right-radius:8px}.mapsmallfield .name{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;line-height:44px;font-size:17px;padding-left:5px;overflow:hidden}.mapsmallfield input{width:50%;position:absolute;right:0;height:44px;-webkit-appearance:none;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.mapsmallfield:first-child input{border-top-right-radius:8px}.mapsmallfield:last-child input{border-bottom-right-radius:8px}img,#duobutton a:last-child,#duoselectionbuttons a:first-child,.ipodlist li:hover:nth-child(n) .name,.ipodlist li:hover:nth-child(n) .time{border:0}#triselectionbuttons a:hover,#triselectionbuttons a#pressed,#duoselectionbuttons a:hover,#duoselectionbuttons a#pressed,li#doublead:hover{background:none}.menu a:hover .name,.store:hover .starcomment,.store:hover .name,.store:hover .comment,.list .withimage a:hover .comment,.list #content li a:hover{color:#FFFFFF;}@media screen and (max-width:320px) {#topbar{height:44px}#logo{max-width:320px;width:100%;}#title{line-height:44px;height:44px;font-size:16pt;}.searchbox form{width:272px}.searchbox input[type=\"text\"]{width:275px}.menu .name{max-width:77%}#leftnav a,#rightnav a,#leftbutton a,#rightbutton a{line-height:30px;height:30px}#leftnav img,#rightnav img{margin-top:4px}.textbox textarea{width:85%;}.customformtextbox textarea{width:85%;}.bigfield input{width:295px}.checkbox .name,.radiobutton .name{max-width:190px}#leftnav,#leftbutton,#rightnav,#rightbutton{top:7px}}@media screen and (min-width:321px) {#topbar{height:32px}#title{line-height:32px;height:32px;font-size:13pt}.menu .name{max-width:85%}#leftnav a,#rightnav a,#leftbutton a,#rightbutton a{line-height:24px;height:24px}#leftnav img,#rightnav img{margin-top:4px;height:70%}.textbox textarea{width:85%;}.customformtextbox textarea{width:85%;}#doublead{width:350px!important}.searchbox form{width:432px}.searchbox input[type=\"text\"]{width:435px}.bigfield input{width:455px}.checkbox .name,.radiobutton .name{max-width:75%}#leftnav,#leftbutton,#rightnav,#rightbutton{top:4px}}</style>");
INSERT INTO `wp_postmeta` VALUES("327", "111", "_WPMSGOPTION_ThemeCustomFormStyleCSS", "<style  type=\"text/css\" >.customform {background:#FDFC63;color:#000000;border-color:#000000;border-width:2px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.customform .button input {background:#E6E6E6;color:#000000;}li.customformrow{position:relative;list-style-type:none;display:block;height:43px;overflow:hidden;border-top:1px solid #878787;border-top:1px solid #878787;width:auto}li.customformrowbelow{position:relative;list-style-type:none;display:block;height:43px;overflow:hidden;width:auto}p.customformrow{-webkit-margin-before: 0px;border-top:1px solid #878787;width:auto}.customformrow .customformlabel, .customformrow .customformlabelfull, .customformtextbox .customformlabel, .customformradiorow .customformlabel{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;padding-left:5px;overflow:hidden}.customformrow .customformlabel{line-height:44px;}.customformrow .customformlabelfull{line-height:44px;width:100%;height:auto;}.customformrow input {width:50%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.customformrowbelow input {width:100%;min-width:95%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}input.customformrowrequired{background: #ff8080;}.customformrow input:not([type=\'checkbox\']) {-webkit-appearance:none;}.customformrow select{width:50%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.customformrow:first-child input{border-top-right-radius:8px}.customformrow:last-child input{border-bottom-right-radius:8px}.customformtextbox{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.customformtextbox img{max-width:100%}.customformtextbox p{margin-top:2px;color:#000;margin-bottom:2px;text-align:justify}.customformtextbox ul{list-style:circle!important;margin:3px 0}.customformtextbox li{margin:0!important}.customformtextbox textarea{margin-top:5px;font-size:medium;padding:0}.customformradiorow{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.customformrow input[type=\"checkbox\"]{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOff.png)no-repeat;-webkit-appearance:none;border:0;margin:4px 4px 0 0}.customformrow input[type=\"checkbox\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOn.png)no-repeat;}.customformradiorow input[type=\"radio\"]{-webkit-appearance:none;border:0;width:100%;height: 43px;z-index:2;position:absolute;left:50%;margin:0;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOff.png) no-repeat;-webkit-border-radius:0}.customformradiorow input[type=\"radio\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOn.png) no-repeat;}.customformradiorow .customformradiorowinput {height: 40px;}.customformradiorow label{position: absolute;margin-top: 6px;margin-left:60%;text-overflow: ellipsis;}.customformradiorowbelow{position:relative;overflow:hidden;padding:5px 9px}.customformradiorowbelowlabel{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.customformradiorowbelowlabel .customformlabel{left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;padding-left:5px;overflow:hidden}.customformradiorowbelow input[type=\"radio\"]{-webkit-appearance:none;border:0;width:100%;height: 43px;z-index:2;position:absolute;left:10px;margin:0;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOff.png) no-repeat;-webkit-border-radius:0}.customformradiorowbelow input[type=\"radio\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOn.png) no-repeat;}.customformradiorowbelow .customformradiorowinputbelow {height: 40px;}span.customformlabelfull{font-weight:bold;font-size:17px;}.customformradiorowbelow label{position: absolute;margin-top: 6px;margin-left:45px;text-overflow: ellipsis;}li.customformrowbelow select{width:100%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.customformrowcheckboxright{position:relative;overflow:hidden;border-top:1px solid #878787;height: 40px;padding:5px 9px}.customformrowcheckboxright .customformlabel {left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;line-height:44px;overflow:hidden}.customformrowcheckboxright input[type=\"checkbox\"]{position: absolute;height: 40px;width: 35px;right:0;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOff.png)no-repeat;-webkit-appearance:none;border:0;margin:4px 4px 0 0}.customformrowcheckboxright input[type=\"checkbox\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOn.png) no-repeat;}.customformrowcheckboxleft{position:relative;overflow:hidden;border-top:1px solid #878787;height: 40px;padding:5px 9px}.customformrowcheckboxleft .customformlabel {margin-left:40px;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;line-height:44px;overflow:hidden}.customformrowcheckboxleft input[type=\"checkbox\"]{position: absolute;height: 40px;width: 35px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOff.png)no-repeat;-webkit-appearance:none;border:0;margin:4px 4px 0 0}.customformrowcheckboxleft input[type=\"checkbox\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOn.png) no-repeat;}</style>");
INSERT INTO `wp_postmeta` VALUES("328", "112", "_WPMSGOPTION_PageBackgroundColor", "E3E3C3");
INSERT INTO `wp_postmeta` VALUES("329", "112", "_WPMSGOPTION_LogoBackgroundColor", "E6E6E6");
INSERT INTO `wp_postmeta` VALUES("330", "112", "_WPMSGOPTION_FooterBackgroundColor", "E6E6E6");
INSERT INTO `wp_postmeta` VALUES("331", "112", "_WPMSGOPTION_ParagraphTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("332", "112", "_WPMSGOPTION_ParagraphTextSize", "");
INSERT INTO `wp_postmeta` VALUES("333", "112", "_WPMSGOPTION_BackgroundImage", "");
INSERT INTO `wp_postmeta` VALUES("334", "112", "_WPMSGOPTION_BackgroundImageRepeat", "");
INSERT INTO `wp_postmeta` VALUES("335", "112", "_WPMSGOPTION_BackgroundImagePosition", "");
INSERT INTO `wp_postmeta` VALUES("336", "112", "_WPMSGOPTION_TopbarStartColor", "202020");
INSERT INTO `wp_postmeta` VALUES("337", "112", "_WPMSGOPTION_TopbarEndColor", "858585");
INSERT INTO `wp_postmeta` VALUES("338", "112", "_WPMSGOPTION_TopbarTextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("339", "112", "_WPMSGOPTION_TopbarButtonColor", "std");
INSERT INTO `wp_postmeta` VALUES("340", "112", "_WPMSGOPTION_H1TextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("341", "112", "_WPMSGOPTION_H1TextSize", "");
INSERT INTO `wp_postmeta` VALUES("342", "112", "_WPMSGOPTION_H1TextShadow", "");
INSERT INTO `wp_postmeta` VALUES("343", "112", "_WPMSGOPTION_H2TextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("344", "112", "_WPMSGOPTION_H2TextSize", "");
INSERT INTO `wp_postmeta` VALUES("345", "112", "_WPMSGOPTION_H2TextShadow", "");
INSERT INTO `wp_postmeta` VALUES("346", "112", "_WPMSGOPTION_H3TextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("347", "112", "_WPMSGOPTION_H3TextSize", "");
INSERT INTO `wp_postmeta` VALUES("348", "112", "_WPMSGOPTION_H3TextShadow", "");
INSERT INTO `wp_postmeta` VALUES("349", "112", "_WPMSGOPTION_H4TextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("350", "112", "_WPMSGOPTION_H4TextSize", "");
INSERT INTO `wp_postmeta` VALUES("351", "112", "_WPMSGOPTION_H4TextShadow", "");
INSERT INTO `wp_postmeta` VALUES("352", "112", "_WPMSGOPTION_H5TextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("353", "112", "_WPMSGOPTION_H5TextSize", "");
INSERT INTO `wp_postmeta` VALUES("354", "112", "_WPMSGOPTION_H5TextShadow", "");
INSERT INTO `wp_postmeta` VALUES("355", "112", "_WPMSGOPTION_H6TextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("356", "112", "_WPMSGOPTION_H6TextSize", "");
INSERT INTO `wp_postmeta` VALUES("357", "112", "_WPMSGOPTION_H6TextShadow", "");
INSERT INTO `wp_postmeta` VALUES("358", "112", "_WPMSGOPTION_MenuBackgroundColor", "FF174D");
INSERT INTO `wp_postmeta` VALUES("359", "112", "_WPMSGOPTION_IconTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("360", "112", "_WPMSGOPTION_MenuTextColor", "F7FF05");
INSERT INTO `wp_postmeta` VALUES("361", "112", "_WPMSGOPTION_MenuTextSize", "");
INSERT INTO `wp_postmeta` VALUES("362", "112", "_WPMSGOPTION_MenuBorderColor", "FF174D");
INSERT INTO `wp_postmeta` VALUES("363", "112", "_WPMSGOPTION_MenuBorderWidth", "");
INSERT INTO `wp_postmeta` VALUES("364", "112", "_WPMSGOPTION_MenuBorderStyle", "None");
INSERT INTO `wp_postmeta` VALUES("365", "112", "_WPMSGOPTION_MenuOpacity", "1");
INSERT INTO `wp_postmeta` VALUES("366", "112", "_WPMSGOPTION_MenuArrowImage", "LightOpenArrow");
INSERT INTO `wp_postmeta` VALUES("367", "112", "_WPMSGOPTION_MenuArrowColor", "Transparent");
INSERT INTO `wp_postmeta` VALUES("368", "112", "_WPMSGOPTION_MenuSelectedBackgroundColor", "015FE6");
INSERT INTO `wp_postmeta` VALUES("369", "112", "_WPMSGOPTION_MenuSelectedTextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("370", "112", "_WPMSGOPTION_MenuSeparatorColor", "878787");
INSERT INTO `wp_postmeta` VALUES("371", "112", "_WPMSGOPTION_BlockquoteBackgroundColor", "E6E6E6");
INSERT INTO `wp_postmeta` VALUES("372", "112", "_WPMSGOPTION_BlockquoteTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("373", "112", "_WPMSGOPTION_BlockquoteTextSize", "");
INSERT INTO `wp_postmeta` VALUES("374", "112", "_WPMSGOPTION_BlockquoteBorderColor", "E6E6E6");
INSERT INTO `wp_postmeta` VALUES("375", "112", "_WPMSGOPTION_BlockquoteBorderWidth", "");
INSERT INTO `wp_postmeta` VALUES("376", "112", "_WPMSGOPTION_BlockquoteBorderStyle", "None");
INSERT INTO `wp_postmeta` VALUES("377", "112", "_WPMSGOPTION_TableBackgroundColor", "E6E6E6");
INSERT INTO `wp_postmeta` VALUES("378", "112", "_WPMSGOPTION_TableTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("379", "112", "_WPMSGOPTION_TableTextSize", "");
INSERT INTO `wp_postmeta` VALUES("380", "112", "_WPMSGOPTION_TableBorderColor", "000000");
INSERT INTO `wp_postmeta` VALUES("381", "112", "_WPMSGOPTION_TableBorderWidth", "1");
INSERT INTO `wp_postmeta` VALUES("382", "112", "_WPMSGOPTION_TableBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("383", "112", "_WPMSGOPTION_TableWidth", "95");
INSERT INTO `wp_postmeta` VALUES("384", "112", "_WPMSGOPTION_TablePadding", "2");
INSERT INTO `wp_postmeta` VALUES("385", "112", "_WPMSGOPTION_ClickToCallBackgroundColor", "04BF04");
INSERT INTO `wp_postmeta` VALUES("386", "112", "_WPMSGOPTION_ClickToCallTextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("387", "112", "_WPMSGOPTION_ClickToCallTextSize", "");
INSERT INTO `wp_postmeta` VALUES("388", "112", "_WPMSGOPTION_ClickToCallBorderColor", "04BF04");
INSERT INTO `wp_postmeta` VALUES("389", "112", "_WPMSGOPTION_ClickToCallBorderWidth", "");
INSERT INTO `wp_postmeta` VALUES("390", "112", "_WPMSGOPTION_ClickToCallBorderStyle", "None");
INSERT INTO `wp_postmeta` VALUES("391", "112", "_WPMSGOPTION_OptinFormBackgroundColor", "E6E6E6");
INSERT INTO `wp_postmeta` VALUES("392", "112", "_WPMSGOPTION_OptinFormInputBackgroundColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("393", "112", "_WPMSGOPTION_OptinFormSubmitBackgroundColor", "B3B3B3");
INSERT INTO `wp_postmeta` VALUES("394", "112", "_WPMSGOPTION_OptinFormSubmitTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("395", "112", "_WPMSGOPTION_OptinFormTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("396", "112", "_WPMSGOPTION_OptinFormTextSize", "");
INSERT INTO `wp_postmeta` VALUES("397", "112", "_WPMSGOPTION_OptinFormBorderColor", "000000");
INSERT INTO `wp_postmeta` VALUES("398", "112", "_WPMSGOPTION_OptinFormBorderWidth", "2");
INSERT INTO `wp_postmeta` VALUES("399", "112", "_WPMSGOPTION_OptinFormBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("400", "112", "_WPMSGOPTION_ContactFormBackgroundColor", "E6E6E6");
INSERT INTO `wp_postmeta` VALUES("401", "112", "_WPMSGOPTION_ContactFormInputBackgroundColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("402", "112", "_WPMSGOPTION_ContactFormSubmitBackgroundColor", "B3B3B3");
INSERT INTO `wp_postmeta` VALUES("403", "112", "_WPMSGOPTION_ContactFormSubmitTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("404", "112", "_WPMSGOPTION_ContactFormTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("405", "112", "_WPMSGOPTION_ContactFormTextSize", "");
INSERT INTO `wp_postmeta` VALUES("406", "112", "_WPMSGOPTION_ContactFormBorderColor", "000000");
INSERT INTO `wp_postmeta` VALUES("407", "112", "_WPMSGOPTION_ContactFormBorderWidth", "2");
INSERT INTO `wp_postmeta` VALUES("408", "112", "_WPMSGOPTION_ContactFormBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("409", "112", "_WPMSGOPTION_DirectionsBackgroundColor", "E6E6E6");
INSERT INTO `wp_postmeta` VALUES("410", "112", "_WPMSGOPTION_DirectionsInputBackgroundColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("411", "112", "_WPMSGOPTION_DirectionsSubmitBackgroundColor", "B3B3B3");
INSERT INTO `wp_postmeta` VALUES("412", "112", "_WPMSGOPTION_DirectionsSubmitTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("413", "112", "_WPMSGOPTION_DirectionsTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("414", "112", "_WPMSGOPTION_DirectionsTextSize", "");
INSERT INTO `wp_postmeta` VALUES("415", "112", "_WPMSGOPTION_DirectionsBorderColor", "000000");
INSERT INTO `wp_postmeta` VALUES("416", "112", "_WPMSGOPTION_DirectionsBorderWidth", "2");
INSERT INTO `wp_postmeta` VALUES("417", "112", "_WPMSGOPTION_DirectionsBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("418", "112", "_WPMSGOPTION_SlideshowBackgroundColor", "E6E6E6");
INSERT INTO `wp_postmeta` VALUES("419", "112", "_WPMSGOPTION_SlideshowTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("420", "112", "_WPMSGOPTION_SlideshowTextSize", "");
INSERT INTO `wp_postmeta` VALUES("421", "112", "_WPMSGOPTION_SlideshowBorderColor", "000000");
INSERT INTO `wp_postmeta` VALUES("422", "112", "_WPMSGOPTION_SlideshowBorderWidth", "");
INSERT INTO `wp_postmeta` VALUES("423", "112", "_WPMSGOPTION_SlideshowBorderStyle", "None");
INSERT INTO `wp_postmeta` VALUES("424", "112", "_WPMSGOPTION_AccordianTitleBackgroundColor", "FF174D");
INSERT INTO `wp_postmeta` VALUES("425", "112", "_WPMSGOPTION_AccordianTitleTextColor", "F7FF05");
INSERT INTO `wp_postmeta` VALUES("426", "112", "_WPMSGOPTION_AccordianTitleTextSize", "");
INSERT INTO `wp_postmeta` VALUES("427", "112", "_WPMSGOPTION_AccordianTitleSelectedBackgroundColor", "015FE6");
INSERT INTO `wp_postmeta` VALUES("428", "112", "_WPMSGOPTION_AccordianTitleSelectedTextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("429", "112", "_WPMSGOPTION_AccordianBackgroundColor", "E6E6E6");
INSERT INTO `wp_postmeta` VALUES("430", "112", "_WPMSGOPTION_AccordianTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("431", "112", "_WPMSGOPTION_AccordianTextSize", "");
INSERT INTO `wp_postmeta` VALUES("432", "112", "_WPMSGOPTION_AccordianSeparatorColor", "878787");
INSERT INTO `wp_postmeta` VALUES("433", "112", "_WPMSGOPTION_AccordianBorderColor", "FF174D");
INSERT INTO `wp_postmeta` VALUES("434", "112", "_WPMSGOPTION_AccordianBorderWidth", "");
INSERT INTO `wp_postmeta` VALUES("435", "112", "_WPMSGOPTION_AccordianBorderStyle", "None");
INSERT INTO `wp_postmeta` VALUES("436", "112", "_WPMSGOPTION_AccordianArrowImage", "LightTriangle");
INSERT INTO `wp_postmeta` VALUES("437", "112", "_WPMSGOPTION_AccordianArrowColor", "Transparent");
INSERT INTO `wp_postmeta` VALUES("438", "112", "_WPMSGOPTION_CouponBackgroundColor", "E6E6E6");
INSERT INTO `wp_postmeta` VALUES("439", "112", "_WPMSGOPTION_CouponTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("440", "112", "_WPMSGOPTION_CouponTextSize", "");
INSERT INTO `wp_postmeta` VALUES("441", "112", "_WPMSGOPTION_CouponBorderColor", "000000");
INSERT INTO `wp_postmeta` VALUES("442", "112", "_WPMSGOPTION_CouponBorderWidth", "2");
INSERT INTO `wp_postmeta` VALUES("443", "112", "_WPMSGOPTION_CouponBorderStyle", "Dashed");
INSERT INTO `wp_postmeta` VALUES("444", "112", "_WPMSGOPTION_SearchBackgroundColor", "E6E6E6");
INSERT INTO `wp_postmeta` VALUES("445", "112", "_WPMSGOPTION_SearchTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("446", "112", "_WPMSGOPTION_SearchTextSize", "");
INSERT INTO `wp_postmeta` VALUES("447", "112", "_WPMSGOPTION_SearchBorderColor", "000000");
INSERT INTO `wp_postmeta` VALUES("448", "112", "_WPMSGOPTION_SearchBorderWidth", "2");
INSERT INTO `wp_postmeta` VALUES("449", "112", "_WPMSGOPTION_SearchBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("450", "112", "_WPMSGOPTION_SearchInputBackgroundColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("451", "112", "_WPMSGOPTION_SearchSubmitBackgroundColor", "B3B3B3");
INSERT INTO `wp_postmeta` VALUES("452", "112", "_WPMSGOPTION_SearchSubmitTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("453", "112", "_WPMSGOPTION_SearchSelectedBackgroundColor", "015FE6");
INSERT INTO `wp_postmeta` VALUES("454", "112", "_WPMSGOPTION_SearchSelectedTextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("455", "112", "_WPMSGOPTION_SearchHighlightColor", "FFFF00");
INSERT INTO `wp_postmeta` VALUES("456", "112", "_WPMSGOPTION_RssBackgroundColor", "E6E6E6");
INSERT INTO `wp_postmeta` VALUES("457", "112", "_WPMSGOPTION_RssTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("458", "112", "_WPMSGOPTION_RssTextSize", "");
INSERT INTO `wp_postmeta` VALUES("459", "112", "_WPMSGOPTION_RssBorderColor", "000000");
INSERT INTO `wp_postmeta` VALUES("460", "112", "_WPMSGOPTION_RssBorderWidth", "2");
INSERT INTO `wp_postmeta` VALUES("461", "112", "_WPMSGOPTION_RssBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("462", "112", "_WPMSGOPTION_RssSelectedBackgroundColor", "015FE6");
INSERT INTO `wp_postmeta` VALUES("463", "112", "_WPMSGOPTION_RssSelectedTextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("464", "112", "_WPMSGOPTION_ThemeStyleCSS", "<style  type=\"text/css\" >body{position:relative;-webkit-text-size-adjust:none;min-height:416px;{--wpmsgtknsinglepageminimumheight--}font-family:helvetica,sans-serif;-webkit-background-size:.438em 100%;Background:#E3E3C3;-webkit-touch-callout:none;margin:0;margin-right:auto; margin-left:auto;}img.alignright {float:right; max-width:100%; margin:0 0 1em 1em}img.alignleft {float:left; max-width:100%; margin:0 1em 1em 0}img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}a img.alignright {float:right; max-width:100%; margin:0 0 1em 1em}a img.alignleft {float:left; max-width:100%; margin:0 1em 1em 0}a img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}#accordion {background:#E6E6E6;border-color:#FF174D;border-width:px;border-style:None;margin:5px 5px 5px 5px;border-radius:8px}#accordion H2 {padding-top: 5pxpadding-bottom: 5px; padding-left: 15px; padding-right: 15px; margin: 0px 0px 0px 0px; background:#FF174D;font-size:17px;color:#F7FF05;cursor: pointer; height:43px;overflow:hidden;border-top:1px solid #878787;font-weight: bold; line-height: 40px;}#accordion H2:first-child{border-top:none;border-radius:8px}#accordion H2:last-child{border-bottom-left-radius:8px;border-bottom-right-radius:8px}#accordion H2.current {background-color:#015FE6; color:#FFFFFF; cursor: default}#accordion div.acchead {padding-top: 5pxpadding-bottom: 5px; padding-left: 15px; padding-right: 15px; margin: 0px 0px 0px 0px; font-weight:bold;font-size:17px;background:#FF174D;font-size:17px;color:#F7FF05;cursor: pointer; height:43px;overflow:hidden;border-top:1px solid #878787;line-height: 40px;}#accordion div.acchead:first-child{border-top:none;border-top-left-radius:8px;border-top-right-radius:8px;}#accordion div.acchead.current {background-color:#015FE6; color:#FFFFFF; cursor: default}#accordion .pane {padding-top: 15pxpadding-bottom: 15px; padding-left: 15px; padding-right: 15px; display: none; color:#000000;border-bottom-left-radius:8px;border-bottom-right-radius:8px;}#accordion .acchead .accarrow {float: right;valign: center;width:24px!important;height:24px!important;right:10px;top:18px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/arrows/Down_LightTriangle_Transparent.png) 0 0 no-repeat;margin:0!important ;margin-top: 15px;padding-top: 15px;}.images {background:#E6E6E6;color:#000000;border-color:#000000;border-width:px;border-style:;{--wpmsgtknslideshowheight--}{--wpmsgtknslideshowwidth--}overflow:hidden;margin-left:auto;margin-right:auto;position:relative;cursor:pointer;-moz-border-radius:5px;-moz-box-shadow:0 0 25px #666;-webkit-border-radius:5px;-webkit-box-shadow:0 0 25px #666;border-radius:5px;box-shadow:0 0 25px #666;}.images div {display:none;position:absolute;top:0;left:0;width: 100%;}.images div p a img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}.images div p img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}.images div a img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}.images div img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}.images img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}.images h3 {font-size:22px;font-weight:normal;margin:0 0 20px 0;color:#456;}.slidetabs {clear:both;}.slidetabs a {width:8px;height:8px;float:left;margin:3px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navigator.png) 0 0 no-repeat;display:block;font-size:1px;}.slidetabs a:hover {background-position:0 -8px;}.slidetabs a.current {background-position:0 -16px; } .forward, .backward {float:left;background:#fff url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/hori_large.png) no-repeat;display:block;width:30px;height:30px;cursor:pointer;font-size:1px;text-indent:-9999em;}.forward { background-position: 0 -30px; clear:right; }.forward:hover { background-position:-30px -30px; }.forward:active{ background-position:-60px -30px; } .backward:hover{ background-position:-30px 0; }.backward:active{ background-position:-60px 0; }.disabled {visibility:hidden !important;}.gallery { list-style: none; padding: 0; margin: 0; }.gallery:after { clear: both; content: \".\"; display: block; height: 0; visibility: hidden; }.gallery li { float: left; width: 33.33333333%; }.gallery li a { display: block; margin: 5px; border: 1px solid #3c3c3c; }.gallery li img { display: block; width: 100%; height: auto; }.highlight { background:#FFFF00;}.highlight_important { background:#FFFF00;}.center{display:block;text-align:center!important;margin:auto}a:hover .arrow{background:0 -13px!important}#topbar.transparent{background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#202020), to(#858585));background-image: -webkit-linear-gradient(top, #202020, #858585);background-image:-moz-linear-gradient(top, #202020, #858585);background-image: -ms-linear-gradient(top, #202020, #858585);background-image:-o-linear-gradient(top, #202020, #858585);}#topbar{position:relative;left:0;top:0;width:auto;}#title{position:absolute;font-weight:bold;top:0;left:0;right:0;text-align:center;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;color:#FFF;color:#FFFFFF;text-shadow:rgba(0,0,0,0.6) 0 -1px 0;padding:0 10px;}#logo{Background:#E3E3C3;}#content{width:100%;position:relative;min-height:250px;{--wpmsgtknsinglepageminimumheight--}height:auto;z-index:0;overflow:hidden;{--wpmsgtknsinglepagebackgroundimage--}}p {padding:0 5px;color:#000000;}h1 {padding:0 5px;color:#000000;}h2 {padding:0 5px;color:#000000;}h3 {padding:0 5px;color:#000000;}h4 {padding:0 5px;color:#000000;}h5 {padding:0 5px;color:#000000;}h6 {padding:0 5px;color:#000000;}blockquote {background:#E6E6E6;color:#000000;border-color:#E6E6E6;border-width:px;border-style:None;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 6px 10px;padding:0 5px;border-radius:8px}blockquote p {background:#E6E6E6;color:#000000;}.ezmbfooter p {padding:0 5px;color:#000000;}.ezmbtable {width:95%;margin-left:auto;margin-right:auto;border-collapse:collapse;background:#E6E6E6;color:#000000;border-color:#000000;border-width:1px;border-style:Solid;}.ezmbtable td {background:#E6E6E6;color:#000000;border-color:#000000;border-width:1px;border-style:Solid;padding:2px;}.ezmbtable td p {background:#E6E6E6;color:#000000;}.ezmbiconlist {color:#000000;}.menulist {background:#FF174D;color:#F7FF05;border-color:#FF174D;border-width:px;border-style:None;opacity:1;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.menulist span.name{color:#F7FF05;text-decoration:none}.menulist span.menudesc{color:#;text-decoration:none}.menulist td a{text-decoration:none}.menulist td a img{vertical-align:text-top;text-decoration:none}.menulist td{vertical-align:text-top;}.searchlist {background:#E6E6E6;color:#000000;border-color:#000000;border-width:2px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.searchform {background:#E6E6E6;color:#000000;border-color:#000000;border-width:2px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.searchform .button input {background:#B3B3B3;color:#000000;}.searchlist:hover,{background:-webkit-gradient(linear,0% 0%,0% 100%,from(#058cf5),to(#015fe6))}.searchlist a:hover {background-color:#CCF}.searchlist li a:hover{background:#015FE6;}.searchlist a{display:block;height:43px;width:auto;text-decoration:none}.searchlist a img{width:auto;height:32px;float:left;margin:5px 0 0 5px}.searchlist .name{width:auto;font-weight:bold;font-size:17px;color:#000000;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;float:left;margin:11px 0 0 7px}.searchlist a:hover .name{color:#FFFFFF;}.searchlistsnippet{padding-left:5px;padding-right:5px;}.rssfeedlist {background:#E6E6E6;color:#000000;border-color:#000000;border-width:2px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.rssfeedlist:hover{background:-webkit-gradient(linear,0% 0%,0% 100%,from(#058cf5),to(#015fe6))}.rssfeedlist a:hover {background-color:#CCF}.rssfeedlist li a:hover{background-color:#015fe6}.rssfeedlist a{display:block;min-height:43px;width:auto;text-decoration:none}.rssfeedlist a img{width:auto;height:32px;float:left;margin:5px 0 0 5px}.rssfeedlist .name{width:auto;font-weight:bold;font-size:17px;color:#000000;float:left;margin:11px 0 0 7px}.rssfeedlist a:hover .name{color:#FFFFFF;}.rssfeedlistsnippet{padding-left:5px;padding-right:5px;}.ezmbcouponwidget {background:#E6E6E6;color:#000000;border-color:#000000;border-width:2px;border-style:Dashed;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.optinform {background:#E6E6E6;color:#000000;border-color:#000000;border-width:2px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.optinform .button input {background:#B3B3B3;color:#000000;}.contactform {background:#E6E6E6;color:#000000;border-color:#000000;border-width:2px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.contactform .button input {background:#B3B3B3;color:#000000;}.customform {background:#E6E6E6;color:#000000;border-color:#000000;border-width:2px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.customform .button input {background:#B3B3B3;color:#000000;}li.customformrow{position:relative;list-style-type:none;display:block;height:43px;overflow:hidden;border-top:1px solid #878787;border-top:1px solid #878787;width:auto}li.customformrowbelow{position:relative;list-style-type:none;display:block;height:43px;overflow:hidden;width:auto}p.customformrow{-webkit-margin-before: 0px;border-top:1px solid #878787;width:auto}.customformrow .customformlabel, .customformrow .customformlabelfull, .customformtextbox .customformlabel, .customformradiorow .customformlabel{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;padding-left:5px;overflow:hidden}.customformrow .customformlabel{line-height:44px;}.customformrow .customformlabelfull{line-height:44px;width:100%;height:auto;}.customformrow input {width:50%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.customformrowbelow input {width:100%;min-width:95%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}input.customformrowrequired{background: #ff8080;}.customformrow input:not([type=\'checkbox\']) {-webkit-appearance:none;}.customformrow select{width:50%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.customformrow:first-child input{border-top-right-radius:8px}.customformrow:last-child input{border-bottom-right-radius:8px}.customformtextbox{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.customformtextbox img{max-width:100%}.customformtextbox p{margin-top:2px;color:#000;margin-bottom:2px;text-align:justify}.customformtextbox ul{list-style:circle!important;margin:3px 0}.customformtextbox li{margin:0!important}.customformtextbox textarea{margin-top:5px;font-size:medium;padding:0}.customformradiorow{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.customformrow input[type=\"checkbox\"]{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOff.png)no-repeat;-webkit-appearance:none;border:0;margin:4px 4px 0 0}.customformrow input[type=\"checkbox\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOn.png)no-repeat;}.customformradiorow input[type=\"radio\"]{-webkit-appearance:none;border:0;width:100%;height: 43px;z-index:2;position:absolute;left:50%;margin:0;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOff.png) no-repeat;-webkit-border-radius:0}.customformradiorow input[type=\"radio\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOn.png) no-repeat;}.customformradiorow .customformradiorowinput {height: 40px;}.customformradiorow label{position: absolute;margin-top: 6px;margin-left:60%;text-overflow: ellipsis;}.customformradiorowbelow{position:relative;overflow:hidden;padding:5px 9px}.customformradiorowbelowlabel{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.customformradiorowbelowlabel .customformlabel{left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;padding-left:5px;overflow:hidden}.customformradiorowbelow input[type=\"radio\"]{-webkit-appearance:none;border:0;width:100%;height: 43px;z-index:2;position:absolute;left:10px;margin:0;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOff.png) no-repeat;-webkit-border-radius:0}.customformradiorowbelow input[type=\"radio\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOn.png) no-repeat;}.customformradiorowbelow .customformradiorowinputbelow {height: 40px;}span.customformlabelfull{font-weight:bold;font-size:17px;}.customformradiorowbelow label{position: absolute;margin-top: 6px;margin-left:45px;text-overflow: ellipsis;}li.customformrowbelow select{width:100%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.customformrowcheckboxright{position:relative;overflow:hidden;border-top:1px solid #878787;height: 40px;padding:5px 9px}.customformrowcheckboxright .customformlabel {left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;line-height:44px;overflow:hidden}.customformrowcheckboxright input[type=\"checkbox\"]{position: absolute;height: 40px;width: 35px;right:0;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOff.png)no-repeat;-webkit-appearance:none;border:0;margin:4px 4px 0 0}.customformrowcheckboxright input[type=\"checkbox\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOn.png) no-repeat;}.customformrowcheckboxleft{position:relative;overflow:hidden;border-top:1px solid #878787;height: 40px;padding:5px 9px}.customformrowcheckboxleft .customformlabel {margin-left:40px;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;line-height:44px;overflow:hidden}.customformrowcheckboxleft input[type=\"checkbox\"]{position: absolute;height: 40px;width: 35px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOff.png)no-repeat;-webkit-appearance:none;border:0;margin:4px 4px 0 0}.customformrowcheckboxleft input[type=\"checkbox\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOn.png) no-repeat;} .directions {background:#E6E6E6;color:#000000;border-color:#000000;border-width:2px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.directions .button input {background:#B3B3B3;color:#000000;}.clear {clear: both;}.ezmbphone {margin-left: auto;margin-right: auto;text-align: center;}.ezmbphoneimg {margin-left: auto;margin-right: auto;text-align: center;}.phonebtnimg {margin-left: auto;margin-right: auto;text-align: center;}.phonebtn, .phonebtn:visited {background:#04BF04;color:#FFFFFF;border-color:#04BF04;border-width:px;border-style:None;-webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.6);text-shadow: 0 -1px 1px rgba(0,0,0,0.25);border-bottom: 1px solid rgba(0,0,0,0.25);display: inline-block; padding: 5px 10px 6px; text-decoration: none;border-radius: 10px;position: relative;cursor: pointer;font-weight:bold;}.ezmbfooter {Background:#E6E6E6;margin:0;}.ezmbfooter p {margin:0;}.textbox{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.searchbox{height:44px;background:-webkit-gradient(linear,0% 0%,0% 100%,from(#f1f3f4),color-stop(3%,#e0e4e7),color-stop(50%,#c7cfd4),color-stop(51%,#bec7cd),color-stop(97%,#b4bec6),to(#8999a5));width:100%;margin:-13px 0 13px}.searchbox form{height:24px;border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/searchfield.png) 4 14 1 24;display:block;position:relative;top:8px;border-width:4px 14px 1px 24px;margin:auto}fieldset{border:0;margin:0;padding:0}.searchbox input[type=\"text\"]{border:0;-webkit-appearance:none;height:18px;float:left;font-size:13px;position:relative;top:2px;left:2px;padding:0}.textbox img{max-width:100%}.textbox p{margin-top:2px;color:#000;margin-bottom:2px;text-align:justify}.textbox ul{list-style:circle!important;margin:3px 0}.textbox li{margin:0!important}.menulist li:first-child,.menulist li.form:first-child{border-top:0}.menu,.checkbox,.radiobutton,.select,li.button,li.bigfield,li.smallfield,li.searchsmallfield,li.optinsmallfield,li.contactsmallfield,li.mapsmallfield{position:relative;list-style-type:none;display:block;height:43px;overflow:hidden;border-top:1px solid #878787;border-top:1px solid #878787;width:auto}.menulist li:first-child:hover,.menulist li:first-child a,.radiobutton:first-child input,.select:first-child select,li.button:first-child input,.bigfield:first-child input{border-top-left-radius:8px;border-top-right-radius:8px}.menulist li:last-child:hover,.menulist li:last-child a,.radiobutton:last-child input,.select:last-child select,li.button:last-child input,.bigfield:last-child input{border-bottom-left-radius:8px;border-bottom-right-radius:8px}.menu:hover,.store:hover,.list #content li a:hover,.list .withimage:hover,.applist li:hover:nth-child(n),.ipodlist li:hover:nth-child(n){background:#015FE6;color:#FFFFFF;}.menu a:hover .comment{color:#FFFFFF;}.menu a{display:block;height:43px;width:auto;text-decoration:none}.menu a img{width:auto;height:32px;float:left;margin:5px 0 0 5px}.menu .name,.checkbox .name,.radiobutton .name{width:auto;font-weight:bold;font-size:17px;color:#F7FF05;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;float:left;margin:11px 0 0 7px}.menu-item{position:relative;list-style-type:none;display:block;height:43px;overflow:hidden;border-top:1px solid #878787;border-top:1px solid #878787;width:auto}.menu-item a{display:block;height:43px;width:auto;text-decoration:none}.menu-item a img{width:auto;height:32px;float:left;margin:5px 0 0 5px}.menu-item .name,.checkbox .name,.radiobutton .name{width:auto;font-weight:bold;font-size:17px;color:#F7FF05;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;float:left;margin:11px 0 0 7px}.menu-item:hover{background:#015FE6;color:#FFFFFF;}.menu-item a:hover .comment{color:#FFFFFF;}.menu-item .comment{width:auto;font-size:17px;text-overflow:ellipsis;overflow:hidden;max-width:75%;white-space:nowrap;float:right;color:#324f85;margin:11px 30px 0 0}.menu-item .arrow{position:absolute;width:24px!important;height:24px!important;right:10px;top:12px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/arrows/LightOpenArrow_Transparent.png) 0 0 no-repeat;margin:0!important}.menu-item .arrowleft{float:left;width:24px!important;height:24px!important;left:10px;top:12px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/arrows/LightOpenArrow_Transparent.png) 0 0 no-repeat;margin:0!important}.menu-item a:hover .name{color:#FFFFFF;}.menu .comment{width:auto;font-size:17px;text-overflow:ellipsis;overflow:hidden;max-width:75%;white-space:nowrap;float:right;color:#324f85;margin:11px 30px 0 0}.menu .arrow,.store .arrow,.musiclist .arrow,.list .arrow{position:absolute;width:24px!important;height:24px!important;right:10px;top:12px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/arrows/LightOpenArrow_Transparent.png) 0 0 no-repeat;margin:0!important}.menu .arrowleft,.store .arrowleft,.musiclist .arrowleft,.list .arrowleft{float:left;width:24px!important;height:24px!important;left:10px;top:12px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/arrows/LightOpenArrow_Transparent.png) 0 0 no-repeat;margin:0!important}#leftnav,#leftbutton{position:absolute;font-size:12px;left:9px;font-weight:bold}#leftnav,#leftbutton,#rightnav,#rightbutton{z-index:5000}#leftnav a,#rightnav a,#leftbutton a,#rightbutton a{display:block;color:#fff;text-shadow:rgba(0,0,0,0.6) 0 -1px 0;text-decoration:none}.black #leftnav a:first-child,.transparent #leftnav a:first-child{border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleftblack.png) 0 5 0 13-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleftblack.png) 0 5 0 13-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleftblack.png) 0 5 0 13-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleftblack.png) 0 5 0 13}.black #leftnav a,.transparent #leftnav a{border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleftblack.png) 0 5 0 13-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleftblack.png) 0 5 0 13-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleftblack.png) 0 5 0 13-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleftblack.png) 0 5 0 13}.black #rightnav a:first-child,.transparent #rightnav a:first-child{-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navrightblack.png) 0 13 0 5-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navrightblack.png) 0 13 0 5-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navrightblack.png) 0 13 0 5-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navrightblack.png) 0 13 0 5}.black #rightnav a,.transparent #rightnav a{-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkrightblack.png) 0 13 0 5-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkrightblack.png) 0 13 0 5-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkrightblack.png) 0 13 0 5-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkrightblack.png) 0 13 0 5}.black #leftbutton a,.black #rightbutton a,.transparent #leftbutton a,.transparent #rightbutton a{border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbuttonblack.png) 0 5 0 5-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbuttonblack.png) 0 5 0 5-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbuttonblack.png) 0 5 0 5-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbuttonblack.png) 0 5 0 5}#leftnav a:first-child{z-index:2;border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleft_std.png) 0 5 0 13;-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleft_std.png) 0 5 0 13;-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleft_std.png) 0 5 0 13;-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleft_std.png) 0 5 0 13;width:auto;border-width:0 5px 0 13px;border-radius:16px 6px 6px 16px}#leftnav a{border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleft.png) 0 5 0 13;-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleft.png) 0 5 0 13;-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleft.png) 0 5 0 13;-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleft.png) 0 5 0 13;z-index:3;margin-left:-4px;padding-right:4px;float:left;border-width:0 5px 0 13px;border-radius:16px 6px 6px 16px}#rightnav,#rightbutton{position:absolute;font-size:12px;right:9px;font-weight:bold}#rightnav a{border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkright.png) 0 13 0 5;-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkright.png) 0 13 0 5;-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkright.png) 0 13 0 5;-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkright.png) 0 13 0 5;z-index:3;margin-right:-4px;padding-left:4px;float:right;border-width:0 13px 0 5px;border-radius:6px 16px 16px 6px}#rightnav a:first-child{z-index:2;border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navright_std.png) 0 13 0 5;-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navright_std.png) 0 13 0 5;-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navright_std.png) 0 13 0 5;-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navright_std.png) 0 13 0 5;border-width:0 13px 0 5px;border-radius:6px 16px 16px 6px}#leftbutton a,#rightbutton a{border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbutton_std.png) 0 5 0 5;-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbutton_std.png) 0 5 0 5;-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbutton_std.png) 0 5 0 5;-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbutton_std.png) 0 5 0 5;border-width:0 5px;border-radius:6px}.gform_body ul { list-style-type: none; }.radiobutton .name{z-index:1}.select select{color:#000;font-weight:bold;font-size:17px;border-radius:0}.select option{max-width:90%}.select .arrow{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/arrow.png);width:8px;height:13px;display:block;-webkit-transform:rotate(90deg);position:absolute;right:10px;top:18px}.button input{width:100%;height:100%;-webkit-appearance:none;border:0;font-weight:bold;font-size:17px;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;background:none;border-radius:0}.textbox textarea{margin-top:5px;font-size:medium;padding:0}.bigfield input{-webkit-appearance:none;border:0;height:100%;background:transparent;font-weight:bold;font-size:17px;padding:0 0 0 5px;border-radius:0}.smallfield .name{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;line-height:44px;font-size:17px;padding-left:5px;overflow:hidden}.smallfield input{width:50%;position:absolute;right:0;height:44px;-webkit-appearance:none;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.smallfield:first-child input{border-top-right-radius:8px}.smallfield:last-child input{border-bottom-right-radius:8px}.searchsmallfield .name{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;line-height:44px;font-size:17px;padding-left:5px;overflow:hidden}.searchsmallfield input{width:50%;position:absolute;right:0;height:44px;-webkit-appearance:none;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.searchsmallfield:first-child input{border-top-right-radius:8px}.searchsmallfield:last-child input{border-bottom-right-radius:8px}.optinsmallfield .name{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;line-height:44px;font-size:17px;padding-left:5px;overflow:hidden}.optinsmallfield input{width:50%;position:absolute;right:0;height:44px;-webkit-appearance:none;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.optinsmallfield:first-child input{border-top-right-radius:8px}.optinsmallfield:last-child input{border-bottom-right-radius:8px}.contactsmallfield .name{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;line-height:44px;font-size:17px;padding-left:5px;overflow:hidden}.contactsmallfield input{width:50%;position:absolute;right:0;height:44px;-webkit-appearance:none;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.contactsmallfield:first-child input{border-top-right-radius:8px}.contactsmallfield:last-child input{border-bottom-right-radius:8px}.mapsmallfield .name{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;line-height:44px;font-size:17px;padding-left:5px;overflow:hidden}.mapsmallfield input{width:50%;position:absolute;right:0;height:44px;-webkit-appearance:none;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.mapsmallfield:first-child input{border-top-right-radius:8px}.mapsmallfield:last-child input{border-bottom-right-radius:8px}img,#duobutton a:last-child,#duoselectionbuttons a:first-child,.ipodlist li:hover:nth-child(n) .name,.ipodlist li:hover:nth-child(n) .time{border:0}#triselectionbuttons a:hover,#triselectionbuttons a#pressed,#duoselectionbuttons a:hover,#duoselectionbuttons a#pressed,li#doublead:hover{background:none}.menu a:hover .name,.store:hover .starcomment,.store:hover .name,.store:hover .comment,.list .withimage a:hover .comment,.list #content li a:hover{color:#FFFFFF;}@media screen and (max-width:320px) {#topbar{height:44px}#logo{max-width:320px;width:100%;}#title{line-height:44px;height:44px;font-size:16pt;}.searchbox form{width:272px}.searchbox input[type=\"text\"]{width:275px}.menu .name{max-width:77%}#leftnav a,#rightnav a,#leftbutton a,#rightbutton a{line-height:30px;height:30px}#leftnav img,#rightnav img{margin-top:4px}.textbox textarea{width:85%;}.customformtextbox textarea{width:85%;}.bigfield input{width:295px}.checkbox .name,.radiobutton .name{max-width:190px}#leftnav,#leftbutton,#rightnav,#rightbutton{top:7px}}@media screen and (min-width:321px) {#topbar{height:32px}#title{line-height:32px;height:32px;font-size:13pt}.menu .name{max-width:85%}#leftnav a,#rightnav a,#leftbutton a,#rightbutton a{line-height:24px;height:24px}#leftnav img,#rightnav img{margin-top:4px;height:70%}.textbox textarea{width:85%;}.customformtextbox textarea{width:85%;}#doublead{width:350px!important}.searchbox form{width:432px}.searchbox input[type=\"text\"]{width:435px}.bigfield input{width:455px}.checkbox .name,.radiobutton .name{max-width:75%}#leftnav,#leftbutton,#rightnav,#rightbutton{top:4px}}</style>");
INSERT INTO `wp_postmeta` VALUES("465", "112", "_WPMSGOPTION_ThemeCustomFormStyleCSS", "<style  type=\"text/css\" >.customform {background:#E6E6E6;color:#000000;border-color:#000000;border-width:2px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.customform .button input {background:#B3B3B3;color:#000000;}li.customformrow{position:relative;list-style-type:none;display:block;height:43px;overflow:hidden;border-top:1px solid #878787;border-top:1px solid #878787;width:auto}li.customformrowbelow{position:relative;list-style-type:none;display:block;height:43px;overflow:hidden;width:auto}p.customformrow{-webkit-margin-before: 0px;border-top:1px solid #878787;width:auto}.customformrow .customformlabel, .customformrow .customformlabelfull, .customformtextbox .customformlabel, .customformradiorow .customformlabel{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;padding-left:5px;overflow:hidden}.customformrow .customformlabel{line-height:44px;}.customformrow .customformlabelfull{line-height:44px;width:100%;height:auto;}.customformrow input {width:50%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.customformrowbelow input {width:100%;min-width:95%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}input.customformrowrequired{background: #ff8080;}.customformrow input:not([type=\'checkbox\']) {-webkit-appearance:none;}.customformrow select{width:50%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.customformrow:first-child input{border-top-right-radius:8px}.customformrow:last-child input{border-bottom-right-radius:8px}.customformtextbox{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.customformtextbox img{max-width:100%}.customformtextbox p{margin-top:2px;color:#000;margin-bottom:2px;text-align:justify}.customformtextbox ul{list-style:circle!important;margin:3px 0}.customformtextbox li{margin:0!important}.customformtextbox textarea{margin-top:5px;font-size:medium;padding:0}.customformradiorow{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.customformrow input[type=\"checkbox\"]{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOff.png)no-repeat;-webkit-appearance:none;border:0;margin:4px 4px 0 0}.customformrow input[type=\"checkbox\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOn.png)no-repeat;}.customformradiorow input[type=\"radio\"]{-webkit-appearance:none;border:0;width:100%;height: 43px;z-index:2;position:absolute;left:50%;margin:0;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOff.png) no-repeat;-webkit-border-radius:0}.customformradiorow input[type=\"radio\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOn.png) no-repeat;}.customformradiorow .customformradiorowinput {height: 40px;}.customformradiorow label{position: absolute;margin-top: 6px;margin-left:60%;text-overflow: ellipsis;}.customformradiorowbelow{position:relative;overflow:hidden;padding:5px 9px}.customformradiorowbelowlabel{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.customformradiorowbelowlabel .customformlabel{left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;padding-left:5px;overflow:hidden}.customformradiorowbelow input[type=\"radio\"]{-webkit-appearance:none;border:0;width:100%;height: 43px;z-index:2;position:absolute;left:10px;margin:0;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOff.png) no-repeat;-webkit-border-radius:0}.customformradiorowbelow input[type=\"radio\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOn.png) no-repeat;}.customformradiorowbelow .customformradiorowinputbelow {height: 40px;}span.customformlabelfull{font-weight:bold;font-size:17px;}.customformradiorowbelow label{position: absolute;margin-top: 6px;margin-left:45px;text-overflow: ellipsis;}li.customformrowbelow select{width:100%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.customformrowcheckboxright{position:relative;overflow:hidden;border-top:1px solid #878787;height: 40px;padding:5px 9px}.customformrowcheckboxright .customformlabel {left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;line-height:44px;overflow:hidden}.customformrowcheckboxright input[type=\"checkbox\"]{position: absolute;height: 40px;width: 35px;right:0;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOff.png)no-repeat;-webkit-appearance:none;border:0;margin:4px 4px 0 0}.customformrowcheckboxright input[type=\"checkbox\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOn.png) no-repeat;}.customformrowcheckboxleft{position:relative;overflow:hidden;border-top:1px solid #878787;height: 40px;padding:5px 9px}.customformrowcheckboxleft .customformlabel {margin-left:40px;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;line-height:44px;overflow:hidden}.customformrowcheckboxleft input[type=\"checkbox\"]{position: absolute;height: 40px;width: 35px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOff.png)no-repeat;-webkit-appearance:none;border:0;margin:4px 4px 0 0}.customformrowcheckboxleft input[type=\"checkbox\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOn.png) no-repeat;}</style>");
INSERT INTO `wp_postmeta` VALUES("466", "113", "_WPMSGOPTION_PageBackgroundColor", "EAE6DD");
INSERT INTO `wp_postmeta` VALUES("467", "113", "_WPMSGOPTION_LogoBackgroundColor", "C7C7C7");
INSERT INTO `wp_postmeta` VALUES("468", "113", "_WPMSGOPTION_FooterBackgroundColor", "C7C7C7");
INSERT INTO `wp_postmeta` VALUES("469", "113", "_WPMSGOPTION_ParagraphTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("470", "113", "_WPMSGOPTION_ParagraphTextSize", "");
INSERT INTO `wp_postmeta` VALUES("471", "113", "_WPMSGOPTION_BackgroundImage", "");
INSERT INTO `wp_postmeta` VALUES("472", "113", "_WPMSGOPTION_BackgroundImageRepeat", "");
INSERT INTO `wp_postmeta` VALUES("473", "113", "_WPMSGOPTION_BackgroundImagePosition", "");
INSERT INTO `wp_postmeta` VALUES("474", "113", "_WPMSGOPTION_TopbarStartColor", "202020");
INSERT INTO `wp_postmeta` VALUES("475", "113", "_WPMSGOPTION_TopbarEndColor", "858585");
INSERT INTO `wp_postmeta` VALUES("476", "113", "_WPMSGOPTION_TopbarTextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("477", "113", "_WPMSGOPTION_TopbarButtonColor", "std");
INSERT INTO `wp_postmeta` VALUES("478", "113", "_WPMSGOPTION_H1TextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("479", "113", "_WPMSGOPTION_H1TextSize", "");
INSERT INTO `wp_postmeta` VALUES("480", "113", "_WPMSGOPTION_H1TextShadow", "");
INSERT INTO `wp_postmeta` VALUES("481", "113", "_WPMSGOPTION_H2TextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("482", "113", "_WPMSGOPTION_H2TextSize", "");
INSERT INTO `wp_postmeta` VALUES("483", "113", "_WPMSGOPTION_H2TextShadow", "");
INSERT INTO `wp_postmeta` VALUES("484", "113", "_WPMSGOPTION_H3TextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("485", "113", "_WPMSGOPTION_H3TextSize", "");
INSERT INTO `wp_postmeta` VALUES("486", "113", "_WPMSGOPTION_H3TextShadow", "");
INSERT INTO `wp_postmeta` VALUES("487", "113", "_WPMSGOPTION_H4TextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("488", "113", "_WPMSGOPTION_H4TextSize", "");
INSERT INTO `wp_postmeta` VALUES("489", "113", "_WPMSGOPTION_H4TextShadow", "");
INSERT INTO `wp_postmeta` VALUES("490", "113", "_WPMSGOPTION_H5TextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("491", "113", "_WPMSGOPTION_H5TextSize", "");
INSERT INTO `wp_postmeta` VALUES("492", "113", "_WPMSGOPTION_H5TextShadow", "");
INSERT INTO `wp_postmeta` VALUES("493", "113", "_WPMSGOPTION_H6TextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("494", "113", "_WPMSGOPTION_H6TextSize", "");
INSERT INTO `wp_postmeta` VALUES("495", "113", "_WPMSGOPTION_H6TextShadow", "");
INSERT INTO `wp_postmeta` VALUES("496", "113", "_WPMSGOPTION_MenuBackgroundColor", "301C04");
INSERT INTO `wp_postmeta` VALUES("497", "113", "_WPMSGOPTION_IconTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("498", "113", "_WPMSGOPTION_MenuTextColor", "F7FF05");
INSERT INTO `wp_postmeta` VALUES("499", "113", "_WPMSGOPTION_MenuTextSize", "");
INSERT INTO `wp_postmeta` VALUES("500", "113", "_WPMSGOPTION_MenuBorderColor", "301C04");
INSERT INTO `wp_postmeta` VALUES("501", "113", "_WPMSGOPTION_MenuBorderWidth", "");
INSERT INTO `wp_postmeta` VALUES("502", "113", "_WPMSGOPTION_MenuBorderStyle", "None");
INSERT INTO `wp_postmeta` VALUES("503", "113", "_WPMSGOPTION_MenuOpacity", "1");
INSERT INTO `wp_postmeta` VALUES("504", "113", "_WPMSGOPTION_MenuArrowImage", "LightOpenArrow");
INSERT INTO `wp_postmeta` VALUES("505", "113", "_WPMSGOPTION_MenuArrowColor", "Transparent");
INSERT INTO `wp_postmeta` VALUES("506", "113", "_WPMSGOPTION_MenuSelectedBackgroundColor", "015FE6");
INSERT INTO `wp_postmeta` VALUES("507", "113", "_WPMSGOPTION_MenuSelectedTextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("508", "113", "_WPMSGOPTION_MenuSeparatorColor", "878787");
INSERT INTO `wp_postmeta` VALUES("509", "113", "_WPMSGOPTION_BlockquoteBackgroundColor", "C7C7C7");
INSERT INTO `wp_postmeta` VALUES("510", "113", "_WPMSGOPTION_BlockquoteTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("511", "113", "_WPMSGOPTION_BlockquoteTextSize", "");
INSERT INTO `wp_postmeta` VALUES("512", "113", "_WPMSGOPTION_BlockquoteBorderColor", "E6E6E6");
INSERT INTO `wp_postmeta` VALUES("513", "113", "_WPMSGOPTION_BlockquoteBorderWidth", "");
INSERT INTO `wp_postmeta` VALUES("514", "113", "_WPMSGOPTION_BlockquoteBorderStyle", "None");
INSERT INTO `wp_postmeta` VALUES("515", "113", "_WPMSGOPTION_TableBackgroundColor", "C7C7C7");
INSERT INTO `wp_postmeta` VALUES("516", "113", "_WPMSGOPTION_TableTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("517", "113", "_WPMSGOPTION_TableTextSize", "");
INSERT INTO `wp_postmeta` VALUES("518", "113", "_WPMSGOPTION_TableBorderColor", "000000");
INSERT INTO `wp_postmeta` VALUES("519", "113", "_WPMSGOPTION_TableBorderWidth", "1");
INSERT INTO `wp_postmeta` VALUES("520", "113", "_WPMSGOPTION_TableBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("521", "113", "_WPMSGOPTION_TableWidth", "95");
INSERT INTO `wp_postmeta` VALUES("522", "113", "_WPMSGOPTION_TablePadding", "2");
INSERT INTO `wp_postmeta` VALUES("523", "113", "_WPMSGOPTION_ClickToCallBackgroundColor", "04BF04");
INSERT INTO `wp_postmeta` VALUES("524", "113", "_WPMSGOPTION_ClickToCallTextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("525", "113", "_WPMSGOPTION_ClickToCallTextSize", "");
INSERT INTO `wp_postmeta` VALUES("526", "113", "_WPMSGOPTION_ClickToCallBorderColor", "04BF04");
INSERT INTO `wp_postmeta` VALUES("527", "113", "_WPMSGOPTION_ClickToCallBorderWidth", "");
INSERT INTO `wp_postmeta` VALUES("528", "113", "_WPMSGOPTION_ClickToCallBorderStyle", "None");
INSERT INTO `wp_postmeta` VALUES("529", "113", "_WPMSGOPTION_OptinFormBackgroundColor", "C7C7C7");
INSERT INTO `wp_postmeta` VALUES("530", "113", "_WPMSGOPTION_OptinFormInputBackgroundColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("531", "113", "_WPMSGOPTION_OptinFormSubmitBackgroundColor", "8AE3E6");
INSERT INTO `wp_postmeta` VALUES("532", "113", "_WPMSGOPTION_OptinFormSubmitTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("533", "113", "_WPMSGOPTION_OptinFormTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("534", "113", "_WPMSGOPTION_OptinFormTextSize", "");
INSERT INTO `wp_postmeta` VALUES("535", "113", "_WPMSGOPTION_OptinFormBorderColor", "000000");
INSERT INTO `wp_postmeta` VALUES("536", "113", "_WPMSGOPTION_OptinFormBorderWidth", "2");
INSERT INTO `wp_postmeta` VALUES("537", "113", "_WPMSGOPTION_OptinFormBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("538", "113", "_WPMSGOPTION_ContactFormBackgroundColor", "C7C7C7");
INSERT INTO `wp_postmeta` VALUES("539", "113", "_WPMSGOPTION_ContactFormInputBackgroundColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("540", "113", "_WPMSGOPTION_ContactFormSubmitBackgroundColor", "8AE3E6");
INSERT INTO `wp_postmeta` VALUES("541", "113", "_WPMSGOPTION_ContactFormSubmitTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("542", "113", "_WPMSGOPTION_ContactFormTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("543", "113", "_WPMSGOPTION_ContactFormTextSize", "");
INSERT INTO `wp_postmeta` VALUES("544", "113", "_WPMSGOPTION_ContactFormBorderColor", "000000");
INSERT INTO `wp_postmeta` VALUES("545", "113", "_WPMSGOPTION_ContactFormBorderWidth", "2");
INSERT INTO `wp_postmeta` VALUES("546", "113", "_WPMSGOPTION_ContactFormBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("547", "113", "_WPMSGOPTION_DirectionsBackgroundColor", "C7C7C7");
INSERT INTO `wp_postmeta` VALUES("548", "113", "_WPMSGOPTION_DirectionsInputBackgroundColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("549", "113", "_WPMSGOPTION_DirectionsSubmitBackgroundColor", "8AE3E6");
INSERT INTO `wp_postmeta` VALUES("550", "113", "_WPMSGOPTION_DirectionsSubmitTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("551", "113", "_WPMSGOPTION_DirectionsTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("552", "113", "_WPMSGOPTION_DirectionsTextSize", "");
INSERT INTO `wp_postmeta` VALUES("553", "113", "_WPMSGOPTION_DirectionsBorderColor", "000000");
INSERT INTO `wp_postmeta` VALUES("554", "113", "_WPMSGOPTION_DirectionsBorderWidth", "2");
INSERT INTO `wp_postmeta` VALUES("555", "113", "_WPMSGOPTION_DirectionsBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("556", "113", "_WPMSGOPTION_SlideshowBackgroundColor", "8AE3E6");
INSERT INTO `wp_postmeta` VALUES("557", "113", "_WPMSGOPTION_SlideshowTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("558", "113", "_WPMSGOPTION_SlideshowTextSize", "");
INSERT INTO `wp_postmeta` VALUES("559", "113", "_WPMSGOPTION_SlideshowBorderColor", "000000");
INSERT INTO `wp_postmeta` VALUES("560", "113", "_WPMSGOPTION_SlideshowBorderWidth", "");
INSERT INTO `wp_postmeta` VALUES("561", "113", "_WPMSGOPTION_SlideshowBorderStyle", "None");
INSERT INTO `wp_postmeta` VALUES("562", "113", "_WPMSGOPTION_AccordianTitleBackgroundColor", "301C04");
INSERT INTO `wp_postmeta` VALUES("563", "113", "_WPMSGOPTION_AccordianTitleTextColor", "F7FF05");
INSERT INTO `wp_postmeta` VALUES("564", "113", "_WPMSGOPTION_AccordianTitleTextSize", "");
INSERT INTO `wp_postmeta` VALUES("565", "113", "_WPMSGOPTION_AccordianTitleSelectedBackgroundColor", "015FE6");
INSERT INTO `wp_postmeta` VALUES("566", "113", "_WPMSGOPTION_AccordianTitleSelectedTextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("567", "113", "_WPMSGOPTION_AccordianBackgroundColor", "C7C7C7");
INSERT INTO `wp_postmeta` VALUES("568", "113", "_WPMSGOPTION_AccordianTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("569", "113", "_WPMSGOPTION_AccordianTextSize", "");
INSERT INTO `wp_postmeta` VALUES("570", "113", "_WPMSGOPTION_AccordianSeparatorColor", "878787");
INSERT INTO `wp_postmeta` VALUES("571", "113", "_WPMSGOPTION_AccordianBorderColor", "301C04");
INSERT INTO `wp_postmeta` VALUES("572", "113", "_WPMSGOPTION_AccordianBorderWidth", "");
INSERT INTO `wp_postmeta` VALUES("573", "113", "_WPMSGOPTION_AccordianBorderStyle", "None");
INSERT INTO `wp_postmeta` VALUES("574", "113", "_WPMSGOPTION_AccordianArrowImage", "LightTriangle");
INSERT INTO `wp_postmeta` VALUES("575", "113", "_WPMSGOPTION_AccordianArrowColor", "Transparent");
INSERT INTO `wp_postmeta` VALUES("576", "113", "_WPMSGOPTION_CouponBackgroundColor", "8AE3E6");
INSERT INTO `wp_postmeta` VALUES("577", "113", "_WPMSGOPTION_CouponTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("578", "113", "_WPMSGOPTION_CouponTextSize", "");
INSERT INTO `wp_postmeta` VALUES("579", "113", "_WPMSGOPTION_CouponBorderColor", "000000");
INSERT INTO `wp_postmeta` VALUES("580", "113", "_WPMSGOPTION_CouponBorderWidth", "2");
INSERT INTO `wp_postmeta` VALUES("581", "113", "_WPMSGOPTION_CouponBorderStyle", "Dashed");
INSERT INTO `wp_postmeta` VALUES("582", "113", "_WPMSGOPTION_SearchBackgroundColor", "E6E6E6");
INSERT INTO `wp_postmeta` VALUES("583", "113", "_WPMSGOPTION_SearchTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("584", "113", "_WPMSGOPTION_SearchTextSize", "");
INSERT INTO `wp_postmeta` VALUES("585", "113", "_WPMSGOPTION_SearchBorderColor", "000000");
INSERT INTO `wp_postmeta` VALUES("586", "113", "_WPMSGOPTION_SearchBorderWidth", "2");
INSERT INTO `wp_postmeta` VALUES("587", "113", "_WPMSGOPTION_SearchBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("588", "113", "_WPMSGOPTION_SearchInputBackgroundColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("589", "113", "_WPMSGOPTION_SearchSubmitBackgroundColor", "B3B3B3");
INSERT INTO `wp_postmeta` VALUES("590", "113", "_WPMSGOPTION_SearchSubmitTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("591", "113", "_WPMSGOPTION_SearchSelectedBackgroundColor", "015FE6");
INSERT INTO `wp_postmeta` VALUES("592", "113", "_WPMSGOPTION_SearchSelectedTextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("593", "113", "_WPMSGOPTION_SearchHighlightColor", "FFFF00");
INSERT INTO `wp_postmeta` VALUES("594", "113", "_WPMSGOPTION_RssBackgroundColor", "E6E6E6");
INSERT INTO `wp_postmeta` VALUES("595", "113", "_WPMSGOPTION_RssTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("596", "113", "_WPMSGOPTION_RssTextSize", "");
INSERT INTO `wp_postmeta` VALUES("597", "113", "_WPMSGOPTION_RssBorderColor", "000000");
INSERT INTO `wp_postmeta` VALUES("598", "113", "_WPMSGOPTION_RssBorderWidth", "2");
INSERT INTO `wp_postmeta` VALUES("599", "113", "_WPMSGOPTION_RssBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("600", "113", "_WPMSGOPTION_RssSelectedBackgroundColor", "015FE6");
INSERT INTO `wp_postmeta` VALUES("601", "113", "_WPMSGOPTION_RssSelectedTextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("602", "113", "_WPMSGOPTION_ThemeStyleCSS", "<style  type=\"text/css\" >body{position:relative;-webkit-text-size-adjust:none;min-height:416px;{--wpmsgtknsinglepageminimumheight--}font-family:helvetica,sans-serif;-webkit-background-size:.438em 100%;Background:#EAE6DD;-webkit-touch-callout:none;margin:0;margin-right:auto; margin-left:auto;}img.alignright {float:right; max-width:100%; margin:0 0 1em 1em}img.alignleft {float:left; max-width:100%; margin:0 1em 1em 0}img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}a img.alignright {float:right; max-width:100%; margin:0 0 1em 1em}a img.alignleft {float:left; max-width:100%; margin:0 1em 1em 0}a img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}#accordion {background:#C7C7C7;border-color:#301C04;border-width:px;border-style:None;margin:5px 5px 5px 5px;border-radius:8px}#accordion H2 {padding-top: 5pxpadding-bottom: 5px; padding-left: 15px; padding-right: 15px; margin: 0px 0px 0px 0px; background:#301C04;font-size:17px;color:#F7FF05;cursor: pointer; height:43px;overflow:hidden;border-top:1px solid #878787;font-weight: bold; line-height: 40px;}#accordion H2:first-child{border-top:none;border-radius:8px}#accordion H2:last-child{border-bottom-left-radius:8px;border-bottom-right-radius:8px}#accordion H2.current {background-color:#015FE6; color:#FFFFFF; cursor: default}#accordion div.acchead {padding-top: 5pxpadding-bottom: 5px; padding-left: 15px; padding-right: 15px; margin: 0px 0px 0px 0px; font-weight:bold;font-size:17px;background:#301C04;font-size:17px;color:#F7FF05;cursor: pointer; height:43px;overflow:hidden;border-top:1px solid #878787;line-height: 40px;}#accordion div.acchead:first-child{border-top:none;border-top-left-radius:8px;border-top-right-radius:8px;}#accordion div.acchead.current {background-color:#015FE6; color:#FFFFFF; cursor: default}#accordion .pane {padding-top: 15pxpadding-bottom: 15px; padding-left: 15px; padding-right: 15px; display: none; color:#000000;border-bottom-left-radius:8px;border-bottom-right-radius:8px;}#accordion .acchead .accarrow {float: right;valign: center;width:24px!important;height:24px!important;right:10px;top:18px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/arrows/Down_LightTriangle_Transparent.png) 0 0 no-repeat;margin:0!important ;margin-top: 15px;padding-top: 15px;}.images {background:#8AE3E6;color:#000000;border-color:#000000;border-width:px;border-style:;{--wpmsgtknslideshowheight--}{--wpmsgtknslideshowwidth--}overflow:hidden;margin-left:auto;margin-right:auto;position:relative;cursor:pointer;-moz-border-radius:5px;-moz-box-shadow:0 0 25px #666;-webkit-border-radius:5px;-webkit-box-shadow:0 0 25px #666;border-radius:5px;box-shadow:0 0 25px #666;}.images div {display:none;position:absolute;top:0;left:0;width: 100%;}.images div p a img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}.images div p img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}.images div a img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}.images div img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}.images img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}.images h3 {font-size:22px;font-weight:normal;margin:0 0 20px 0;color:#456;}.slidetabs {clear:both;}.slidetabs a {width:8px;height:8px;float:left;margin:3px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navigator.png) 0 0 no-repeat;display:block;font-size:1px;}.slidetabs a:hover {background-position:0 -8px;}.slidetabs a.current {background-position:0 -16px; } .forward, .backward {float:left;background:#fff url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/hori_large.png) no-repeat;display:block;width:30px;height:30px;cursor:pointer;font-size:1px;text-indent:-9999em;}.forward { background-position: 0 -30px; clear:right; }.forward:hover { background-position:-30px -30px; }.forward:active{ background-position:-60px -30px; } .backward:hover{ background-position:-30px 0; }.backward:active{ background-position:-60px 0; }.disabled {visibility:hidden !important;}.gallery { list-style: none; padding: 0; margin: 0; }.gallery:after { clear: both; content: \".\"; display: block; height: 0; visibility: hidden; }.gallery li { float: left; width: 33.33333333%; }.gallery li a { display: block; margin: 5px; border: 1px solid #3c3c3c; }.gallery li img { display: block; width: 100%; height: auto; }.highlight { background:#FFFF00;}.highlight_important { background:#FFFF00;}.center{display:block;text-align:center!important;margin:auto}a:hover .arrow{background:0 -13px!important}#topbar.transparent{background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#202020), to(#858585));background-image: -webkit-linear-gradient(top, #202020, #858585);background-image:-moz-linear-gradient(top, #202020, #858585);background-image: -ms-linear-gradient(top, #202020, #858585);background-image:-o-linear-gradient(top, #202020, #858585);}#topbar{position:relative;left:0;top:0;width:auto;}#title{position:absolute;font-weight:bold;top:0;left:0;right:0;text-align:center;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;color:#FFF;color:#FFFFFF;text-shadow:rgba(0,0,0,0.6) 0 -1px 0;padding:0 10px;}#logo{Background:#EAE6DD;}#content{width:100%;position:relative;min-height:250px;{--wpmsgtknsinglepageminimumheight--}height:auto;z-index:0;overflow:hidden;{--wpmsgtknsinglepagebackgroundimage--}}p {padding:0 5px;color:#000000;}h1 {padding:0 5px;color:#000000;}h2 {padding:0 5px;color:#000000;}h3 {padding:0 5px;color:#000000;}h4 {padding:0 5px;color:#000000;}h5 {padding:0 5px;color:#000000;}h6 {padding:0 5px;color:#000000;}blockquote {background:#C7C7C7;color:#000000;border-color:#E6E6E6;border-width:px;border-style:None;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 6px 10px;padding:0 5px;border-radius:8px}blockquote p {background:#C7C7C7;color:#000000;}.ezmbfooter p {padding:0 5px;color:#000000;}.ezmbtable {width:95%;margin-left:auto;margin-right:auto;border-collapse:collapse;background:#C7C7C7;color:#000000;border-color:#000000;border-width:1px;border-style:Solid;}.ezmbtable td {background:#C7C7C7;color:#000000;border-color:#000000;border-width:1px;border-style:Solid;padding:2px;}.ezmbtable td p {background:#C7C7C7;color:#000000;}.ezmbiconlist {color:#000000;}.menulist {background:#301C04;color:#F7FF05;border-color:#301C04;border-width:px;border-style:None;opacity:1;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.menulist span.name{color:#F7FF05;text-decoration:none}.menulist span.menudesc{color:#;text-decoration:none}.menulist td a{text-decoration:none}.menulist td a img{vertical-align:text-top;text-decoration:none}.menulist td{vertical-align:text-top;}.searchlist {background:#E6E6E6;color:#000000;border-color:#000000;border-width:2px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.searchform {background:#E6E6E6;color:#000000;border-color:#000000;border-width:2px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.searchform .button input {background:#B3B3B3;color:#000000;}.searchlist:hover,{background:-webkit-gradient(linear,0% 0%,0% 100%,from(#058cf5),to(#015fe6))}.searchlist a:hover {background-color:#CCF}.searchlist li a:hover{background:#015FE6;}.searchlist a{display:block;height:43px;width:auto;text-decoration:none}.searchlist a img{width:auto;height:32px;float:left;margin:5px 0 0 5px}.searchlist .name{width:auto;font-weight:bold;font-size:17px;color:#000000;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;float:left;margin:11px 0 0 7px}.searchlist a:hover .name{color:#FFFFFF;}.searchlistsnippet{padding-left:5px;padding-right:5px;}.rssfeedlist {background:#E6E6E6;color:#000000;border-color:#000000;border-width:2px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.rssfeedlist:hover{background:-webkit-gradient(linear,0% 0%,0% 100%,from(#058cf5),to(#015fe6))}.rssfeedlist a:hover {background-color:#CCF}.rssfeedlist li a:hover{background-color:#015fe6}.rssfeedlist a{display:block;min-height:43px;width:auto;text-decoration:none}.rssfeedlist a img{width:auto;height:32px;float:left;margin:5px 0 0 5px}.rssfeedlist .name{width:auto;font-weight:bold;font-size:17px;color:#000000;float:left;margin:11px 0 0 7px}.rssfeedlist a:hover .name{color:#FFFFFF;}.rssfeedlistsnippet{padding-left:5px;padding-right:5px;}.ezmbcouponwidget {background:#8AE3E6;color:#000000;border-color:#000000;border-width:2px;border-style:Dashed;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.optinform {background:#C7C7C7;color:#000000;border-color:#000000;border-width:2px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.optinform .button input {background:#8AE3E6;color:#000000;}.contactform {background:#C7C7C7;color:#000000;border-color:#000000;border-width:2px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.contactform .button input {background:#8AE3E6;color:#000000;}.customform {background:#C7C7C7;color:#000000;border-color:#000000;border-width:2px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.customform .button input {background:#8AE3E6;color:#000000;}li.customformrow{position:relative;list-style-type:none;display:block;height:43px;overflow:hidden;border-top:1px solid #878787;border-top:1px solid #878787;width:auto}li.customformrowbelow{position:relative;list-style-type:none;display:block;height:43px;overflow:hidden;width:auto}p.customformrow{-webkit-margin-before: 0px;border-top:1px solid #878787;width:auto}.customformrow .customformlabel, .customformrow .customformlabelfull, .customformtextbox .customformlabel, .customformradiorow .customformlabel{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;padding-left:5px;overflow:hidden}.customformrow .customformlabel{line-height:44px;}.customformrow .customformlabelfull{line-height:44px;width:100%;height:auto;}.customformrow input {width:50%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.customformrowbelow input {width:100%;min-width:95%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}input.customformrowrequired{background: #ff8080;}.customformrow input:not([type=\'checkbox\']) {-webkit-appearance:none;}.customformrow select{width:50%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.customformrow:first-child input{border-top-right-radius:8px}.customformrow:last-child input{border-bottom-right-radius:8px}.customformtextbox{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.customformtextbox img{max-width:100%}.customformtextbox p{margin-top:2px;color:#000;margin-bottom:2px;text-align:justify}.customformtextbox ul{list-style:circle!important;margin:3px 0}.customformtextbox li{margin:0!important}.customformtextbox textarea{margin-top:5px;font-size:medium;padding:0}.customformradiorow{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.customformrow input[type=\"checkbox\"]{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOff.png)no-repeat;-webkit-appearance:none;border:0;margin:4px 4px 0 0}.customformrow input[type=\"checkbox\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOn.png)no-repeat;}.customformradiorow input[type=\"radio\"]{-webkit-appearance:none;border:0;width:100%;height: 43px;z-index:2;position:absolute;left:50%;margin:0;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOff.png) no-repeat;-webkit-border-radius:0}.customformradiorow input[type=\"radio\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOn.png) no-repeat;}.customformradiorow .customformradiorowinput {height: 40px;}.customformradiorow label{position: absolute;margin-top: 6px;margin-left:60%;text-overflow: ellipsis;}.customformradiorowbelow{position:relative;overflow:hidden;padding:5px 9px}.customformradiorowbelowlabel{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.customformradiorowbelowlabel .customformlabel{left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;padding-left:5px;overflow:hidden}.customformradiorowbelow input[type=\"radio\"]{-webkit-appearance:none;border:0;width:100%;height: 43px;z-index:2;position:absolute;left:10px;margin:0;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOff.png) no-repeat;-webkit-border-radius:0}.customformradiorowbelow input[type=\"radio\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOn.png) no-repeat;}.customformradiorowbelow .customformradiorowinputbelow {height: 40px;}span.customformlabelfull{font-weight:bold;font-size:17px;}.customformradiorowbelow label{position: absolute;margin-top: 6px;margin-left:45px;text-overflow: ellipsis;}li.customformrowbelow select{width:100%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.customformrowcheckboxright{position:relative;overflow:hidden;border-top:1px solid #878787;height: 40px;padding:5px 9px}.customformrowcheckboxright .customformlabel {left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;line-height:44px;overflow:hidden}.customformrowcheckboxright input[type=\"checkbox\"]{position: absolute;height: 40px;width: 35px;right:0;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOff.png)no-repeat;-webkit-appearance:none;border:0;margin:4px 4px 0 0}.customformrowcheckboxright input[type=\"checkbox\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOn.png) no-repeat;}.customformrowcheckboxleft{position:relative;overflow:hidden;border-top:1px solid #878787;height: 40px;padding:5px 9px}.customformrowcheckboxleft .customformlabel {margin-left:40px;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;line-height:44px;overflow:hidden}.customformrowcheckboxleft input[type=\"checkbox\"]{position: absolute;height: 40px;width: 35px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOff.png)no-repeat;-webkit-appearance:none;border:0;margin:4px 4px 0 0}.customformrowcheckboxleft input[type=\"checkbox\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOn.png) no-repeat;} .directions {background:#C7C7C7;color:#000000;border-color:#000000;border-width:2px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.directions .button input {background:#8AE3E6;color:#000000;}.clear {clear: both;}.ezmbphone {margin-left: auto;margin-right: auto;text-align: center;}.ezmbphoneimg {margin-left: auto;margin-right: auto;text-align: center;}.phonebtnimg {margin-left: auto;margin-right: auto;text-align: center;}.phonebtn, .phonebtn:visited {background:#04BF04;color:#FFFFFF;border-color:#04BF04;border-width:px;border-style:None;-webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.6);text-shadow: 0 -1px 1px rgba(0,0,0,0.25);border-bottom: 1px solid rgba(0,0,0,0.25);display: inline-block; padding: 5px 10px 6px; text-decoration: none;border-radius: 10px;position: relative;cursor: pointer;font-weight:bold;}.ezmbfooter {Background:#C7C7C7;margin:0;}.ezmbfooter p {margin:0;}.textbox{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.searchbox{height:44px;background:-webkit-gradient(linear,0% 0%,0% 100%,from(#f1f3f4),color-stop(3%,#e0e4e7),color-stop(50%,#c7cfd4),color-stop(51%,#bec7cd),color-stop(97%,#b4bec6),to(#8999a5));width:100%;margin:-13px 0 13px}.searchbox form{height:24px;border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/searchfield.png) 4 14 1 24;display:block;position:relative;top:8px;border-width:4px 14px 1px 24px;margin:auto}fieldset{border:0;margin:0;padding:0}.searchbox input[type=\"text\"]{border:0;-webkit-appearance:none;height:18px;float:left;font-size:13px;position:relative;top:2px;left:2px;padding:0}.textbox img{max-width:100%}.textbox p{margin-top:2px;color:#000;margin-bottom:2px;text-align:justify}.textbox ul{list-style:circle!important;margin:3px 0}.textbox li{margin:0!important}.menulist li:first-child,.menulist li.form:first-child{border-top:0}.menu,.checkbox,.radiobutton,.select,li.button,li.bigfield,li.smallfield,li.searchsmallfield,li.optinsmallfield,li.contactsmallfield,li.mapsmallfield{position:relative;list-style-type:none;display:block;height:43px;overflow:hidden;border-top:1px solid #878787;border-top:1px solid #878787;width:auto}.menulist li:first-child:hover,.menulist li:first-child a,.radiobutton:first-child input,.select:first-child select,li.button:first-child input,.bigfield:first-child input{border-top-left-radius:8px;border-top-right-radius:8px}.menulist li:last-child:hover,.menulist li:last-child a,.radiobutton:last-child input,.select:last-child select,li.button:last-child input,.bigfield:last-child input{border-bottom-left-radius:8px;border-bottom-right-radius:8px}.menu:hover,.store:hover,.list #content li a:hover,.list .withimage:hover,.applist li:hover:nth-child(n),.ipodlist li:hover:nth-child(n){background:#015FE6;color:#FFFFFF;}.menu a:hover .comment{color:#FFFFFF;}.menu a{display:block;height:43px;width:auto;text-decoration:none}.menu a img{width:auto;height:32px;float:left;margin:5px 0 0 5px}.menu .name,.checkbox .name,.radiobutton .name{width:auto;font-weight:bold;font-size:17px;color:#F7FF05;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;float:left;margin:11px 0 0 7px}.menu-item{position:relative;list-style-type:none;display:block;height:43px;overflow:hidden;border-top:1px solid #878787;border-top:1px solid #878787;width:auto}.menu-item a{display:block;height:43px;width:auto;text-decoration:none}.menu-item a img{width:auto;height:32px;float:left;margin:5px 0 0 5px}.menu-item .name,.checkbox .name,.radiobutton .name{width:auto;font-weight:bold;font-size:17px;color:#F7FF05;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;float:left;margin:11px 0 0 7px}.menu-item:hover{background:#015FE6;color:#FFFFFF;}.menu-item a:hover .comment{color:#FFFFFF;}.menu-item .comment{width:auto;font-size:17px;text-overflow:ellipsis;overflow:hidden;max-width:75%;white-space:nowrap;float:right;color:#324f85;margin:11px 30px 0 0}.menu-item .arrow{position:absolute;width:24px!important;height:24px!important;right:10px;top:12px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/arrows/LightOpenArrow_Transparent.png) 0 0 no-repeat;margin:0!important}.menu-item .arrowleft{float:left;width:24px!important;height:24px!important;left:10px;top:12px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/arrows/LightOpenArrow_Transparent.png) 0 0 no-repeat;margin:0!important}.menu-item a:hover .name{color:#FFFFFF;}.menu .comment{width:auto;font-size:17px;text-overflow:ellipsis;overflow:hidden;max-width:75%;white-space:nowrap;float:right;color:#324f85;margin:11px 30px 0 0}.menu .arrow,.store .arrow,.musiclist .arrow,.list .arrow{position:absolute;width:24px!important;height:24px!important;right:10px;top:12px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/arrows/LightOpenArrow_Transparent.png) 0 0 no-repeat;margin:0!important}.menu .arrowleft,.store .arrowleft,.musiclist .arrowleft,.list .arrowleft{float:left;width:24px!important;height:24px!important;left:10px;top:12px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/arrows/LightOpenArrow_Transparent.png) 0 0 no-repeat;margin:0!important}#leftnav,#leftbutton{position:absolute;font-size:12px;left:9px;font-weight:bold}#leftnav,#leftbutton,#rightnav,#rightbutton{z-index:5000}#leftnav a,#rightnav a,#leftbutton a,#rightbutton a{display:block;color:#fff;text-shadow:rgba(0,0,0,0.6) 0 -1px 0;text-decoration:none}.black #leftnav a:first-child,.transparent #leftnav a:first-child{border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleftblack.png) 0 5 0 13-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleftblack.png) 0 5 0 13-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleftblack.png) 0 5 0 13-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleftblack.png) 0 5 0 13}.black #leftnav a,.transparent #leftnav a{border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleftblack.png) 0 5 0 13-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleftblack.png) 0 5 0 13-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleftblack.png) 0 5 0 13-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleftblack.png) 0 5 0 13}.black #rightnav a:first-child,.transparent #rightnav a:first-child{-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navrightblack.png) 0 13 0 5-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navrightblack.png) 0 13 0 5-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navrightblack.png) 0 13 0 5-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navrightblack.png) 0 13 0 5}.black #rightnav a,.transparent #rightnav a{-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkrightblack.png) 0 13 0 5-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkrightblack.png) 0 13 0 5-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkrightblack.png) 0 13 0 5-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkrightblack.png) 0 13 0 5}.black #leftbutton a,.black #rightbutton a,.transparent #leftbutton a,.transparent #rightbutton a{border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbuttonblack.png) 0 5 0 5-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbuttonblack.png) 0 5 0 5-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbuttonblack.png) 0 5 0 5-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbuttonblack.png) 0 5 0 5}#leftnav a:first-child{z-index:2;border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleft_std.png) 0 5 0 13;-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleft_std.png) 0 5 0 13;-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleft_std.png) 0 5 0 13;-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleft_std.png) 0 5 0 13;width:auto;border-width:0 5px 0 13px;border-radius:16px 6px 6px 16px}#leftnav a{border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleft.png) 0 5 0 13;-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleft.png) 0 5 0 13;-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleft.png) 0 5 0 13;-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleft.png) 0 5 0 13;z-index:3;margin-left:-4px;padding-right:4px;float:left;border-width:0 5px 0 13px;border-radius:16px 6px 6px 16px}#rightnav,#rightbutton{position:absolute;font-size:12px;right:9px;font-weight:bold}#rightnav a{border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkright.png) 0 13 0 5;-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkright.png) 0 13 0 5;-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkright.png) 0 13 0 5;-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkright.png) 0 13 0 5;z-index:3;margin-right:-4px;padding-left:4px;float:right;border-width:0 13px 0 5px;border-radius:6px 16px 16px 6px}#rightnav a:first-child{z-index:2;border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navright_std.png) 0 13 0 5;-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navright_std.png) 0 13 0 5;-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navright_std.png) 0 13 0 5;-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navright_std.png) 0 13 0 5;border-width:0 13px 0 5px;border-radius:6px 16px 16px 6px}#leftbutton a,#rightbutton a{border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbutton_std.png) 0 5 0 5;-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbutton_std.png) 0 5 0 5;-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbutton_std.png) 0 5 0 5;-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbutton_std.png) 0 5 0 5;border-width:0 5px;border-radius:6px}.gform_body ul { list-style-type: none; }.radiobutton .name{z-index:1}.select select{color:#000;font-weight:bold;font-size:17px;border-radius:0}.select option{max-width:90%}.select .arrow{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/arrow.png);width:8px;height:13px;display:block;-webkit-transform:rotate(90deg);position:absolute;right:10px;top:18px}.button input{width:100%;height:100%;-webkit-appearance:none;border:0;font-weight:bold;font-size:17px;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;background:none;border-radius:0}.textbox textarea{margin-top:5px;font-size:medium;padding:0}.bigfield input{-webkit-appearance:none;border:0;height:100%;background:transparent;font-weight:bold;font-size:17px;padding:0 0 0 5px;border-radius:0}.smallfield .name{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;line-height:44px;font-size:17px;padding-left:5px;overflow:hidden}.smallfield input{width:50%;position:absolute;right:0;height:44px;-webkit-appearance:none;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.smallfield:first-child input{border-top-right-radius:8px}.smallfield:last-child input{border-bottom-right-radius:8px}.searchsmallfield .name{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;line-height:44px;font-size:17px;padding-left:5px;overflow:hidden}.searchsmallfield input{width:50%;position:absolute;right:0;height:44px;-webkit-appearance:none;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.searchsmallfield:first-child input{border-top-right-radius:8px}.searchsmallfield:last-child input{border-bottom-right-radius:8px}.optinsmallfield .name{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;line-height:44px;font-size:17px;padding-left:5px;overflow:hidden}.optinsmallfield input{width:50%;position:absolute;right:0;height:44px;-webkit-appearance:none;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.optinsmallfield:first-child input{border-top-right-radius:8px}.optinsmallfield:last-child input{border-bottom-right-radius:8px}.contactsmallfield .name{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;line-height:44px;font-size:17px;padding-left:5px;overflow:hidden}.contactsmallfield input{width:50%;position:absolute;right:0;height:44px;-webkit-appearance:none;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.contactsmallfield:first-child input{border-top-right-radius:8px}.contactsmallfield:last-child input{border-bottom-right-radius:8px}.mapsmallfield .name{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;line-height:44px;font-size:17px;padding-left:5px;overflow:hidden}.mapsmallfield input{width:50%;position:absolute;right:0;height:44px;-webkit-appearance:none;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.mapsmallfield:first-child input{border-top-right-radius:8px}.mapsmallfield:last-child input{border-bottom-right-radius:8px}img,#duobutton a:last-child,#duoselectionbuttons a:first-child,.ipodlist li:hover:nth-child(n) .name,.ipodlist li:hover:nth-child(n) .time{border:0}#triselectionbuttons a:hover,#triselectionbuttons a#pressed,#duoselectionbuttons a:hover,#duoselectionbuttons a#pressed,li#doublead:hover{background:none}.menu a:hover .name,.store:hover .starcomment,.store:hover .name,.store:hover .comment,.list .withimage a:hover .comment,.list #content li a:hover{color:#FFFFFF;}@media screen and (max-width:320px) {#topbar{height:44px}#logo{max-width:320px;width:100%;}#title{line-height:44px;height:44px;font-size:16pt;}.searchbox form{width:272px}.searchbox input[type=\"text\"]{width:275px}.menu .name{max-width:77%}#leftnav a,#rightnav a,#leftbutton a,#rightbutton a{line-height:30px;height:30px}#leftnav img,#rightnav img{margin-top:4px}.textbox textarea{width:85%;}.customformtextbox textarea{width:85%;}.bigfield input{width:295px}.checkbox .name,.radiobutton .name{max-width:190px}#leftnav,#leftbutton,#rightnav,#rightbutton{top:7px}}@media screen and (min-width:321px) {#topbar{height:32px}#title{line-height:32px;height:32px;font-size:13pt}.menu .name{max-width:85%}#leftnav a,#rightnav a,#leftbutton a,#rightbutton a{line-height:24px;height:24px}#leftnav img,#rightnav img{margin-top:4px;height:70%}.textbox textarea{width:85%;}.customformtextbox textarea{width:85%;}#doublead{width:350px!important}.searchbox form{width:432px}.searchbox input[type=\"text\"]{width:435px}.bigfield input{width:455px}.checkbox .name,.radiobutton .name{max-width:75%}#leftnav,#leftbutton,#rightnav,#rightbutton{top:4px}}</style>");
INSERT INTO `wp_postmeta` VALUES("603", "113", "_WPMSGOPTION_ThemeCustomFormStyleCSS", "<style  type=\"text/css\" >.customform {background:#C7C7C7;color:#000000;border-color:#000000;border-width:2px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.customform .button input {background:#8AE3E6;color:#000000;}li.customformrow{position:relative;list-style-type:none;display:block;height:43px;overflow:hidden;border-top:1px solid #878787;border-top:1px solid #878787;width:auto}li.customformrowbelow{position:relative;list-style-type:none;display:block;height:43px;overflow:hidden;width:auto}p.customformrow{-webkit-margin-before: 0px;border-top:1px solid #878787;width:auto}.customformrow .customformlabel, .customformrow .customformlabelfull, .customformtextbox .customformlabel, .customformradiorow .customformlabel{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;padding-left:5px;overflow:hidden}.customformrow .customformlabel{line-height:44px;}.customformrow .customformlabelfull{line-height:44px;width:100%;height:auto;}.customformrow input {width:50%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.customformrowbelow input {width:100%;min-width:95%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}input.customformrowrequired{background: #ff8080;}.customformrow input:not([type=\'checkbox\']) {-webkit-appearance:none;}.customformrow select{width:50%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.customformrow:first-child input{border-top-right-radius:8px}.customformrow:last-child input{border-bottom-right-radius:8px}.customformtextbox{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.customformtextbox img{max-width:100%}.customformtextbox p{margin-top:2px;color:#000;margin-bottom:2px;text-align:justify}.customformtextbox ul{list-style:circle!important;margin:3px 0}.customformtextbox li{margin:0!important}.customformtextbox textarea{margin-top:5px;font-size:medium;padding:0}.customformradiorow{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.customformrow input[type=\"checkbox\"]{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOff.png)no-repeat;-webkit-appearance:none;border:0;margin:4px 4px 0 0}.customformrow input[type=\"checkbox\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOn.png)no-repeat;}.customformradiorow input[type=\"radio\"]{-webkit-appearance:none;border:0;width:100%;height: 43px;z-index:2;position:absolute;left:50%;margin:0;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOff.png) no-repeat;-webkit-border-radius:0}.customformradiorow input[type=\"radio\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOn.png) no-repeat;}.customformradiorow .customformradiorowinput {height: 40px;}.customformradiorow label{position: absolute;margin-top: 6px;margin-left:60%;text-overflow: ellipsis;}.customformradiorowbelow{position:relative;overflow:hidden;padding:5px 9px}.customformradiorowbelowlabel{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.customformradiorowbelowlabel .customformlabel{left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;padding-left:5px;overflow:hidden}.customformradiorowbelow input[type=\"radio\"]{-webkit-appearance:none;border:0;width:100%;height: 43px;z-index:2;position:absolute;left:10px;margin:0;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOff.png) no-repeat;-webkit-border-radius:0}.customformradiorowbelow input[type=\"radio\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOn.png) no-repeat;}.customformradiorowbelow .customformradiorowinputbelow {height: 40px;}span.customformlabelfull{font-weight:bold;font-size:17px;}.customformradiorowbelow label{position: absolute;margin-top: 6px;margin-left:45px;text-overflow: ellipsis;}li.customformrowbelow select{width:100%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.customformrowcheckboxright{position:relative;overflow:hidden;border-top:1px solid #878787;height: 40px;padding:5px 9px}.customformrowcheckboxright .customformlabel {left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;line-height:44px;overflow:hidden}.customformrowcheckboxright input[type=\"checkbox\"]{position: absolute;height: 40px;width: 35px;right:0;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOff.png)no-repeat;-webkit-appearance:none;border:0;margin:4px 4px 0 0}.customformrowcheckboxright input[type=\"checkbox\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOn.png) no-repeat;}.customformrowcheckboxleft{position:relative;overflow:hidden;border-top:1px solid #878787;height: 40px;padding:5px 9px}.customformrowcheckboxleft .customformlabel {margin-left:40px;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;line-height:44px;overflow:hidden}.customformrowcheckboxleft input[type=\"checkbox\"]{position: absolute;height: 40px;width: 35px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOff.png)no-repeat;-webkit-appearance:none;border:0;margin:4px 4px 0 0}.customformrowcheckboxleft input[type=\"checkbox\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOn.png) no-repeat;}</style>");
INSERT INTO `wp_postmeta` VALUES("604", "114", "_WPMSGOPTION_PageBackgroundColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("605", "114", "_WPMSGOPTION_LogoBackgroundColor", "ABD5FF");
INSERT INTO `wp_postmeta` VALUES("606", "114", "_WPMSGOPTION_FooterBackgroundColor", "ABD5FF");
INSERT INTO `wp_postmeta` VALUES("607", "114", "_WPMSGOPTION_ParagraphTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("608", "114", "_WPMSGOPTION_ParagraphTextSize", "");
INSERT INTO `wp_postmeta` VALUES("609", "114", "_WPMSGOPTION_BackgroundImage", "");
INSERT INTO `wp_postmeta` VALUES("610", "114", "_WPMSGOPTION_BackgroundImageRepeat", "");
INSERT INTO `wp_postmeta` VALUES("611", "114", "_WPMSGOPTION_BackgroundImagePosition", "");
INSERT INTO `wp_postmeta` VALUES("612", "114", "_WPMSGOPTION_TopbarStartColor", "202020");
INSERT INTO `wp_postmeta` VALUES("613", "114", "_WPMSGOPTION_TopbarEndColor", "858585");
INSERT INTO `wp_postmeta` VALUES("614", "114", "_WPMSGOPTION_TopbarTextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("615", "114", "_WPMSGOPTION_TopbarButtonColor", "std");
INSERT INTO `wp_postmeta` VALUES("616", "114", "_WPMSGOPTION_H1TextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("617", "114", "_WPMSGOPTION_H1TextSize", "");
INSERT INTO `wp_postmeta` VALUES("618", "114", "_WPMSGOPTION_H1TextShadow", "");
INSERT INTO `wp_postmeta` VALUES("619", "114", "_WPMSGOPTION_H2TextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("620", "114", "_WPMSGOPTION_H2TextSize", "");
INSERT INTO `wp_postmeta` VALUES("621", "114", "_WPMSGOPTION_H2TextShadow", "");
INSERT INTO `wp_postmeta` VALUES("622", "114", "_WPMSGOPTION_H3TextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("623", "114", "_WPMSGOPTION_H3TextSize", "");
INSERT INTO `wp_postmeta` VALUES("624", "114", "_WPMSGOPTION_H3TextShadow", "");
INSERT INTO `wp_postmeta` VALUES("625", "114", "_WPMSGOPTION_H4TextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("626", "114", "_WPMSGOPTION_H4TextSize", "");
INSERT INTO `wp_postmeta` VALUES("627", "114", "_WPMSGOPTION_H4TextShadow", "");
INSERT INTO `wp_postmeta` VALUES("628", "114", "_WPMSGOPTION_H5TextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("629", "114", "_WPMSGOPTION_H5TextSize", "");
INSERT INTO `wp_postmeta` VALUES("630", "114", "_WPMSGOPTION_H5TextShadow", "");
INSERT INTO `wp_postmeta` VALUES("631", "114", "_WPMSGOPTION_H6TextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("632", "114", "_WPMSGOPTION_H6TextSize", "");
INSERT INTO `wp_postmeta` VALUES("633", "114", "_WPMSGOPTION_H6TextShadow", "");
INSERT INTO `wp_postmeta` VALUES("634", "114", "_WPMSGOPTION_MenuBackgroundColor", "017CE3");
INSERT INTO `wp_postmeta` VALUES("635", "114", "_WPMSGOPTION_IconTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("636", "114", "_WPMSGOPTION_MenuTextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("637", "114", "_WPMSGOPTION_MenuTextSize", "");
INSERT INTO `wp_postmeta` VALUES("638", "114", "_WPMSGOPTION_MenuBorderColor", "017CE3");
INSERT INTO `wp_postmeta` VALUES("639", "114", "_WPMSGOPTION_MenuBorderWidth", "");
INSERT INTO `wp_postmeta` VALUES("640", "114", "_WPMSGOPTION_MenuBorderStyle", "None");
INSERT INTO `wp_postmeta` VALUES("641", "114", "_WPMSGOPTION_MenuOpacity", "1");
INSERT INTO `wp_postmeta` VALUES("642", "114", "_WPMSGOPTION_MenuArrowImage", "LightOpenArrow");
INSERT INTO `wp_postmeta` VALUES("643", "114", "_WPMSGOPTION_MenuArrowColor", "Transparent");
INSERT INTO `wp_postmeta` VALUES("644", "114", "_WPMSGOPTION_MenuSelectedBackgroundColor", "015FE6");
INSERT INTO `wp_postmeta` VALUES("645", "114", "_WPMSGOPTION_MenuSelectedTextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("646", "114", "_WPMSGOPTION_MenuSeparatorColor", "878787");
INSERT INTO `wp_postmeta` VALUES("647", "114", "_WPMSGOPTION_BlockquoteBackgroundColor", "ABD5FF");
INSERT INTO `wp_postmeta` VALUES("648", "114", "_WPMSGOPTION_BlockquoteTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("649", "114", "_WPMSGOPTION_BlockquoteTextSize", "");
INSERT INTO `wp_postmeta` VALUES("650", "114", "_WPMSGOPTION_BlockquoteBorderColor", "ABD5FF");
INSERT INTO `wp_postmeta` VALUES("651", "114", "_WPMSGOPTION_BlockquoteBorderWidth", "");
INSERT INTO `wp_postmeta` VALUES("652", "114", "_WPMSGOPTION_BlockquoteBorderStyle", "None");
INSERT INTO `wp_postmeta` VALUES("653", "114", "_WPMSGOPTION_TableBackgroundColor", "ABD5FF");
INSERT INTO `wp_postmeta` VALUES("654", "114", "_WPMSGOPTION_TableTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("655", "114", "_WPMSGOPTION_TableTextSize", "");
INSERT INTO `wp_postmeta` VALUES("656", "114", "_WPMSGOPTION_TableBorderColor", "1994FF");
INSERT INTO `wp_postmeta` VALUES("657", "114", "_WPMSGOPTION_TableBorderWidth", "1");
INSERT INTO `wp_postmeta` VALUES("658", "114", "_WPMSGOPTION_TableBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("659", "114", "_WPMSGOPTION_TableWidth", "95");
INSERT INTO `wp_postmeta` VALUES("660", "114", "_WPMSGOPTION_TablePadding", "2");
INSERT INTO `wp_postmeta` VALUES("661", "114", "_WPMSGOPTION_ClickToCallBackgroundColor", "04BF04");
INSERT INTO `wp_postmeta` VALUES("662", "114", "_WPMSGOPTION_ClickToCallTextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("663", "114", "_WPMSGOPTION_ClickToCallTextSize", "");
INSERT INTO `wp_postmeta` VALUES("664", "114", "_WPMSGOPTION_ClickToCallBorderColor", "04BF04");
INSERT INTO `wp_postmeta` VALUES("665", "114", "_WPMSGOPTION_ClickToCallBorderWidth", "");
INSERT INTO `wp_postmeta` VALUES("666", "114", "_WPMSGOPTION_ClickToCallBorderStyle", "None");
INSERT INTO `wp_postmeta` VALUES("667", "114", "_WPMSGOPTION_OptinFormBackgroundColor", "ABD5FF");
INSERT INTO `wp_postmeta` VALUES("668", "114", "_WPMSGOPTION_OptinFormInputBackgroundColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("669", "114", "_WPMSGOPTION_OptinFormSubmitBackgroundColor", "E6E6E6");
INSERT INTO `wp_postmeta` VALUES("670", "114", "_WPMSGOPTION_OptinFormSubmitTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("671", "114", "_WPMSGOPTION_OptinFormTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("672", "114", "_WPMSGOPTION_OptinFormTextSize", "");
INSERT INTO `wp_postmeta` VALUES("673", "114", "_WPMSGOPTION_OptinFormBorderColor", "000000");
INSERT INTO `wp_postmeta` VALUES("674", "114", "_WPMSGOPTION_OptinFormBorderWidth", "2");
INSERT INTO `wp_postmeta` VALUES("675", "114", "_WPMSGOPTION_OptinFormBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("676", "114", "_WPMSGOPTION_ContactFormBackgroundColor", "ABD5FF");
INSERT INTO `wp_postmeta` VALUES("677", "114", "_WPMSGOPTION_ContactFormInputBackgroundColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("678", "114", "_WPMSGOPTION_ContactFormSubmitBackgroundColor", "E6E6E6");
INSERT INTO `wp_postmeta` VALUES("679", "114", "_WPMSGOPTION_ContactFormSubmitTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("680", "114", "_WPMSGOPTION_ContactFormTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("681", "114", "_WPMSGOPTION_ContactFormTextSize", "");
INSERT INTO `wp_postmeta` VALUES("682", "114", "_WPMSGOPTION_ContactFormBorderColor", "000000");
INSERT INTO `wp_postmeta` VALUES("683", "114", "_WPMSGOPTION_ContactFormBorderWidth", "2");
INSERT INTO `wp_postmeta` VALUES("684", "114", "_WPMSGOPTION_ContactFormBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("685", "114", "_WPMSGOPTION_DirectionsBackgroundColor", "ABD5FF");
INSERT INTO `wp_postmeta` VALUES("686", "114", "_WPMSGOPTION_DirectionsInputBackgroundColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("687", "114", "_WPMSGOPTION_DirectionsSubmitBackgroundColor", "E6E6E6");
INSERT INTO `wp_postmeta` VALUES("688", "114", "_WPMSGOPTION_DirectionsSubmitTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("689", "114", "_WPMSGOPTION_DirectionsTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("690", "114", "_WPMSGOPTION_DirectionsTextSize", "");
INSERT INTO `wp_postmeta` VALUES("691", "114", "_WPMSGOPTION_DirectionsBorderColor", "000000");
INSERT INTO `wp_postmeta` VALUES("692", "114", "_WPMSGOPTION_DirectionsBorderWidth", "2");
INSERT INTO `wp_postmeta` VALUES("693", "114", "_WPMSGOPTION_DirectionsBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("694", "114", "_WPMSGOPTION_SlideshowBackgroundColor", "ABD5FF");
INSERT INTO `wp_postmeta` VALUES("695", "114", "_WPMSGOPTION_SlideshowTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("696", "114", "_WPMSGOPTION_SlideshowTextSize", "");
INSERT INTO `wp_postmeta` VALUES("697", "114", "_WPMSGOPTION_SlideshowBorderColor", "000000");
INSERT INTO `wp_postmeta` VALUES("698", "114", "_WPMSGOPTION_SlideshowBorderWidth", "");
INSERT INTO `wp_postmeta` VALUES("699", "114", "_WPMSGOPTION_SlideshowBorderStyle", "None");
INSERT INTO `wp_postmeta` VALUES("700", "114", "_WPMSGOPTION_AccordianTitleBackgroundColor", "017CE3");
INSERT INTO `wp_postmeta` VALUES("701", "114", "_WPMSGOPTION_AccordianTitleTextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("702", "114", "_WPMSGOPTION_AccordianTitleTextSize", "");
INSERT INTO `wp_postmeta` VALUES("703", "114", "_WPMSGOPTION_AccordianTitleSelectedBackgroundColor", "015FE6");
INSERT INTO `wp_postmeta` VALUES("704", "114", "_WPMSGOPTION_AccordianTitleSelectedTextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("705", "114", "_WPMSGOPTION_AccordianBackgroundColor", "ABD5FF");
INSERT INTO `wp_postmeta` VALUES("706", "114", "_WPMSGOPTION_AccordianTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("707", "114", "_WPMSGOPTION_AccordianTextSize", "");
INSERT INTO `wp_postmeta` VALUES("708", "114", "_WPMSGOPTION_AccordianSeparatorColor", "878787");
INSERT INTO `wp_postmeta` VALUES("709", "114", "_WPMSGOPTION_AccordianBorderColor", "017CE3");
INSERT INTO `wp_postmeta` VALUES("710", "114", "_WPMSGOPTION_AccordianBorderWidth", "");
INSERT INTO `wp_postmeta` VALUES("711", "114", "_WPMSGOPTION_AccordianBorderStyle", "None");
INSERT INTO `wp_postmeta` VALUES("712", "114", "_WPMSGOPTION_AccordianArrowImage", "LightTriangle");
INSERT INTO `wp_postmeta` VALUES("713", "114", "_WPMSGOPTION_AccordianArrowColor", "Transparent");
INSERT INTO `wp_postmeta` VALUES("714", "114", "_WPMSGOPTION_CouponBackgroundColor", "ABD5FF");
INSERT INTO `wp_postmeta` VALUES("715", "114", "_WPMSGOPTION_CouponTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("716", "114", "_WPMSGOPTION_CouponTextSize", "");
INSERT INTO `wp_postmeta` VALUES("717", "114", "_WPMSGOPTION_CouponBorderColor", "000000");
INSERT INTO `wp_postmeta` VALUES("718", "114", "_WPMSGOPTION_CouponBorderWidth", "2");
INSERT INTO `wp_postmeta` VALUES("719", "114", "_WPMSGOPTION_CouponBorderStyle", "Dashed");
INSERT INTO `wp_postmeta` VALUES("720", "114", "_WPMSGOPTION_SearchBackgroundColor", "ABD5FF");
INSERT INTO `wp_postmeta` VALUES("721", "114", "_WPMSGOPTION_SearchTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("722", "114", "_WPMSGOPTION_SearchTextSize", "");
INSERT INTO `wp_postmeta` VALUES("723", "114", "_WPMSGOPTION_SearchBorderColor", "000000");
INSERT INTO `wp_postmeta` VALUES("724", "114", "_WPMSGOPTION_SearchBorderWidth", "2");
INSERT INTO `wp_postmeta` VALUES("725", "114", "_WPMSGOPTION_SearchBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("726", "114", "_WPMSGOPTION_SearchInputBackgroundColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("727", "114", "_WPMSGOPTION_SearchSubmitBackgroundColor", "E6E6E6");
INSERT INTO `wp_postmeta` VALUES("728", "114", "_WPMSGOPTION_SearchSubmitTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("729", "114", "_WPMSGOPTION_SearchSelectedBackgroundColor", "015FE6");
INSERT INTO `wp_postmeta` VALUES("730", "114", "_WPMSGOPTION_SearchSelectedTextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("731", "114", "_WPMSGOPTION_SearchHighlightColor", "FFFF00");
INSERT INTO `wp_postmeta` VALUES("732", "114", "_WPMSGOPTION_RssBackgroundColor", "ABD5FF");
INSERT INTO `wp_postmeta` VALUES("733", "114", "_WPMSGOPTION_RssTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("734", "114", "_WPMSGOPTION_RssTextSize", "");
INSERT INTO `wp_postmeta` VALUES("735", "114", "_WPMSGOPTION_RssBorderColor", "000000");
INSERT INTO `wp_postmeta` VALUES("736", "114", "_WPMSGOPTION_RssBorderWidth", "2");
INSERT INTO `wp_postmeta` VALUES("737", "114", "_WPMSGOPTION_RssBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("738", "114", "_WPMSGOPTION_RssSelectedBackgroundColor", "015FE6");
INSERT INTO `wp_postmeta` VALUES("739", "114", "_WPMSGOPTION_RssSelectedTextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("740", "114", "_WPMSGOPTION_ThemeStyleCSS", "<style  type=\"text/css\" >body{position:relative;-webkit-text-size-adjust:none;min-height:416px;{--wpmsgtknsinglepageminimumheight--}font-family:helvetica,sans-serif;-webkit-background-size:.438em 100%;Background:#FFFFFF;-webkit-touch-callout:none;margin:0;margin-right:auto; margin-left:auto;}img.alignright {float:right; max-width:100%; margin:0 0 1em 1em}img.alignleft {float:left; max-width:100%; margin:0 1em 1em 0}img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}a img.alignright {float:right; max-width:100%; margin:0 0 1em 1em}a img.alignleft {float:left; max-width:100%; margin:0 1em 1em 0}a img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}#accordion {background:#ABD5FF;border-color:#017CE3;border-width:px;border-style:None;margin:5px 5px 5px 5px;border-radius:8px}#accordion H2 {padding-top: 5pxpadding-bottom: 5px; padding-left: 15px; padding-right: 15px; margin: 0px 0px 0px 0px; background:#017CE3;font-size:17px;color:#FFFFFF;cursor: pointer; height:43px;overflow:hidden;border-top:1px solid #878787;font-weight: bold; line-height: 40px;}#accordion H2:first-child{border-top:none;border-radius:8px}#accordion H2:last-child{border-bottom-left-radius:8px;border-bottom-right-radius:8px}#accordion H2.current {background-color:#015FE6; color:#FFFFFF; cursor: default}#accordion div.acchead {padding-top: 5pxpadding-bottom: 5px; padding-left: 15px; padding-right: 15px; margin: 0px 0px 0px 0px; font-weight:bold;font-size:17px;background:#017CE3;font-size:17px;color:#FFFFFF;cursor: pointer; height:43px;overflow:hidden;border-top:1px solid #878787;line-height: 40px;}#accordion div.acchead:first-child{border-top:none;border-top-left-radius:8px;border-top-right-radius:8px;}#accordion div.acchead.current {background-color:#015FE6; color:#FFFFFF; cursor: default}#accordion .pane {padding-top: 15pxpadding-bottom: 15px; padding-left: 15px; padding-right: 15px; display: none; color:#000000;border-bottom-left-radius:8px;border-bottom-right-radius:8px;}#accordion .acchead .accarrow {float: right;valign: center;width:24px!important;height:24px!important;right:10px;top:18px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/arrows/Down_LightTriangle_Transparent.png) 0 0 no-repeat;margin:0!important ;margin-top: 15px;padding-top: 15px;}.images {background:#ABD5FF;color:#000000;border-color:#000000;border-width:px;border-style:;{--wpmsgtknslideshowheight--}{--wpmsgtknslideshowwidth--}overflow:hidden;margin-left:auto;margin-right:auto;position:relative;cursor:pointer;-moz-border-radius:5px;-moz-box-shadow:0 0 25px #666;-webkit-border-radius:5px;-webkit-box-shadow:0 0 25px #666;border-radius:5px;box-shadow:0 0 25px #666;}.images div {display:none;position:absolute;top:0;left:0;width: 100%;}.images div p a img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}.images div p img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}.images div a img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}.images div img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}.images img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}.images h3 {font-size:22px;font-weight:normal;margin:0 0 20px 0;color:#456;}.slidetabs {clear:both;}.slidetabs a {width:8px;height:8px;float:left;margin:3px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navigator.png) 0 0 no-repeat;display:block;font-size:1px;}.slidetabs a:hover {background-position:0 -8px;}.slidetabs a.current {background-position:0 -16px; } .forward, .backward {float:left;background:#fff url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/hori_large.png) no-repeat;display:block;width:30px;height:30px;cursor:pointer;font-size:1px;text-indent:-9999em;}.forward { background-position: 0 -30px; clear:right; }.forward:hover { background-position:-30px -30px; }.forward:active{ background-position:-60px -30px; } .backward:hover{ background-position:-30px 0; }.backward:active{ background-position:-60px 0; }.disabled {visibility:hidden !important;}.gallery { list-style: none; padding: 0; margin: 0; }.gallery:after { clear: both; content: \".\"; display: block; height: 0; visibility: hidden; }.gallery li { float: left; width: 33.33333333%; }.gallery li a { display: block; margin: 5px; border: 1px solid #3c3c3c; }.gallery li img { display: block; width: 100%; height: auto; }.highlight { background:#FFFF00;}.highlight_important { background:#FFFF00;}.center{display:block;text-align:center!important;margin:auto}a:hover .arrow{background:0 -13px!important}#topbar.transparent{background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#202020), to(#858585));background-image: -webkit-linear-gradient(top, #202020, #858585);background-image:-moz-linear-gradient(top, #202020, #858585);background-image: -ms-linear-gradient(top, #202020, #858585);background-image:-o-linear-gradient(top, #202020, #858585);}#topbar{position:relative;left:0;top:0;width:auto;}#title{position:absolute;font-weight:bold;top:0;left:0;right:0;text-align:center;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;color:#FFF;color:#FFFFFF;text-shadow:rgba(0,0,0,0.6) 0 -1px 0;padding:0 10px;}#logo{Background:#FFFFFF;}#content{width:100%;position:relative;min-height:250px;{--wpmsgtknsinglepageminimumheight--}height:auto;z-index:0;overflow:hidden;{--wpmsgtknsinglepagebackgroundimage--}}p {padding:0 5px;color:#000000;}h1 {padding:0 5px;color:#000000;}h2 {padding:0 5px;color:#000000;}h3 {padding:0 5px;color:#000000;}h4 {padding:0 5px;color:#000000;}h5 {padding:0 5px;color:#000000;}h6 {padding:0 5px;color:#000000;}blockquote {background:#ABD5FF;color:#000000;border-color:#ABD5FF;border-width:px;border-style:None;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 6px 10px;padding:0 5px;border-radius:8px}blockquote p {background:#ABD5FF;color:#000000;}.ezmbfooter p {padding:0 5px;color:#000000;}.ezmbtable {width:95%;margin-left:auto;margin-right:auto;border-collapse:collapse;background:#ABD5FF;color:#000000;border-color:#1994FF;border-width:1px;border-style:Solid;}.ezmbtable td {background:#ABD5FF;color:#000000;border-color:#1994FF;border-width:1px;border-style:Solid;padding:2px;}.ezmbtable td p {background:#ABD5FF;color:#000000;}.ezmbiconlist {color:#000000;}.menulist {background:#017CE3;color:#FFFFFF;border-color:#017CE3;border-width:px;border-style:None;opacity:1;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.menulist span.name{color:#FFFFFF;text-decoration:none}.menulist span.menudesc{color:#;text-decoration:none}.menulist td a{text-decoration:none}.menulist td a img{vertical-align:text-top;text-decoration:none}.menulist td{vertical-align:text-top;}.searchlist {background:#ABD5FF;color:#000000;border-color:#000000;border-width:2px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.searchform {background:#ABD5FF;color:#000000;border-color:#000000;border-width:2px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.searchform .button input {background:#E6E6E6;color:#000000;}.searchlist:hover,{background:-webkit-gradient(linear,0% 0%,0% 100%,from(#058cf5),to(#015fe6))}.searchlist a:hover {background-color:#CCF}.searchlist li a:hover{background:#015FE6;}.searchlist a{display:block;height:43px;width:auto;text-decoration:none}.searchlist a img{width:auto;height:32px;float:left;margin:5px 0 0 5px}.searchlist .name{width:auto;font-weight:bold;font-size:17px;color:#000000;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;float:left;margin:11px 0 0 7px}.searchlist a:hover .name{color:#FFFFFF;}.searchlistsnippet{padding-left:5px;padding-right:5px;}.rssfeedlist {background:#ABD5FF;color:#000000;border-color:#000000;border-width:2px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.rssfeedlist:hover{background:-webkit-gradient(linear,0% 0%,0% 100%,from(#058cf5),to(#015fe6))}.rssfeedlist a:hover {background-color:#CCF}.rssfeedlist li a:hover{background-color:#015fe6}.rssfeedlist a{display:block;min-height:43px;width:auto;text-decoration:none}.rssfeedlist a img{width:auto;height:32px;float:left;margin:5px 0 0 5px}.rssfeedlist .name{width:auto;font-weight:bold;font-size:17px;color:#000000;float:left;margin:11px 0 0 7px}.rssfeedlist a:hover .name{color:#FFFFFF;}.rssfeedlistsnippet{padding-left:5px;padding-right:5px;}.ezmbcouponwidget {background:#ABD5FF;color:#000000;border-color:#000000;border-width:2px;border-style:Dashed;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.optinform {background:#ABD5FF;color:#000000;border-color:#000000;border-width:2px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.optinform .button input {background:#E6E6E6;color:#000000;}.contactform {background:#ABD5FF;color:#000000;border-color:#000000;border-width:2px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.contactform .button input {background:#E6E6E6;color:#000000;}.customform {background:#ABD5FF;color:#000000;border-color:#000000;border-width:2px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.customform .button input {background:#E6E6E6;color:#000000;}li.customformrow{position:relative;list-style-type:none;display:block;height:43px;overflow:hidden;border-top:1px solid #878787;border-top:1px solid #878787;width:auto}li.customformrowbelow{position:relative;list-style-type:none;display:block;height:43px;overflow:hidden;width:auto}p.customformrow{-webkit-margin-before: 0px;border-top:1px solid #878787;width:auto}.customformrow .customformlabel, .customformrow .customformlabelfull, .customformtextbox .customformlabel, .customformradiorow .customformlabel{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;padding-left:5px;overflow:hidden}.customformrow .customformlabel{line-height:44px;}.customformrow .customformlabelfull{line-height:44px;width:100%;height:auto;}.customformrow input {width:50%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.customformrowbelow input {width:100%;min-width:95%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}input.customformrowrequired{background: #ff8080;}.customformrow input:not([type=\'checkbox\']) {-webkit-appearance:none;}.customformrow select{width:50%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.customformrow:first-child input{border-top-right-radius:8px}.customformrow:last-child input{border-bottom-right-radius:8px}.customformtextbox{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.customformtextbox img{max-width:100%}.customformtextbox p{margin-top:2px;color:#000;margin-bottom:2px;text-align:justify}.customformtextbox ul{list-style:circle!important;margin:3px 0}.customformtextbox li{margin:0!important}.customformtextbox textarea{margin-top:5px;font-size:medium;padding:0}.customformradiorow{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.customformrow input[type=\"checkbox\"]{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOff.png)no-repeat;-webkit-appearance:none;border:0;margin:4px 4px 0 0}.customformrow input[type=\"checkbox\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOn.png)no-repeat;}.customformradiorow input[type=\"radio\"]{-webkit-appearance:none;border:0;width:100%;height: 43px;z-index:2;position:absolute;left:50%;margin:0;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOff.png) no-repeat;-webkit-border-radius:0}.customformradiorow input[type=\"radio\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOn.png) no-repeat;}.customformradiorow .customformradiorowinput {height: 40px;}.customformradiorow label{position: absolute;margin-top: 6px;margin-left:60%;text-overflow: ellipsis;}.customformradiorowbelow{position:relative;overflow:hidden;padding:5px 9px}.customformradiorowbelowlabel{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.customformradiorowbelowlabel .customformlabel{left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;padding-left:5px;overflow:hidden}.customformradiorowbelow input[type=\"radio\"]{-webkit-appearance:none;border:0;width:100%;height: 43px;z-index:2;position:absolute;left:10px;margin:0;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOff.png) no-repeat;-webkit-border-radius:0}.customformradiorowbelow input[type=\"radio\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOn.png) no-repeat;}.customformradiorowbelow .customformradiorowinputbelow {height: 40px;}span.customformlabelfull{font-weight:bold;font-size:17px;}.customformradiorowbelow label{position: absolute;margin-top: 6px;margin-left:45px;text-overflow: ellipsis;}li.customformrowbelow select{width:100%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.customformrowcheckboxright{position:relative;overflow:hidden;border-top:1px solid #878787;height: 40px;padding:5px 9px}.customformrowcheckboxright .customformlabel {left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;line-height:44px;overflow:hidden}.customformrowcheckboxright input[type=\"checkbox\"]{position: absolute;height: 40px;width: 35px;right:0;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOff.png)no-repeat;-webkit-appearance:none;border:0;margin:4px 4px 0 0}.customformrowcheckboxright input[type=\"checkbox\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOn.png) no-repeat;}.customformrowcheckboxleft{position:relative;overflow:hidden;border-top:1px solid #878787;height: 40px;padding:5px 9px}.customformrowcheckboxleft .customformlabel {margin-left:40px;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;line-height:44px;overflow:hidden}.customformrowcheckboxleft input[type=\"checkbox\"]{position: absolute;height: 40px;width: 35px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOff.png)no-repeat;-webkit-appearance:none;border:0;margin:4px 4px 0 0}.customformrowcheckboxleft input[type=\"checkbox\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOn.png) no-repeat;} .directions {background:#ABD5FF;color:#000000;border-color:#000000;border-width:2px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.directions .button input {background:#E6E6E6;color:#000000;}.clear {clear: both;}.ezmbphone {margin-left: auto;margin-right: auto;text-align: center;}.ezmbphoneimg {margin-left: auto;margin-right: auto;text-align: center;}.phonebtnimg {margin-left: auto;margin-right: auto;text-align: center;}.phonebtn, .phonebtn:visited {background:#04BF04;color:#FFFFFF;border-color:#04BF04;border-width:px;border-style:None;-webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.6);text-shadow: 0 -1px 1px rgba(0,0,0,0.25);border-bottom: 1px solid rgba(0,0,0,0.25);display: inline-block; padding: 5px 10px 6px; text-decoration: none;border-radius: 10px;position: relative;cursor: pointer;font-weight:bold;}.ezmbfooter {Background:#ABD5FF;margin:0;}.ezmbfooter p {margin:0;}.textbox{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.searchbox{height:44px;background:-webkit-gradient(linear,0% 0%,0% 100%,from(#f1f3f4),color-stop(3%,#e0e4e7),color-stop(50%,#c7cfd4),color-stop(51%,#bec7cd),color-stop(97%,#b4bec6),to(#8999a5));width:100%;margin:-13px 0 13px}.searchbox form{height:24px;border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/searchfield.png) 4 14 1 24;display:block;position:relative;top:8px;border-width:4px 14px 1px 24px;margin:auto}fieldset{border:0;margin:0;padding:0}.searchbox input[type=\"text\"]{border:0;-webkit-appearance:none;height:18px;float:left;font-size:13px;position:relative;top:2px;left:2px;padding:0}.textbox img{max-width:100%}.textbox p{margin-top:2px;color:#000;margin-bottom:2px;text-align:justify}.textbox ul{list-style:circle!important;margin:3px 0}.textbox li{margin:0!important}.menulist li:first-child,.menulist li.form:first-child{border-top:0}.menu,.checkbox,.radiobutton,.select,li.button,li.bigfield,li.smallfield,li.searchsmallfield,li.optinsmallfield,li.contactsmallfield,li.mapsmallfield{position:relative;list-style-type:none;display:block;height:43px;overflow:hidden;border-top:1px solid #878787;border-top:1px solid #878787;width:auto}.menulist li:first-child:hover,.menulist li:first-child a,.radiobutton:first-child input,.select:first-child select,li.button:first-child input,.bigfield:first-child input{border-top-left-radius:8px;border-top-right-radius:8px}.menulist li:last-child:hover,.menulist li:last-child a,.radiobutton:last-child input,.select:last-child select,li.button:last-child input,.bigfield:last-child input{border-bottom-left-radius:8px;border-bottom-right-radius:8px}.menu:hover,.store:hover,.list #content li a:hover,.list .withimage:hover,.applist li:hover:nth-child(n),.ipodlist li:hover:nth-child(n){background:#015FE6;color:#FFFFFF;}.menu a:hover .comment{color:#FFFFFF;}.menu a{display:block;height:43px;width:auto;text-decoration:none}.menu a img{width:auto;height:32px;float:left;margin:5px 0 0 5px}.menu .name,.checkbox .name,.radiobutton .name{width:auto;font-weight:bold;font-size:17px;color:#FFFFFF;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;float:left;margin:11px 0 0 7px}.menu-item{position:relative;list-style-type:none;display:block;height:43px;overflow:hidden;border-top:1px solid #878787;border-top:1px solid #878787;width:auto}.menu-item a{display:block;height:43px;width:auto;text-decoration:none}.menu-item a img{width:auto;height:32px;float:left;margin:5px 0 0 5px}.menu-item .name,.checkbox .name,.radiobutton .name{width:auto;font-weight:bold;font-size:17px;color:#FFFFFF;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;float:left;margin:11px 0 0 7px}.menu-item:hover{background:#015FE6;color:#FFFFFF;}.menu-item a:hover .comment{color:#FFFFFF;}.menu-item .comment{width:auto;font-size:17px;text-overflow:ellipsis;overflow:hidden;max-width:75%;white-space:nowrap;float:right;color:#324f85;margin:11px 30px 0 0}.menu-item .arrow{position:absolute;width:24px!important;height:24px!important;right:10px;top:12px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/arrows/LightOpenArrow_Transparent.png) 0 0 no-repeat;margin:0!important}.menu-item .arrowleft{float:left;width:24px!important;height:24px!important;left:10px;top:12px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/arrows/LightOpenArrow_Transparent.png) 0 0 no-repeat;margin:0!important}.menu-item a:hover .name{color:#FFFFFF;}.menu .comment{width:auto;font-size:17px;text-overflow:ellipsis;overflow:hidden;max-width:75%;white-space:nowrap;float:right;color:#324f85;margin:11px 30px 0 0}.menu .arrow,.store .arrow,.musiclist .arrow,.list .arrow{position:absolute;width:24px!important;height:24px!important;right:10px;top:12px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/arrows/LightOpenArrow_Transparent.png) 0 0 no-repeat;margin:0!important}.menu .arrowleft,.store .arrowleft,.musiclist .arrowleft,.list .arrowleft{float:left;width:24px!important;height:24px!important;left:10px;top:12px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/arrows/LightOpenArrow_Transparent.png) 0 0 no-repeat;margin:0!important}#leftnav,#leftbutton{position:absolute;font-size:12px;left:9px;font-weight:bold}#leftnav,#leftbutton,#rightnav,#rightbutton{z-index:5000}#leftnav a,#rightnav a,#leftbutton a,#rightbutton a{display:block;color:#fff;text-shadow:rgba(0,0,0,0.6) 0 -1px 0;text-decoration:none}.black #leftnav a:first-child,.transparent #leftnav a:first-child{border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleftblack.png) 0 5 0 13-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleftblack.png) 0 5 0 13-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleftblack.png) 0 5 0 13-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleftblack.png) 0 5 0 13}.black #leftnav a,.transparent #leftnav a{border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleftblack.png) 0 5 0 13-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleftblack.png) 0 5 0 13-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleftblack.png) 0 5 0 13-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleftblack.png) 0 5 0 13}.black #rightnav a:first-child,.transparent #rightnav a:first-child{-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navrightblack.png) 0 13 0 5-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navrightblack.png) 0 13 0 5-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navrightblack.png) 0 13 0 5-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navrightblack.png) 0 13 0 5}.black #rightnav a,.transparent #rightnav a{-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkrightblack.png) 0 13 0 5-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkrightblack.png) 0 13 0 5-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkrightblack.png) 0 13 0 5-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkrightblack.png) 0 13 0 5}.black #leftbutton a,.black #rightbutton a,.transparent #leftbutton a,.transparent #rightbutton a{border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbuttonblack.png) 0 5 0 5-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbuttonblack.png) 0 5 0 5-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbuttonblack.png) 0 5 0 5-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbuttonblack.png) 0 5 0 5}#leftnav a:first-child{z-index:2;border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleft_std.png) 0 5 0 13;-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleft_std.png) 0 5 0 13;-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleft_std.png) 0 5 0 13;-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleft_std.png) 0 5 0 13;width:auto;border-width:0 5px 0 13px;border-radius:16px 6px 6px 16px}#leftnav a{border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleft.png) 0 5 0 13;-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleft.png) 0 5 0 13;-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleft.png) 0 5 0 13;-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleft.png) 0 5 0 13;z-index:3;margin-left:-4px;padding-right:4px;float:left;border-width:0 5px 0 13px;border-radius:16px 6px 6px 16px}#rightnav,#rightbutton{position:absolute;font-size:12px;right:9px;font-weight:bold}#rightnav a{border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkright.png) 0 13 0 5;-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkright.png) 0 13 0 5;-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkright.png) 0 13 0 5;-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkright.png) 0 13 0 5;z-index:3;margin-right:-4px;padding-left:4px;float:right;border-width:0 13px 0 5px;border-radius:6px 16px 16px 6px}#rightnav a:first-child{z-index:2;border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navright_std.png) 0 13 0 5;-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navright_std.png) 0 13 0 5;-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navright_std.png) 0 13 0 5;-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navright_std.png) 0 13 0 5;border-width:0 13px 0 5px;border-radius:6px 16px 16px 6px}#leftbutton a,#rightbutton a{border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbutton_std.png) 0 5 0 5;-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbutton_std.png) 0 5 0 5;-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbutton_std.png) 0 5 0 5;-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbutton_std.png) 0 5 0 5;border-width:0 5px;border-radius:6px}.gform_body ul { list-style-type: none; }.radiobutton .name{z-index:1}.select select{color:#000;font-weight:bold;font-size:17px;border-radius:0}.select option{max-width:90%}.select .arrow{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/arrow.png);width:8px;height:13px;display:block;-webkit-transform:rotate(90deg);position:absolute;right:10px;top:18px}.button input{width:100%;height:100%;-webkit-appearance:none;border:0;font-weight:bold;font-size:17px;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;background:none;border-radius:0}.textbox textarea{margin-top:5px;font-size:medium;padding:0}.bigfield input{-webkit-appearance:none;border:0;height:100%;background:transparent;font-weight:bold;font-size:17px;padding:0 0 0 5px;border-radius:0}.smallfield .name{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;line-height:44px;font-size:17px;padding-left:5px;overflow:hidden}.smallfield input{width:50%;position:absolute;right:0;height:44px;-webkit-appearance:none;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.smallfield:first-child input{border-top-right-radius:8px}.smallfield:last-child input{border-bottom-right-radius:8px}.searchsmallfield .name{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;line-height:44px;font-size:17px;padding-left:5px;overflow:hidden}.searchsmallfield input{width:50%;position:absolute;right:0;height:44px;-webkit-appearance:none;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.searchsmallfield:first-child input{border-top-right-radius:8px}.searchsmallfield:last-child input{border-bottom-right-radius:8px}.optinsmallfield .name{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;line-height:44px;font-size:17px;padding-left:5px;overflow:hidden}.optinsmallfield input{width:50%;position:absolute;right:0;height:44px;-webkit-appearance:none;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.optinsmallfield:first-child input{border-top-right-radius:8px}.optinsmallfield:last-child input{border-bottom-right-radius:8px}.contactsmallfield .name{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;line-height:44px;font-size:17px;padding-left:5px;overflow:hidden}.contactsmallfield input{width:50%;position:absolute;right:0;height:44px;-webkit-appearance:none;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.contactsmallfield:first-child input{border-top-right-radius:8px}.contactsmallfield:last-child input{border-bottom-right-radius:8px}.mapsmallfield .name{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;line-height:44px;font-size:17px;padding-left:5px;overflow:hidden}.mapsmallfield input{width:50%;position:absolute;right:0;height:44px;-webkit-appearance:none;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.mapsmallfield:first-child input{border-top-right-radius:8px}.mapsmallfield:last-child input{border-bottom-right-radius:8px}img,#duobutton a:last-child,#duoselectionbuttons a:first-child,.ipodlist li:hover:nth-child(n) .name,.ipodlist li:hover:nth-child(n) .time{border:0}#triselectionbuttons a:hover,#triselectionbuttons a#pressed,#duoselectionbuttons a:hover,#duoselectionbuttons a#pressed,li#doublead:hover{background:none}.menu a:hover .name,.store:hover .starcomment,.store:hover .name,.store:hover .comment,.list .withimage a:hover .comment,.list #content li a:hover{color:#FFFFFF;}@media screen and (max-width:320px) {#topbar{height:44px}#logo{max-width:320px;width:100%;}#title{line-height:44px;height:44px;font-size:16pt;}.searchbox form{width:272px}.searchbox input[type=\"text\"]{width:275px}.menu .name{max-width:77%}#leftnav a,#rightnav a,#leftbutton a,#rightbutton a{line-height:30px;height:30px}#leftnav img,#rightnav img{margin-top:4px}.textbox textarea{width:85%;}.customformtextbox textarea{width:85%;}.bigfield input{width:295px}.checkbox .name,.radiobutton .name{max-width:190px}#leftnav,#leftbutton,#rightnav,#rightbutton{top:7px}}@media screen and (min-width:321px) {#topbar{height:32px}#title{line-height:32px;height:32px;font-size:13pt}.menu .name{max-width:85%}#leftnav a,#rightnav a,#leftbutton a,#rightbutton a{line-height:24px;height:24px}#leftnav img,#rightnav img{margin-top:4px;height:70%}.textbox textarea{width:85%;}.customformtextbox textarea{width:85%;}#doublead{width:350px!important}.searchbox form{width:432px}.searchbox input[type=\"text\"]{width:435px}.bigfield input{width:455px}.checkbox .name,.radiobutton .name{max-width:75%}#leftnav,#leftbutton,#rightnav,#rightbutton{top:4px}}</style>");
INSERT INTO `wp_postmeta` VALUES("741", "114", "_WPMSGOPTION_ThemeCustomFormStyleCSS", "<style  type=\"text/css\" >.customform {background:#ABD5FF;color:#000000;border-color:#000000;border-width:2px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.customform .button input {background:#E6E6E6;color:#000000;}li.customformrow{position:relative;list-style-type:none;display:block;height:43px;overflow:hidden;border-top:1px solid #878787;border-top:1px solid #878787;width:auto}li.customformrowbelow{position:relative;list-style-type:none;display:block;height:43px;overflow:hidden;width:auto}p.customformrow{-webkit-margin-before: 0px;border-top:1px solid #878787;width:auto}.customformrow .customformlabel, .customformrow .customformlabelfull, .customformtextbox .customformlabel, .customformradiorow .customformlabel{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;padding-left:5px;overflow:hidden}.customformrow .customformlabel{line-height:44px;}.customformrow .customformlabelfull{line-height:44px;width:100%;height:auto;}.customformrow input {width:50%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.customformrowbelow input {width:100%;min-width:95%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}input.customformrowrequired{background: #ff8080;}.customformrow input:not([type=\'checkbox\']) {-webkit-appearance:none;}.customformrow select{width:50%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.customformrow:first-child input{border-top-right-radius:8px}.customformrow:last-child input{border-bottom-right-radius:8px}.customformtextbox{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.customformtextbox img{max-width:100%}.customformtextbox p{margin-top:2px;color:#000;margin-bottom:2px;text-align:justify}.customformtextbox ul{list-style:circle!important;margin:3px 0}.customformtextbox li{margin:0!important}.customformtextbox textarea{margin-top:5px;font-size:medium;padding:0}.customformradiorow{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.customformrow input[type=\"checkbox\"]{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOff.png)no-repeat;-webkit-appearance:none;border:0;margin:4px 4px 0 0}.customformrow input[type=\"checkbox\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOn.png)no-repeat;}.customformradiorow input[type=\"radio\"]{-webkit-appearance:none;border:0;width:100%;height: 43px;z-index:2;position:absolute;left:50%;margin:0;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOff.png) no-repeat;-webkit-border-radius:0}.customformradiorow input[type=\"radio\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOn.png) no-repeat;}.customformradiorow .customformradiorowinput {height: 40px;}.customformradiorow label{position: absolute;margin-top: 6px;margin-left:60%;text-overflow: ellipsis;}.customformradiorowbelow{position:relative;overflow:hidden;padding:5px 9px}.customformradiorowbelowlabel{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.customformradiorowbelowlabel .customformlabel{left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;padding-left:5px;overflow:hidden}.customformradiorowbelow input[type=\"radio\"]{-webkit-appearance:none;border:0;width:100%;height: 43px;z-index:2;position:absolute;left:10px;margin:0;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOff.png) no-repeat;-webkit-border-radius:0}.customformradiorowbelow input[type=\"radio\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOn.png) no-repeat;}.customformradiorowbelow .customformradiorowinputbelow {height: 40px;}span.customformlabelfull{font-weight:bold;font-size:17px;}.customformradiorowbelow label{position: absolute;margin-top: 6px;margin-left:45px;text-overflow: ellipsis;}li.customformrowbelow select{width:100%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.customformrowcheckboxright{position:relative;overflow:hidden;border-top:1px solid #878787;height: 40px;padding:5px 9px}.customformrowcheckboxright .customformlabel {left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;line-height:44px;overflow:hidden}.customformrowcheckboxright input[type=\"checkbox\"]{position: absolute;height: 40px;width: 35px;right:0;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOff.png)no-repeat;-webkit-appearance:none;border:0;margin:4px 4px 0 0}.customformrowcheckboxright input[type=\"checkbox\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOn.png) no-repeat;}.customformrowcheckboxleft{position:relative;overflow:hidden;border-top:1px solid #878787;height: 40px;padding:5px 9px}.customformrowcheckboxleft .customformlabel {margin-left:40px;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;line-height:44px;overflow:hidden}.customformrowcheckboxleft input[type=\"checkbox\"]{position: absolute;height: 40px;width: 35px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOff.png)no-repeat;-webkit-appearance:none;border:0;margin:4px 4px 0 0}.customformrowcheckboxleft input[type=\"checkbox\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOn.png) no-repeat;}</style>");
INSERT INTO `wp_postmeta` VALUES("742", "115", "_WPMSGOPTION_PageBackgroundColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("743", "115", "_WPMSGOPTION_LogoBackgroundColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("744", "115", "_WPMSGOPTION_FooterBackgroundColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("745", "115", "_WPMSGOPTION_ParagraphTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("746", "115", "_WPMSGOPTION_ParagraphTextSize", "");
INSERT INTO `wp_postmeta` VALUES("747", "115", "_WPMSGOPTION_BackgroundImage", "");
INSERT INTO `wp_postmeta` VALUES("748", "115", "_WPMSGOPTION_BackgroundImageRepeat", "");
INSERT INTO `wp_postmeta` VALUES("749", "115", "_WPMSGOPTION_BackgroundImagePosition", "");
INSERT INTO `wp_postmeta` VALUES("750", "115", "_WPMSGOPTION_TopbarStartColor", "202020");
INSERT INTO `wp_postmeta` VALUES("751", "115", "_WPMSGOPTION_TopbarEndColor", "858585");
INSERT INTO `wp_postmeta` VALUES("752", "115", "_WPMSGOPTION_TopbarTextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("753", "115", "_WPMSGOPTION_TopbarButtonColor", "std");
INSERT INTO `wp_postmeta` VALUES("754", "115", "_WPMSGOPTION_H1TextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("755", "115", "_WPMSGOPTION_H1TextSize", "");
INSERT INTO `wp_postmeta` VALUES("756", "115", "_WPMSGOPTION_H1TextShadow", "");
INSERT INTO `wp_postmeta` VALUES("757", "115", "_WPMSGOPTION_H2TextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("758", "115", "_WPMSGOPTION_H2TextSize", "");
INSERT INTO `wp_postmeta` VALUES("759", "115", "_WPMSGOPTION_H2TextShadow", "");
INSERT INTO `wp_postmeta` VALUES("760", "115", "_WPMSGOPTION_H3TextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("761", "115", "_WPMSGOPTION_H3TextSize", "");
INSERT INTO `wp_postmeta` VALUES("762", "115", "_WPMSGOPTION_H3TextShadow", "");
INSERT INTO `wp_postmeta` VALUES("763", "115", "_WPMSGOPTION_H4TextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("764", "115", "_WPMSGOPTION_H4TextSize", "");
INSERT INTO `wp_postmeta` VALUES("765", "115", "_WPMSGOPTION_H4TextShadow", "");
INSERT INTO `wp_postmeta` VALUES("766", "115", "_WPMSGOPTION_H5TextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("767", "115", "_WPMSGOPTION_H5TextSize", "");
INSERT INTO `wp_postmeta` VALUES("768", "115", "_WPMSGOPTION_H5TextShadow", "");
INSERT INTO `wp_postmeta` VALUES("769", "115", "_WPMSGOPTION_H6TextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("770", "115", "_WPMSGOPTION_H6TextSize", "");
INSERT INTO `wp_postmeta` VALUES("771", "115", "_WPMSGOPTION_H6TextShadow", "");
INSERT INTO `wp_postmeta` VALUES("772", "115", "_WPMSGOPTION_MenuBackgroundColor", "FF174D");
INSERT INTO `wp_postmeta` VALUES("773", "115", "_WPMSGOPTION_IconTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("774", "115", "_WPMSGOPTION_MenuTextColor", "F7FF05");
INSERT INTO `wp_postmeta` VALUES("775", "115", "_WPMSGOPTION_MenuTextSize", "");
INSERT INTO `wp_postmeta` VALUES("776", "115", "_WPMSGOPTION_MenuBorderColor", "FF174D");
INSERT INTO `wp_postmeta` VALUES("777", "115", "_WPMSGOPTION_MenuBorderWidth", "");
INSERT INTO `wp_postmeta` VALUES("778", "115", "_WPMSGOPTION_MenuBorderStyle", "None");
INSERT INTO `wp_postmeta` VALUES("779", "115", "_WPMSGOPTION_MenuOpacity", "1");
INSERT INTO `wp_postmeta` VALUES("780", "115", "_WPMSGOPTION_MenuArrowImage", "LightOpenArrow");
INSERT INTO `wp_postmeta` VALUES("781", "115", "_WPMSGOPTION_MenuArrowColor", "Transparent");
INSERT INTO `wp_postmeta` VALUES("782", "115", "_WPMSGOPTION_MenuSelectedBackgroundColor", "015FE6");
INSERT INTO `wp_postmeta` VALUES("783", "115", "_WPMSGOPTION_MenuSelectedTextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("784", "115", "_WPMSGOPTION_MenuSeparatorColor", "878787");
INSERT INTO `wp_postmeta` VALUES("785", "115", "_WPMSGOPTION_BlockquoteBackgroundColor", "E6E6E6");
INSERT INTO `wp_postmeta` VALUES("786", "115", "_WPMSGOPTION_BlockquoteTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("787", "115", "_WPMSGOPTION_BlockquoteTextSize", "");
INSERT INTO `wp_postmeta` VALUES("788", "115", "_WPMSGOPTION_BlockquoteBorderColor", "E6E6E6");
INSERT INTO `wp_postmeta` VALUES("789", "115", "_WPMSGOPTION_BlockquoteBorderWidth", "");
INSERT INTO `wp_postmeta` VALUES("790", "115", "_WPMSGOPTION_BlockquoteBorderStyle", "None");
INSERT INTO `wp_postmeta` VALUES("791", "115", "_WPMSGOPTION_TableBackgroundColor", "E6E6E6");
INSERT INTO `wp_postmeta` VALUES("792", "115", "_WPMSGOPTION_TableTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("793", "115", "_WPMSGOPTION_TableTextSize", "");
INSERT INTO `wp_postmeta` VALUES("794", "115", "_WPMSGOPTION_TableBorderColor", "000000");
INSERT INTO `wp_postmeta` VALUES("795", "115", "_WPMSGOPTION_TableBorderWidth", "1");
INSERT INTO `wp_postmeta` VALUES("796", "115", "_WPMSGOPTION_TableBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("797", "115", "_WPMSGOPTION_TableWidth", "95");
INSERT INTO `wp_postmeta` VALUES("798", "115", "_WPMSGOPTION_TablePadding", "2");
INSERT INTO `wp_postmeta` VALUES("799", "115", "_WPMSGOPTION_ClickToCallBackgroundColor", "04BF04");
INSERT INTO `wp_postmeta` VALUES("800", "115", "_WPMSGOPTION_ClickToCallTextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("801", "115", "_WPMSGOPTION_ClickToCallTextSize", "");
INSERT INTO `wp_postmeta` VALUES("802", "115", "_WPMSGOPTION_ClickToCallBorderColor", "04BF04");
INSERT INTO `wp_postmeta` VALUES("803", "115", "_WPMSGOPTION_ClickToCallBorderWidth", "");
INSERT INTO `wp_postmeta` VALUES("804", "115", "_WPMSGOPTION_ClickToCallBorderStyle", "None");
INSERT INTO `wp_postmeta` VALUES("805", "115", "_WPMSGOPTION_OptinFormBackgroundColor", "E6E6E6");
INSERT INTO `wp_postmeta` VALUES("806", "115", "_WPMSGOPTION_OptinFormInputBackgroundColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("807", "115", "_WPMSGOPTION_OptinFormSubmitBackgroundColor", "8AE3E6");
INSERT INTO `wp_postmeta` VALUES("808", "115", "_WPMSGOPTION_OptinFormSubmitTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("809", "115", "_WPMSGOPTION_OptinFormTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("810", "115", "_WPMSGOPTION_OptinFormTextSize", "");
INSERT INTO `wp_postmeta` VALUES("811", "115", "_WPMSGOPTION_OptinFormBorderColor", "000000");
INSERT INTO `wp_postmeta` VALUES("812", "115", "_WPMSGOPTION_OptinFormBorderWidth", "2");
INSERT INTO `wp_postmeta` VALUES("813", "115", "_WPMSGOPTION_OptinFormBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("814", "115", "_WPMSGOPTION_ContactFormBackgroundColor", "E6E6E6");
INSERT INTO `wp_postmeta` VALUES("815", "115", "_WPMSGOPTION_ContactFormInputBackgroundColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("816", "115", "_WPMSGOPTION_ContactFormSubmitBackgroundColor", "8AE3E6");
INSERT INTO `wp_postmeta` VALUES("817", "115", "_WPMSGOPTION_ContactFormSubmitTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("818", "115", "_WPMSGOPTION_ContactFormTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("819", "115", "_WPMSGOPTION_ContactFormTextSize", "");
INSERT INTO `wp_postmeta` VALUES("820", "115", "_WPMSGOPTION_ContactFormBorderColor", "000000");
INSERT INTO `wp_postmeta` VALUES("821", "115", "_WPMSGOPTION_ContactFormBorderWidth", "2");
INSERT INTO `wp_postmeta` VALUES("822", "115", "_WPMSGOPTION_ContactFormBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("823", "115", "_WPMSGOPTION_DirectionsBackgroundColor", "E6E6E6");
INSERT INTO `wp_postmeta` VALUES("824", "115", "_WPMSGOPTION_DirectionsInputBackgroundColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("825", "115", "_WPMSGOPTION_DirectionsSubmitBackgroundColor", "8AE3E6");
INSERT INTO `wp_postmeta` VALUES("826", "115", "_WPMSGOPTION_DirectionsSubmitTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("827", "115", "_WPMSGOPTION_DirectionsTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("828", "115", "_WPMSGOPTION_DirectionsTextSize", "");
INSERT INTO `wp_postmeta` VALUES("829", "115", "_WPMSGOPTION_DirectionsBorderColor", "000000");
INSERT INTO `wp_postmeta` VALUES("830", "115", "_WPMSGOPTION_DirectionsBorderWidth", "2");
INSERT INTO `wp_postmeta` VALUES("831", "115", "_WPMSGOPTION_DirectionsBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("832", "115", "_WPMSGOPTION_SlideshowBackgroundColor", "8AE3E6");
INSERT INTO `wp_postmeta` VALUES("833", "115", "_WPMSGOPTION_SlideshowTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("834", "115", "_WPMSGOPTION_SlideshowTextSize", "");
INSERT INTO `wp_postmeta` VALUES("835", "115", "_WPMSGOPTION_SlideshowBorderColor", "000000");
INSERT INTO `wp_postmeta` VALUES("836", "115", "_WPMSGOPTION_SlideshowBorderWidth", "");
INSERT INTO `wp_postmeta` VALUES("837", "115", "_WPMSGOPTION_SlideshowBorderStyle", "None");
INSERT INTO `wp_postmeta` VALUES("838", "115", "_WPMSGOPTION_AccordianTitleBackgroundColor", "FF174D");
INSERT INTO `wp_postmeta` VALUES("839", "115", "_WPMSGOPTION_AccordianTitleTextColor", "F7FF05");
INSERT INTO `wp_postmeta` VALUES("840", "115", "_WPMSGOPTION_AccordianTitleTextSize", "");
INSERT INTO `wp_postmeta` VALUES("841", "115", "_WPMSGOPTION_AccordianTitleSelectedBackgroundColor", "015FE6");
INSERT INTO `wp_postmeta` VALUES("842", "115", "_WPMSGOPTION_AccordianTitleSelectedTextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("843", "115", "_WPMSGOPTION_AccordianBackgroundColor", "E6E6E6");
INSERT INTO `wp_postmeta` VALUES("844", "115", "_WPMSGOPTION_AccordianTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("845", "115", "_WPMSGOPTION_AccordianTextSize", "");
INSERT INTO `wp_postmeta` VALUES("846", "115", "_WPMSGOPTION_AccordianSeparatorColor", "878787");
INSERT INTO `wp_postmeta` VALUES("847", "115", "_WPMSGOPTION_AccordianBorderColor", "FF174D");
INSERT INTO `wp_postmeta` VALUES("848", "115", "_WPMSGOPTION_AccordianBorderWidth", "");
INSERT INTO `wp_postmeta` VALUES("849", "115", "_WPMSGOPTION_AccordianBorderStyle", "None");
INSERT INTO `wp_postmeta` VALUES("850", "115", "_WPMSGOPTION_AccordianArrowImage", "LightTriangle");
INSERT INTO `wp_postmeta` VALUES("851", "115", "_WPMSGOPTION_AccordianArrowColor", "Transparent");
INSERT INTO `wp_postmeta` VALUES("852", "115", "_WPMSGOPTION_CouponBackgroundColor", "8AE3E6");
INSERT INTO `wp_postmeta` VALUES("853", "115", "_WPMSGOPTION_CouponTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("854", "115", "_WPMSGOPTION_CouponTextSize", "");
INSERT INTO `wp_postmeta` VALUES("855", "115", "_WPMSGOPTION_CouponBorderColor", "000000");
INSERT INTO `wp_postmeta` VALUES("856", "115", "_WPMSGOPTION_CouponBorderWidth", "2");
INSERT INTO `wp_postmeta` VALUES("857", "115", "_WPMSGOPTION_CouponBorderStyle", "Dashed");
INSERT INTO `wp_postmeta` VALUES("858", "115", "_WPMSGOPTION_SearchBackgroundColor", "E6E6E6");
INSERT INTO `wp_postmeta` VALUES("859", "115", "_WPMSGOPTION_SearchTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("860", "115", "_WPMSGOPTION_SearchTextSize", "");
INSERT INTO `wp_postmeta` VALUES("861", "115", "_WPMSGOPTION_SearchBorderColor", "000000");
INSERT INTO `wp_postmeta` VALUES("862", "115", "_WPMSGOPTION_SearchBorderWidth", "2");
INSERT INTO `wp_postmeta` VALUES("863", "115", "_WPMSGOPTION_SearchBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("864", "115", "_WPMSGOPTION_SearchInputBackgroundColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("865", "115", "_WPMSGOPTION_SearchSubmitBackgroundColor", "B3B3B3");
INSERT INTO `wp_postmeta` VALUES("866", "115", "_WPMSGOPTION_SearchSubmitTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("867", "115", "_WPMSGOPTION_SearchSelectedBackgroundColor", "015FE6");
INSERT INTO `wp_postmeta` VALUES("868", "115", "_WPMSGOPTION_SearchSelectedTextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("869", "115", "_WPMSGOPTION_SearchHighlightColor", "FFFF00");
INSERT INTO `wp_postmeta` VALUES("870", "115", "_WPMSGOPTION_RssBackgroundColor", "E6E6E6");
INSERT INTO `wp_postmeta` VALUES("871", "115", "_WPMSGOPTION_RssTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("872", "115", "_WPMSGOPTION_RssTextSize", "");
INSERT INTO `wp_postmeta` VALUES("873", "115", "_WPMSGOPTION_RssBorderColor", "000000");
INSERT INTO `wp_postmeta` VALUES("874", "115", "_WPMSGOPTION_RssBorderWidth", "2");
INSERT INTO `wp_postmeta` VALUES("875", "115", "_WPMSGOPTION_RssBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("876", "115", "_WPMSGOPTION_RssSelectedBackgroundColor", "015FE6");
INSERT INTO `wp_postmeta` VALUES("877", "115", "_WPMSGOPTION_RssSelectedTextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("878", "115", "_WPMSGOPTION_ThemeStyleCSS", "<style  type=\"text/css\" >body{position:relative;-webkit-text-size-adjust:none;min-height:416px;{--wpmsgtknsinglepageminimumheight--}font-family:helvetica,sans-serif;-webkit-background-size:.438em 100%;Background:#FFFFFF;-webkit-touch-callout:none;margin:0;margin-right:auto; margin-left:auto;}img.alignright {float:right; max-width:100%; margin:0 0 1em 1em}img.alignleft {float:left; max-width:100%; margin:0 1em 1em 0}img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}a img.alignright {float:right; max-width:100%; margin:0 0 1em 1em}a img.alignleft {float:left; max-width:100%; margin:0 1em 1em 0}a img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}#accordion {background:#E6E6E6;border-color:#FF174D;border-width:px;border-style:None;margin:5px 5px 5px 5px;border-radius:8px}#accordion H2 {padding-top: 5pxpadding-bottom: 5px; padding-left: 15px; padding-right: 15px; margin: 0px 0px 0px 0px; background:#FF174D;font-size:17px;color:#F7FF05;cursor: pointer; height:43px;overflow:hidden;border-top:1px solid #878787;font-weight: bold; line-height: 40px;}#accordion H2:first-child{border-top:none;border-radius:8px}#accordion H2:last-child{border-bottom-left-radius:8px;border-bottom-right-radius:8px}#accordion H2.current {background-color:#015FE6; color:#FFFFFF; cursor: default}#accordion div.acchead {padding-top: 5pxpadding-bottom: 5px; padding-left: 15px; padding-right: 15px; margin: 0px 0px 0px 0px; font-weight:bold;font-size:17px;background:#FF174D;font-size:17px;color:#F7FF05;cursor: pointer; height:43px;overflow:hidden;border-top:1px solid #878787;line-height: 40px;}#accordion div.acchead:first-child{border-top:none;border-top-left-radius:8px;border-top-right-radius:8px;}#accordion div.acchead.current {background-color:#015FE6; color:#FFFFFF; cursor: default}#accordion .pane {padding-top: 15pxpadding-bottom: 15px; padding-left: 15px; padding-right: 15px; display: none; color:#000000;border-bottom-left-radius:8px;border-bottom-right-radius:8px;}#accordion .acchead .accarrow {float: right;valign: center;width:24px!important;height:24px!important;right:10px;top:18px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/arrows/Down_LightTriangle_Transparent.png) 0 0 no-repeat;margin:0!important ;margin-top: 15px;padding-top: 15px;}.images {background:#8AE3E6;color:#000000;border-color:#000000;border-width:px;border-style:;{--wpmsgtknslideshowheight--}{--wpmsgtknslideshowwidth--}overflow:hidden;margin-left:auto;margin-right:auto;position:relative;cursor:pointer;-moz-border-radius:5px;-moz-box-shadow:0 0 25px #666;-webkit-border-radius:5px;-webkit-box-shadow:0 0 25px #666;border-radius:5px;box-shadow:0 0 25px #666;}.images div {display:none;position:absolute;top:0;left:0;width: 100%;}.images div p a img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}.images div p img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}.images div a img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}.images div img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}.images img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}.images h3 {font-size:22px;font-weight:normal;margin:0 0 20px 0;color:#456;}.slidetabs {clear:both;}.slidetabs a {width:8px;height:8px;float:left;margin:3px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navigator.png) 0 0 no-repeat;display:block;font-size:1px;}.slidetabs a:hover {background-position:0 -8px;}.slidetabs a.current {background-position:0 -16px; } .forward, .backward {float:left;background:#fff url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/hori_large.png) no-repeat;display:block;width:30px;height:30px;cursor:pointer;font-size:1px;text-indent:-9999em;}.forward { background-position: 0 -30px; clear:right; }.forward:hover { background-position:-30px -30px; }.forward:active{ background-position:-60px -30px; } .backward:hover{ background-position:-30px 0; }.backward:active{ background-position:-60px 0; }.disabled {visibility:hidden !important;}.gallery { list-style: none; padding: 0; margin: 0; }.gallery:after { clear: both; content: \".\"; display: block; height: 0; visibility: hidden; }.gallery li { float: left; width: 33.33333333%; }.gallery li a { display: block; margin: 5px; border: 1px solid #3c3c3c; }.gallery li img { display: block; width: 100%; height: auto; }.highlight { background:#FFFF00;}.highlight_important { background:#FFFF00;}.center{display:block;text-align:center!important;margin:auto}a:hover .arrow{background:0 -13px!important}#topbar.transparent{background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#202020), to(#858585));background-image: -webkit-linear-gradient(top, #202020, #858585);background-image:-moz-linear-gradient(top, #202020, #858585);background-image: -ms-linear-gradient(top, #202020, #858585);background-image:-o-linear-gradient(top, #202020, #858585);}#topbar{position:relative;left:0;top:0;width:auto;}#title{position:absolute;font-weight:bold;top:0;left:0;right:0;text-align:center;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;color:#FFF;color:#FFFFFF;text-shadow:rgba(0,0,0,0.6) 0 -1px 0;padding:0 10px;}#logo{Background:#FFFFFF;}#content{width:100%;position:relative;min-height:250px;{--wpmsgtknsinglepageminimumheight--}height:auto;z-index:0;overflow:hidden;{--wpmsgtknsinglepagebackgroundimage--}}p {padding:0 5px;color:#000000;}h1 {padding:0 5px;color:#000000;}h2 {padding:0 5px;color:#000000;}h3 {padding:0 5px;color:#000000;}h4 {padding:0 5px;color:#000000;}h5 {padding:0 5px;color:#000000;}h6 {padding:0 5px;color:#000000;}blockquote {background:#E6E6E6;color:#000000;border-color:#E6E6E6;border-width:px;border-style:None;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 6px 10px;padding:0 5px;border-radius:8px}blockquote p {background:#E6E6E6;color:#000000;}.ezmbfooter p {padding:0 5px;color:#000000;}.ezmbtable {width:95%;margin-left:auto;margin-right:auto;border-collapse:collapse;background:#E6E6E6;color:#000000;border-color:#000000;border-width:1px;border-style:Solid;}.ezmbtable td {background:#E6E6E6;color:#000000;border-color:#000000;border-width:1px;border-style:Solid;padding:2px;}.ezmbtable td p {background:#E6E6E6;color:#000000;}.ezmbiconlist {color:#000000;}.menulist {background:#FF174D;color:#F7FF05;border-color:#FF174D;border-width:px;border-style:None;opacity:1;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.menulist span.name{color:#F7FF05;text-decoration:none}.menulist span.menudesc{color:#;text-decoration:none}.menulist td a{text-decoration:none}.menulist td a img{vertical-align:text-top;text-decoration:none}.menulist td{vertical-align:text-top;}.searchlist {background:#E6E6E6;color:#000000;border-color:#000000;border-width:2px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.searchform {background:#E6E6E6;color:#000000;border-color:#000000;border-width:2px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.searchform .button input {background:#B3B3B3;color:#000000;}.searchlist:hover,{background:-webkit-gradient(linear,0% 0%,0% 100%,from(#058cf5),to(#015fe6))}.searchlist a:hover {background-color:#CCF}.searchlist li a:hover{background:#015FE6;}.searchlist a{display:block;height:43px;width:auto;text-decoration:none}.searchlist a img{width:auto;height:32px;float:left;margin:5px 0 0 5px}.searchlist .name{width:auto;font-weight:bold;font-size:17px;color:#000000;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;float:left;margin:11px 0 0 7px}.searchlist a:hover .name{color:#FFFFFF;}.searchlistsnippet{padding-left:5px;padding-right:5px;}.rssfeedlist {background:#E6E6E6;color:#000000;border-color:#000000;border-width:2px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.rssfeedlist:hover{background:-webkit-gradient(linear,0% 0%,0% 100%,from(#058cf5),to(#015fe6))}.rssfeedlist a:hover {background-color:#CCF}.rssfeedlist li a:hover{background-color:#015fe6}.rssfeedlist a{display:block;min-height:43px;width:auto;text-decoration:none}.rssfeedlist a img{width:auto;height:32px;float:left;margin:5px 0 0 5px}.rssfeedlist .name{width:auto;font-weight:bold;font-size:17px;color:#000000;float:left;margin:11px 0 0 7px}.rssfeedlist a:hover .name{color:#FFFFFF;}.rssfeedlistsnippet{padding-left:5px;padding-right:5px;}.ezmbcouponwidget {background:#8AE3E6;color:#000000;border-color:#000000;border-width:2px;border-style:Dashed;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.optinform {background:#E6E6E6;color:#000000;border-color:#000000;border-width:2px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.optinform .button input {background:#8AE3E6;color:#000000;}.contactform {background:#E6E6E6;color:#000000;border-color:#000000;border-width:2px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.contactform .button input {background:#8AE3E6;color:#000000;}.customform {background:#E6E6E6;color:#000000;border-color:#000000;border-width:2px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.customform .button input {background:#8AE3E6;color:#000000;}li.customformrow{position:relative;list-style-type:none;display:block;height:43px;overflow:hidden;border-top:1px solid #878787;border-top:1px solid #878787;width:auto}li.customformrowbelow{position:relative;list-style-type:none;display:block;height:43px;overflow:hidden;width:auto}p.customformrow{-webkit-margin-before: 0px;border-top:1px solid #878787;width:auto}.customformrow .customformlabel, .customformrow .customformlabelfull, .customformtextbox .customformlabel, .customformradiorow .customformlabel{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;padding-left:5px;overflow:hidden}.customformrow .customformlabel{line-height:44px;}.customformrow .customformlabelfull{line-height:44px;width:100%;height:auto;}.customformrow input {width:50%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.customformrowbelow input {width:100%;min-width:95%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}input.customformrowrequired{background: #ff8080;}.customformrow input:not([type=\'checkbox\']) {-webkit-appearance:none;}.customformrow select{width:50%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.customformrow:first-child input{border-top-right-radius:8px}.customformrow:last-child input{border-bottom-right-radius:8px}.customformtextbox{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.customformtextbox img{max-width:100%}.customformtextbox p{margin-top:2px;color:#000;margin-bottom:2px;text-align:justify}.customformtextbox ul{list-style:circle!important;margin:3px 0}.customformtextbox li{margin:0!important}.customformtextbox textarea{margin-top:5px;font-size:medium;padding:0}.customformradiorow{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.customformrow input[type=\"checkbox\"]{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOff.png)no-repeat;-webkit-appearance:none;border:0;margin:4px 4px 0 0}.customformrow input[type=\"checkbox\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOn.png)no-repeat;}.customformradiorow input[type=\"radio\"]{-webkit-appearance:none;border:0;width:100%;height: 43px;z-index:2;position:absolute;left:50%;margin:0;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOff.png) no-repeat;-webkit-border-radius:0}.customformradiorow input[type=\"radio\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOn.png) no-repeat;}.customformradiorow .customformradiorowinput {height: 40px;}.customformradiorow label{position: absolute;margin-top: 6px;margin-left:60%;text-overflow: ellipsis;}.customformradiorowbelow{position:relative;overflow:hidden;padding:5px 9px}.customformradiorowbelowlabel{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.customformradiorowbelowlabel .customformlabel{left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;padding-left:5px;overflow:hidden}.customformradiorowbelow input[type=\"radio\"]{-webkit-appearance:none;border:0;width:100%;height: 43px;z-index:2;position:absolute;left:10px;margin:0;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOff.png) no-repeat;-webkit-border-radius:0}.customformradiorowbelow input[type=\"radio\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOn.png) no-repeat;}.customformradiorowbelow .customformradiorowinputbelow {height: 40px;}span.customformlabelfull{font-weight:bold;font-size:17px;}.customformradiorowbelow label{position: absolute;margin-top: 6px;margin-left:45px;text-overflow: ellipsis;}li.customformrowbelow select{width:100%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.customformrowcheckboxright{position:relative;overflow:hidden;border-top:1px solid #878787;height: 40px;padding:5px 9px}.customformrowcheckboxright .customformlabel {left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;line-height:44px;overflow:hidden}.customformrowcheckboxright input[type=\"checkbox\"]{position: absolute;height: 40px;width: 35px;right:0;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOff.png)no-repeat;-webkit-appearance:none;border:0;margin:4px 4px 0 0}.customformrowcheckboxright input[type=\"checkbox\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOn.png) no-repeat;}.customformrowcheckboxleft{position:relative;overflow:hidden;border-top:1px solid #878787;height: 40px;padding:5px 9px}.customformrowcheckboxleft .customformlabel {margin-left:40px;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;line-height:44px;overflow:hidden}.customformrowcheckboxleft input[type=\"checkbox\"]{position: absolute;height: 40px;width: 35px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOff.png)no-repeat;-webkit-appearance:none;border:0;margin:4px 4px 0 0}.customformrowcheckboxleft input[type=\"checkbox\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOn.png) no-repeat;} .directions {background:#E6E6E6;color:#000000;border-color:#000000;border-width:2px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.directions .button input {background:#8AE3E6;color:#000000;}.clear {clear: both;}.ezmbphone {margin-left: auto;margin-right: auto;text-align: center;}.ezmbphoneimg {margin-left: auto;margin-right: auto;text-align: center;}.phonebtnimg {margin-left: auto;margin-right: auto;text-align: center;}.phonebtn, .phonebtn:visited {background:#04BF04;color:#FFFFFF;border-color:#04BF04;border-width:px;border-style:None;-webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.6);text-shadow: 0 -1px 1px rgba(0,0,0,0.25);border-bottom: 1px solid rgba(0,0,0,0.25);display: inline-block; padding: 5px 10px 6px; text-decoration: none;border-radius: 10px;position: relative;cursor: pointer;font-weight:bold;}.ezmbfooter {Background:#FFFFFF;margin:0;}.ezmbfooter p {margin:0;}.textbox{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.searchbox{height:44px;background:-webkit-gradient(linear,0% 0%,0% 100%,from(#f1f3f4),color-stop(3%,#e0e4e7),color-stop(50%,#c7cfd4),color-stop(51%,#bec7cd),color-stop(97%,#b4bec6),to(#8999a5));width:100%;margin:-13px 0 13px}.searchbox form{height:24px;border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/searchfield.png) 4 14 1 24;display:block;position:relative;top:8px;border-width:4px 14px 1px 24px;margin:auto}fieldset{border:0;margin:0;padding:0}.searchbox input[type=\"text\"]{border:0;-webkit-appearance:none;height:18px;float:left;font-size:13px;position:relative;top:2px;left:2px;padding:0}.textbox img{max-width:100%}.textbox p{margin-top:2px;color:#000;margin-bottom:2px;text-align:justify}.textbox ul{list-style:circle!important;margin:3px 0}.textbox li{margin:0!important}.menulist li:first-child,.menulist li.form:first-child{border-top:0}.menu,.checkbox,.radiobutton,.select,li.button,li.bigfield,li.smallfield,li.searchsmallfield,li.optinsmallfield,li.contactsmallfield,li.mapsmallfield{position:relative;list-style-type:none;display:block;height:43px;overflow:hidden;border-top:1px solid #878787;border-top:1px solid #878787;width:auto}.menulist li:first-child:hover,.menulist li:first-child a,.radiobutton:first-child input,.select:first-child select,li.button:first-child input,.bigfield:first-child input{border-top-left-radius:8px;border-top-right-radius:8px}.menulist li:last-child:hover,.menulist li:last-child a,.radiobutton:last-child input,.select:last-child select,li.button:last-child input,.bigfield:last-child input{border-bottom-left-radius:8px;border-bottom-right-radius:8px}.menu:hover,.store:hover,.list #content li a:hover,.list .withimage:hover,.applist li:hover:nth-child(n),.ipodlist li:hover:nth-child(n){background:#015FE6;color:#FFFFFF;}.menu a:hover .comment{color:#FFFFFF;}.menu a{display:block;height:43px;width:auto;text-decoration:none}.menu a img{width:auto;height:32px;float:left;margin:5px 0 0 5px}.menu .name,.checkbox .name,.radiobutton .name{width:auto;font-weight:bold;font-size:17px;color:#F7FF05;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;float:left;margin:11px 0 0 7px}.menu-item{position:relative;list-style-type:none;display:block;height:43px;overflow:hidden;border-top:1px solid #878787;border-top:1px solid #878787;width:auto}.menu-item a{display:block;height:43px;width:auto;text-decoration:none}.menu-item a img{width:auto;height:32px;float:left;margin:5px 0 0 5px}.menu-item .name,.checkbox .name,.radiobutton .name{width:auto;font-weight:bold;font-size:17px;color:#F7FF05;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;float:left;margin:11px 0 0 7px}.menu-item:hover{background:#015FE6;color:#FFFFFF;}.menu-item a:hover .comment{color:#FFFFFF;}.menu-item .comment{width:auto;font-size:17px;text-overflow:ellipsis;overflow:hidden;max-width:75%;white-space:nowrap;float:right;color:#324f85;margin:11px 30px 0 0}.menu-item .arrow{position:absolute;width:24px!important;height:24px!important;right:10px;top:12px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/arrows/LightOpenArrow_Transparent.png) 0 0 no-repeat;margin:0!important}.menu-item .arrowleft{float:left;width:24px!important;height:24px!important;left:10px;top:12px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/arrows/LightOpenArrow_Transparent.png) 0 0 no-repeat;margin:0!important}.menu-item a:hover .name{color:#FFFFFF;}.menu .comment{width:auto;font-size:17px;text-overflow:ellipsis;overflow:hidden;max-width:75%;white-space:nowrap;float:right;color:#324f85;margin:11px 30px 0 0}.menu .arrow,.store .arrow,.musiclist .arrow,.list .arrow{position:absolute;width:24px!important;height:24px!important;right:10px;top:12px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/arrows/LightOpenArrow_Transparent.png) 0 0 no-repeat;margin:0!important}.menu .arrowleft,.store .arrowleft,.musiclist .arrowleft,.list .arrowleft{float:left;width:24px!important;height:24px!important;left:10px;top:12px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/arrows/LightOpenArrow_Transparent.png) 0 0 no-repeat;margin:0!important}#leftnav,#leftbutton{position:absolute;font-size:12px;left:9px;font-weight:bold}#leftnav,#leftbutton,#rightnav,#rightbutton{z-index:5000}#leftnav a,#rightnav a,#leftbutton a,#rightbutton a{display:block;color:#fff;text-shadow:rgba(0,0,0,0.6) 0 -1px 0;text-decoration:none}.black #leftnav a:first-child,.transparent #leftnav a:first-child{border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleftblack.png) 0 5 0 13-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleftblack.png) 0 5 0 13-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleftblack.png) 0 5 0 13-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleftblack.png) 0 5 0 13}.black #leftnav a,.transparent #leftnav a{border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleftblack.png) 0 5 0 13-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleftblack.png) 0 5 0 13-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleftblack.png) 0 5 0 13-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleftblack.png) 0 5 0 13}.black #rightnav a:first-child,.transparent #rightnav a:first-child{-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navrightblack.png) 0 13 0 5-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navrightblack.png) 0 13 0 5-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navrightblack.png) 0 13 0 5-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navrightblack.png) 0 13 0 5}.black #rightnav a,.transparent #rightnav a{-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkrightblack.png) 0 13 0 5-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkrightblack.png) 0 13 0 5-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkrightblack.png) 0 13 0 5-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkrightblack.png) 0 13 0 5}.black #leftbutton a,.black #rightbutton a,.transparent #leftbutton a,.transparent #rightbutton a{border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbuttonblack.png) 0 5 0 5-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbuttonblack.png) 0 5 0 5-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbuttonblack.png) 0 5 0 5-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbuttonblack.png) 0 5 0 5}#leftnav a:first-child{z-index:2;border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleft_std.png) 0 5 0 13;-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleft_std.png) 0 5 0 13;-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleft_std.png) 0 5 0 13;-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleft_std.png) 0 5 0 13;width:auto;border-width:0 5px 0 13px;border-radius:16px 6px 6px 16px}#leftnav a{border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleft.png) 0 5 0 13;-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleft.png) 0 5 0 13;-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleft.png) 0 5 0 13;-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleft.png) 0 5 0 13;z-index:3;margin-left:-4px;padding-right:4px;float:left;border-width:0 5px 0 13px;border-radius:16px 6px 6px 16px}#rightnav,#rightbutton{position:absolute;font-size:12px;right:9px;font-weight:bold}#rightnav a{border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkright.png) 0 13 0 5;-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkright.png) 0 13 0 5;-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkright.png) 0 13 0 5;-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkright.png) 0 13 0 5;z-index:3;margin-right:-4px;padding-left:4px;float:right;border-width:0 13px 0 5px;border-radius:6px 16px 16px 6px}#rightnav a:first-child{z-index:2;border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navright_std.png) 0 13 0 5;-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navright_std.png) 0 13 0 5;-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navright_std.png) 0 13 0 5;-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navright_std.png) 0 13 0 5;border-width:0 13px 0 5px;border-radius:6px 16px 16px 6px}#leftbutton a,#rightbutton a{border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbutton_std.png) 0 5 0 5;-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbutton_std.png) 0 5 0 5;-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbutton_std.png) 0 5 0 5;-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbutton_std.png) 0 5 0 5;border-width:0 5px;border-radius:6px}.gform_body ul { list-style-type: none; }.radiobutton .name{z-index:1}.select select{color:#000;font-weight:bold;font-size:17px;border-radius:0}.select option{max-width:90%}.select .arrow{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/arrow.png);width:8px;height:13px;display:block;-webkit-transform:rotate(90deg);position:absolute;right:10px;top:18px}.button input{width:100%;height:100%;-webkit-appearance:none;border:0;font-weight:bold;font-size:17px;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;background:none;border-radius:0}.textbox textarea{margin-top:5px;font-size:medium;padding:0}.bigfield input{-webkit-appearance:none;border:0;height:100%;background:transparent;font-weight:bold;font-size:17px;padding:0 0 0 5px;border-radius:0}.smallfield .name{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;line-height:44px;font-size:17px;padding-left:5px;overflow:hidden}.smallfield input{width:50%;position:absolute;right:0;height:44px;-webkit-appearance:none;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.smallfield:first-child input{border-top-right-radius:8px}.smallfield:last-child input{border-bottom-right-radius:8px}.searchsmallfield .name{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;line-height:44px;font-size:17px;padding-left:5px;overflow:hidden}.searchsmallfield input{width:50%;position:absolute;right:0;height:44px;-webkit-appearance:none;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.searchsmallfield:first-child input{border-top-right-radius:8px}.searchsmallfield:last-child input{border-bottom-right-radius:8px}.optinsmallfield .name{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;line-height:44px;font-size:17px;padding-left:5px;overflow:hidden}.optinsmallfield input{width:50%;position:absolute;right:0;height:44px;-webkit-appearance:none;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.optinsmallfield:first-child input{border-top-right-radius:8px}.optinsmallfield:last-child input{border-bottom-right-radius:8px}.contactsmallfield .name{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;line-height:44px;font-size:17px;padding-left:5px;overflow:hidden}.contactsmallfield input{width:50%;position:absolute;right:0;height:44px;-webkit-appearance:none;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.contactsmallfield:first-child input{border-top-right-radius:8px}.contactsmallfield:last-child input{border-bottom-right-radius:8px}.mapsmallfield .name{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;line-height:44px;font-size:17px;padding-left:5px;overflow:hidden}.mapsmallfield input{width:50%;position:absolute;right:0;height:44px;-webkit-appearance:none;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.mapsmallfield:first-child input{border-top-right-radius:8px}.mapsmallfield:last-child input{border-bottom-right-radius:8px}img,#duobutton a:last-child,#duoselectionbuttons a:first-child,.ipodlist li:hover:nth-child(n) .name,.ipodlist li:hover:nth-child(n) .time{border:0}#triselectionbuttons a:hover,#triselectionbuttons a#pressed,#duoselectionbuttons a:hover,#duoselectionbuttons a#pressed,li#doublead:hover{background:none}.menu a:hover .name,.store:hover .starcomment,.store:hover .name,.store:hover .comment,.list .withimage a:hover .comment,.list #content li a:hover{color:#FFFFFF;}@media screen and (max-width:320px) {#topbar{height:44px}#logo{max-width:320px;width:100%;}#title{line-height:44px;height:44px;font-size:16pt;}.searchbox form{width:272px}.searchbox input[type=\"text\"]{width:275px}.menu .name{max-width:77%}#leftnav a,#rightnav a,#leftbutton a,#rightbutton a{line-height:30px;height:30px}#leftnav img,#rightnav img{margin-top:4px}.textbox textarea{width:85%;}.customformtextbox textarea{width:85%;}.bigfield input{width:295px}.checkbox .name,.radiobutton .name{max-width:190px}#leftnav,#leftbutton,#rightnav,#rightbutton{top:7px}}@media screen and (min-width:321px) {#topbar{height:32px}#title{line-height:32px;height:32px;font-size:13pt}.menu .name{max-width:85%}#leftnav a,#rightnav a,#leftbutton a,#rightbutton a{line-height:24px;height:24px}#leftnav img,#rightnav img{margin-top:4px;height:70%}.textbox textarea{width:85%;}.customformtextbox textarea{width:85%;}#doublead{width:350px!important}.searchbox form{width:432px}.searchbox input[type=\"text\"]{width:435px}.bigfield input{width:455px}.checkbox .name,.radiobutton .name{max-width:75%}#leftnav,#leftbutton,#rightnav,#rightbutton{top:4px}}</style>");
INSERT INTO `wp_postmeta` VALUES("879", "115", "_WPMSGOPTION_ThemeCustomFormStyleCSS", "<style  type=\"text/css\" >.customform {background:#E6E6E6;color:#000000;border-color:#000000;border-width:2px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.customform .button input {background:#8AE3E6;color:#000000;}li.customformrow{position:relative;list-style-type:none;display:block;height:43px;overflow:hidden;border-top:1px solid #878787;border-top:1px solid #878787;width:auto}li.customformrowbelow{position:relative;list-style-type:none;display:block;height:43px;overflow:hidden;width:auto}p.customformrow{-webkit-margin-before: 0px;border-top:1px solid #878787;width:auto}.customformrow .customformlabel, .customformrow .customformlabelfull, .customformtextbox .customformlabel, .customformradiorow .customformlabel{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;padding-left:5px;overflow:hidden}.customformrow .customformlabel{line-height:44px;}.customformrow .customformlabelfull{line-height:44px;width:100%;height:auto;}.customformrow input {width:50%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.customformrowbelow input {width:100%;min-width:95%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}input.customformrowrequired{background: #ff8080;}.customformrow input:not([type=\'checkbox\']) {-webkit-appearance:none;}.customformrow select{width:50%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.customformrow:first-child input{border-top-right-radius:8px}.customformrow:last-child input{border-bottom-right-radius:8px}.customformtextbox{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.customformtextbox img{max-width:100%}.customformtextbox p{margin-top:2px;color:#000;margin-bottom:2px;text-align:justify}.customformtextbox ul{list-style:circle!important;margin:3px 0}.customformtextbox li{margin:0!important}.customformtextbox textarea{margin-top:5px;font-size:medium;padding:0}.customformradiorow{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.customformrow input[type=\"checkbox\"]{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOff.png)no-repeat;-webkit-appearance:none;border:0;margin:4px 4px 0 0}.customformrow input[type=\"checkbox\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOn.png)no-repeat;}.customformradiorow input[type=\"radio\"]{-webkit-appearance:none;border:0;width:100%;height: 43px;z-index:2;position:absolute;left:50%;margin:0;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOff.png) no-repeat;-webkit-border-radius:0}.customformradiorow input[type=\"radio\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOn.png) no-repeat;}.customformradiorow .customformradiorowinput {height: 40px;}.customformradiorow label{position: absolute;margin-top: 6px;margin-left:60%;text-overflow: ellipsis;}.customformradiorowbelow{position:relative;overflow:hidden;padding:5px 9px}.customformradiorowbelowlabel{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.customformradiorowbelowlabel .customformlabel{left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;padding-left:5px;overflow:hidden}.customformradiorowbelow input[type=\"radio\"]{-webkit-appearance:none;border:0;width:100%;height: 43px;z-index:2;position:absolute;left:10px;margin:0;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOff.png) no-repeat;-webkit-border-radius:0}.customformradiorowbelow input[type=\"radio\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOn.png) no-repeat;}.customformradiorowbelow .customformradiorowinputbelow {height: 40px;}span.customformlabelfull{font-weight:bold;font-size:17px;}.customformradiorowbelow label{position: absolute;margin-top: 6px;margin-left:45px;text-overflow: ellipsis;}li.customformrowbelow select{width:100%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.customformrowcheckboxright{position:relative;overflow:hidden;border-top:1px solid #878787;height: 40px;padding:5px 9px}.customformrowcheckboxright .customformlabel {left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;line-height:44px;overflow:hidden}.customformrowcheckboxright input[type=\"checkbox\"]{position: absolute;height: 40px;width: 35px;right:0;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOff.png)no-repeat;-webkit-appearance:none;border:0;margin:4px 4px 0 0}.customformrowcheckboxright input[type=\"checkbox\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOn.png) no-repeat;}.customformrowcheckboxleft{position:relative;overflow:hidden;border-top:1px solid #878787;height: 40px;padding:5px 9px}.customformrowcheckboxleft .customformlabel {margin-left:40px;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;line-height:44px;overflow:hidden}.customformrowcheckboxleft input[type=\"checkbox\"]{position: absolute;height: 40px;width: 35px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOff.png)no-repeat;-webkit-appearance:none;border:0;margin:4px 4px 0 0}.customformrowcheckboxleft input[type=\"checkbox\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOn.png) no-repeat;}</style>");
INSERT INTO `wp_postmeta` VALUES("880", "116", "_WPMSGOPTION_PageBackgroundColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("881", "116", "_WPMSGOPTION_LogoBackgroundColor", "ABD5FF");
INSERT INTO `wp_postmeta` VALUES("882", "116", "_WPMSGOPTION_FooterBackgroundColor", "ABD5FF");
INSERT INTO `wp_postmeta` VALUES("883", "116", "_WPMSGOPTION_ParagraphTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("884", "116", "_WPMSGOPTION_ParagraphTextSize", "");
INSERT INTO `wp_postmeta` VALUES("885", "116", "_WPMSGOPTION_BackgroundImage", "");
INSERT INTO `wp_postmeta` VALUES("886", "116", "_WPMSGOPTION_BackgroundImageRepeat", "");
INSERT INTO `wp_postmeta` VALUES("887", "116", "_WPMSGOPTION_BackgroundImagePosition", "");
INSERT INTO `wp_postmeta` VALUES("888", "116", "_WPMSGOPTION_TopbarStartColor", "202020");
INSERT INTO `wp_postmeta` VALUES("889", "116", "_WPMSGOPTION_TopbarEndColor", "858585");
INSERT INTO `wp_postmeta` VALUES("890", "116", "_WPMSGOPTION_TopbarTextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("891", "116", "_WPMSGOPTION_TopbarButtonColor", "std");
INSERT INTO `wp_postmeta` VALUES("892", "116", "_WPMSGOPTION_H1TextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("893", "116", "_WPMSGOPTION_H1TextSize", "");
INSERT INTO `wp_postmeta` VALUES("894", "116", "_WPMSGOPTION_H1TextShadow", "");
INSERT INTO `wp_postmeta` VALUES("895", "116", "_WPMSGOPTION_H2TextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("896", "116", "_WPMSGOPTION_H2TextSize", "");
INSERT INTO `wp_postmeta` VALUES("897", "116", "_WPMSGOPTION_H2TextShadow", "");
INSERT INTO `wp_postmeta` VALUES("898", "116", "_WPMSGOPTION_H3TextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("899", "116", "_WPMSGOPTION_H3TextSize", "");
INSERT INTO `wp_postmeta` VALUES("900", "116", "_WPMSGOPTION_H3TextShadow", "");
INSERT INTO `wp_postmeta` VALUES("901", "116", "_WPMSGOPTION_H4TextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("902", "116", "_WPMSGOPTION_H4TextSize", "");
INSERT INTO `wp_postmeta` VALUES("903", "116", "_WPMSGOPTION_H4TextShadow", "");
INSERT INTO `wp_postmeta` VALUES("904", "116", "_WPMSGOPTION_H5TextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("905", "116", "_WPMSGOPTION_H5TextSize", "");
INSERT INTO `wp_postmeta` VALUES("906", "116", "_WPMSGOPTION_H5TextShadow", "");
INSERT INTO `wp_postmeta` VALUES("907", "116", "_WPMSGOPTION_H6TextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("908", "116", "_WPMSGOPTION_H6TextSize", "");
INSERT INTO `wp_postmeta` VALUES("909", "116", "_WPMSGOPTION_H6TextShadow", "");
INSERT INTO `wp_postmeta` VALUES("910", "116", "_WPMSGOPTION_MenuBackgroundColor", "E6E6E6");
INSERT INTO `wp_postmeta` VALUES("911", "116", "_WPMSGOPTION_IconTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("912", "116", "_WPMSGOPTION_MenuTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("913", "116", "_WPMSGOPTION_MenuTextSize", "");
INSERT INTO `wp_postmeta` VALUES("914", "116", "_WPMSGOPTION_MenuBorderColor", "E6E6E6");
INSERT INTO `wp_postmeta` VALUES("915", "116", "_WPMSGOPTION_MenuBorderWidth", "");
INSERT INTO `wp_postmeta` VALUES("916", "116", "_WPMSGOPTION_MenuBorderStyle", "None");
INSERT INTO `wp_postmeta` VALUES("917", "116", "_WPMSGOPTION_MenuOpacity", "1");
INSERT INTO `wp_postmeta` VALUES("918", "116", "_WPMSGOPTION_MenuArrowImage", "DarkOpenArrow");
INSERT INTO `wp_postmeta` VALUES("919", "116", "_WPMSGOPTION_MenuArrowColor", "Transparent");
INSERT INTO `wp_postmeta` VALUES("920", "116", "_WPMSGOPTION_MenuSelectedBackgroundColor", "015FE6");
INSERT INTO `wp_postmeta` VALUES("921", "116", "_WPMSGOPTION_MenuSelectedTextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("922", "116", "_WPMSGOPTION_MenuSeparatorColor", "878787");
INSERT INTO `wp_postmeta` VALUES("923", "116", "_WPMSGOPTION_BlockquoteBackgroundColor", "E6E6E6");
INSERT INTO `wp_postmeta` VALUES("924", "116", "_WPMSGOPTION_BlockquoteTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("925", "116", "_WPMSGOPTION_BlockquoteTextSize", "");
INSERT INTO `wp_postmeta` VALUES("926", "116", "_WPMSGOPTION_BlockquoteBorderColor", "E6E6E6");
INSERT INTO `wp_postmeta` VALUES("927", "116", "_WPMSGOPTION_BlockquoteBorderWidth", "");
INSERT INTO `wp_postmeta` VALUES("928", "116", "_WPMSGOPTION_BlockquoteBorderStyle", "None");
INSERT INTO `wp_postmeta` VALUES("929", "116", "_WPMSGOPTION_TableBackgroundColor", "E6E6E6");
INSERT INTO `wp_postmeta` VALUES("930", "116", "_WPMSGOPTION_TableTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("931", "116", "_WPMSGOPTION_TableTextSize", "");
INSERT INTO `wp_postmeta` VALUES("932", "116", "_WPMSGOPTION_TableBorderColor", "000000");
INSERT INTO `wp_postmeta` VALUES("933", "116", "_WPMSGOPTION_TableBorderWidth", "1");
INSERT INTO `wp_postmeta` VALUES("934", "116", "_WPMSGOPTION_TableBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("935", "116", "_WPMSGOPTION_TableWidth", "95");
INSERT INTO `wp_postmeta` VALUES("936", "116", "_WPMSGOPTION_TablePadding", "2");
INSERT INTO `wp_postmeta` VALUES("937", "116", "_WPMSGOPTION_ClickToCallBackgroundColor", "04BF04");
INSERT INTO `wp_postmeta` VALUES("938", "116", "_WPMSGOPTION_ClickToCallTextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("939", "116", "_WPMSGOPTION_ClickToCallTextSize", "");
INSERT INTO `wp_postmeta` VALUES("940", "116", "_WPMSGOPTION_ClickToCallBorderColor", "04BF04");
INSERT INTO `wp_postmeta` VALUES("941", "116", "_WPMSGOPTION_ClickToCallBorderWidth", "");
INSERT INTO `wp_postmeta` VALUES("942", "116", "_WPMSGOPTION_ClickToCallBorderStyle", "None");
INSERT INTO `wp_postmeta` VALUES("943", "116", "_WPMSGOPTION_OptinFormBackgroundColor", "E6E6E6");
INSERT INTO `wp_postmeta` VALUES("944", "116", "_WPMSGOPTION_OptinFormInputBackgroundColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("945", "116", "_WPMSGOPTION_OptinFormSubmitBackgroundColor", "8AE3E6");
INSERT INTO `wp_postmeta` VALUES("946", "116", "_WPMSGOPTION_OptinFormSubmitTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("947", "116", "_WPMSGOPTION_OptinFormTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("948", "116", "_WPMSGOPTION_OptinFormTextSize", "");
INSERT INTO `wp_postmeta` VALUES("949", "116", "_WPMSGOPTION_OptinFormBorderColor", "000000");
INSERT INTO `wp_postmeta` VALUES("950", "116", "_WPMSGOPTION_OptinFormBorderWidth", "2");
INSERT INTO `wp_postmeta` VALUES("951", "116", "_WPMSGOPTION_OptinFormBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("952", "116", "_WPMSGOPTION_ContactFormBackgroundColor", "E6E6E6");
INSERT INTO `wp_postmeta` VALUES("953", "116", "_WPMSGOPTION_ContactFormInputBackgroundColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("954", "116", "_WPMSGOPTION_ContactFormSubmitBackgroundColor", "8AE3E6");
INSERT INTO `wp_postmeta` VALUES("955", "116", "_WPMSGOPTION_ContactFormSubmitTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("956", "116", "_WPMSGOPTION_ContactFormTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("957", "116", "_WPMSGOPTION_ContactFormTextSize", "");
INSERT INTO `wp_postmeta` VALUES("958", "116", "_WPMSGOPTION_ContactFormBorderColor", "000000");
INSERT INTO `wp_postmeta` VALUES("959", "116", "_WPMSGOPTION_ContactFormBorderWidth", "2");
INSERT INTO `wp_postmeta` VALUES("960", "116", "_WPMSGOPTION_ContactFormBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("961", "116", "_WPMSGOPTION_DirectionsBackgroundColor", "E6E6E6");
INSERT INTO `wp_postmeta` VALUES("962", "116", "_WPMSGOPTION_DirectionsInputBackgroundColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("963", "116", "_WPMSGOPTION_DirectionsSubmitBackgroundColor", "8AE3E6");
INSERT INTO `wp_postmeta` VALUES("964", "116", "_WPMSGOPTION_DirectionsSubmitTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("965", "116", "_WPMSGOPTION_DirectionsTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("966", "116", "_WPMSGOPTION_DirectionsTextSize", "");
INSERT INTO `wp_postmeta` VALUES("967", "116", "_WPMSGOPTION_DirectionsBorderColor", "000000");
INSERT INTO `wp_postmeta` VALUES("968", "116", "_WPMSGOPTION_DirectionsBorderWidth", "2");
INSERT INTO `wp_postmeta` VALUES("969", "116", "_WPMSGOPTION_DirectionsBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("970", "116", "_WPMSGOPTION_SlideshowBackgroundColor", "8AE3E6");
INSERT INTO `wp_postmeta` VALUES("971", "116", "_WPMSGOPTION_SlideshowTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("972", "116", "_WPMSGOPTION_SlideshowTextSize", "");
INSERT INTO `wp_postmeta` VALUES("973", "116", "_WPMSGOPTION_SlideshowBorderColor", "000000");
INSERT INTO `wp_postmeta` VALUES("974", "116", "_WPMSGOPTION_SlideshowBorderWidth", "");
INSERT INTO `wp_postmeta` VALUES("975", "116", "_WPMSGOPTION_SlideshowBorderStyle", "None");
INSERT INTO `wp_postmeta` VALUES("976", "116", "_WPMSGOPTION_AccordianTitleBackgroundColor", "E6E6E6");
INSERT INTO `wp_postmeta` VALUES("977", "116", "_WPMSGOPTION_AccordianTitleTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("978", "116", "_WPMSGOPTION_AccordianTitleTextSize", "");
INSERT INTO `wp_postmeta` VALUES("979", "116", "_WPMSGOPTION_AccordianTitleSelectedBackgroundColor", "015FE6");
INSERT INTO `wp_postmeta` VALUES("980", "116", "_WPMSGOPTION_AccordianTitleSelectedTextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("981", "116", "_WPMSGOPTION_AccordianBackgroundColor", "E6E6E6");
INSERT INTO `wp_postmeta` VALUES("982", "116", "_WPMSGOPTION_AccordianTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("983", "116", "_WPMSGOPTION_AccordianTextSize", "");
INSERT INTO `wp_postmeta` VALUES("984", "116", "_WPMSGOPTION_AccordianSeparatorColor", "878787");
INSERT INTO `wp_postmeta` VALUES("985", "116", "_WPMSGOPTION_AccordianBorderColor", "E6E6E6");
INSERT INTO `wp_postmeta` VALUES("986", "116", "_WPMSGOPTION_AccordianBorderWidth", "");
INSERT INTO `wp_postmeta` VALUES("987", "116", "_WPMSGOPTION_AccordianBorderStyle", "None");
INSERT INTO `wp_postmeta` VALUES("988", "116", "_WPMSGOPTION_AccordianArrowImage", "LightTriangle");
INSERT INTO `wp_postmeta` VALUES("989", "116", "_WPMSGOPTION_AccordianArrowColor", "Transparent");
INSERT INTO `wp_postmeta` VALUES("990", "116", "_WPMSGOPTION_CouponBackgroundColor", "8AE3E6");
INSERT INTO `wp_postmeta` VALUES("991", "116", "_WPMSGOPTION_CouponTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("992", "116", "_WPMSGOPTION_CouponTextSize", "");
INSERT INTO `wp_postmeta` VALUES("993", "116", "_WPMSGOPTION_CouponBorderColor", "000000");
INSERT INTO `wp_postmeta` VALUES("994", "116", "_WPMSGOPTION_CouponBorderWidth", "2");
INSERT INTO `wp_postmeta` VALUES("995", "116", "_WPMSGOPTION_CouponBorderStyle", "Dashed");
INSERT INTO `wp_postmeta` VALUES("996", "116", "_WPMSGOPTION_SearchBackgroundColor", "E6E6E6");
INSERT INTO `wp_postmeta` VALUES("997", "116", "_WPMSGOPTION_SearchTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("998", "116", "_WPMSGOPTION_SearchTextSize", "");
INSERT INTO `wp_postmeta` VALUES("999", "116", "_WPMSGOPTION_SearchBorderColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1000", "116", "_WPMSGOPTION_SearchBorderWidth", "2");
INSERT INTO `wp_postmeta` VALUES("1001", "116", "_WPMSGOPTION_SearchBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("1002", "116", "_WPMSGOPTION_SearchInputBackgroundColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("1003", "116", "_WPMSGOPTION_SearchSubmitBackgroundColor", "B3B3B3");
INSERT INTO `wp_postmeta` VALUES("1004", "116", "_WPMSGOPTION_SearchSubmitTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1005", "116", "_WPMSGOPTION_SearchSelectedBackgroundColor", "015FE6");
INSERT INTO `wp_postmeta` VALUES("1006", "116", "_WPMSGOPTION_SearchSelectedTextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("1007", "116", "_WPMSGOPTION_SearchHighlightColor", "FFFF00");
INSERT INTO `wp_postmeta` VALUES("1008", "116", "_WPMSGOPTION_RssBackgroundColor", "E6E6E6");
INSERT INTO `wp_postmeta` VALUES("1009", "116", "_WPMSGOPTION_RssTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1010", "116", "_WPMSGOPTION_RssTextSize", "");
INSERT INTO `wp_postmeta` VALUES("1011", "116", "_WPMSGOPTION_RssBorderColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1012", "116", "_WPMSGOPTION_RssBorderWidth", "2");
INSERT INTO `wp_postmeta` VALUES("1013", "116", "_WPMSGOPTION_RssBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("1014", "116", "_WPMSGOPTION_RssSelectedBackgroundColor", "015FE6");
INSERT INTO `wp_postmeta` VALUES("1015", "116", "_WPMSGOPTION_RssSelectedTextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("1016", "116", "_WPMSGOPTION_ThemeStyleCSS", "<style  type=\"text/css\" >body{position:relative;-webkit-text-size-adjust:none;min-height:416px;{--wpmsgtknsinglepageminimumheight--}font-family:helvetica,sans-serif;-webkit-background-size:.438em 100%;Background:#FFFFFF;-webkit-touch-callout:none;margin:0;margin-right:auto; margin-left:auto;}img.alignright {float:right; max-width:100%; margin:0 0 1em 1em}img.alignleft {float:left; max-width:100%; margin:0 1em 1em 0}img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}a img.alignright {float:right; max-width:100%; margin:0 0 1em 1em}a img.alignleft {float:left; max-width:100%; margin:0 1em 1em 0}a img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}#accordion {background:#E6E6E6;border-color:#E6E6E6;border-width:px;border-style:None;margin:5px 5px 5px 5px;border-radius:8px}#accordion H2 {padding-top: 5pxpadding-bottom: 5px; padding-left: 15px; padding-right: 15px; margin: 0px 0px 0px 0px; background:#E6E6E6;font-size:17px;color:#000000;cursor: pointer; height:43px;overflow:hidden;border-top:1px solid #878787;font-weight: bold; line-height: 40px;}#accordion H2:first-child{border-top:none;border-radius:8px}#accordion H2:last-child{border-bottom-left-radius:8px;border-bottom-right-radius:8px}#accordion H2.current {background-color:#015FE6; color:#FFFFFF; cursor: default}#accordion div.acchead {padding-top: 5pxpadding-bottom: 5px; padding-left: 15px; padding-right: 15px; margin: 0px 0px 0px 0px; font-weight:bold;font-size:17px;background:#E6E6E6;font-size:17px;color:#000000;cursor: pointer; height:43px;overflow:hidden;border-top:1px solid #878787;line-height: 40px;}#accordion div.acchead:first-child{border-top:none;border-top-left-radius:8px;border-top-right-radius:8px;}#accordion div.acchead.current {background-color:#015FE6; color:#FFFFFF; cursor: default}#accordion .pane {padding-top: 15pxpadding-bottom: 15px; padding-left: 15px; padding-right: 15px; display: none; color:#000000;border-bottom-left-radius:8px;border-bottom-right-radius:8px;}#accordion .acchead .accarrow {float: right;valign: center;width:24px!important;height:24px!important;right:10px;top:18px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/arrows/Down_LightTriangle_Transparent.png) 0 0 no-repeat;margin:0!important ;margin-top: 15px;padding-top: 15px;}.images {background:#8AE3E6;color:#000000;border-color:#000000;border-width:px;border-style:;{--wpmsgtknslideshowheight--}{--wpmsgtknslideshowwidth--}overflow:hidden;margin-left:auto;margin-right:auto;position:relative;cursor:pointer;-moz-border-radius:5px;-moz-box-shadow:0 0 25px #666;-webkit-border-radius:5px;-webkit-box-shadow:0 0 25px #666;border-radius:5px;box-shadow:0 0 25px #666;}.images div {display:none;position:absolute;top:0;left:0;width: 100%;}.images div p a img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}.images div p img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}.images div a img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}.images div img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}.images img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}.images h3 {font-size:22px;font-weight:normal;margin:0 0 20px 0;color:#456;}.slidetabs {clear:both;}.slidetabs a {width:8px;height:8px;float:left;margin:3px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navigator.png) 0 0 no-repeat;display:block;font-size:1px;}.slidetabs a:hover {background-position:0 -8px;}.slidetabs a.current {background-position:0 -16px; } .forward, .backward {float:left;background:#fff url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/hori_large.png) no-repeat;display:block;width:30px;height:30px;cursor:pointer;font-size:1px;text-indent:-9999em;}.forward { background-position: 0 -30px; clear:right; }.forward:hover { background-position:-30px -30px; }.forward:active{ background-position:-60px -30px; } .backward:hover{ background-position:-30px 0; }.backward:active{ background-position:-60px 0; }.disabled {visibility:hidden !important;}.gallery { list-style: none; padding: 0; margin: 0; }.gallery:after { clear: both; content: \".\"; display: block; height: 0; visibility: hidden; }.gallery li { float: left; width: 33.33333333%; }.gallery li a { display: block; margin: 5px; border: 1px solid #3c3c3c; }.gallery li img { display: block; width: 100%; height: auto; }.highlight { background:#FFFF00;}.highlight_important { background:#FFFF00;}.center{display:block;text-align:center!important;margin:auto}a:hover .arrow{background:0 -13px!important}#topbar.transparent{background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#202020), to(#858585));background-image: -webkit-linear-gradient(top, #202020, #858585);background-image:-moz-linear-gradient(top, #202020, #858585);background-image: -ms-linear-gradient(top, #202020, #858585);background-image:-o-linear-gradient(top, #202020, #858585);}#topbar{position:relative;left:0;top:0;width:auto;}#title{position:absolute;font-weight:bold;top:0;left:0;right:0;text-align:center;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;color:#FFF;color:#FFFFFF;text-shadow:rgba(0,0,0,0.6) 0 -1px 0;padding:0 10px;}#logo{Background:#FFFFFF;}#content{width:100%;position:relative;min-height:250px;{--wpmsgtknsinglepageminimumheight--}height:auto;z-index:0;overflow:hidden;{--wpmsgtknsinglepagebackgroundimage--}}p {padding:0 5px;color:#000000;}h1 {padding:0 5px;color:#000000;}h2 {padding:0 5px;color:#000000;}h3 {padding:0 5px;color:#000000;}h4 {padding:0 5px;color:#000000;}h5 {padding:0 5px;color:#000000;}h6 {padding:0 5px;color:#000000;}blockquote {background:#E6E6E6;color:#000000;border-color:#E6E6E6;border-width:px;border-style:None;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 6px 10px;padding:0 5px;border-radius:8px}blockquote p {background:#E6E6E6;color:#000000;}.ezmbfooter p {padding:0 5px;color:#000000;}.ezmbtable {width:95%;margin-left:auto;margin-right:auto;border-collapse:collapse;background:#E6E6E6;color:#000000;border-color:#000000;border-width:1px;border-style:Solid;}.ezmbtable td {background:#E6E6E6;color:#000000;border-color:#000000;border-width:1px;border-style:Solid;padding:2px;}.ezmbtable td p {background:#E6E6E6;color:#000000;}.ezmbiconlist {color:#000000;}.menulist {background:#E6E6E6;color:#000000;border-color:#E6E6E6;border-width:px;border-style:None;opacity:1;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.menulist span.name{color:#000000;text-decoration:none}.menulist span.menudesc{color:#;text-decoration:none}.menulist td a{text-decoration:none}.menulist td a img{vertical-align:text-top;text-decoration:none}.menulist td{vertical-align:text-top;}.searchlist {background:#E6E6E6;color:#000000;border-color:#000000;border-width:2px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.searchform {background:#E6E6E6;color:#000000;border-color:#000000;border-width:2px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.searchform .button input {background:#B3B3B3;color:#000000;}.searchlist:hover,{background:-webkit-gradient(linear,0% 0%,0% 100%,from(#058cf5),to(#015fe6))}.searchlist a:hover {background-color:#CCF}.searchlist li a:hover{background:#015FE6;}.searchlist a{display:block;height:43px;width:auto;text-decoration:none}.searchlist a img{width:auto;height:32px;float:left;margin:5px 0 0 5px}.searchlist .name{width:auto;font-weight:bold;font-size:17px;color:#000000;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;float:left;margin:11px 0 0 7px}.searchlist a:hover .name{color:#FFFFFF;}.searchlistsnippet{padding-left:5px;padding-right:5px;}.rssfeedlist {background:#E6E6E6;color:#000000;border-color:#000000;border-width:2px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.rssfeedlist:hover{background:-webkit-gradient(linear,0% 0%,0% 100%,from(#058cf5),to(#015fe6))}.rssfeedlist a:hover {background-color:#CCF}.rssfeedlist li a:hover{background-color:#015fe6}.rssfeedlist a{display:block;min-height:43px;width:auto;text-decoration:none}.rssfeedlist a img{width:auto;height:32px;float:left;margin:5px 0 0 5px}.rssfeedlist .name{width:auto;font-weight:bold;font-size:17px;color:#000000;float:left;margin:11px 0 0 7px}.rssfeedlist a:hover .name{color:#FFFFFF;}.rssfeedlistsnippet{padding-left:5px;padding-right:5px;}.ezmbcouponwidget {background:#8AE3E6;color:#000000;border-color:#000000;border-width:2px;border-style:Dashed;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.optinform {background:#E6E6E6;color:#000000;border-color:#000000;border-width:2px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.optinform .button input {background:#8AE3E6;color:#000000;}.contactform {background:#E6E6E6;color:#000000;border-color:#000000;border-width:2px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.contactform .button input {background:#8AE3E6;color:#000000;}.customform {background:#E6E6E6;color:#000000;border-color:#000000;border-width:2px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.customform .button input {background:#8AE3E6;color:#000000;}li.customformrow{position:relative;list-style-type:none;display:block;height:43px;overflow:hidden;border-top:1px solid #878787;border-top:1px solid #878787;width:auto}li.customformrowbelow{position:relative;list-style-type:none;display:block;height:43px;overflow:hidden;width:auto}p.customformrow{-webkit-margin-before: 0px;border-top:1px solid #878787;width:auto}.customformrow .customformlabel, .customformrow .customformlabelfull, .customformtextbox .customformlabel, .customformradiorow .customformlabel{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;padding-left:5px;overflow:hidden}.customformrow .customformlabel{line-height:44px;}.customformrow .customformlabelfull{line-height:44px;width:100%;height:auto;}.customformrow input {width:50%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.customformrowbelow input {width:100%;min-width:95%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}input.customformrowrequired{background: #ff8080;}.customformrow input:not([type=\'checkbox\']) {-webkit-appearance:none;}.customformrow select{width:50%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.customformrow:first-child input{border-top-right-radius:8px}.customformrow:last-child input{border-bottom-right-radius:8px}.customformtextbox{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.customformtextbox img{max-width:100%}.customformtextbox p{margin-top:2px;color:#000;margin-bottom:2px;text-align:justify}.customformtextbox ul{list-style:circle!important;margin:3px 0}.customformtextbox li{margin:0!important}.customformtextbox textarea{margin-top:5px;font-size:medium;padding:0}.customformradiorow{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.customformrow input[type=\"checkbox\"]{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOff.png)no-repeat;-webkit-appearance:none;border:0;margin:4px 4px 0 0}.customformrow input[type=\"checkbox\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOn.png)no-repeat;}.customformradiorow input[type=\"radio\"]{-webkit-appearance:none;border:0;width:100%;height: 43px;z-index:2;position:absolute;left:50%;margin:0;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOff.png) no-repeat;-webkit-border-radius:0}.customformradiorow input[type=\"radio\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOn.png) no-repeat;}.customformradiorow .customformradiorowinput {height: 40px;}.customformradiorow label{position: absolute;margin-top: 6px;margin-left:60%;text-overflow: ellipsis;}.customformradiorowbelow{position:relative;overflow:hidden;padding:5px 9px}.customformradiorowbelowlabel{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.customformradiorowbelowlabel .customformlabel{left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;padding-left:5px;overflow:hidden}.customformradiorowbelow input[type=\"radio\"]{-webkit-appearance:none;border:0;width:100%;height: 43px;z-index:2;position:absolute;left:10px;margin:0;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOff.png) no-repeat;-webkit-border-radius:0}.customformradiorowbelow input[type=\"radio\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOn.png) no-repeat;}.customformradiorowbelow .customformradiorowinputbelow {height: 40px;}span.customformlabelfull{font-weight:bold;font-size:17px;}.customformradiorowbelow label{position: absolute;margin-top: 6px;margin-left:45px;text-overflow: ellipsis;}li.customformrowbelow select{width:100%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.customformrowcheckboxright{position:relative;overflow:hidden;border-top:1px solid #878787;height: 40px;padding:5px 9px}.customformrowcheckboxright .customformlabel {left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;line-height:44px;overflow:hidden}.customformrowcheckboxright input[type=\"checkbox\"]{position: absolute;height: 40px;width: 35px;right:0;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOff.png)no-repeat;-webkit-appearance:none;border:0;margin:4px 4px 0 0}.customformrowcheckboxright input[type=\"checkbox\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOn.png) no-repeat;}.customformrowcheckboxleft{position:relative;overflow:hidden;border-top:1px solid #878787;height: 40px;padding:5px 9px}.customformrowcheckboxleft .customformlabel {margin-left:40px;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;line-height:44px;overflow:hidden}.customformrowcheckboxleft input[type=\"checkbox\"]{position: absolute;height: 40px;width: 35px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOff.png)no-repeat;-webkit-appearance:none;border:0;margin:4px 4px 0 0}.customformrowcheckboxleft input[type=\"checkbox\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOn.png) no-repeat;} .directions {background:#E6E6E6;color:#000000;border-color:#000000;border-width:2px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.directions .button input {background:#8AE3E6;color:#000000;}.clear {clear: both;}.ezmbphone {margin-left: auto;margin-right: auto;text-align: center;}.ezmbphoneimg {margin-left: auto;margin-right: auto;text-align: center;}.phonebtnimg {margin-left: auto;margin-right: auto;text-align: center;}.phonebtn, .phonebtn:visited {background:#04BF04;color:#FFFFFF;border-color:#04BF04;border-width:px;border-style:None;-webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.6);text-shadow: 0 -1px 1px rgba(0,0,0,0.25);border-bottom: 1px solid rgba(0,0,0,0.25);display: inline-block; padding: 5px 10px 6px; text-decoration: none;border-radius: 10px;position: relative;cursor: pointer;font-weight:bold;}.ezmbfooter {Background:#ABD5FF;margin:0;}.ezmbfooter p {margin:0;}.textbox{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.searchbox{height:44px;background:-webkit-gradient(linear,0% 0%,0% 100%,from(#f1f3f4),color-stop(3%,#e0e4e7),color-stop(50%,#c7cfd4),color-stop(51%,#bec7cd),color-stop(97%,#b4bec6),to(#8999a5));width:100%;margin:-13px 0 13px}.searchbox form{height:24px;border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/searchfield.png) 4 14 1 24;display:block;position:relative;top:8px;border-width:4px 14px 1px 24px;margin:auto}fieldset{border:0;margin:0;padding:0}.searchbox input[type=\"text\"]{border:0;-webkit-appearance:none;height:18px;float:left;font-size:13px;position:relative;top:2px;left:2px;padding:0}.textbox img{max-width:100%}.textbox p{margin-top:2px;color:#000;margin-bottom:2px;text-align:justify}.textbox ul{list-style:circle!important;margin:3px 0}.textbox li{margin:0!important}.menulist li:first-child,.menulist li.form:first-child{border-top:0}.menu,.checkbox,.radiobutton,.select,li.button,li.bigfield,li.smallfield,li.searchsmallfield,li.optinsmallfield,li.contactsmallfield,li.mapsmallfield{position:relative;list-style-type:none;display:block;height:43px;overflow:hidden;border-top:1px solid #878787;border-top:1px solid #878787;width:auto}.menulist li:first-child:hover,.menulist li:first-child a,.radiobutton:first-child input,.select:first-child select,li.button:first-child input,.bigfield:first-child input{border-top-left-radius:8px;border-top-right-radius:8px}.menulist li:last-child:hover,.menulist li:last-child a,.radiobutton:last-child input,.select:last-child select,li.button:last-child input,.bigfield:last-child input{border-bottom-left-radius:8px;border-bottom-right-radius:8px}.menu:hover,.store:hover,.list #content li a:hover,.list .withimage:hover,.applist li:hover:nth-child(n),.ipodlist li:hover:nth-child(n){background:#015FE6;color:#FFFFFF;}.menu a:hover .comment{color:#FFFFFF;}.menu a{display:block;height:43px;width:auto;text-decoration:none}.menu a img{width:auto;height:32px;float:left;margin:5px 0 0 5px}.menu .name,.checkbox .name,.radiobutton .name{width:auto;font-weight:bold;font-size:17px;color:#000000;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;float:left;margin:11px 0 0 7px}.menu-item{position:relative;list-style-type:none;display:block;height:43px;overflow:hidden;border-top:1px solid #878787;border-top:1px solid #878787;width:auto}.menu-item a{display:block;height:43px;width:auto;text-decoration:none}.menu-item a img{width:auto;height:32px;float:left;margin:5px 0 0 5px}.menu-item .name,.checkbox .name,.radiobutton .name{width:auto;font-weight:bold;font-size:17px;color:#000000;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;float:left;margin:11px 0 0 7px}.menu-item:hover{background:#015FE6;color:#FFFFFF;}.menu-item a:hover .comment{color:#FFFFFF;}.menu-item .comment{width:auto;font-size:17px;text-overflow:ellipsis;overflow:hidden;max-width:75%;white-space:nowrap;float:right;color:#324f85;margin:11px 30px 0 0}.menu-item .arrow{position:absolute;width:24px!important;height:24px!important;right:10px;top:12px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/arrows/DarkOpenArrow_Transparent.png) 0 0 no-repeat;margin:0!important}.menu-item .arrowleft{float:left;width:24px!important;height:24px!important;left:10px;top:12px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/arrows/DarkOpenArrow_Transparent.png) 0 0 no-repeat;margin:0!important}.menu-item a:hover .name{color:#FFFFFF;}.menu .comment{width:auto;font-size:17px;text-overflow:ellipsis;overflow:hidden;max-width:75%;white-space:nowrap;float:right;color:#324f85;margin:11px 30px 0 0}.menu .arrow,.store .arrow,.musiclist .arrow,.list .arrow{position:absolute;width:24px!important;height:24px!important;right:10px;top:12px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/arrows/DarkOpenArrow_Transparent.png) 0 0 no-repeat;margin:0!important}.menu .arrowleft,.store .arrowleft,.musiclist .arrowleft,.list .arrowleft{float:left;width:24px!important;height:24px!important;left:10px;top:12px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/arrows/DarkOpenArrow_Transparent.png) 0 0 no-repeat;margin:0!important}#leftnav,#leftbutton{position:absolute;font-size:12px;left:9px;font-weight:bold}#leftnav,#leftbutton,#rightnav,#rightbutton{z-index:5000}#leftnav a,#rightnav a,#leftbutton a,#rightbutton a{display:block;color:#fff;text-shadow:rgba(0,0,0,0.6) 0 -1px 0;text-decoration:none}.black #leftnav a:first-child,.transparent #leftnav a:first-child{border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleftblack.png) 0 5 0 13-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleftblack.png) 0 5 0 13-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleftblack.png) 0 5 0 13-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleftblack.png) 0 5 0 13}.black #leftnav a,.transparent #leftnav a{border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleftblack.png) 0 5 0 13-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleftblack.png) 0 5 0 13-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleftblack.png) 0 5 0 13-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleftblack.png) 0 5 0 13}.black #rightnav a:first-child,.transparent #rightnav a:first-child{-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navrightblack.png) 0 13 0 5-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navrightblack.png) 0 13 0 5-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navrightblack.png) 0 13 0 5-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navrightblack.png) 0 13 0 5}.black #rightnav a,.transparent #rightnav a{-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkrightblack.png) 0 13 0 5-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkrightblack.png) 0 13 0 5-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkrightblack.png) 0 13 0 5-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkrightblack.png) 0 13 0 5}.black #leftbutton a,.black #rightbutton a,.transparent #leftbutton a,.transparent #rightbutton a{border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbuttonblack.png) 0 5 0 5-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbuttonblack.png) 0 5 0 5-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbuttonblack.png) 0 5 0 5-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbuttonblack.png) 0 5 0 5}#leftnav a:first-child{z-index:2;border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleft_std.png) 0 5 0 13;-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleft_std.png) 0 5 0 13;-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleft_std.png) 0 5 0 13;-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleft_std.png) 0 5 0 13;width:auto;border-width:0 5px 0 13px;border-radius:16px 6px 6px 16px}#leftnav a{border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleft.png) 0 5 0 13;-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleft.png) 0 5 0 13;-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleft.png) 0 5 0 13;-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleft.png) 0 5 0 13;z-index:3;margin-left:-4px;padding-right:4px;float:left;border-width:0 5px 0 13px;border-radius:16px 6px 6px 16px}#rightnav,#rightbutton{position:absolute;font-size:12px;right:9px;font-weight:bold}#rightnav a{border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkright.png) 0 13 0 5;-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkright.png) 0 13 0 5;-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkright.png) 0 13 0 5;-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkright.png) 0 13 0 5;z-index:3;margin-right:-4px;padding-left:4px;float:right;border-width:0 13px 0 5px;border-radius:6px 16px 16px 6px}#rightnav a:first-child{z-index:2;border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navright_std.png) 0 13 0 5;-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navright_std.png) 0 13 0 5;-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navright_std.png) 0 13 0 5;-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navright_std.png) 0 13 0 5;border-width:0 13px 0 5px;border-radius:6px 16px 16px 6px}#leftbutton a,#rightbutton a{border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbutton_std.png) 0 5 0 5;-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbutton_std.png) 0 5 0 5;-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbutton_std.png) 0 5 0 5;-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbutton_std.png) 0 5 0 5;border-width:0 5px;border-radius:6px}.gform_body ul { list-style-type: none; }.radiobutton .name{z-index:1}.select select{color:#000;font-weight:bold;font-size:17px;border-radius:0}.select option{max-width:90%}.select .arrow{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/arrow.png);width:8px;height:13px;display:block;-webkit-transform:rotate(90deg);position:absolute;right:10px;top:18px}.button input{width:100%;height:100%;-webkit-appearance:none;border:0;font-weight:bold;font-size:17px;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;background:none;border-radius:0}.textbox textarea{margin-top:5px;font-size:medium;padding:0}.bigfield input{-webkit-appearance:none;border:0;height:100%;background:transparent;font-weight:bold;font-size:17px;padding:0 0 0 5px;border-radius:0}.smallfield .name{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;line-height:44px;font-size:17px;padding-left:5px;overflow:hidden}.smallfield input{width:50%;position:absolute;right:0;height:44px;-webkit-appearance:none;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.smallfield:first-child input{border-top-right-radius:8px}.smallfield:last-child input{border-bottom-right-radius:8px}.searchsmallfield .name{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;line-height:44px;font-size:17px;padding-left:5px;overflow:hidden}.searchsmallfield input{width:50%;position:absolute;right:0;height:44px;-webkit-appearance:none;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.searchsmallfield:first-child input{border-top-right-radius:8px}.searchsmallfield:last-child input{border-bottom-right-radius:8px}.optinsmallfield .name{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;line-height:44px;font-size:17px;padding-left:5px;overflow:hidden}.optinsmallfield input{width:50%;position:absolute;right:0;height:44px;-webkit-appearance:none;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.optinsmallfield:first-child input{border-top-right-radius:8px}.optinsmallfield:last-child input{border-bottom-right-radius:8px}.contactsmallfield .name{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;line-height:44px;font-size:17px;padding-left:5px;overflow:hidden}.contactsmallfield input{width:50%;position:absolute;right:0;height:44px;-webkit-appearance:none;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.contactsmallfield:first-child input{border-top-right-radius:8px}.contactsmallfield:last-child input{border-bottom-right-radius:8px}.mapsmallfield .name{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;line-height:44px;font-size:17px;padding-left:5px;overflow:hidden}.mapsmallfield input{width:50%;position:absolute;right:0;height:44px;-webkit-appearance:none;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.mapsmallfield:first-child input{border-top-right-radius:8px}.mapsmallfield:last-child input{border-bottom-right-radius:8px}img,#duobutton a:last-child,#duoselectionbuttons a:first-child,.ipodlist li:hover:nth-child(n) .name,.ipodlist li:hover:nth-child(n) .time{border:0}#triselectionbuttons a:hover,#triselectionbuttons a#pressed,#duoselectionbuttons a:hover,#duoselectionbuttons a#pressed,li#doublead:hover{background:none}.menu a:hover .name,.store:hover .starcomment,.store:hover .name,.store:hover .comment,.list .withimage a:hover .comment,.list #content li a:hover{color:#FFFFFF;}@media screen and (max-width:320px) {#topbar{height:44px}#logo{max-width:320px;width:100%;}#title{line-height:44px;height:44px;font-size:16pt;}.searchbox form{width:272px}.searchbox input[type=\"text\"]{width:275px}.menu .name{max-width:77%}#leftnav a,#rightnav a,#leftbutton a,#rightbutton a{line-height:30px;height:30px}#leftnav img,#rightnav img{margin-top:4px}.textbox textarea{width:85%;}.customformtextbox textarea{width:85%;}.bigfield input{width:295px}.checkbox .name,.radiobutton .name{max-width:190px}#leftnav,#leftbutton,#rightnav,#rightbutton{top:7px}}@media screen and (min-width:321px) {#topbar{height:32px}#title{line-height:32px;height:32px;font-size:13pt}.menu .name{max-width:85%}#leftnav a,#rightnav a,#leftbutton a,#rightbutton a{line-height:24px;height:24px}#leftnav img,#rightnav img{margin-top:4px;height:70%}.textbox textarea{width:85%;}.customformtextbox textarea{width:85%;}#doublead{width:350px!important}.searchbox form{width:432px}.searchbox input[type=\"text\"]{width:435px}.bigfield input{width:455px}.checkbox .name,.radiobutton .name{max-width:75%}#leftnav,#leftbutton,#rightnav,#rightbutton{top:4px}}</style>");
INSERT INTO `wp_postmeta` VALUES("1017", "116", "_WPMSGOPTION_ThemeCustomFormStyleCSS", "<style  type=\"text/css\" >.customform {background:#E6E6E6;color:#000000;border-color:#000000;border-width:2px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.customform .button input {background:#8AE3E6;color:#000000;}li.customformrow{position:relative;list-style-type:none;display:block;height:43px;overflow:hidden;border-top:1px solid #878787;border-top:1px solid #878787;width:auto}li.customformrowbelow{position:relative;list-style-type:none;display:block;height:43px;overflow:hidden;width:auto}p.customformrow{-webkit-margin-before: 0px;border-top:1px solid #878787;width:auto}.customformrow .customformlabel, .customformrow .customformlabelfull, .customformtextbox .customformlabel, .customformradiorow .customformlabel{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;padding-left:5px;overflow:hidden}.customformrow .customformlabel{line-height:44px;}.customformrow .customformlabelfull{line-height:44px;width:100%;height:auto;}.customformrow input {width:50%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.customformrowbelow input {width:100%;min-width:95%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}input.customformrowrequired{background: #ff8080;}.customformrow input:not([type=\'checkbox\']) {-webkit-appearance:none;}.customformrow select{width:50%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.customformrow:first-child input{border-top-right-radius:8px}.customformrow:last-child input{border-bottom-right-radius:8px}.customformtextbox{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.customformtextbox img{max-width:100%}.customformtextbox p{margin-top:2px;color:#000;margin-bottom:2px;text-align:justify}.customformtextbox ul{list-style:circle!important;margin:3px 0}.customformtextbox li{margin:0!important}.customformtextbox textarea{margin-top:5px;font-size:medium;padding:0}.customformradiorow{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.customformrow input[type=\"checkbox\"]{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOff.png)no-repeat;-webkit-appearance:none;border:0;margin:4px 4px 0 0}.customformrow input[type=\"checkbox\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOn.png)no-repeat;}.customformradiorow input[type=\"radio\"]{-webkit-appearance:none;border:0;width:100%;height: 43px;z-index:2;position:absolute;left:50%;margin:0;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOff.png) no-repeat;-webkit-border-radius:0}.customformradiorow input[type=\"radio\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOn.png) no-repeat;}.customformradiorow .customformradiorowinput {height: 40px;}.customformradiorow label{position: absolute;margin-top: 6px;margin-left:60%;text-overflow: ellipsis;}.customformradiorowbelow{position:relative;overflow:hidden;padding:5px 9px}.customformradiorowbelowlabel{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.customformradiorowbelowlabel .customformlabel{left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;padding-left:5px;overflow:hidden}.customformradiorowbelow input[type=\"radio\"]{-webkit-appearance:none;border:0;width:100%;height: 43px;z-index:2;position:absolute;left:10px;margin:0;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOff.png) no-repeat;-webkit-border-radius:0}.customformradiorowbelow input[type=\"radio\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOn.png) no-repeat;}.customformradiorowbelow .customformradiorowinputbelow {height: 40px;}span.customformlabelfull{font-weight:bold;font-size:17px;}.customformradiorowbelow label{position: absolute;margin-top: 6px;margin-left:45px;text-overflow: ellipsis;}li.customformrowbelow select{width:100%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.customformrowcheckboxright{position:relative;overflow:hidden;border-top:1px solid #878787;height: 40px;padding:5px 9px}.customformrowcheckboxright .customformlabel {left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;line-height:44px;overflow:hidden}.customformrowcheckboxright input[type=\"checkbox\"]{position: absolute;height: 40px;width: 35px;right:0;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOff.png)no-repeat;-webkit-appearance:none;border:0;margin:4px 4px 0 0}.customformrowcheckboxright input[type=\"checkbox\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOn.png) no-repeat;}.customformrowcheckboxleft{position:relative;overflow:hidden;border-top:1px solid #878787;height: 40px;padding:5px 9px}.customformrowcheckboxleft .customformlabel {margin-left:40px;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;line-height:44px;overflow:hidden}.customformrowcheckboxleft input[type=\"checkbox\"]{position: absolute;height: 40px;width: 35px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOff.png)no-repeat;-webkit-appearance:none;border:0;margin:4px 4px 0 0}.customformrowcheckboxleft input[type=\"checkbox\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOn.png) no-repeat;}</style>");
INSERT INTO `wp_postmeta` VALUES("1018", "117", "_WPMSGOPTION_PageBackgroundColor", "05FF8A");
INSERT INTO `wp_postmeta` VALUES("1019", "117", "_WPMSGOPTION_LogoBackgroundColor", "04BF04");
INSERT INTO `wp_postmeta` VALUES("1020", "117", "_WPMSGOPTION_FooterBackgroundColor", "04BF04");
INSERT INTO `wp_postmeta` VALUES("1021", "117", "_WPMSGOPTION_ParagraphTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1022", "117", "_WPMSGOPTION_ParagraphTextSize", "");
INSERT INTO `wp_postmeta` VALUES("1023", "117", "_WPMSGOPTION_BackgroundImage", "");
INSERT INTO `wp_postmeta` VALUES("1024", "117", "_WPMSGOPTION_BackgroundImageRepeat", "");
INSERT INTO `wp_postmeta` VALUES("1025", "117", "_WPMSGOPTION_BackgroundImagePosition", "");
INSERT INTO `wp_postmeta` VALUES("1026", "117", "_WPMSGOPTION_TopbarStartColor", "202020");
INSERT INTO `wp_postmeta` VALUES("1027", "117", "_WPMSGOPTION_TopbarEndColor", "858585");
INSERT INTO `wp_postmeta` VALUES("1028", "117", "_WPMSGOPTION_TopbarTextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("1029", "117", "_WPMSGOPTION_TopbarButtonColor", "std");
INSERT INTO `wp_postmeta` VALUES("1030", "117", "_WPMSGOPTION_H1TextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1031", "117", "_WPMSGOPTION_H1TextSize", "");
INSERT INTO `wp_postmeta` VALUES("1032", "117", "_WPMSGOPTION_H1TextShadow", "");
INSERT INTO `wp_postmeta` VALUES("1033", "117", "_WPMSGOPTION_H2TextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1034", "117", "_WPMSGOPTION_H2TextSize", "");
INSERT INTO `wp_postmeta` VALUES("1035", "117", "_WPMSGOPTION_H2TextShadow", "");
INSERT INTO `wp_postmeta` VALUES("1036", "117", "_WPMSGOPTION_H3TextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1037", "117", "_WPMSGOPTION_H3TextSize", "");
INSERT INTO `wp_postmeta` VALUES("1038", "117", "_WPMSGOPTION_H3TextShadow", "");
INSERT INTO `wp_postmeta` VALUES("1039", "117", "_WPMSGOPTION_H4TextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1040", "117", "_WPMSGOPTION_H4TextSize", "");
INSERT INTO `wp_postmeta` VALUES("1041", "117", "_WPMSGOPTION_H4TextShadow", "");
INSERT INTO `wp_postmeta` VALUES("1042", "117", "_WPMSGOPTION_H5TextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1043", "117", "_WPMSGOPTION_H5TextSize", "");
INSERT INTO `wp_postmeta` VALUES("1044", "117", "_WPMSGOPTION_H5TextShadow", "");
INSERT INTO `wp_postmeta` VALUES("1045", "117", "_WPMSGOPTION_H6TextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1046", "117", "_WPMSGOPTION_H6TextSize", "");
INSERT INTO `wp_postmeta` VALUES("1047", "117", "_WPMSGOPTION_H6TextShadow", "");
INSERT INTO `wp_postmeta` VALUES("1048", "117", "_WPMSGOPTION_MenuBackgroundColor", "FFCF0D");
INSERT INTO `wp_postmeta` VALUES("1049", "117", "_WPMSGOPTION_IconTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1050", "117", "_WPMSGOPTION_MenuTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1051", "117", "_WPMSGOPTION_MenuTextSize", "");
INSERT INTO `wp_postmeta` VALUES("1052", "117", "_WPMSGOPTION_MenuBorderColor", "04BF04");
INSERT INTO `wp_postmeta` VALUES("1053", "117", "_WPMSGOPTION_MenuBorderWidth", "");
INSERT INTO `wp_postmeta` VALUES("1054", "117", "_WPMSGOPTION_MenuBorderStyle", "None");
INSERT INTO `wp_postmeta` VALUES("1055", "117", "_WPMSGOPTION_MenuOpacity", "1");
INSERT INTO `wp_postmeta` VALUES("1056", "117", "_WPMSGOPTION_MenuArrowImage", "DarkBigArrow");
INSERT INTO `wp_postmeta` VALUES("1057", "117", "_WPMSGOPTION_MenuArrowColor", "Transparent");
INSERT INTO `wp_postmeta` VALUES("1058", "117", "_WPMSGOPTION_MenuSelectedBackgroundColor", "015FE6");
INSERT INTO `wp_postmeta` VALUES("1059", "117", "_WPMSGOPTION_MenuSelectedTextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("1060", "117", "_WPMSGOPTION_MenuSeparatorColor", "878787");
INSERT INTO `wp_postmeta` VALUES("1061", "117", "_WPMSGOPTION_BlockquoteBackgroundColor", "C7FF0F");
INSERT INTO `wp_postmeta` VALUES("1062", "117", "_WPMSGOPTION_BlockquoteTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1063", "117", "_WPMSGOPTION_BlockquoteTextSize", "");
INSERT INTO `wp_postmeta` VALUES("1064", "117", "_WPMSGOPTION_BlockquoteBorderColor", "04BF04");
INSERT INTO `wp_postmeta` VALUES("1065", "117", "_WPMSGOPTION_BlockquoteBorderWidth", "1");
INSERT INTO `wp_postmeta` VALUES("1066", "117", "_WPMSGOPTION_BlockquoteBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("1067", "117", "_WPMSGOPTION_TableBackgroundColor", "C7FF0F");
INSERT INTO `wp_postmeta` VALUES("1068", "117", "_WPMSGOPTION_TableTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1069", "117", "_WPMSGOPTION_TableTextSize", "");
INSERT INTO `wp_postmeta` VALUES("1070", "117", "_WPMSGOPTION_TableBorderColor", "04BF04");
INSERT INTO `wp_postmeta` VALUES("1071", "117", "_WPMSGOPTION_TableBorderWidth", "1");
INSERT INTO `wp_postmeta` VALUES("1072", "117", "_WPMSGOPTION_TableBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("1073", "117", "_WPMSGOPTION_TableWidth", "95");
INSERT INTO `wp_postmeta` VALUES("1074", "117", "_WPMSGOPTION_TablePadding", "2");
INSERT INTO `wp_postmeta` VALUES("1075", "117", "_WPMSGOPTION_ClickToCallBackgroundColor", "04BF04");
INSERT INTO `wp_postmeta` VALUES("1076", "117", "_WPMSGOPTION_ClickToCallTextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("1077", "117", "_WPMSGOPTION_ClickToCallTextSize", "");
INSERT INTO `wp_postmeta` VALUES("1078", "117", "_WPMSGOPTION_ClickToCallBorderColor", "04BF04");
INSERT INTO `wp_postmeta` VALUES("1079", "117", "_WPMSGOPTION_ClickToCallBorderWidth", "");
INSERT INTO `wp_postmeta` VALUES("1080", "117", "_WPMSGOPTION_ClickToCallBorderStyle", "None");
INSERT INTO `wp_postmeta` VALUES("1081", "117", "_WPMSGOPTION_OptinFormBackgroundColor", "C7FF0F");
INSERT INTO `wp_postmeta` VALUES("1082", "117", "_WPMSGOPTION_OptinFormInputBackgroundColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("1083", "117", "_WPMSGOPTION_OptinFormSubmitBackgroundColor", "04BF04");
INSERT INTO `wp_postmeta` VALUES("1084", "117", "_WPMSGOPTION_OptinFormSubmitTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1085", "117", "_WPMSGOPTION_OptinFormTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1086", "117", "_WPMSGOPTION_OptinFormTextSize", "");
INSERT INTO `wp_postmeta` VALUES("1087", "117", "_WPMSGOPTION_OptinFormBorderColor", "04BF04");
INSERT INTO `wp_postmeta` VALUES("1088", "117", "_WPMSGOPTION_OptinFormBorderWidth", "1");
INSERT INTO `wp_postmeta` VALUES("1089", "117", "_WPMSGOPTION_OptinFormBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("1090", "117", "_WPMSGOPTION_ContactFormBackgroundColor", "C7FF0F");
INSERT INTO `wp_postmeta` VALUES("1091", "117", "_WPMSGOPTION_ContactFormInputBackgroundColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("1092", "117", "_WPMSGOPTION_ContactFormSubmitBackgroundColor", "04BF04");
INSERT INTO `wp_postmeta` VALUES("1093", "117", "_WPMSGOPTION_ContactFormSubmitTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1094", "117", "_WPMSGOPTION_ContactFormTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1095", "117", "_WPMSGOPTION_ContactFormTextSize", "");
INSERT INTO `wp_postmeta` VALUES("1096", "117", "_WPMSGOPTION_ContactFormBorderColor", "04BF04");
INSERT INTO `wp_postmeta` VALUES("1097", "117", "_WPMSGOPTION_ContactFormBorderWidth", "1");
INSERT INTO `wp_postmeta` VALUES("1098", "117", "_WPMSGOPTION_ContactFormBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("1099", "117", "_WPMSGOPTION_DirectionsBackgroundColor", "C7FF0F");
INSERT INTO `wp_postmeta` VALUES("1100", "117", "_WPMSGOPTION_DirectionsInputBackgroundColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("1101", "117", "_WPMSGOPTION_DirectionsSubmitBackgroundColor", "04BF04");
INSERT INTO `wp_postmeta` VALUES("1102", "117", "_WPMSGOPTION_DirectionsSubmitTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1103", "117", "_WPMSGOPTION_DirectionsTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1104", "117", "_WPMSGOPTION_DirectionsTextSize", "");
INSERT INTO `wp_postmeta` VALUES("1105", "117", "_WPMSGOPTION_DirectionsBorderColor", "04BF04");
INSERT INTO `wp_postmeta` VALUES("1106", "117", "_WPMSGOPTION_DirectionsBorderWidth", "1");
INSERT INTO `wp_postmeta` VALUES("1107", "117", "_WPMSGOPTION_DirectionsBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("1108", "117", "_WPMSGOPTION_SlideshowBackgroundColor", "C7FF0F");
INSERT INTO `wp_postmeta` VALUES("1109", "117", "_WPMSGOPTION_SlideshowTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1110", "117", "_WPMSGOPTION_SlideshowTextSize", "");
INSERT INTO `wp_postmeta` VALUES("1111", "117", "_WPMSGOPTION_SlideshowBorderColor", "04BF04");
INSERT INTO `wp_postmeta` VALUES("1112", "117", "_WPMSGOPTION_SlideshowBorderWidth", "");
INSERT INTO `wp_postmeta` VALUES("1113", "117", "_WPMSGOPTION_SlideshowBorderStyle", "None");
INSERT INTO `wp_postmeta` VALUES("1114", "117", "_WPMSGOPTION_AccordianTitleBackgroundColor", "FFCF0D");
INSERT INTO `wp_postmeta` VALUES("1115", "117", "_WPMSGOPTION_AccordianTitleTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1116", "117", "_WPMSGOPTION_AccordianTitleTextSize", "");
INSERT INTO `wp_postmeta` VALUES("1117", "117", "_WPMSGOPTION_AccordianTitleSelectedBackgroundColor", "015FE6");
INSERT INTO `wp_postmeta` VALUES("1118", "117", "_WPMSGOPTION_AccordianTitleSelectedTextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("1119", "117", "_WPMSGOPTION_AccordianBackgroundColor", "C7FF0F");
INSERT INTO `wp_postmeta` VALUES("1120", "117", "_WPMSGOPTION_AccordianTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1121", "117", "_WPMSGOPTION_AccordianTextSize", "");
INSERT INTO `wp_postmeta` VALUES("1122", "117", "_WPMSGOPTION_AccordianSeparatorColor", "878787");
INSERT INTO `wp_postmeta` VALUES("1123", "117", "_WPMSGOPTION_AccordianBorderColor", "04BF04");
INSERT INTO `wp_postmeta` VALUES("1124", "117", "_WPMSGOPTION_AccordianBorderWidth", "");
INSERT INTO `wp_postmeta` VALUES("1125", "117", "_WPMSGOPTION_AccordianBorderStyle", "None");
INSERT INTO `wp_postmeta` VALUES("1126", "117", "_WPMSGOPTION_AccordianArrowImage", "LightTriangle");
INSERT INTO `wp_postmeta` VALUES("1127", "117", "_WPMSGOPTION_AccordianArrowColor", "Transparent");
INSERT INTO `wp_postmeta` VALUES("1128", "117", "_WPMSGOPTION_CouponBackgroundColor", "C7FF0F");
INSERT INTO `wp_postmeta` VALUES("1129", "117", "_WPMSGOPTION_CouponTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1130", "117", "_WPMSGOPTION_CouponTextSize", "");
INSERT INTO `wp_postmeta` VALUES("1131", "117", "_WPMSGOPTION_CouponBorderColor", "04BF04");
INSERT INTO `wp_postmeta` VALUES("1132", "117", "_WPMSGOPTION_CouponBorderWidth", "2");
INSERT INTO `wp_postmeta` VALUES("1133", "117", "_WPMSGOPTION_CouponBorderStyle", "Dashed");
INSERT INTO `wp_postmeta` VALUES("1134", "117", "_WPMSGOPTION_SearchBackgroundColor", "C7FF0F");
INSERT INTO `wp_postmeta` VALUES("1135", "117", "_WPMSGOPTION_SearchTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1136", "117", "_WPMSGOPTION_SearchTextSize", "");
INSERT INTO `wp_postmeta` VALUES("1137", "117", "_WPMSGOPTION_SearchBorderColor", "04BF04");
INSERT INTO `wp_postmeta` VALUES("1138", "117", "_WPMSGOPTION_SearchBorderWidth", "2");
INSERT INTO `wp_postmeta` VALUES("1139", "117", "_WPMSGOPTION_SearchBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("1140", "117", "_WPMSGOPTION_SearchInputBackgroundColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("1141", "117", "_WPMSGOPTION_SearchSubmitBackgroundColor", "04BF04");
INSERT INTO `wp_postmeta` VALUES("1142", "117", "_WPMSGOPTION_SearchSubmitTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1143", "117", "_WPMSGOPTION_SearchSelectedBackgroundColor", "015FE6");
INSERT INTO `wp_postmeta` VALUES("1144", "117", "_WPMSGOPTION_SearchSelectedTextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("1145", "117", "_WPMSGOPTION_SearchHighlightColor", "12FFF7");
INSERT INTO `wp_postmeta` VALUES("1146", "117", "_WPMSGOPTION_RssBackgroundColor", "C7FF0F");
INSERT INTO `wp_postmeta` VALUES("1147", "117", "_WPMSGOPTION_RssTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1148", "117", "_WPMSGOPTION_RssTextSize", "");
INSERT INTO `wp_postmeta` VALUES("1149", "117", "_WPMSGOPTION_RssBorderColor", "04BF04");
INSERT INTO `wp_postmeta` VALUES("1150", "117", "_WPMSGOPTION_RssBorderWidth", "2");
INSERT INTO `wp_postmeta` VALUES("1151", "117", "_WPMSGOPTION_RssBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("1152", "117", "_WPMSGOPTION_RssSelectedBackgroundColor", "015FE6");
INSERT INTO `wp_postmeta` VALUES("1153", "117", "_WPMSGOPTION_RssSelectedTextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("1154", "117", "_WPMSGOPTION_ThemeStyleCSS", "<style  type=\"text/css\" >body{position:relative;-webkit-text-size-adjust:none;min-height:416px;{--wpmsgtknsinglepageminimumheight--}font-family:helvetica,sans-serif;-webkit-background-size:.438em 100%;Background:#05FF8A;-webkit-touch-callout:none;margin:0;margin-right:auto; margin-left:auto;}img.alignright {float:right; max-width:100%; margin:0 0 1em 1em}img.alignleft {float:left; max-width:100%; margin:0 1em 1em 0}img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}a img.alignright {float:right; max-width:100%; margin:0 0 1em 1em}a img.alignleft {float:left; max-width:100%; margin:0 1em 1em 0}a img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}#accordion {background:#C7FF0F;border-color:#04BF04;border-width:px;border-style:None;margin:5px 5px 5px 5px;border-radius:8px}#accordion H2 {padding-top: 5pxpadding-bottom: 5px; padding-left: 15px; padding-right: 15px; margin: 0px 0px 0px 0px; background:#FFCF0D;font-size:17px;color:#000000;cursor: pointer; height:43px;overflow:hidden;border-top:1px solid #878787;font-weight: bold; line-height: 40px;}#accordion H2:first-child{border-top:none;border-radius:8px}#accordion H2:last-child{border-bottom-left-radius:8px;border-bottom-right-radius:8px}#accordion H2.current {background-color:#015FE6; color:#FFFFFF; cursor: default}#accordion div.acchead {padding-top: 5pxpadding-bottom: 5px; padding-left: 15px; padding-right: 15px; margin: 0px 0px 0px 0px; font-weight:bold;font-size:17px;background:#FFCF0D;font-size:17px;color:#000000;cursor: pointer; height:43px;overflow:hidden;border-top:1px solid #878787;line-height: 40px;}#accordion div.acchead:first-child{border-top:none;border-top-left-radius:8px;border-top-right-radius:8px;}#accordion div.acchead.current {background-color:#015FE6; color:#FFFFFF; cursor: default}#accordion .pane {padding-top: 15pxpadding-bottom: 15px; padding-left: 15px; padding-right: 15px; display: none; color:#000000;border-bottom-left-radius:8px;border-bottom-right-radius:8px;}#accordion .acchead .accarrow {float: right;valign: center;width:24px!important;height:24px!important;right:10px;top:18px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/arrows/Down_LightTriangle_Transparent.png) 0 0 no-repeat;margin:0!important ;margin-top: 15px;padding-top: 15px;}.images {background:#C7FF0F;color:#000000;border-color:#04BF04;border-width:px;border-style:;{--wpmsgtknslideshowheight--}{--wpmsgtknslideshowwidth--}overflow:hidden;margin-left:auto;margin-right:auto;position:relative;cursor:pointer;-moz-border-radius:5px;-moz-box-shadow:0 0 25px #666;-webkit-border-radius:5px;-webkit-box-shadow:0 0 25px #666;border-radius:5px;box-shadow:0 0 25px #666;}.images div {display:none;position:absolute;top:0;left:0;width: 100%;}.images div p a img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}.images div p img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}.images div a img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}.images div img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}.images img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}.images h3 {font-size:22px;font-weight:normal;margin:0 0 20px 0;color:#456;}.slidetabs {clear:both;}.slidetabs a {width:8px;height:8px;float:left;margin:3px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navigator.png) 0 0 no-repeat;display:block;font-size:1px;}.slidetabs a:hover {background-position:0 -8px;}.slidetabs a.current {background-position:0 -16px; } .forward, .backward {float:left;background:#fff url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/hori_large.png) no-repeat;display:block;width:30px;height:30px;cursor:pointer;font-size:1px;text-indent:-9999em;}.forward { background-position: 0 -30px; clear:right; }.forward:hover { background-position:-30px -30px; }.forward:active{ background-position:-60px -30px; } .backward:hover{ background-position:-30px 0; }.backward:active{ background-position:-60px 0; }.disabled {visibility:hidden !important;}.gallery { list-style: none; padding: 0; margin: 0; }.gallery:after { clear: both; content: \".\"; display: block; height: 0; visibility: hidden; }.gallery li { float: left; width: 33.33333333%; }.gallery li a { display: block; margin: 5px; border: 1px solid #3c3c3c; }.gallery li img { display: block; width: 100%; height: auto; }.highlight { background:#12FFF7;}.highlight_important { background:#12FFF7;}.center{display:block;text-align:center!important;margin:auto}a:hover .arrow{background:0 -13px!important}#topbar.transparent{background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#202020), to(#858585));background-image: -webkit-linear-gradient(top, #202020, #858585);background-image:-moz-linear-gradient(top, #202020, #858585);background-image: -ms-linear-gradient(top, #202020, #858585);background-image:-o-linear-gradient(top, #202020, #858585);}#topbar{position:relative;left:0;top:0;width:auto;}#title{position:absolute;font-weight:bold;top:0;left:0;right:0;text-align:center;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;color:#FFF;color:#FFFFFF;text-shadow:rgba(0,0,0,0.6) 0 -1px 0;padding:0 10px;}#logo{Background:#05FF8A;}#content{width:100%;position:relative;min-height:250px;{--wpmsgtknsinglepageminimumheight--}height:auto;z-index:0;overflow:hidden;{--wpmsgtknsinglepagebackgroundimage--}}p {padding:0 5px;color:#000000;}h1 {padding:0 5px;color:#000000;}h2 {padding:0 5px;color:#000000;}h3 {padding:0 5px;color:#000000;}h4 {padding:0 5px;color:#000000;}h5 {padding:0 5px;color:#000000;}h6 {padding:0 5px;color:#000000;}blockquote {background:#C7FF0F;color:#000000;border-color:#04BF04;border-width:1px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 6px 10px;padding:0 5px;border-radius:8px}blockquote p {background:#C7FF0F;color:#000000;}.ezmbfooter p {padding:0 5px;color:#000000;}.ezmbtable {width:95%;margin-left:auto;margin-right:auto;border-collapse:collapse;background:#C7FF0F;color:#000000;border-color:#04BF04;border-width:1px;border-style:Solid;}.ezmbtable td {background:#C7FF0F;color:#000000;border-color:#04BF04;border-width:1px;border-style:Solid;padding:2px;}.ezmbtable td p {background:#C7FF0F;color:#000000;}.ezmbiconlist {color:#000000;}.menulist {background:#FFCF0D;color:#000000;border-color:#04BF04;border-width:px;border-style:None;opacity:1;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.menulist span.name{color:#000000;text-decoration:none}.menulist span.menudesc{color:#;text-decoration:none}.menulist td a{text-decoration:none}.menulist td a img{vertical-align:text-top;text-decoration:none}.menulist td{vertical-align:text-top;}.searchlist {background:#C7FF0F;color:#000000;border-color:#04BF04;border-width:2px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.searchform {background:#C7FF0F;color:#000000;border-color:#04BF04;border-width:2px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.searchform .button input {background:#04BF04;color:#000000;}.searchlist:hover,{background:-webkit-gradient(linear,0% 0%,0% 100%,from(#058cf5),to(#015fe6))}.searchlist a:hover {background-color:#CCF}.searchlist li a:hover{background:#015FE6;}.searchlist a{display:block;height:43px;width:auto;text-decoration:none}.searchlist a img{width:auto;height:32px;float:left;margin:5px 0 0 5px}.searchlist .name{width:auto;font-weight:bold;font-size:17px;color:#000000;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;float:left;margin:11px 0 0 7px}.searchlist a:hover .name{color:#FFFFFF;}.searchlistsnippet{padding-left:5px;padding-right:5px;}.rssfeedlist {background:#C7FF0F;color:#000000;border-color:#04BF04;border-width:2px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.rssfeedlist:hover{background:-webkit-gradient(linear,0% 0%,0% 100%,from(#058cf5),to(#015fe6))}.rssfeedlist a:hover {background-color:#CCF}.rssfeedlist li a:hover{background-color:#015fe6}.rssfeedlist a{display:block;min-height:43px;width:auto;text-decoration:none}.rssfeedlist a img{width:auto;height:32px;float:left;margin:5px 0 0 5px}.rssfeedlist .name{width:auto;font-weight:bold;font-size:17px;color:#000000;float:left;margin:11px 0 0 7px}.rssfeedlist a:hover .name{color:#FFFFFF;}.rssfeedlistsnippet{padding-left:5px;padding-right:5px;}.ezmbcouponwidget {background:#C7FF0F;color:#000000;border-color:#04BF04;border-width:2px;border-style:Dashed;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.optinform {background:#C7FF0F;color:#000000;border-color:#04BF04;border-width:1px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.optinform .button input {background:#04BF04;color:#000000;}.contactform {background:#C7FF0F;color:#000000;border-color:#04BF04;border-width:1px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.contactform .button input {background:#04BF04;color:#000000;}.customform {background:#C7FF0F;color:#000000;border-color:#04BF04;border-width:1px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.customform .button input {background:#04BF04;color:#000000;}li.customformrow{position:relative;list-style-type:none;display:block;height:43px;overflow:hidden;border-top:1px solid #878787;border-top:1px solid #878787;width:auto}li.customformrowbelow{position:relative;list-style-type:none;display:block;height:43px;overflow:hidden;width:auto}p.customformrow{-webkit-margin-before: 0px;border-top:1px solid #878787;width:auto}.customformrow .customformlabel, .customformrow .customformlabelfull, .customformtextbox .customformlabel, .customformradiorow .customformlabel{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;padding-left:5px;overflow:hidden}.customformrow .customformlabel{line-height:44px;}.customformrow .customformlabelfull{line-height:44px;width:100%;height:auto;}.customformrow input {width:50%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.customformrowbelow input {width:100%;min-width:95%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}input.customformrowrequired{background: #ff8080;}.customformrow input:not([type=\'checkbox\']) {-webkit-appearance:none;}.customformrow select{width:50%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.customformrow:first-child input{border-top-right-radius:8px}.customformrow:last-child input{border-bottom-right-radius:8px}.customformtextbox{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.customformtextbox img{max-width:100%}.customformtextbox p{margin-top:2px;color:#000;margin-bottom:2px;text-align:justify}.customformtextbox ul{list-style:circle!important;margin:3px 0}.customformtextbox li{margin:0!important}.customformtextbox textarea{margin-top:5px;font-size:medium;padding:0}.customformradiorow{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.customformrow input[type=\"checkbox\"]{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOff.png)no-repeat;-webkit-appearance:none;border:0;margin:4px 4px 0 0}.customformrow input[type=\"checkbox\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOn.png)no-repeat;}.customformradiorow input[type=\"radio\"]{-webkit-appearance:none;border:0;width:100%;height: 43px;z-index:2;position:absolute;left:50%;margin:0;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOff.png) no-repeat;-webkit-border-radius:0}.customformradiorow input[type=\"radio\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOn.png) no-repeat;}.customformradiorow .customformradiorowinput {height: 40px;}.customformradiorow label{position: absolute;margin-top: 6px;margin-left:60%;text-overflow: ellipsis;}.customformradiorowbelow{position:relative;overflow:hidden;padding:5px 9px}.customformradiorowbelowlabel{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.customformradiorowbelowlabel .customformlabel{left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;padding-left:5px;overflow:hidden}.customformradiorowbelow input[type=\"radio\"]{-webkit-appearance:none;border:0;width:100%;height: 43px;z-index:2;position:absolute;left:10px;margin:0;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOff.png) no-repeat;-webkit-border-radius:0}.customformradiorowbelow input[type=\"radio\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOn.png) no-repeat;}.customformradiorowbelow .customformradiorowinputbelow {height: 40px;}span.customformlabelfull{font-weight:bold;font-size:17px;}.customformradiorowbelow label{position: absolute;margin-top: 6px;margin-left:45px;text-overflow: ellipsis;}li.customformrowbelow select{width:100%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.customformrowcheckboxright{position:relative;overflow:hidden;border-top:1px solid #878787;height: 40px;padding:5px 9px}.customformrowcheckboxright .customformlabel {left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;line-height:44px;overflow:hidden}.customformrowcheckboxright input[type=\"checkbox\"]{position: absolute;height: 40px;width: 35px;right:0;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOff.png)no-repeat;-webkit-appearance:none;border:0;margin:4px 4px 0 0}.customformrowcheckboxright input[type=\"checkbox\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOn.png) no-repeat;}.customformrowcheckboxleft{position:relative;overflow:hidden;border-top:1px solid #878787;height: 40px;padding:5px 9px}.customformrowcheckboxleft .customformlabel {margin-left:40px;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;line-height:44px;overflow:hidden}.customformrowcheckboxleft input[type=\"checkbox\"]{position: absolute;height: 40px;width: 35px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOff.png)no-repeat;-webkit-appearance:none;border:0;margin:4px 4px 0 0}.customformrowcheckboxleft input[type=\"checkbox\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOn.png) no-repeat;} .directions {background:#C7FF0F;color:#000000;border-color:#04BF04;border-width:1px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.directions .button input {background:#04BF04;color:#000000;}.clear {clear: both;}.ezmbphone {margin-left: auto;margin-right: auto;text-align: center;}.ezmbphoneimg {margin-left: auto;margin-right: auto;text-align: center;}.phonebtnimg {margin-left: auto;margin-right: auto;text-align: center;}.phonebtn, .phonebtn:visited {background:#04BF04;color:#FFFFFF;border-color:#04BF04;border-width:px;border-style:None;-webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.6);text-shadow: 0 -1px 1px rgba(0,0,0,0.25);border-bottom: 1px solid rgba(0,0,0,0.25);display: inline-block; padding: 5px 10px 6px; text-decoration: none;border-radius: 10px;position: relative;cursor: pointer;font-weight:bold;}.ezmbfooter {Background:#04BF04;margin:0;}.ezmbfooter p {margin:0;}.textbox{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.searchbox{height:44px;background:-webkit-gradient(linear,0% 0%,0% 100%,from(#f1f3f4),color-stop(3%,#e0e4e7),color-stop(50%,#c7cfd4),color-stop(51%,#bec7cd),color-stop(97%,#b4bec6),to(#8999a5));width:100%;margin:-13px 0 13px}.searchbox form{height:24px;border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/searchfield.png) 4 14 1 24;display:block;position:relative;top:8px;border-width:4px 14px 1px 24px;margin:auto}fieldset{border:0;margin:0;padding:0}.searchbox input[type=\"text\"]{border:0;-webkit-appearance:none;height:18px;float:left;font-size:13px;position:relative;top:2px;left:2px;padding:0}.textbox img{max-width:100%}.textbox p{margin-top:2px;color:#000;margin-bottom:2px;text-align:justify}.textbox ul{list-style:circle!important;margin:3px 0}.textbox li{margin:0!important}.menulist li:first-child,.menulist li.form:first-child{border-top:0}.menu,.checkbox,.radiobutton,.select,li.button,li.bigfield,li.smallfield,li.searchsmallfield,li.optinsmallfield,li.contactsmallfield,li.mapsmallfield{position:relative;list-style-type:none;display:block;height:43px;overflow:hidden;border-top:1px solid #878787;border-top:1px solid #878787;width:auto}.menulist li:first-child:hover,.menulist li:first-child a,.radiobutton:first-child input,.select:first-child select,li.button:first-child input,.bigfield:first-child input{border-top-left-radius:8px;border-top-right-radius:8px}.menulist li:last-child:hover,.menulist li:last-child a,.radiobutton:last-child input,.select:last-child select,li.button:last-child input,.bigfield:last-child input{border-bottom-left-radius:8px;border-bottom-right-radius:8px}.menu:hover,.store:hover,.list #content li a:hover,.list .withimage:hover,.applist li:hover:nth-child(n),.ipodlist li:hover:nth-child(n){background:#015FE6;color:#FFFFFF;}.menu a:hover .comment{color:#FFFFFF;}.menu a{display:block;height:43px;width:auto;text-decoration:none}.menu a img{width:auto;height:32px;float:left;margin:5px 0 0 5px}.menu .name,.checkbox .name,.radiobutton .name{width:auto;font-weight:bold;font-size:17px;color:#000000;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;float:left;margin:11px 0 0 7px}.menu-item{position:relative;list-style-type:none;display:block;height:43px;overflow:hidden;border-top:1px solid #878787;border-top:1px solid #878787;width:auto}.menu-item a{display:block;height:43px;width:auto;text-decoration:none}.menu-item a img{width:auto;height:32px;float:left;margin:5px 0 0 5px}.menu-item .name,.checkbox .name,.radiobutton .name{width:auto;font-weight:bold;font-size:17px;color:#000000;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;float:left;margin:11px 0 0 7px}.menu-item:hover{background:#015FE6;color:#FFFFFF;}.menu-item a:hover .comment{color:#FFFFFF;}.menu-item .comment{width:auto;font-size:17px;text-overflow:ellipsis;overflow:hidden;max-width:75%;white-space:nowrap;float:right;color:#324f85;margin:11px 30px 0 0}.menu-item .arrow{position:absolute;width:24px!important;height:24px!important;right:10px;top:12px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/arrows/DarkBigArrow_Transparent.png) 0 0 no-repeat;margin:0!important}.menu-item .arrowleft{float:left;width:24px!important;height:24px!important;left:10px;top:12px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/arrows/DarkBigArrow_Transparent.png) 0 0 no-repeat;margin:0!important}.menu-item a:hover .name{color:#FFFFFF;}.menu .comment{width:auto;font-size:17px;text-overflow:ellipsis;overflow:hidden;max-width:75%;white-space:nowrap;float:right;color:#324f85;margin:11px 30px 0 0}.menu .arrow,.store .arrow,.musiclist .arrow,.list .arrow{position:absolute;width:24px!important;height:24px!important;right:10px;top:12px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/arrows/DarkBigArrow_Transparent.png) 0 0 no-repeat;margin:0!important}.menu .arrowleft,.store .arrowleft,.musiclist .arrowleft,.list .arrowleft{float:left;width:24px!important;height:24px!important;left:10px;top:12px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/arrows/DarkBigArrow_Transparent.png) 0 0 no-repeat;margin:0!important}#leftnav,#leftbutton{position:absolute;font-size:12px;left:9px;font-weight:bold}#leftnav,#leftbutton,#rightnav,#rightbutton{z-index:5000}#leftnav a,#rightnav a,#leftbutton a,#rightbutton a{display:block;color:#fff;text-shadow:rgba(0,0,0,0.6) 0 -1px 0;text-decoration:none}.black #leftnav a:first-child,.transparent #leftnav a:first-child{border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleftblack.png) 0 5 0 13-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleftblack.png) 0 5 0 13-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleftblack.png) 0 5 0 13-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleftblack.png) 0 5 0 13}.black #leftnav a,.transparent #leftnav a{border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleftblack.png) 0 5 0 13-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleftblack.png) 0 5 0 13-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleftblack.png) 0 5 0 13-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleftblack.png) 0 5 0 13}.black #rightnav a:first-child,.transparent #rightnav a:first-child{-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navrightblack.png) 0 13 0 5-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navrightblack.png) 0 13 0 5-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navrightblack.png) 0 13 0 5-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navrightblack.png) 0 13 0 5}.black #rightnav a,.transparent #rightnav a{-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkrightblack.png) 0 13 0 5-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkrightblack.png) 0 13 0 5-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkrightblack.png) 0 13 0 5-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkrightblack.png) 0 13 0 5}.black #leftbutton a,.black #rightbutton a,.transparent #leftbutton a,.transparent #rightbutton a{border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbuttonblack.png) 0 5 0 5-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbuttonblack.png) 0 5 0 5-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbuttonblack.png) 0 5 0 5-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbuttonblack.png) 0 5 0 5}#leftnav a:first-child{z-index:2;border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleft_std.png) 0 5 0 13;-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleft_std.png) 0 5 0 13;-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleft_std.png) 0 5 0 13;-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleft_std.png) 0 5 0 13;width:auto;border-width:0 5px 0 13px;border-radius:16px 6px 6px 16px}#leftnav a{border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleft.png) 0 5 0 13;-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleft.png) 0 5 0 13;-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleft.png) 0 5 0 13;-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleft.png) 0 5 0 13;z-index:3;margin-left:-4px;padding-right:4px;float:left;border-width:0 5px 0 13px;border-radius:16px 6px 6px 16px}#rightnav,#rightbutton{position:absolute;font-size:12px;right:9px;font-weight:bold}#rightnav a{border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkright.png) 0 13 0 5;-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkright.png) 0 13 0 5;-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkright.png) 0 13 0 5;-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkright.png) 0 13 0 5;z-index:3;margin-right:-4px;padding-left:4px;float:right;border-width:0 13px 0 5px;border-radius:6px 16px 16px 6px}#rightnav a:first-child{z-index:2;border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navright_std.png) 0 13 0 5;-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navright_std.png) 0 13 0 5;-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navright_std.png) 0 13 0 5;-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navright_std.png) 0 13 0 5;border-width:0 13px 0 5px;border-radius:6px 16px 16px 6px}#leftbutton a,#rightbutton a{border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbutton_std.png) 0 5 0 5;-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbutton_std.png) 0 5 0 5;-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbutton_std.png) 0 5 0 5;-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbutton_std.png) 0 5 0 5;border-width:0 5px;border-radius:6px}.gform_body ul { list-style-type: none; }.radiobutton .name{z-index:1}.select select{color:#000;font-weight:bold;font-size:17px;border-radius:0}.select option{max-width:90%}.select .arrow{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/arrow.png);width:8px;height:13px;display:block;-webkit-transform:rotate(90deg);position:absolute;right:10px;top:18px}.button input{width:100%;height:100%;-webkit-appearance:none;border:0;font-weight:bold;font-size:17px;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;background:none;border-radius:0}.textbox textarea{margin-top:5px;font-size:medium;padding:0}.bigfield input{-webkit-appearance:none;border:0;height:100%;background:transparent;font-weight:bold;font-size:17px;padding:0 0 0 5px;border-radius:0}.smallfield .name{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;line-height:44px;font-size:17px;padding-left:5px;overflow:hidden}.smallfield input{width:50%;position:absolute;right:0;height:44px;-webkit-appearance:none;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.smallfield:first-child input{border-top-right-radius:8px}.smallfield:last-child input{border-bottom-right-radius:8px}.searchsmallfield .name{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;line-height:44px;font-size:17px;padding-left:5px;overflow:hidden}.searchsmallfield input{width:50%;position:absolute;right:0;height:44px;-webkit-appearance:none;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.searchsmallfield:first-child input{border-top-right-radius:8px}.searchsmallfield:last-child input{border-bottom-right-radius:8px}.optinsmallfield .name{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;line-height:44px;font-size:17px;padding-left:5px;overflow:hidden}.optinsmallfield input{width:50%;position:absolute;right:0;height:44px;-webkit-appearance:none;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.optinsmallfield:first-child input{border-top-right-radius:8px}.optinsmallfield:last-child input{border-bottom-right-radius:8px}.contactsmallfield .name{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;line-height:44px;font-size:17px;padding-left:5px;overflow:hidden}.contactsmallfield input{width:50%;position:absolute;right:0;height:44px;-webkit-appearance:none;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.contactsmallfield:first-child input{border-top-right-radius:8px}.contactsmallfield:last-child input{border-bottom-right-radius:8px}.mapsmallfield .name{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;line-height:44px;font-size:17px;padding-left:5px;overflow:hidden}.mapsmallfield input{width:50%;position:absolute;right:0;height:44px;-webkit-appearance:none;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.mapsmallfield:first-child input{border-top-right-radius:8px}.mapsmallfield:last-child input{border-bottom-right-radius:8px}img,#duobutton a:last-child,#duoselectionbuttons a:first-child,.ipodlist li:hover:nth-child(n) .name,.ipodlist li:hover:nth-child(n) .time{border:0}#triselectionbuttons a:hover,#triselectionbuttons a#pressed,#duoselectionbuttons a:hover,#duoselectionbuttons a#pressed,li#doublead:hover{background:none}.menu a:hover .name,.store:hover .starcomment,.store:hover .name,.store:hover .comment,.list .withimage a:hover .comment,.list #content li a:hover{color:#FFFFFF;}@media screen and (max-width:320px) {#topbar{height:44px}#logo{max-width:320px;width:100%;}#title{line-height:44px;height:44px;font-size:16pt;}.searchbox form{width:272px}.searchbox input[type=\"text\"]{width:275px}.menu .name{max-width:77%}#leftnav a,#rightnav a,#leftbutton a,#rightbutton a{line-height:30px;height:30px}#leftnav img,#rightnav img{margin-top:4px}.textbox textarea{width:85%;}.customformtextbox textarea{width:85%;}.bigfield input{width:295px}.checkbox .name,.radiobutton .name{max-width:190px}#leftnav,#leftbutton,#rightnav,#rightbutton{top:7px}}@media screen and (min-width:321px) {#topbar{height:32px}#title{line-height:32px;height:32px;font-size:13pt}.menu .name{max-width:85%}#leftnav a,#rightnav a,#leftbutton a,#rightbutton a{line-height:24px;height:24px}#leftnav img,#rightnav img{margin-top:4px;height:70%}.textbox textarea{width:85%;}.customformtextbox textarea{width:85%;}#doublead{width:350px!important}.searchbox form{width:432px}.searchbox input[type=\"text\"]{width:435px}.bigfield input{width:455px}.checkbox .name,.radiobutton .name{max-width:75%}#leftnav,#leftbutton,#rightnav,#rightbutton{top:4px}}</style>");
INSERT INTO `wp_postmeta` VALUES("1155", "117", "_WPMSGOPTION_ThemeCustomFormStyleCSS", "<style  type=\"text/css\" >.customform {background:#C7FF0F;color:#000000;border-color:#04BF04;border-width:1px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.customform .button input {background:#04BF04;color:#000000;}li.customformrow{position:relative;list-style-type:none;display:block;height:43px;overflow:hidden;border-top:1px solid #878787;border-top:1px solid #878787;width:auto}li.customformrowbelow{position:relative;list-style-type:none;display:block;height:43px;overflow:hidden;width:auto}p.customformrow{-webkit-margin-before: 0px;border-top:1px solid #878787;width:auto}.customformrow .customformlabel, .customformrow .customformlabelfull, .customformtextbox .customformlabel, .customformradiorow .customformlabel{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;padding-left:5px;overflow:hidden}.customformrow .customformlabel{line-height:44px;}.customformrow .customformlabelfull{line-height:44px;width:100%;height:auto;}.customformrow input {width:50%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.customformrowbelow input {width:100%;min-width:95%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}input.customformrowrequired{background: #ff8080;}.customformrow input:not([type=\'checkbox\']) {-webkit-appearance:none;}.customformrow select{width:50%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.customformrow:first-child input{border-top-right-radius:8px}.customformrow:last-child input{border-bottom-right-radius:8px}.customformtextbox{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.customformtextbox img{max-width:100%}.customformtextbox p{margin-top:2px;color:#000;margin-bottom:2px;text-align:justify}.customformtextbox ul{list-style:circle!important;margin:3px 0}.customformtextbox li{margin:0!important}.customformtextbox textarea{margin-top:5px;font-size:medium;padding:0}.customformradiorow{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.customformrow input[type=\"checkbox\"]{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOff.png)no-repeat;-webkit-appearance:none;border:0;margin:4px 4px 0 0}.customformrow input[type=\"checkbox\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOn.png)no-repeat;}.customformradiorow input[type=\"radio\"]{-webkit-appearance:none;border:0;width:100%;height: 43px;z-index:2;position:absolute;left:50%;margin:0;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOff.png) no-repeat;-webkit-border-radius:0}.customformradiorow input[type=\"radio\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOn.png) no-repeat;}.customformradiorow .customformradiorowinput {height: 40px;}.customformradiorow label{position: absolute;margin-top: 6px;margin-left:60%;text-overflow: ellipsis;}.customformradiorowbelow{position:relative;overflow:hidden;padding:5px 9px}.customformradiorowbelowlabel{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.customformradiorowbelowlabel .customformlabel{left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;padding-left:5px;overflow:hidden}.customformradiorowbelow input[type=\"radio\"]{-webkit-appearance:none;border:0;width:100%;height: 43px;z-index:2;position:absolute;left:10px;margin:0;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOff.png) no-repeat;-webkit-border-radius:0}.customformradiorowbelow input[type=\"radio\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOn.png) no-repeat;}.customformradiorowbelow .customformradiorowinputbelow {height: 40px;}span.customformlabelfull{font-weight:bold;font-size:17px;}.customformradiorowbelow label{position: absolute;margin-top: 6px;margin-left:45px;text-overflow: ellipsis;}li.customformrowbelow select{width:100%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.customformrowcheckboxright{position:relative;overflow:hidden;border-top:1px solid #878787;height: 40px;padding:5px 9px}.customformrowcheckboxright .customformlabel {left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;line-height:44px;overflow:hidden}.customformrowcheckboxright input[type=\"checkbox\"]{position: absolute;height: 40px;width: 35px;right:0;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOff.png)no-repeat;-webkit-appearance:none;border:0;margin:4px 4px 0 0}.customformrowcheckboxright input[type=\"checkbox\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOn.png) no-repeat;}.customformrowcheckboxleft{position:relative;overflow:hidden;border-top:1px solid #878787;height: 40px;padding:5px 9px}.customformrowcheckboxleft .customformlabel {margin-left:40px;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;line-height:44px;overflow:hidden}.customformrowcheckboxleft input[type=\"checkbox\"]{position: absolute;height: 40px;width: 35px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOff.png)no-repeat;-webkit-appearance:none;border:0;margin:4px 4px 0 0}.customformrowcheckboxleft input[type=\"checkbox\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOn.png) no-repeat;}</style>");
INSERT INTO `wp_postmeta` VALUES("1156", "118", "_WPMSGOPTION_PageBackgroundColor", "05FF8A");
INSERT INTO `wp_postmeta` VALUES("1157", "118", "_WPMSGOPTION_LogoBackgroundColor", "04BF04");
INSERT INTO `wp_postmeta` VALUES("1158", "118", "_WPMSGOPTION_FooterBackgroundColor", "04BF04");
INSERT INTO `wp_postmeta` VALUES("1159", "118", "_WPMSGOPTION_ParagraphTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1160", "118", "_WPMSGOPTION_ParagraphTextSize", "");
INSERT INTO `wp_postmeta` VALUES("1161", "118", "_WPMSGOPTION_BackgroundImage", "");
INSERT INTO `wp_postmeta` VALUES("1162", "118", "_WPMSGOPTION_BackgroundImageRepeat", "");
INSERT INTO `wp_postmeta` VALUES("1163", "118", "_WPMSGOPTION_BackgroundImagePosition", "");
INSERT INTO `wp_postmeta` VALUES("1164", "118", "_WPMSGOPTION_TopbarStartColor", "202020");
INSERT INTO `wp_postmeta` VALUES("1165", "118", "_WPMSGOPTION_TopbarEndColor", "858585");
INSERT INTO `wp_postmeta` VALUES("1166", "118", "_WPMSGOPTION_TopbarTextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("1167", "118", "_WPMSGOPTION_TopbarButtonColor", "std");
INSERT INTO `wp_postmeta` VALUES("1168", "118", "_WPMSGOPTION_H1TextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1169", "118", "_WPMSGOPTION_H1TextSize", "");
INSERT INTO `wp_postmeta` VALUES("1170", "118", "_WPMSGOPTION_H1TextShadow", "");
INSERT INTO `wp_postmeta` VALUES("1171", "118", "_WPMSGOPTION_H2TextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1172", "118", "_WPMSGOPTION_H2TextSize", "");
INSERT INTO `wp_postmeta` VALUES("1173", "118", "_WPMSGOPTION_H2TextShadow", "");
INSERT INTO `wp_postmeta` VALUES("1174", "118", "_WPMSGOPTION_H3TextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1175", "118", "_WPMSGOPTION_H3TextSize", "");
INSERT INTO `wp_postmeta` VALUES("1176", "118", "_WPMSGOPTION_H3TextShadow", "");
INSERT INTO `wp_postmeta` VALUES("1177", "118", "_WPMSGOPTION_H4TextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1178", "118", "_WPMSGOPTION_H4TextSize", "");
INSERT INTO `wp_postmeta` VALUES("1179", "118", "_WPMSGOPTION_H4TextShadow", "");
INSERT INTO `wp_postmeta` VALUES("1180", "118", "_WPMSGOPTION_H5TextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1181", "118", "_WPMSGOPTION_H5TextSize", "");
INSERT INTO `wp_postmeta` VALUES("1182", "118", "_WPMSGOPTION_H5TextShadow", "");
INSERT INTO `wp_postmeta` VALUES("1183", "118", "_WPMSGOPTION_H6TextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1184", "118", "_WPMSGOPTION_H6TextSize", "");
INSERT INTO `wp_postmeta` VALUES("1185", "118", "_WPMSGOPTION_H6TextShadow", "");
INSERT INTO `wp_postmeta` VALUES("1186", "118", "_WPMSGOPTION_MenuBackgroundColor", "FF0800");
INSERT INTO `wp_postmeta` VALUES("1187", "118", "_WPMSGOPTION_IconTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1188", "118", "_WPMSGOPTION_MenuTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1189", "118", "_WPMSGOPTION_MenuTextSize", "");
INSERT INTO `wp_postmeta` VALUES("1190", "118", "_WPMSGOPTION_MenuBorderColor", "FF0800");
INSERT INTO `wp_postmeta` VALUES("1191", "118", "_WPMSGOPTION_MenuBorderWidth", "1");
INSERT INTO `wp_postmeta` VALUES("1192", "118", "_WPMSGOPTION_MenuBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("1193", "118", "_WPMSGOPTION_MenuOpacity", "");
INSERT INTO `wp_postmeta` VALUES("1194", "118", "_WPMSGOPTION_MenuArrowImage", "LightBigArrow");
INSERT INTO `wp_postmeta` VALUES("1195", "118", "_WPMSGOPTION_MenuArrowColor", "Transparent");
INSERT INTO `wp_postmeta` VALUES("1196", "118", "_WPMSGOPTION_MenuSelectedBackgroundColor", "015FE6");
INSERT INTO `wp_postmeta` VALUES("1197", "118", "_WPMSGOPTION_MenuSelectedTextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("1198", "118", "_WPMSGOPTION_MenuSeparatorColor", "878787");
INSERT INTO `wp_postmeta` VALUES("1199", "118", "_WPMSGOPTION_BlockquoteBackgroundColor", "2BFF1C");
INSERT INTO `wp_postmeta` VALUES("1200", "118", "_WPMSGOPTION_BlockquoteTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1201", "118", "_WPMSGOPTION_BlockquoteTextSize", "");
INSERT INTO `wp_postmeta` VALUES("1202", "118", "_WPMSGOPTION_BlockquoteBorderColor", "04BF04");
INSERT INTO `wp_postmeta` VALUES("1203", "118", "_WPMSGOPTION_BlockquoteBorderWidth", "1");
INSERT INTO `wp_postmeta` VALUES("1204", "118", "_WPMSGOPTION_BlockquoteBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("1205", "118", "_WPMSGOPTION_TableBackgroundColor", "2BFF1C");
INSERT INTO `wp_postmeta` VALUES("1206", "118", "_WPMSGOPTION_TableTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1207", "118", "_WPMSGOPTION_TableTextSize", "");
INSERT INTO `wp_postmeta` VALUES("1208", "118", "_WPMSGOPTION_TableBorderColor", "04BF04");
INSERT INTO `wp_postmeta` VALUES("1209", "118", "_WPMSGOPTION_TableBorderWidth", "1");
INSERT INTO `wp_postmeta` VALUES("1210", "118", "_WPMSGOPTION_TableBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("1211", "118", "_WPMSGOPTION_TableWidth", "95");
INSERT INTO `wp_postmeta` VALUES("1212", "118", "_WPMSGOPTION_TablePadding", "2");
INSERT INTO `wp_postmeta` VALUES("1213", "118", "_WPMSGOPTION_ClickToCallBackgroundColor", "04BF04");
INSERT INTO `wp_postmeta` VALUES("1214", "118", "_WPMSGOPTION_ClickToCallTextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("1215", "118", "_WPMSGOPTION_ClickToCallTextSize", "");
INSERT INTO `wp_postmeta` VALUES("1216", "118", "_WPMSGOPTION_ClickToCallBorderColor", "04BF04");
INSERT INTO `wp_postmeta` VALUES("1217", "118", "_WPMSGOPTION_ClickToCallBorderWidth", "");
INSERT INTO `wp_postmeta` VALUES("1218", "118", "_WPMSGOPTION_ClickToCallBorderStyle", "None");
INSERT INTO `wp_postmeta` VALUES("1219", "118", "_WPMSGOPTION_OptinFormBackgroundColor", "2BFF1C");
INSERT INTO `wp_postmeta` VALUES("1220", "118", "_WPMSGOPTION_OptinFormInputBackgroundColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("1221", "118", "_WPMSGOPTION_OptinFormSubmitBackgroundColor", "04BF04");
INSERT INTO `wp_postmeta` VALUES("1222", "118", "_WPMSGOPTION_OptinFormSubmitTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1223", "118", "_WPMSGOPTION_OptinFormTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1224", "118", "_WPMSGOPTION_OptinFormTextSize", "");
INSERT INTO `wp_postmeta` VALUES("1225", "118", "_WPMSGOPTION_OptinFormBorderColor", "04BF04");
INSERT INTO `wp_postmeta` VALUES("1226", "118", "_WPMSGOPTION_OptinFormBorderWidth", "1");
INSERT INTO `wp_postmeta` VALUES("1227", "118", "_WPMSGOPTION_OptinFormBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("1228", "118", "_WPMSGOPTION_ContactFormBackgroundColor", "2BFF1C");
INSERT INTO `wp_postmeta` VALUES("1229", "118", "_WPMSGOPTION_ContactFormInputBackgroundColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("1230", "118", "_WPMSGOPTION_ContactFormSubmitBackgroundColor", "04BF04");
INSERT INTO `wp_postmeta` VALUES("1231", "118", "_WPMSGOPTION_ContactFormSubmitTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1232", "118", "_WPMSGOPTION_ContactFormTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1233", "118", "_WPMSGOPTION_ContactFormTextSize", "");
INSERT INTO `wp_postmeta` VALUES("1234", "118", "_WPMSGOPTION_ContactFormBorderColor", "04BF04");
INSERT INTO `wp_postmeta` VALUES("1235", "118", "_WPMSGOPTION_ContactFormBorderWidth", "1");
INSERT INTO `wp_postmeta` VALUES("1236", "118", "_WPMSGOPTION_ContactFormBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("1237", "118", "_WPMSGOPTION_DirectionsBackgroundColor", "2BFF1C");
INSERT INTO `wp_postmeta` VALUES("1238", "118", "_WPMSGOPTION_DirectionsInputBackgroundColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("1239", "118", "_WPMSGOPTION_DirectionsSubmitBackgroundColor", "04BF04");
INSERT INTO `wp_postmeta` VALUES("1240", "118", "_WPMSGOPTION_DirectionsSubmitTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1241", "118", "_WPMSGOPTION_DirectionsTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1242", "118", "_WPMSGOPTION_DirectionsTextSize", "");
INSERT INTO `wp_postmeta` VALUES("1243", "118", "_WPMSGOPTION_DirectionsBorderColor", "04BF04");
INSERT INTO `wp_postmeta` VALUES("1244", "118", "_WPMSGOPTION_DirectionsBorderWidth", "1");
INSERT INTO `wp_postmeta` VALUES("1245", "118", "_WPMSGOPTION_DirectionsBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("1246", "118", "_WPMSGOPTION_SlideshowBackgroundColor", "C7FF0F");
INSERT INTO `wp_postmeta` VALUES("1247", "118", "_WPMSGOPTION_SlideshowTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1248", "118", "_WPMSGOPTION_SlideshowTextSize", "");
INSERT INTO `wp_postmeta` VALUES("1249", "118", "_WPMSGOPTION_SlideshowBorderColor", "04BF04");
INSERT INTO `wp_postmeta` VALUES("1250", "118", "_WPMSGOPTION_SlideshowBorderWidth", "");
INSERT INTO `wp_postmeta` VALUES("1251", "118", "_WPMSGOPTION_SlideshowBorderStyle", "None");
INSERT INTO `wp_postmeta` VALUES("1252", "118", "_WPMSGOPTION_AccordianTitleBackgroundColor", "FF0800");
INSERT INTO `wp_postmeta` VALUES("1253", "118", "_WPMSGOPTION_AccordianTitleTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1254", "118", "_WPMSGOPTION_AccordianTitleTextSize", "");
INSERT INTO `wp_postmeta` VALUES("1255", "118", "_WPMSGOPTION_AccordianTitleSelectedBackgroundColor", "015FE6");
INSERT INTO `wp_postmeta` VALUES("1256", "118", "_WPMSGOPTION_AccordianTitleSelectedTextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("1257", "118", "_WPMSGOPTION_AccordianBackgroundColor", "2BFF1C");
INSERT INTO `wp_postmeta` VALUES("1258", "118", "_WPMSGOPTION_AccordianTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1259", "118", "_WPMSGOPTION_AccordianTextSize", "");
INSERT INTO `wp_postmeta` VALUES("1260", "118", "_WPMSGOPTION_AccordianSeparatorColor", "878787");
INSERT INTO `wp_postmeta` VALUES("1261", "118", "_WPMSGOPTION_AccordianBorderColor", "FF0800");
INSERT INTO `wp_postmeta` VALUES("1262", "118", "_WPMSGOPTION_AccordianBorderWidth", "1");
INSERT INTO `wp_postmeta` VALUES("1263", "118", "_WPMSGOPTION_AccordianBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("1264", "118", "_WPMSGOPTION_AccordianArrowImage", "LightTriangle");
INSERT INTO `wp_postmeta` VALUES("1265", "118", "_WPMSGOPTION_AccordianArrowColor", "Transparent");
INSERT INTO `wp_postmeta` VALUES("1266", "118", "_WPMSGOPTION_CouponBackgroundColor", "C7FF0F");
INSERT INTO `wp_postmeta` VALUES("1267", "118", "_WPMSGOPTION_CouponTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1268", "118", "_WPMSGOPTION_CouponTextSize", "");
INSERT INTO `wp_postmeta` VALUES("1269", "118", "_WPMSGOPTION_CouponBorderColor", "04BF04");
INSERT INTO `wp_postmeta` VALUES("1270", "118", "_WPMSGOPTION_CouponBorderWidth", "2");
INSERT INTO `wp_postmeta` VALUES("1271", "118", "_WPMSGOPTION_CouponBorderStyle", "Dashed");
INSERT INTO `wp_postmeta` VALUES("1272", "118", "_WPMSGOPTION_SearchBackgroundColor", "C7FF0F");
INSERT INTO `wp_postmeta` VALUES("1273", "118", "_WPMSGOPTION_SearchTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1274", "118", "_WPMSGOPTION_SearchTextSize", "");
INSERT INTO `wp_postmeta` VALUES("1275", "118", "_WPMSGOPTION_SearchBorderColor", "04BF04");
INSERT INTO `wp_postmeta` VALUES("1276", "118", "_WPMSGOPTION_SearchBorderWidth", "2");
INSERT INTO `wp_postmeta` VALUES("1277", "118", "_WPMSGOPTION_SearchBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("1278", "118", "_WPMSGOPTION_SearchInputBackgroundColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("1279", "118", "_WPMSGOPTION_SearchSubmitBackgroundColor", "04BF04");
INSERT INTO `wp_postmeta` VALUES("1280", "118", "_WPMSGOPTION_SearchSubmitTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1281", "118", "_WPMSGOPTION_SearchSelectedBackgroundColor", "015FE6");
INSERT INTO `wp_postmeta` VALUES("1282", "118", "_WPMSGOPTION_SearchSelectedTextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("1283", "118", "_WPMSGOPTION_SearchHighlightColor", "12FFF7");
INSERT INTO `wp_postmeta` VALUES("1284", "118", "_WPMSGOPTION_RssBackgroundColor", "C7FF0F");
INSERT INTO `wp_postmeta` VALUES("1285", "118", "_WPMSGOPTION_RssTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1286", "118", "_WPMSGOPTION_RssTextSize", "");
INSERT INTO `wp_postmeta` VALUES("1287", "118", "_WPMSGOPTION_RssBorderColor", "04BF04");
INSERT INTO `wp_postmeta` VALUES("1288", "118", "_WPMSGOPTION_RssBorderWidth", "2");
INSERT INTO `wp_postmeta` VALUES("1289", "118", "_WPMSGOPTION_RssBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("1290", "118", "_WPMSGOPTION_RssSelectedBackgroundColor", "015FE6");
INSERT INTO `wp_postmeta` VALUES("1291", "118", "_WPMSGOPTION_RssSelectedTextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("1292", "118", "_WPMSGOPTION_ThemeStyleCSS", "<style  type=\"text/css\" >body{position:relative;-webkit-text-size-adjust:none;min-height:416px;{--wpmsgtknsinglepageminimumheight--}font-family:helvetica,sans-serif;-webkit-background-size:.438em 100%;Background:#05FF8A;-webkit-touch-callout:none;margin:0;margin-right:auto; margin-left:auto;}img.alignright {float:right; max-width:100%; margin:0 0 1em 1em}img.alignleft {float:left; max-width:100%; margin:0 1em 1em 0}img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}a img.alignright {float:right; max-width:100%; margin:0 0 1em 1em}a img.alignleft {float:left; max-width:100%; margin:0 1em 1em 0}a img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}#accordion {background:#2BFF1C;border-color:#FF0800;border-width:1px;border-style:Solid;margin:5px 5px 5px 5px;border-radius:8px}#accordion H2 {padding-top: 5pxpadding-bottom: 5px; padding-left: 15px; padding-right: 15px; margin: 0px 0px 0px 0px; background:#FF0800;font-size:17px;color:#000000;cursor: pointer; height:43px;overflow:hidden;border-top:1px solid #878787;font-weight: bold; line-height: 40px;}#accordion H2:first-child{border-top:none;border-radius:8px}#accordion H2:last-child{border-bottom-left-radius:8px;border-bottom-right-radius:8px}#accordion H2.current {background-color:#015FE6; color:#FFFFFF; cursor: default}#accordion div.acchead {padding-top: 5pxpadding-bottom: 5px; padding-left: 15px; padding-right: 15px; margin: 0px 0px 0px 0px; font-weight:bold;font-size:17px;background:#FF0800;font-size:17px;color:#000000;cursor: pointer; height:43px;overflow:hidden;border-top:1px solid #878787;line-height: 40px;}#accordion div.acchead:first-child{border-top:none;border-top-left-radius:8px;border-top-right-radius:8px;}#accordion div.acchead.current {background-color:#015FE6; color:#FFFFFF; cursor: default}#accordion .pane {padding-top: 15pxpadding-bottom: 15px; padding-left: 15px; padding-right: 15px; display: none; color:#000000;border-bottom-left-radius:8px;border-bottom-right-radius:8px;}#accordion .acchead .accarrow {float: right;valign: center;width:24px!important;height:24px!important;right:10px;top:18px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/arrows/Down_LightTriangle_Transparent.png) 0 0 no-repeat;margin:0!important ;margin-top: 15px;padding-top: 15px;}.images {background:#C7FF0F;color:#000000;border-color:#04BF04;border-width:px;border-style:;{--wpmsgtknslideshowheight--}{--wpmsgtknslideshowwidth--}overflow:hidden;margin-left:auto;margin-right:auto;position:relative;cursor:pointer;-moz-border-radius:5px;-moz-box-shadow:0 0 25px #666;-webkit-border-radius:5px;-webkit-box-shadow:0 0 25px #666;border-radius:5px;box-shadow:0 0 25px #666;}.images div {display:none;position:absolute;top:0;left:0;width: 100%;}.images div p a img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}.images div p img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}.images div a img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}.images div img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}.images img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}.images h3 {font-size:22px;font-weight:normal;margin:0 0 20px 0;color:#456;}.slidetabs {clear:both;}.slidetabs a {width:8px;height:8px;float:left;margin:3px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navigator.png) 0 0 no-repeat;display:block;font-size:1px;}.slidetabs a:hover {background-position:0 -8px;}.slidetabs a.current {background-position:0 -16px; } .forward, .backward {float:left;background:#fff url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/hori_large.png) no-repeat;display:block;width:30px;height:30px;cursor:pointer;font-size:1px;text-indent:-9999em;}.forward { background-position: 0 -30px; clear:right; }.forward:hover { background-position:-30px -30px; }.forward:active{ background-position:-60px -30px; } .backward:hover{ background-position:-30px 0; }.backward:active{ background-position:-60px 0; }.disabled {visibility:hidden !important;}.gallery { list-style: none; padding: 0; margin: 0; }.gallery:after { clear: both; content: \".\"; display: block; height: 0; visibility: hidden; }.gallery li { float: left; width: 33.33333333%; }.gallery li a { display: block; margin: 5px; border: 1px solid #3c3c3c; }.gallery li img { display: block; width: 100%; height: auto; }.highlight { background:#12FFF7;}.highlight_important { background:#12FFF7;}.center{display:block;text-align:center!important;margin:auto}a:hover .arrow{background:0 -13px!important}#topbar.transparent{background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#202020), to(#858585));background-image: -webkit-linear-gradient(top, #202020, #858585);background-image:-moz-linear-gradient(top, #202020, #858585);background-image: -ms-linear-gradient(top, #202020, #858585);background-image:-o-linear-gradient(top, #202020, #858585);}#topbar{position:relative;left:0;top:0;width:auto;}#title{position:absolute;font-weight:bold;top:0;left:0;right:0;text-align:center;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;color:#FFF;color:#FFFFFF;text-shadow:rgba(0,0,0,0.6) 0 -1px 0;padding:0 10px;}#logo{Background:#05FF8A;}#content{width:100%;position:relative;min-height:250px;{--wpmsgtknsinglepageminimumheight--}height:auto;z-index:0;overflow:hidden;{--wpmsgtknsinglepagebackgroundimage--}}p {padding:0 5px;color:#000000;}h1 {padding:0 5px;color:#000000;}h2 {padding:0 5px;color:#000000;}h3 {padding:0 5px;color:#000000;}h4 {padding:0 5px;color:#000000;}h5 {padding:0 5px;color:#000000;}h6 {padding:0 5px;color:#000000;}blockquote {background:#2BFF1C;color:#000000;border-color:#04BF04;border-width:1px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 6px 10px;padding:0 5px;border-radius:8px}blockquote p {background:#2BFF1C;color:#000000;}.ezmbfooter p {padding:0 5px;color:#000000;}.ezmbtable {width:95%;margin-left:auto;margin-right:auto;border-collapse:collapse;background:#2BFF1C;color:#000000;border-color:#04BF04;border-width:1px;border-style:Solid;}.ezmbtable td {background:#2BFF1C;color:#000000;border-color:#04BF04;border-width:1px;border-style:Solid;padding:2px;}.ezmbtable td p {background:#2BFF1C;color:#000000;}.ezmbiconlist {color:#000000;}.menulist {background:#FF0800;color:#000000;border-color:#FF0800;border-width:1px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.menulist span.name{color:#000000;text-decoration:none}.menulist span.menudesc{color:#;text-decoration:none}.menulist td a{text-decoration:none}.menulist td a img{vertical-align:text-top;text-decoration:none}.menulist td{vertical-align:text-top;}.searchlist {background:#C7FF0F;color:#000000;border-color:#04BF04;border-width:2px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.searchform {background:#C7FF0F;color:#000000;border-color:#04BF04;border-width:2px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.searchform .button input {background:#04BF04;color:#000000;}.searchlist:hover,{background:-webkit-gradient(linear,0% 0%,0% 100%,from(#058cf5),to(#015fe6))}.searchlist a:hover {background-color:#CCF}.searchlist li a:hover{background:#015FE6;}.searchlist a{display:block;height:43px;width:auto;text-decoration:none}.searchlist a img{width:auto;height:32px;float:left;margin:5px 0 0 5px}.searchlist .name{width:auto;font-weight:bold;font-size:17px;color:#000000;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;float:left;margin:11px 0 0 7px}.searchlist a:hover .name{color:#FFFFFF;}.searchlistsnippet{padding-left:5px;padding-right:5px;}.rssfeedlist {background:#C7FF0F;color:#000000;border-color:#04BF04;border-width:2px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.rssfeedlist:hover{background:-webkit-gradient(linear,0% 0%,0% 100%,from(#058cf5),to(#015fe6))}.rssfeedlist a:hover {background-color:#CCF}.rssfeedlist li a:hover{background-color:#015fe6}.rssfeedlist a{display:block;min-height:43px;width:auto;text-decoration:none}.rssfeedlist a img{width:auto;height:32px;float:left;margin:5px 0 0 5px}.rssfeedlist .name{width:auto;font-weight:bold;font-size:17px;color:#000000;float:left;margin:11px 0 0 7px}.rssfeedlist a:hover .name{color:#FFFFFF;}.rssfeedlistsnippet{padding-left:5px;padding-right:5px;}.ezmbcouponwidget {background:#C7FF0F;color:#000000;border-color:#04BF04;border-width:2px;border-style:Dashed;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.optinform {background:#2BFF1C;color:#000000;border-color:#04BF04;border-width:1px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.optinform .button input {background:#04BF04;color:#000000;}.contactform {background:#2BFF1C;color:#000000;border-color:#04BF04;border-width:1px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.contactform .button input {background:#04BF04;color:#000000;}.customform {background:#2BFF1C;color:#000000;border-color:#04BF04;border-width:1px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.customform .button input {background:#04BF04;color:#000000;}li.customformrow{position:relative;list-style-type:none;display:block;height:43px;overflow:hidden;border-top:1px solid #878787;border-top:1px solid #878787;width:auto}li.customformrowbelow{position:relative;list-style-type:none;display:block;height:43px;overflow:hidden;width:auto}p.customformrow{-webkit-margin-before: 0px;border-top:1px solid #878787;width:auto}.customformrow .customformlabel, .customformrow .customformlabelfull, .customformtextbox .customformlabel, .customformradiorow .customformlabel{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;padding-left:5px;overflow:hidden}.customformrow .customformlabel{line-height:44px;}.customformrow .customformlabelfull{line-height:44px;width:100%;height:auto;}.customformrow input {width:50%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.customformrowbelow input {width:100%;min-width:95%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}input.customformrowrequired{background: #ff8080;}.customformrow input:not([type=\'checkbox\']) {-webkit-appearance:none;}.customformrow select{width:50%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.customformrow:first-child input{border-top-right-radius:8px}.customformrow:last-child input{border-bottom-right-radius:8px}.customformtextbox{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.customformtextbox img{max-width:100%}.customformtextbox p{margin-top:2px;color:#000;margin-bottom:2px;text-align:justify}.customformtextbox ul{list-style:circle!important;margin:3px 0}.customformtextbox li{margin:0!important}.customformtextbox textarea{margin-top:5px;font-size:medium;padding:0}.customformradiorow{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.customformrow input[type=\"checkbox\"]{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOff.png)no-repeat;-webkit-appearance:none;border:0;margin:4px 4px 0 0}.customformrow input[type=\"checkbox\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOn.png)no-repeat;}.customformradiorow input[type=\"radio\"]{-webkit-appearance:none;border:0;width:100%;height: 43px;z-index:2;position:absolute;left:50%;margin:0;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOff.png) no-repeat;-webkit-border-radius:0}.customformradiorow input[type=\"radio\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOn.png) no-repeat;}.customformradiorow .customformradiorowinput {height: 40px;}.customformradiorow label{position: absolute;margin-top: 6px;margin-left:60%;text-overflow: ellipsis;}.customformradiorowbelow{position:relative;overflow:hidden;padding:5px 9px}.customformradiorowbelowlabel{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.customformradiorowbelowlabel .customformlabel{left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;padding-left:5px;overflow:hidden}.customformradiorowbelow input[type=\"radio\"]{-webkit-appearance:none;border:0;width:100%;height: 43px;z-index:2;position:absolute;left:10px;margin:0;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOff.png) no-repeat;-webkit-border-radius:0}.customformradiorowbelow input[type=\"radio\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOn.png) no-repeat;}.customformradiorowbelow .customformradiorowinputbelow {height: 40px;}span.customformlabelfull{font-weight:bold;font-size:17px;}.customformradiorowbelow label{position: absolute;margin-top: 6px;margin-left:45px;text-overflow: ellipsis;}li.customformrowbelow select{width:100%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.customformrowcheckboxright{position:relative;overflow:hidden;border-top:1px solid #878787;height: 40px;padding:5px 9px}.customformrowcheckboxright .customformlabel {left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;line-height:44px;overflow:hidden}.customformrowcheckboxright input[type=\"checkbox\"]{position: absolute;height: 40px;width: 35px;right:0;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOff.png)no-repeat;-webkit-appearance:none;border:0;margin:4px 4px 0 0}.customformrowcheckboxright input[type=\"checkbox\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOn.png) no-repeat;}.customformrowcheckboxleft{position:relative;overflow:hidden;border-top:1px solid #878787;height: 40px;padding:5px 9px}.customformrowcheckboxleft .customformlabel {margin-left:40px;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;line-height:44px;overflow:hidden}.customformrowcheckboxleft input[type=\"checkbox\"]{position: absolute;height: 40px;width: 35px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOff.png)no-repeat;-webkit-appearance:none;border:0;margin:4px 4px 0 0}.customformrowcheckboxleft input[type=\"checkbox\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOn.png) no-repeat;} .directions {background:#2BFF1C;color:#000000;border-color:#04BF04;border-width:1px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.directions .button input {background:#04BF04;color:#000000;}.clear {clear: both;}.ezmbphone {margin-left: auto;margin-right: auto;text-align: center;}.ezmbphoneimg {margin-left: auto;margin-right: auto;text-align: center;}.phonebtnimg {margin-left: auto;margin-right: auto;text-align: center;}.phonebtn, .phonebtn:visited {background:#04BF04;color:#FFFFFF;border-color:#04BF04;border-width:px;border-style:None;-webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.6);text-shadow: 0 -1px 1px rgba(0,0,0,0.25);border-bottom: 1px solid rgba(0,0,0,0.25);display: inline-block; padding: 5px 10px 6px; text-decoration: none;border-radius: 10px;position: relative;cursor: pointer;font-weight:bold;}.ezmbfooter {Background:#04BF04;margin:0;}.ezmbfooter p {margin:0;}.textbox{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.searchbox{height:44px;background:-webkit-gradient(linear,0% 0%,0% 100%,from(#f1f3f4),color-stop(3%,#e0e4e7),color-stop(50%,#c7cfd4),color-stop(51%,#bec7cd),color-stop(97%,#b4bec6),to(#8999a5));width:100%;margin:-13px 0 13px}.searchbox form{height:24px;border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/searchfield.png) 4 14 1 24;display:block;position:relative;top:8px;border-width:4px 14px 1px 24px;margin:auto}fieldset{border:0;margin:0;padding:0}.searchbox input[type=\"text\"]{border:0;-webkit-appearance:none;height:18px;float:left;font-size:13px;position:relative;top:2px;left:2px;padding:0}.textbox img{max-width:100%}.textbox p{margin-top:2px;color:#000;margin-bottom:2px;text-align:justify}.textbox ul{list-style:circle!important;margin:3px 0}.textbox li{margin:0!important}.menulist li:first-child,.menulist li.form:first-child{border-top:0}.menu,.checkbox,.radiobutton,.select,li.button,li.bigfield,li.smallfield,li.searchsmallfield,li.optinsmallfield,li.contactsmallfield,li.mapsmallfield{position:relative;list-style-type:none;display:block;height:43px;overflow:hidden;border-top:1px solid #878787;border-top:1px solid #878787;width:auto}.menulist li:first-child:hover,.menulist li:first-child a,.radiobutton:first-child input,.select:first-child select,li.button:first-child input,.bigfield:first-child input{border-top-left-radius:8px;border-top-right-radius:8px}.menulist li:last-child:hover,.menulist li:last-child a,.radiobutton:last-child input,.select:last-child select,li.button:last-child input,.bigfield:last-child input{border-bottom-left-radius:8px;border-bottom-right-radius:8px}.menu:hover,.store:hover,.list #content li a:hover,.list .withimage:hover,.applist li:hover:nth-child(n),.ipodlist li:hover:nth-child(n){background:#015FE6;color:#FFFFFF;}.menu a:hover .comment{color:#FFFFFF;}.menu a{display:block;height:43px;width:auto;text-decoration:none}.menu a img{width:auto;height:32px;float:left;margin:5px 0 0 5px}.menu .name,.checkbox .name,.radiobutton .name{width:auto;font-weight:bold;font-size:17px;color:#000000;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;float:left;margin:11px 0 0 7px}.menu-item{position:relative;list-style-type:none;display:block;height:43px;overflow:hidden;border-top:1px solid #878787;border-top:1px solid #878787;width:auto}.menu-item a{display:block;height:43px;width:auto;text-decoration:none}.menu-item a img{width:auto;height:32px;float:left;margin:5px 0 0 5px}.menu-item .name,.checkbox .name,.radiobutton .name{width:auto;font-weight:bold;font-size:17px;color:#000000;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;float:left;margin:11px 0 0 7px}.menu-item:hover{background:#015FE6;color:#FFFFFF;}.menu-item a:hover .comment{color:#FFFFFF;}.menu-item .comment{width:auto;font-size:17px;text-overflow:ellipsis;overflow:hidden;max-width:75%;white-space:nowrap;float:right;color:#324f85;margin:11px 30px 0 0}.menu-item .arrow{position:absolute;width:24px!important;height:24px!important;right:10px;top:12px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/arrows/LightBigArrow_Transparent.png) 0 0 no-repeat;margin:0!important}.menu-item .arrowleft{float:left;width:24px!important;height:24px!important;left:10px;top:12px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/arrows/LightBigArrow_Transparent.png) 0 0 no-repeat;margin:0!important}.menu-item a:hover .name{color:#FFFFFF;}.menu .comment{width:auto;font-size:17px;text-overflow:ellipsis;overflow:hidden;max-width:75%;white-space:nowrap;float:right;color:#324f85;margin:11px 30px 0 0}.menu .arrow,.store .arrow,.musiclist .arrow,.list .arrow{position:absolute;width:24px!important;height:24px!important;right:10px;top:12px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/arrows/LightBigArrow_Transparent.png) 0 0 no-repeat;margin:0!important}.menu .arrowleft,.store .arrowleft,.musiclist .arrowleft,.list .arrowleft{float:left;width:24px!important;height:24px!important;left:10px;top:12px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/arrows/LightBigArrow_Transparent.png) 0 0 no-repeat;margin:0!important}#leftnav,#leftbutton{position:absolute;font-size:12px;left:9px;font-weight:bold}#leftnav,#leftbutton,#rightnav,#rightbutton{z-index:5000}#leftnav a,#rightnav a,#leftbutton a,#rightbutton a{display:block;color:#fff;text-shadow:rgba(0,0,0,0.6) 0 -1px 0;text-decoration:none}.black #leftnav a:first-child,.transparent #leftnav a:first-child{border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleftblack.png) 0 5 0 13-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleftblack.png) 0 5 0 13-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleftblack.png) 0 5 0 13-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleftblack.png) 0 5 0 13}.black #leftnav a,.transparent #leftnav a{border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleftblack.png) 0 5 0 13-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleftblack.png) 0 5 0 13-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleftblack.png) 0 5 0 13-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleftblack.png) 0 5 0 13}.black #rightnav a:first-child,.transparent #rightnav a:first-child{-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navrightblack.png) 0 13 0 5-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navrightblack.png) 0 13 0 5-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navrightblack.png) 0 13 0 5-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navrightblack.png) 0 13 0 5}.black #rightnav a,.transparent #rightnav a{-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkrightblack.png) 0 13 0 5-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkrightblack.png) 0 13 0 5-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkrightblack.png) 0 13 0 5-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkrightblack.png) 0 13 0 5}.black #leftbutton a,.black #rightbutton a,.transparent #leftbutton a,.transparent #rightbutton a{border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbuttonblack.png) 0 5 0 5-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbuttonblack.png) 0 5 0 5-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbuttonblack.png) 0 5 0 5-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbuttonblack.png) 0 5 0 5}#leftnav a:first-child{z-index:2;border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleft_std.png) 0 5 0 13;-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleft_std.png) 0 5 0 13;-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleft_std.png) 0 5 0 13;-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleft_std.png) 0 5 0 13;width:auto;border-width:0 5px 0 13px;border-radius:16px 6px 6px 16px}#leftnav a{border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleft.png) 0 5 0 13;-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleft.png) 0 5 0 13;-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleft.png) 0 5 0 13;-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleft.png) 0 5 0 13;z-index:3;margin-left:-4px;padding-right:4px;float:left;border-width:0 5px 0 13px;border-radius:16px 6px 6px 16px}#rightnav,#rightbutton{position:absolute;font-size:12px;right:9px;font-weight:bold}#rightnav a{border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkright.png) 0 13 0 5;-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkright.png) 0 13 0 5;-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkright.png) 0 13 0 5;-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkright.png) 0 13 0 5;z-index:3;margin-right:-4px;padding-left:4px;float:right;border-width:0 13px 0 5px;border-radius:6px 16px 16px 6px}#rightnav a:first-child{z-index:2;border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navright_std.png) 0 13 0 5;-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navright_std.png) 0 13 0 5;-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navright_std.png) 0 13 0 5;-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navright_std.png) 0 13 0 5;border-width:0 13px 0 5px;border-radius:6px 16px 16px 6px}#leftbutton a,#rightbutton a{border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbutton_std.png) 0 5 0 5;-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbutton_std.png) 0 5 0 5;-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbutton_std.png) 0 5 0 5;-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbutton_std.png) 0 5 0 5;border-width:0 5px;border-radius:6px}.gform_body ul { list-style-type: none; }.radiobutton .name{z-index:1}.select select{color:#000;font-weight:bold;font-size:17px;border-radius:0}.select option{max-width:90%}.select .arrow{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/arrow.png);width:8px;height:13px;display:block;-webkit-transform:rotate(90deg);position:absolute;right:10px;top:18px}.button input{width:100%;height:100%;-webkit-appearance:none;border:0;font-weight:bold;font-size:17px;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;background:none;border-radius:0}.textbox textarea{margin-top:5px;font-size:medium;padding:0}.bigfield input{-webkit-appearance:none;border:0;height:100%;background:transparent;font-weight:bold;font-size:17px;padding:0 0 0 5px;border-radius:0}.smallfield .name{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;line-height:44px;font-size:17px;padding-left:5px;overflow:hidden}.smallfield input{width:50%;position:absolute;right:0;height:44px;-webkit-appearance:none;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.smallfield:first-child input{border-top-right-radius:8px}.smallfield:last-child input{border-bottom-right-radius:8px}.searchsmallfield .name{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;line-height:44px;font-size:17px;padding-left:5px;overflow:hidden}.searchsmallfield input{width:50%;position:absolute;right:0;height:44px;-webkit-appearance:none;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.searchsmallfield:first-child input{border-top-right-radius:8px}.searchsmallfield:last-child input{border-bottom-right-radius:8px}.optinsmallfield .name{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;line-height:44px;font-size:17px;padding-left:5px;overflow:hidden}.optinsmallfield input{width:50%;position:absolute;right:0;height:44px;-webkit-appearance:none;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.optinsmallfield:first-child input{border-top-right-radius:8px}.optinsmallfield:last-child input{border-bottom-right-radius:8px}.contactsmallfield .name{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;line-height:44px;font-size:17px;padding-left:5px;overflow:hidden}.contactsmallfield input{width:50%;position:absolute;right:0;height:44px;-webkit-appearance:none;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.contactsmallfield:first-child input{border-top-right-radius:8px}.contactsmallfield:last-child input{border-bottom-right-radius:8px}.mapsmallfield .name{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;line-height:44px;font-size:17px;padding-left:5px;overflow:hidden}.mapsmallfield input{width:50%;position:absolute;right:0;height:44px;-webkit-appearance:none;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.mapsmallfield:first-child input{border-top-right-radius:8px}.mapsmallfield:last-child input{border-bottom-right-radius:8px}img,#duobutton a:last-child,#duoselectionbuttons a:first-child,.ipodlist li:hover:nth-child(n) .name,.ipodlist li:hover:nth-child(n) .time{border:0}#triselectionbuttons a:hover,#triselectionbuttons a#pressed,#duoselectionbuttons a:hover,#duoselectionbuttons a#pressed,li#doublead:hover{background:none}.menu a:hover .name,.store:hover .starcomment,.store:hover .name,.store:hover .comment,.list .withimage a:hover .comment,.list #content li a:hover{color:#FFFFFF;}@media screen and (max-width:320px) {#topbar{height:44px}#logo{max-width:320px;width:100%;}#title{line-height:44px;height:44px;font-size:16pt;}.searchbox form{width:272px}.searchbox input[type=\"text\"]{width:275px}.menu .name{max-width:77%}#leftnav a,#rightnav a,#leftbutton a,#rightbutton a{line-height:30px;height:30px}#leftnav img,#rightnav img{margin-top:4px}.textbox textarea{width:85%;}.customformtextbox textarea{width:85%;}.bigfield input{width:295px}.checkbox .name,.radiobutton .name{max-width:190px}#leftnav,#leftbutton,#rightnav,#rightbutton{top:7px}}@media screen and (min-width:321px) {#topbar{height:32px}#title{line-height:32px;height:32px;font-size:13pt}.menu .name{max-width:85%}#leftnav a,#rightnav a,#leftbutton a,#rightbutton a{line-height:24px;height:24px}#leftnav img,#rightnav img{margin-top:4px;height:70%}.textbox textarea{width:85%;}.customformtextbox textarea{width:85%;}#doublead{width:350px!important}.searchbox form{width:432px}.searchbox input[type=\"text\"]{width:435px}.bigfield input{width:455px}.checkbox .name,.radiobutton .name{max-width:75%}#leftnav,#leftbutton,#rightnav,#rightbutton{top:4px}}</style>");
INSERT INTO `wp_postmeta` VALUES("1293", "118", "_WPMSGOPTION_ThemeCustomFormStyleCSS", "<style  type=\"text/css\" >.customform {background:#2BFF1C;color:#000000;border-color:#04BF04;border-width:1px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.customform .button input {background:#04BF04;color:#000000;}li.customformrow{position:relative;list-style-type:none;display:block;height:43px;overflow:hidden;border-top:1px solid #878787;border-top:1px solid #878787;width:auto}li.customformrowbelow{position:relative;list-style-type:none;display:block;height:43px;overflow:hidden;width:auto}p.customformrow{-webkit-margin-before: 0px;border-top:1px solid #878787;width:auto}.customformrow .customformlabel, .customformrow .customformlabelfull, .customformtextbox .customformlabel, .customformradiorow .customformlabel{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;padding-left:5px;overflow:hidden}.customformrow .customformlabel{line-height:44px;}.customformrow .customformlabelfull{line-height:44px;width:100%;height:auto;}.customformrow input {width:50%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.customformrowbelow input {width:100%;min-width:95%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}input.customformrowrequired{background: #ff8080;}.customformrow input:not([type=\'checkbox\']) {-webkit-appearance:none;}.customformrow select{width:50%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.customformrow:first-child input{border-top-right-radius:8px}.customformrow:last-child input{border-bottom-right-radius:8px}.customformtextbox{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.customformtextbox img{max-width:100%}.customformtextbox p{margin-top:2px;color:#000;margin-bottom:2px;text-align:justify}.customformtextbox ul{list-style:circle!important;margin:3px 0}.customformtextbox li{margin:0!important}.customformtextbox textarea{margin-top:5px;font-size:medium;padding:0}.customformradiorow{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.customformrow input[type=\"checkbox\"]{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOff.png)no-repeat;-webkit-appearance:none;border:0;margin:4px 4px 0 0}.customformrow input[type=\"checkbox\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOn.png)no-repeat;}.customformradiorow input[type=\"radio\"]{-webkit-appearance:none;border:0;width:100%;height: 43px;z-index:2;position:absolute;left:50%;margin:0;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOff.png) no-repeat;-webkit-border-radius:0}.customformradiorow input[type=\"radio\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOn.png) no-repeat;}.customformradiorow .customformradiorowinput {height: 40px;}.customformradiorow label{position: absolute;margin-top: 6px;margin-left:60%;text-overflow: ellipsis;}.customformradiorowbelow{position:relative;overflow:hidden;padding:5px 9px}.customformradiorowbelowlabel{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.customformradiorowbelowlabel .customformlabel{left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;padding-left:5px;overflow:hidden}.customformradiorowbelow input[type=\"radio\"]{-webkit-appearance:none;border:0;width:100%;height: 43px;z-index:2;position:absolute;left:10px;margin:0;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOff.png) no-repeat;-webkit-border-radius:0}.customformradiorowbelow input[type=\"radio\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOn.png) no-repeat;}.customformradiorowbelow .customformradiorowinputbelow {height: 40px;}span.customformlabelfull{font-weight:bold;font-size:17px;}.customformradiorowbelow label{position: absolute;margin-top: 6px;margin-left:45px;text-overflow: ellipsis;}li.customformrowbelow select{width:100%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.customformrowcheckboxright{position:relative;overflow:hidden;border-top:1px solid #878787;height: 40px;padding:5px 9px}.customformrowcheckboxright .customformlabel {left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;line-height:44px;overflow:hidden}.customformrowcheckboxright input[type=\"checkbox\"]{position: absolute;height: 40px;width: 35px;right:0;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOff.png)no-repeat;-webkit-appearance:none;border:0;margin:4px 4px 0 0}.customformrowcheckboxright input[type=\"checkbox\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOn.png) no-repeat;}.customformrowcheckboxleft{position:relative;overflow:hidden;border-top:1px solid #878787;height: 40px;padding:5px 9px}.customformrowcheckboxleft .customformlabel {margin-left:40px;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;line-height:44px;overflow:hidden}.customformrowcheckboxleft input[type=\"checkbox\"]{position: absolute;height: 40px;width: 35px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOff.png)no-repeat;-webkit-appearance:none;border:0;margin:4px 4px 0 0}.customformrowcheckboxleft input[type=\"checkbox\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOn.png) no-repeat;}</style>");
INSERT INTO `wp_postmeta` VALUES("1294", "119", "_WPMSGOPTION_PageBackgroundColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1295", "119", "_WPMSGOPTION_LogoBackgroundColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1296", "119", "_WPMSGOPTION_FooterBackgroundColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1297", "119", "_WPMSGOPTION_ParagraphTextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("1298", "119", "_WPMSGOPTION_ParagraphTextSize", "");
INSERT INTO `wp_postmeta` VALUES("1299", "119", "_WPMSGOPTION_BackgroundImage", "");
INSERT INTO `wp_postmeta` VALUES("1300", "119", "_WPMSGOPTION_BackgroundImageRepeat", "repeat");
INSERT INTO `wp_postmeta` VALUES("1301", "119", "_WPMSGOPTION_BackgroundImagePosition", "lefttop");
INSERT INTO `wp_postmeta` VALUES("1302", "119", "_WPMSGOPTION_TopbarStartColor", "202020");
INSERT INTO `wp_postmeta` VALUES("1303", "119", "_WPMSGOPTION_TopbarEndColor", "858585");
INSERT INTO `wp_postmeta` VALUES("1304", "119", "_WPMSGOPTION_TopbarTextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("1305", "119", "_WPMSGOPTION_TopbarButtonColor", "std");
INSERT INTO `wp_postmeta` VALUES("1306", "119", "_WPMSGOPTION_H1TextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("1307", "119", "_WPMSGOPTION_H1TextSize", "");
INSERT INTO `wp_postmeta` VALUES("1308", "119", "_WPMSGOPTION_H1TextShadow", "");
INSERT INTO `wp_postmeta` VALUES("1309", "119", "_WPMSGOPTION_H2TextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("1310", "119", "_WPMSGOPTION_H2TextSize", "");
INSERT INTO `wp_postmeta` VALUES("1311", "119", "_WPMSGOPTION_H2TextShadow", "");
INSERT INTO `wp_postmeta` VALUES("1312", "119", "_WPMSGOPTION_H3TextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("1313", "119", "_WPMSGOPTION_H3TextSize", "");
INSERT INTO `wp_postmeta` VALUES("1314", "119", "_WPMSGOPTION_H3TextShadow", "");
INSERT INTO `wp_postmeta` VALUES("1315", "119", "_WPMSGOPTION_H4TextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("1316", "119", "_WPMSGOPTION_H4TextSize", "");
INSERT INTO `wp_postmeta` VALUES("1317", "119", "_WPMSGOPTION_H4TextShadow", "");
INSERT INTO `wp_postmeta` VALUES("1318", "119", "_WPMSGOPTION_H5TextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("1319", "119", "_WPMSGOPTION_H5TextSize", "");
INSERT INTO `wp_postmeta` VALUES("1320", "119", "_WPMSGOPTION_H5TextShadow", "");
INSERT INTO `wp_postmeta` VALUES("1321", "119", "_WPMSGOPTION_H6TextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("1322", "119", "_WPMSGOPTION_H6TextSize", "");
INSERT INTO `wp_postmeta` VALUES("1323", "119", "_WPMSGOPTION_H6TextShadow", "");
INSERT INTO `wp_postmeta` VALUES("1324", "119", "_WPMSGOPTION_MenuBackgroundColor", "FF0800");
INSERT INTO `wp_postmeta` VALUES("1325", "119", "_WPMSGOPTION_IconTextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("1326", "119", "_WPMSGOPTION_MenuTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1327", "119", "_WPMSGOPTION_MenuTextSize", "");
INSERT INTO `wp_postmeta` VALUES("1328", "119", "_WPMSGOPTION_MenuBorderColor", "FF0800");
INSERT INTO `wp_postmeta` VALUES("1329", "119", "_WPMSGOPTION_MenuBorderWidth", "1");
INSERT INTO `wp_postmeta` VALUES("1330", "119", "_WPMSGOPTION_MenuBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("1331", "119", "_WPMSGOPTION_MenuOpacity", "1");
INSERT INTO `wp_postmeta` VALUES("1332", "119", "_WPMSGOPTION_MenuArrowImage", "LightBigArrow");
INSERT INTO `wp_postmeta` VALUES("1333", "119", "_WPMSGOPTION_MenuArrowColor", "Transparent");
INSERT INTO `wp_postmeta` VALUES("1334", "119", "_WPMSGOPTION_MenuSelectedBackgroundColor", "015FE6");
INSERT INTO `wp_postmeta` VALUES("1335", "119", "_WPMSGOPTION_MenuSelectedTextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("1336", "119", "_WPMSGOPTION_MenuSeparatorColor", "878787");
INSERT INTO `wp_postmeta` VALUES("1337", "119", "_WPMSGOPTION_BlockquoteBackgroundColor", "D40700");
INSERT INTO `wp_postmeta` VALUES("1338", "119", "_WPMSGOPTION_BlockquoteTextColor", "FCFC0F");
INSERT INTO `wp_postmeta` VALUES("1339", "119", "_WPMSGOPTION_BlockquoteTextSize", "");
INSERT INTO `wp_postmeta` VALUES("1340", "119", "_WPMSGOPTION_BlockquoteBorderColor", "FF0800");
INSERT INTO `wp_postmeta` VALUES("1341", "119", "_WPMSGOPTION_BlockquoteBorderWidth", "1");
INSERT INTO `wp_postmeta` VALUES("1342", "119", "_WPMSGOPTION_BlockquoteBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("1343", "119", "_WPMSGOPTION_TableBackgroundColor", "D40700");
INSERT INTO `wp_postmeta` VALUES("1344", "119", "_WPMSGOPTION_TableTextColor", "FCFC0F");
INSERT INTO `wp_postmeta` VALUES("1345", "119", "_WPMSGOPTION_TableTextSize", "");
INSERT INTO `wp_postmeta` VALUES("1346", "119", "_WPMSGOPTION_TableBorderColor", "FF0800");
INSERT INTO `wp_postmeta` VALUES("1347", "119", "_WPMSGOPTION_TableBorderWidth", "1");
INSERT INTO `wp_postmeta` VALUES("1348", "119", "_WPMSGOPTION_TableBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("1349", "119", "_WPMSGOPTION_TableWidth", "95");
INSERT INTO `wp_postmeta` VALUES("1350", "119", "_WPMSGOPTION_TablePadding", "2");
INSERT INTO `wp_postmeta` VALUES("1351", "119", "_WPMSGOPTION_ClickToCallBackgroundColor", "FF0800");
INSERT INTO `wp_postmeta` VALUES("1352", "119", "_WPMSGOPTION_ClickToCallTextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("1353", "119", "_WPMSGOPTION_ClickToCallTextSize", "");
INSERT INTO `wp_postmeta` VALUES("1354", "119", "_WPMSGOPTION_ClickToCallBorderColor", "04BF04");
INSERT INTO `wp_postmeta` VALUES("1355", "119", "_WPMSGOPTION_ClickToCallBorderWidth", "");
INSERT INTO `wp_postmeta` VALUES("1356", "119", "_WPMSGOPTION_ClickToCallBorderStyle", "None");
INSERT INTO `wp_postmeta` VALUES("1357", "119", "_WPMSGOPTION_OptinFormBackgroundColor", "FF0800");
INSERT INTO `wp_postmeta` VALUES("1358", "119", "_WPMSGOPTION_OptinFormInputBackgroundColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("1359", "119", "_WPMSGOPTION_OptinFormSubmitBackgroundColor", "FCFC0F");
INSERT INTO `wp_postmeta` VALUES("1360", "119", "_WPMSGOPTION_OptinFormSubmitTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1361", "119", "_WPMSGOPTION_OptinFormTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1362", "119", "_WPMSGOPTION_OptinFormTextSize", "");
INSERT INTO `wp_postmeta` VALUES("1363", "119", "_WPMSGOPTION_OptinFormBorderColor", "FF0800");
INSERT INTO `wp_postmeta` VALUES("1364", "119", "_WPMSGOPTION_OptinFormBorderWidth", "1");
INSERT INTO `wp_postmeta` VALUES("1365", "119", "_WPMSGOPTION_OptinFormBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("1366", "119", "_WPMSGOPTION_ContactFormBackgroundColor", "FF0800");
INSERT INTO `wp_postmeta` VALUES("1367", "119", "_WPMSGOPTION_ContactFormInputBackgroundColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("1368", "119", "_WPMSGOPTION_ContactFormSubmitBackgroundColor", "FCFC0F");
INSERT INTO `wp_postmeta` VALUES("1369", "119", "_WPMSGOPTION_ContactFormSubmitTextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("1370", "119", "_WPMSGOPTION_ContactFormTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1371", "119", "_WPMSGOPTION_ContactFormTextSize", "");
INSERT INTO `wp_postmeta` VALUES("1372", "119", "_WPMSGOPTION_ContactFormBorderColor", "FF0800");
INSERT INTO `wp_postmeta` VALUES("1373", "119", "_WPMSGOPTION_ContactFormBorderWidth", "1");
INSERT INTO `wp_postmeta` VALUES("1374", "119", "_WPMSGOPTION_ContactFormBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("1375", "119", "_WPMSGOPTION_DirectionsBackgroundColor", "FF0800");
INSERT INTO `wp_postmeta` VALUES("1376", "119", "_WPMSGOPTION_DirectionsInputBackgroundColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("1377", "119", "_WPMSGOPTION_DirectionsSubmitBackgroundColor", "FCFC0F");
INSERT INTO `wp_postmeta` VALUES("1378", "119", "_WPMSGOPTION_DirectionsSubmitTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1379", "119", "_WPMSGOPTION_DirectionsTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1380", "119", "_WPMSGOPTION_DirectionsTextSize", "");
INSERT INTO `wp_postmeta` VALUES("1381", "119", "_WPMSGOPTION_DirectionsBorderColor", "FF0800");
INSERT INTO `wp_postmeta` VALUES("1382", "119", "_WPMSGOPTION_DirectionsBorderWidth", "1");
INSERT INTO `wp_postmeta` VALUES("1383", "119", "_WPMSGOPTION_DirectionsBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("1384", "119", "_WPMSGOPTION_SlideshowBackgroundColor", "FF0800");
INSERT INTO `wp_postmeta` VALUES("1385", "119", "_WPMSGOPTION_SlideshowTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1386", "119", "_WPMSGOPTION_SlideshowTextSize", "");
INSERT INTO `wp_postmeta` VALUES("1387", "119", "_WPMSGOPTION_SlideshowBorderColor", "FCFC0F");
INSERT INTO `wp_postmeta` VALUES("1388", "119", "_WPMSGOPTION_SlideshowBorderWidth", "");
INSERT INTO `wp_postmeta` VALUES("1389", "119", "_WPMSGOPTION_SlideshowBorderStyle", "None");
INSERT INTO `wp_postmeta` VALUES("1390", "119", "_WPMSGOPTION_AccordianTitleBackgroundColor", "FF0800");
INSERT INTO `wp_postmeta` VALUES("1391", "119", "_WPMSGOPTION_AccordianTitleTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1392", "119", "_WPMSGOPTION_AccordianTitleTextSize", "");
INSERT INTO `wp_postmeta` VALUES("1393", "119", "_WPMSGOPTION_AccordianTitleSelectedBackgroundColor", "015FE6");
INSERT INTO `wp_postmeta` VALUES("1394", "119", "_WPMSGOPTION_AccordianTitleSelectedTextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("1395", "119", "_WPMSGOPTION_AccordianBackgroundColor", "D40700");
INSERT INTO `wp_postmeta` VALUES("1396", "119", "_WPMSGOPTION_AccordianTextColor", "FCFC0F");
INSERT INTO `wp_postmeta` VALUES("1397", "119", "_WPMSGOPTION_AccordianTextSize", "");
INSERT INTO `wp_postmeta` VALUES("1398", "119", "_WPMSGOPTION_AccordianSeparatorColor", "878787");
INSERT INTO `wp_postmeta` VALUES("1399", "119", "_WPMSGOPTION_AccordianBorderColor", "FF0800");
INSERT INTO `wp_postmeta` VALUES("1400", "119", "_WPMSGOPTION_AccordianBorderWidth", "1");
INSERT INTO `wp_postmeta` VALUES("1401", "119", "_WPMSGOPTION_AccordianBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("1402", "119", "_WPMSGOPTION_AccordianArrowImage", "LightTriangle");
INSERT INTO `wp_postmeta` VALUES("1403", "119", "_WPMSGOPTION_AccordianArrowColor", "Transparent");
INSERT INTO `wp_postmeta` VALUES("1404", "119", "_WPMSGOPTION_CouponBackgroundColor", "FF0800");
INSERT INTO `wp_postmeta` VALUES("1405", "119", "_WPMSGOPTION_CouponTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1406", "119", "_WPMSGOPTION_CouponTextSize", "");
INSERT INTO `wp_postmeta` VALUES("1407", "119", "_WPMSGOPTION_CouponBorderColor", "FCFC0F");
INSERT INTO `wp_postmeta` VALUES("1408", "119", "_WPMSGOPTION_CouponBorderWidth", "2");
INSERT INTO `wp_postmeta` VALUES("1409", "119", "_WPMSGOPTION_CouponBorderStyle", "Dashed");
INSERT INTO `wp_postmeta` VALUES("1410", "119", "_WPMSGOPTION_SearchBackgroundColor", "FF0800");
INSERT INTO `wp_postmeta` VALUES("1411", "119", "_WPMSGOPTION_SearchTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1412", "119", "_WPMSGOPTION_SearchTextSize", "");
INSERT INTO `wp_postmeta` VALUES("1413", "119", "_WPMSGOPTION_SearchBorderColor", "FCFC0F");
INSERT INTO `wp_postmeta` VALUES("1414", "119", "_WPMSGOPTION_SearchBorderWidth", "2");
INSERT INTO `wp_postmeta` VALUES("1415", "119", "_WPMSGOPTION_SearchBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("1416", "119", "_WPMSGOPTION_SearchInputBackgroundColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("1417", "119", "_WPMSGOPTION_SearchSubmitBackgroundColor", "FCFC0F");
INSERT INTO `wp_postmeta` VALUES("1418", "119", "_WPMSGOPTION_SearchSubmitTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1419", "119", "_WPMSGOPTION_SearchSelectedBackgroundColor", "015FE6");
INSERT INTO `wp_postmeta` VALUES("1420", "119", "_WPMSGOPTION_SearchSelectedTextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("1421", "119", "_WPMSGOPTION_SearchHighlightColor", "FFFF00");
INSERT INTO `wp_postmeta` VALUES("1422", "119", "_WPMSGOPTION_RssBackgroundColor", "FF0800");
INSERT INTO `wp_postmeta` VALUES("1423", "119", "_WPMSGOPTION_RssTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1424", "119", "_WPMSGOPTION_RssTextSize", "");
INSERT INTO `wp_postmeta` VALUES("1425", "119", "_WPMSGOPTION_RssBorderColor", "FCFC0F");
INSERT INTO `wp_postmeta` VALUES("1426", "119", "_WPMSGOPTION_RssBorderWidth", "2");
INSERT INTO `wp_postmeta` VALUES("1427", "119", "_WPMSGOPTION_RssBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("1428", "119", "_WPMSGOPTION_RssSelectedBackgroundColor", "015FE6");
INSERT INTO `wp_postmeta` VALUES("1429", "119", "_WPMSGOPTION_RssSelectedTextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("1430", "119", "_WPMSGOPTION_ThemeStyleCSS", "<style  type=\"text/css\" >body{position:relative;-webkit-text-size-adjust:none;min-height:416px;{--wpmsgtknsinglepageminimumheight--}font-family:helvetica,sans-serif;-webkit-background-size:.438em 100%;Background:#000000;-webkit-touch-callout:none;margin:0;margin-right:auto; margin-left:auto;}img.alignright {float:right; max-width:100%; margin:0 0 1em 1em}img.alignleft {float:left; max-width:100%; margin:0 1em 1em 0}img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}a img.alignright {float:right; max-width:100%; margin:0 0 1em 1em}a img.alignleft {float:left; max-width:100%; margin:0 1em 1em 0}a img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}#accordion {background:#D40700;border-color:#FF0800;border-width:1px;border-style:Solid;margin:5px 5px 5px 5px;border-radius:8px}#accordion H2 {padding-top: 5pxpadding-bottom: 5px; padding-left: 15px; padding-right: 15px; margin: 0px 0px 0px 0px; background:#FF0800;font-size:17px;color:#000000;cursor: pointer; height:43px;overflow:hidden;border-top:1px solid #878787;font-weight: bold; line-height: 40px;}#accordion H2:first-child{border-top:none;border-radius:8px}#accordion H2:last-child{border-bottom-left-radius:8px;border-bottom-right-radius:8px}#accordion H2.current {background-color:#015FE6; color:#FFFFFF; cursor: default}#accordion div.acchead {padding-top: 5pxpadding-bottom: 5px; padding-left: 15px; padding-right: 15px; margin: 0px 0px 0px 0px; font-weight:bold;font-size:17px;background:#FF0800;font-size:17px;color:#000000;cursor: pointer; height:43px;overflow:hidden;border-top:1px solid #878787;line-height: 40px;}#accordion div.acchead:first-child{border-top:none;border-top-left-radius:8px;border-top-right-radius:8px;}#accordion div.acchead.current {background-color:#015FE6; color:#FFFFFF; cursor: default}#accordion .pane {padding-top: 15pxpadding-bottom: 15px; padding-left: 15px; padding-right: 15px; display: none; color:#FCFC0F;border-bottom-left-radius:8px;border-bottom-right-radius:8px;}#accordion .acchead .accarrow {float: right;valign: center;width:24px!important;height:24px!important;right:10px;top:18px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/arrows/Down_LightTriangle_Transparent.png) 0 0 no-repeat;margin:0!important ;margin-top: 15px;padding-top: 15px;}.images {background:#FF0800;color:#000000;border-color:#FCFC0F;border-width:px;border-style:;{--wpmsgtknslideshowheight--}{--wpmsgtknslideshowwidth--}overflow:hidden;margin-left:auto;margin-right:auto;position:relative;cursor:pointer;-moz-border-radius:5px;-moz-box-shadow:0 0 25px #666;-webkit-border-radius:5px;-webkit-box-shadow:0 0 25px #666;border-radius:5px;box-shadow:0 0 25px #666;}.images div {display:none;position:absolute;top:0;left:0;width: 100%;}.images div p a img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}.images div p img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}.images div a img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}.images div img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}.images img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}.images h3 {font-size:22px;font-weight:normal;margin:0 0 20px 0;color:#456;}.slidetabs {clear:both;}.slidetabs a {width:8px;height:8px;float:left;margin:3px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navigator.png) 0 0 no-repeat;display:block;font-size:1px;}.slidetabs a:hover {background-position:0 -8px;}.slidetabs a.current {background-position:0 -16px; } .forward, .backward {float:left;background:#fff url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/hori_large.png) no-repeat;display:block;width:30px;height:30px;cursor:pointer;font-size:1px;text-indent:-9999em;}.forward { background-position: 0 -30px; clear:right; }.forward:hover { background-position:-30px -30px; }.forward:active{ background-position:-60px -30px; } .backward:hover{ background-position:-30px 0; }.backward:active{ background-position:-60px 0; }.disabled {visibility:hidden !important;}.gallery { list-style: none; padding: 0; margin: 0; }.gallery:after { clear: both; content: \".\"; display: block; height: 0; visibility: hidden; }.gallery li { float: left; width: 33.33333333%; }.gallery li a { display: block; margin: 5px; border: 1px solid #3c3c3c; }.gallery li img { display: block; width: 100%; height: auto; }.highlight { background:#FFFF00;}.highlight_important { background:#FFFF00;}.center{display:block;text-align:center!important;margin:auto}a:hover .arrow{background:0 -13px!important}#topbar.transparent{background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#202020), to(#858585));background-image: -webkit-linear-gradient(top, #202020, #858585);background-image:-moz-linear-gradient(top, #202020, #858585);background-image: -ms-linear-gradient(top, #202020, #858585);background-image:-o-linear-gradient(top, #202020, #858585);}#topbar{position:relative;left:0;top:0;width:auto;}#title{position:absolute;font-weight:bold;top:0;left:0;right:0;text-align:center;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;color:#FFF;color:#FFFFFF;text-shadow:rgba(0,0,0,0.6) 0 -1px 0;padding:0 10px;}#logo{Background:#000000;}#content{width:100%;position:relative;min-height:250px;{--wpmsgtknsinglepageminimumheight--}height:auto;z-index:0;overflow:hidden;{--wpmsgtknsinglepagebackgroundimage--}}p {padding:0 5px;color:#FFFFFF;}h1 {padding:0 5px;color:#FFFFFF;}h2 {padding:0 5px;color:#FFFFFF;}h3 {padding:0 5px;color:#FFFFFF;}h4 {padding:0 5px;color:#FFFFFF;}h5 {padding:0 5px;color:#FFFFFF;}h6 {padding:0 5px;color:#FFFFFF;}blockquote {background:#D40700;color:#FCFC0F;border-color:#FF0800;border-width:1px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 6px 10px;padding:0 5px;border-radius:8px}blockquote p {background:#D40700;color:#FCFC0F;}.ezmbfooter p {padding:0 5px;color:#FFFFFF;}.ezmbtable {width:95%;margin-left:auto;margin-right:auto;border-collapse:collapse;background:#D40700;color:#FCFC0F;border-color:#FF0800;border-width:1px;border-style:Solid;}.ezmbtable td {background:#D40700;color:#FCFC0F;border-color:#FF0800;border-width:1px;border-style:Solid;padding:2px;}.ezmbtable td p {background:#D40700;color:#FCFC0F;}.ezmbiconlist {color:#FFFFFF;}.menulist {background:#FF0800;color:#000000;border-color:#FF0800;border-width:1px;border-style:Solid;opacity:1;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.menulist span.name{color:#000000;text-decoration:none}.menulist span.menudesc{color:#FFFFFF;text-decoration:none}.menulist td a{text-decoration:none}.menulist td a img{vertical-align:text-top;text-decoration:none}.menulist td{vertical-align:text-top;}.searchlist {background:#FF0800;color:#000000;border-color:#FCFC0F;border-width:2px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.searchform {background:#FF0800;color:#000000;border-color:#FCFC0F;border-width:2px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.searchform .button input {background:#FCFC0F;color:#000000;}.searchlist:hover,{background:-webkit-gradient(linear,0% 0%,0% 100%,from(#058cf5),to(#015fe6))}.searchlist a:hover {background-color:#CCF}.searchlist li a:hover{background:#015FE6;}.searchlist a{display:block;height:43px;width:auto;text-decoration:none}.searchlist a img{width:auto;height:32px;float:left;margin:5px 0 0 5px}.searchlist .name{width:auto;font-weight:bold;font-size:17px;color:#000000;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;float:left;margin:11px 0 0 7px}.searchlist a:hover .name{color:#FFFFFF;}.searchlistsnippet{padding-left:5px;padding-right:5px;}.rssfeedlist {background:#FF0800;color:#000000;border-color:#FCFC0F;border-width:2px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.rssfeedlist:hover{background:-webkit-gradient(linear,0% 0%,0% 100%,from(#058cf5),to(#015fe6))}.rssfeedlist a:hover {background-color:#CCF}.rssfeedlist li a:hover{background-color:#015fe6}.rssfeedlist a{display:block;min-height:43px;width:auto;text-decoration:none}.rssfeedlist a img{width:auto;height:32px;float:left;margin:5px 0 0 5px}.rssfeedlist .name{width:auto;font-weight:bold;font-size:17px;color:#000000;float:left;margin:11px 0 0 7px}.rssfeedlist a:hover .name{color:#FFFFFF;}.rssfeedlistsnippet{padding-left:5px;padding-right:5px;}.ezmbcouponwidget {background:#FF0800;color:#000000;border-color:#FCFC0F;border-width:2px;border-style:Dashed;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.optinform {background:#FF0800;color:#000000;border-color:#FF0800;border-width:1px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.optinform .button input {background:#FCFC0F;color:#000000;}.contactform {background:#FF0800;color:#000000;border-color:#FF0800;border-width:1px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.contactform .button input {background:#FCFC0F;color:#FFFFFF;}.customform {background:#FF0800;color:#000000;border-color:#FF0800;border-width:1px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.customform .button input {background:#FCFC0F;color:#FFFFFF;}li.customformrow{position:relative;list-style-type:none;display:block;height:43px;overflow:hidden;border-top:1px solid #878787;border-top:1px solid #878787;width:auto}li.customformrowbelow{position:relative;list-style-type:none;display:block;height:43px;overflow:hidden;width:auto}p.customformrow{-webkit-margin-before: 0px;border-top:1px solid #878787;width:auto}.customformrow .customformlabel, .customformrow .customformlabelfull, .customformtextbox .customformlabel, .customformradiorow .customformlabel{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;padding-left:5px;overflow:hidden}.customformrow .customformlabel{line-height:44px;}.customformrow .customformlabelfull{line-height:44px;width:100%;height:auto;}.customformrow input {width:50%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.customformrowbelow input {width:100%;min-width:95%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}input.customformrowrequired{background: #ff8080;}.customformrow input:not([type=\'checkbox\']) {-webkit-appearance:none;}.customformrow select{width:50%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.customformrow:first-child input{border-top-right-radius:8px}.customformrow:last-child input{border-bottom-right-radius:8px}.customformtextbox{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.customformtextbox img{max-width:100%}.customformtextbox p{margin-top:2px;color:#000;margin-bottom:2px;text-align:justify}.customformtextbox ul{list-style:circle!important;margin:3px 0}.customformtextbox li{margin:0!important}.customformtextbox textarea{margin-top:5px;font-size:medium;padding:0}.customformradiorow{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.customformrow input[type=\"checkbox\"]{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOff.png)no-repeat;-webkit-appearance:none;border:0;margin:4px 4px 0 0}.customformrow input[type=\"checkbox\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOn.png)no-repeat;}.customformradiorow input[type=\"radio\"]{-webkit-appearance:none;border:0;width:100%;height: 43px;z-index:2;position:absolute;left:50%;margin:0;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOff.png) no-repeat;-webkit-border-radius:0}.customformradiorow input[type=\"radio\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOn.png) no-repeat;}.customformradiorow .customformradiorowinput {height: 40px;}.customformradiorow label{position: absolute;margin-top: 6px;margin-left:60%;text-overflow: ellipsis;}.customformradiorowbelow{position:relative;overflow:hidden;padding:5px 9px}.customformradiorowbelowlabel{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.customformradiorowbelowlabel .customformlabel{left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;padding-left:5px;overflow:hidden}.customformradiorowbelow input[type=\"radio\"]{-webkit-appearance:none;border:0;width:100%;height: 43px;z-index:2;position:absolute;left:10px;margin:0;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOff.png) no-repeat;-webkit-border-radius:0}.customformradiorowbelow input[type=\"radio\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOn.png) no-repeat;}.customformradiorowbelow .customformradiorowinputbelow {height: 40px;}span.customformlabelfull{font-weight:bold;font-size:17px;}.customformradiorowbelow label{position: absolute;margin-top: 6px;margin-left:45px;text-overflow: ellipsis;}li.customformrowbelow select{width:100%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.customformrowcheckboxright{position:relative;overflow:hidden;border-top:1px solid #878787;height: 40px;padding:5px 9px}.customformrowcheckboxright .customformlabel {left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;line-height:44px;overflow:hidden}.customformrowcheckboxright input[type=\"checkbox\"]{position: absolute;height: 40px;width: 35px;right:0;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOff.png)no-repeat;-webkit-appearance:none;border:0;margin:4px 4px 0 0}.customformrowcheckboxright input[type=\"checkbox\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOn.png) no-repeat;}.customformrowcheckboxleft{position:relative;overflow:hidden;border-top:1px solid #878787;height: 40px;padding:5px 9px}.customformrowcheckboxleft .customformlabel {margin-left:40px;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;line-height:44px;overflow:hidden}.customformrowcheckboxleft input[type=\"checkbox\"]{position: absolute;height: 40px;width: 35px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOff.png)no-repeat;-webkit-appearance:none;border:0;margin:4px 4px 0 0}.customformrowcheckboxleft input[type=\"checkbox\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOn.png) no-repeat;} .directions {background:#FF0800;color:#000000;border-color:#FF0800;border-width:1px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.directions .button input {background:#FCFC0F;color:#000000;}.clear {clear: both;}.ezmbphone {margin-left: auto;margin-right: auto;text-align: center;}.ezmbphoneimg {margin-left: auto;margin-right: auto;text-align: center;}.phonebtnimg {margin-left: auto;margin-right: auto;text-align: center;}.phonebtn, .phonebtn:visited {background:#FF0800;color:#FFFFFF;border-color:#04BF04;border-width:px;border-style:None;-webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.6);text-shadow: 0 -1px 1px rgba(0,0,0,0.25);border-bottom: 1px solid rgba(0,0,0,0.25);display: inline-block; padding: 5px 10px 6px; text-decoration: none;border-radius: 10px;position: relative;cursor: pointer;font-weight:bold;}.ezmbfooter {Background:#000000;margin:0;}.ezmbfooter p {margin:0;}.textbox{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.searchbox{height:44px;background:-webkit-gradient(linear,0% 0%,0% 100%,from(#f1f3f4),color-stop(3%,#e0e4e7),color-stop(50%,#c7cfd4),color-stop(51%,#bec7cd),color-stop(97%,#b4bec6),to(#8999a5));width:100%;margin:-13px 0 13px}.searchbox form{height:24px;border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/searchfield.png) 4 14 1 24;display:block;position:relative;top:8px;border-width:4px 14px 1px 24px;margin:auto}fieldset{border:0;margin:0;padding:0}.searchbox input[type=\"text\"]{border:0;-webkit-appearance:none;height:18px;float:left;font-size:13px;position:relative;top:2px;left:2px;padding:0}.textbox img{max-width:100%}.textbox p{margin-top:2px;color:#000;margin-bottom:2px;text-align:justify}.textbox ul{list-style:circle!important;margin:3px 0}.textbox li{margin:0!important}.menulist li:first-child,.menulist li.form:first-child{border-top:0}.menu,.checkbox,.radiobutton,.select,li.button,li.bigfield,li.smallfield,li.searchsmallfield,li.optinsmallfield,li.contactsmallfield,li.mapsmallfield{position:relative;list-style-type:none;display:block;height:43px;overflow:hidden;border-top:1px solid #878787;border-top:1px solid #878787;width:auto}.menulist li:first-child:hover,.menulist li:first-child a,.radiobutton:first-child input,.select:first-child select,li.button:first-child input,.bigfield:first-child input{border-top-left-radius:8px;border-top-right-radius:8px}.menulist li:last-child:hover,.menulist li:last-child a,.radiobutton:last-child input,.select:last-child select,li.button:last-child input,.bigfield:last-child input{border-bottom-left-radius:8px;border-bottom-right-radius:8px}.menu:hover,.store:hover,.list #content li a:hover,.list .withimage:hover,.applist li:hover:nth-child(n),.ipodlist li:hover:nth-child(n){background:#015FE6;color:#FFFFFF;}.menu a:hover .comment{color:#FFFFFF;}.menu a{display:block;height:43px;width:auto;text-decoration:none}.menu a img{width:auto;height:32px;float:left;margin:5px 0 0 5px}.menu .name,.checkbox .name,.radiobutton .name{width:auto;font-weight:bold;font-size:17px;color:#000000;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;float:left;margin:11px 0 0 7px}.menu-item{position:relative;list-style-type:none;display:block;height:43px;overflow:hidden;border-top:1px solid #878787;border-top:1px solid #878787;width:auto}.menu-item a{display:block;height:43px;width:auto;text-decoration:none}.menu-item a img{width:auto;height:32px;float:left;margin:5px 0 0 5px}.menu-item .name,.checkbox .name,.radiobutton .name{width:auto;font-weight:bold;font-size:17px;color:#000000;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;float:left;margin:11px 0 0 7px}.menu-item:hover{background:#015FE6;color:#FFFFFF;}.menu-item a:hover .comment{color:#FFFFFF;}.menu-item .comment{width:auto;font-size:17px;text-overflow:ellipsis;overflow:hidden;max-width:75%;white-space:nowrap;float:right;color:#324f85;margin:11px 30px 0 0}.menu-item .arrow{position:absolute;width:24px!important;height:24px!important;right:10px;top:12px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/arrows/LightBigArrow_Transparent.png) 0 0 no-repeat;margin:0!important}.menu-item .arrowleft{float:left;width:24px!important;height:24px!important;left:10px;top:12px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/arrows/LightBigArrow_Transparent.png) 0 0 no-repeat;margin:0!important}.menu-item a:hover .name{color:#FFFFFF;}.menu .comment{width:auto;font-size:17px;text-overflow:ellipsis;overflow:hidden;max-width:75%;white-space:nowrap;float:right;color:#324f85;margin:11px 30px 0 0}.menu .arrow,.store .arrow,.musiclist .arrow,.list .arrow{position:absolute;width:24px!important;height:24px!important;right:10px;top:12px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/arrows/LightBigArrow_Transparent.png) 0 0 no-repeat;margin:0!important}.menu .arrowleft,.store .arrowleft,.musiclist .arrowleft,.list .arrowleft{float:left;width:24px!important;height:24px!important;left:10px;top:12px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/arrows/LightBigArrow_Transparent.png) 0 0 no-repeat;margin:0!important}#leftnav,#leftbutton{position:absolute;font-size:12px;left:9px;font-weight:bold}#leftnav,#leftbutton,#rightnav,#rightbutton{z-index:5000}#leftnav a,#rightnav a,#leftbutton a,#rightbutton a{display:block;color:#fff;text-shadow:rgba(0,0,0,0.6) 0 -1px 0;text-decoration:none}.black #leftnav a:first-child,.transparent #leftnav a:first-child{border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleftblack.png) 0 5 0 13-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleftblack.png) 0 5 0 13-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleftblack.png) 0 5 0 13-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleftblack.png) 0 5 0 13}.black #leftnav a,.transparent #leftnav a{border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleftblack.png) 0 5 0 13-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleftblack.png) 0 5 0 13-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleftblack.png) 0 5 0 13-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleftblack.png) 0 5 0 13}.black #rightnav a:first-child,.transparent #rightnav a:first-child{-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navrightblack.png) 0 13 0 5-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navrightblack.png) 0 13 0 5-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navrightblack.png) 0 13 0 5-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navrightblack.png) 0 13 0 5}.black #rightnav a,.transparent #rightnav a{-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkrightblack.png) 0 13 0 5-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkrightblack.png) 0 13 0 5-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkrightblack.png) 0 13 0 5-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkrightblack.png) 0 13 0 5}.black #leftbutton a,.black #rightbutton a,.transparent #leftbutton a,.transparent #rightbutton a{border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbuttonblack.png) 0 5 0 5-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbuttonblack.png) 0 5 0 5-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbuttonblack.png) 0 5 0 5-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbuttonblack.png) 0 5 0 5}#leftnav a:first-child{z-index:2;border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleft_std.png) 0 5 0 13;-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleft_std.png) 0 5 0 13;-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleft_std.png) 0 5 0 13;-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleft_std.png) 0 5 0 13;width:auto;border-width:0 5px 0 13px;border-radius:16px 6px 6px 16px}#leftnav a{border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleft.png) 0 5 0 13;-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleft.png) 0 5 0 13;-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleft.png) 0 5 0 13;-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleft.png) 0 5 0 13;z-index:3;margin-left:-4px;padding-right:4px;float:left;border-width:0 5px 0 13px;border-radius:16px 6px 6px 16px}#rightnav,#rightbutton{position:absolute;font-size:12px;right:9px;font-weight:bold}#rightnav a{border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkright.png) 0 13 0 5;-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkright.png) 0 13 0 5;-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkright.png) 0 13 0 5;-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkright.png) 0 13 0 5;z-index:3;margin-right:-4px;padding-left:4px;float:right;border-width:0 13px 0 5px;border-radius:6px 16px 16px 6px}#rightnav a:first-child{z-index:2;border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navright_std.png) 0 13 0 5;-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navright_std.png) 0 13 0 5;-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navright_std.png) 0 13 0 5;-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navright_std.png) 0 13 0 5;border-width:0 13px 0 5px;border-radius:6px 16px 16px 6px}#leftbutton a,#rightbutton a{border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbutton_std.png) 0 5 0 5;-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbutton_std.png) 0 5 0 5;-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbutton_std.png) 0 5 0 5;-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbutton_std.png) 0 5 0 5;border-width:0 5px;border-radius:6px}.gform_body ul { list-style-type: none; }.radiobutton .name{z-index:1}.select select{color:#000;font-weight:bold;font-size:17px;border-radius:0}.select option{max-width:90%}.select .arrow{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/arrow.png);width:8px;height:13px;display:block;-webkit-transform:rotate(90deg);position:absolute;right:10px;top:18px}.button input{width:100%;height:100%;-webkit-appearance:none;border:0;font-weight:bold;font-size:17px;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;background:none;border-radius:0}.textbox textarea{margin-top:5px;font-size:medium;padding:0}.bigfield input{-webkit-appearance:none;border:0;height:100%;background:transparent;font-weight:bold;font-size:17px;padding:0 0 0 5px;border-radius:0}.smallfield .name{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;line-height:44px;font-size:17px;padding-left:5px;overflow:hidden}.smallfield input{width:50%;position:absolute;right:0;height:44px;-webkit-appearance:none;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.smallfield:first-child input{border-top-right-radius:8px}.smallfield:last-child input{border-bottom-right-radius:8px}.searchsmallfield .name{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;line-height:44px;font-size:17px;padding-left:5px;overflow:hidden}.searchsmallfield input{width:50%;position:absolute;right:0;height:44px;-webkit-appearance:none;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.searchsmallfield:first-child input{border-top-right-radius:8px}.searchsmallfield:last-child input{border-bottom-right-radius:8px}.optinsmallfield .name{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;line-height:44px;font-size:17px;padding-left:5px;overflow:hidden}.optinsmallfield input{width:50%;position:absolute;right:0;height:44px;-webkit-appearance:none;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.optinsmallfield:first-child input{border-top-right-radius:8px}.optinsmallfield:last-child input{border-bottom-right-radius:8px}.contactsmallfield .name{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;line-height:44px;font-size:17px;padding-left:5px;overflow:hidden}.contactsmallfield input{width:50%;position:absolute;right:0;height:44px;-webkit-appearance:none;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.contactsmallfield:first-child input{border-top-right-radius:8px}.contactsmallfield:last-child input{border-bottom-right-radius:8px}.mapsmallfield .name{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;line-height:44px;font-size:17px;padding-left:5px;overflow:hidden}.mapsmallfield input{width:50%;position:absolute;right:0;height:44px;-webkit-appearance:none;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.mapsmallfield:first-child input{border-top-right-radius:8px}.mapsmallfield:last-child input{border-bottom-right-radius:8px}img,#duobutton a:last-child,#duoselectionbuttons a:first-child,.ipodlist li:hover:nth-child(n) .name,.ipodlist li:hover:nth-child(n) .time{border:0}#triselectionbuttons a:hover,#triselectionbuttons a#pressed,#duoselectionbuttons a:hover,#duoselectionbuttons a#pressed,li#doublead:hover{background:none}.menu a:hover .name,.store:hover .starcomment,.store:hover .name,.store:hover .comment,.list .withimage a:hover .comment,.list #content li a:hover{color:#FFFFFF;}@media screen and (max-width:320px) {#topbar{height:44px}#logo{max-width:320px;width:100%;}#title{line-height:44px;height:44px;font-size:16pt;}.searchbox form{width:272px}.searchbox input[type=\"text\"]{width:275px}.menu .name{max-width:77%}#leftnav a,#rightnav a,#leftbutton a,#rightbutton a{line-height:30px;height:30px}#leftnav img,#rightnav img{margin-top:4px}.textbox textarea{width:85%;}.customformtextbox textarea{width:85%;}.bigfield input{width:295px}.checkbox .name,.radiobutton .name{max-width:190px}#leftnav,#leftbutton,#rightnav,#rightbutton{top:7px}}@media screen and (min-width:321px) {#topbar{height:32px}#title{line-height:32px;height:32px;font-size:13pt}.menu .name{max-width:85%}#leftnav a,#rightnav a,#leftbutton a,#rightbutton a{line-height:24px;height:24px}#leftnav img,#rightnav img{margin-top:4px;height:70%}.textbox textarea{width:85%;}.customformtextbox textarea{width:85%;}#doublead{width:350px!important}.searchbox form{width:432px}.searchbox input[type=\"text\"]{width:435px}.bigfield input{width:455px}.checkbox .name,.radiobutton .name{max-width:75%}#leftnav,#leftbutton,#rightnav,#rightbutton{top:4px}}</style>");
INSERT INTO `wp_postmeta` VALUES("1431", "119", "_WPMSGOPTION_ThemeCustomFormStyleCSS", "<style  type=\"text/css\" >.customform {background:#FF0800;color:#000000;border-color:#FF0800;border-width:1px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.customform .button input {background:#FCFC0F;color:#FFFFFF;}li.customformrow{position:relative;list-style-type:none;display:block;height:43px;overflow:hidden;border-top:1px solid #878787;border-top:1px solid #878787;width:auto}li.customformrowbelow{position:relative;list-style-type:none;display:block;height:43px;overflow:hidden;width:auto}p.customformrow{-webkit-margin-before: 0px;border-top:1px solid #878787;width:auto}.customformrow .customformlabel, .customformrow .customformlabelfull, .customformtextbox .customformlabel, .customformradiorow .customformlabel{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;padding-left:5px;overflow:hidden}.customformrow .customformlabel{line-height:44px;}.customformrow .customformlabelfull{line-height:44px;width:100%;height:auto;}.customformrow input {width:50%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.customformrowbelow input {width:100%;min-width:95%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}input.customformrowrequired{background: #ff8080;}.customformrow input:not([type=\'checkbox\']) {-webkit-appearance:none;}.customformrow select{width:50%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.customformrow:first-child input{border-top-right-radius:8px}.customformrow:last-child input{border-bottom-right-radius:8px}.customformtextbox{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.customformtextbox img{max-width:100%}.customformtextbox p{margin-top:2px;color:#000;margin-bottom:2px;text-align:justify}.customformtextbox ul{list-style:circle!important;margin:3px 0}.customformtextbox li{margin:0!important}.customformtextbox textarea{margin-top:5px;font-size:medium;padding:0}.customformradiorow{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.customformrow input[type=\"checkbox\"]{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOff.png)no-repeat;-webkit-appearance:none;border:0;margin:4px 4px 0 0}.customformrow input[type=\"checkbox\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOn.png)no-repeat;}.customformradiorow input[type=\"radio\"]{-webkit-appearance:none;border:0;width:100%;height: 43px;z-index:2;position:absolute;left:50%;margin:0;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOff.png) no-repeat;-webkit-border-radius:0}.customformradiorow input[type=\"radio\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOn.png) no-repeat;}.customformradiorow .customformradiorowinput {height: 40px;}.customformradiorow label{position: absolute;margin-top: 6px;margin-left:60%;text-overflow: ellipsis;}.customformradiorowbelow{position:relative;overflow:hidden;padding:5px 9px}.customformradiorowbelowlabel{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.customformradiorowbelowlabel .customformlabel{left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;padding-left:5px;overflow:hidden}.customformradiorowbelow input[type=\"radio\"]{-webkit-appearance:none;border:0;width:100%;height: 43px;z-index:2;position:absolute;left:10px;margin:0;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOff.png) no-repeat;-webkit-border-radius:0}.customformradiorowbelow input[type=\"radio\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOn.png) no-repeat;}.customformradiorowbelow .customformradiorowinputbelow {height: 40px;}span.customformlabelfull{font-weight:bold;font-size:17px;}.customformradiorowbelow label{position: absolute;margin-top: 6px;margin-left:45px;text-overflow: ellipsis;}li.customformrowbelow select{width:100%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.customformrowcheckboxright{position:relative;overflow:hidden;border-top:1px solid #878787;height: 40px;padding:5px 9px}.customformrowcheckboxright .customformlabel {left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;line-height:44px;overflow:hidden}.customformrowcheckboxright input[type=\"checkbox\"]{position: absolute;height: 40px;width: 35px;right:0;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOff.png)no-repeat;-webkit-appearance:none;border:0;margin:4px 4px 0 0}.customformrowcheckboxright input[type=\"checkbox\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOn.png) no-repeat;}.customformrowcheckboxleft{position:relative;overflow:hidden;border-top:1px solid #878787;height: 40px;padding:5px 9px}.customformrowcheckboxleft .customformlabel {margin-left:40px;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;line-height:44px;overflow:hidden}.customformrowcheckboxleft input[type=\"checkbox\"]{position: absolute;height: 40px;width: 35px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOff.png)no-repeat;-webkit-appearance:none;border:0;margin:4px 4px 0 0}.customformrowcheckboxleft input[type=\"checkbox\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOn.png) no-repeat;}</style>");
INSERT INTO `wp_postmeta` VALUES("1432", "120", "_WPMSGOPTION_PageBackgroundColor", "ADDEFF");
INSERT INTO `wp_postmeta` VALUES("1433", "120", "_WPMSGOPTION_LogoBackgroundColor", "1994FF");
INSERT INTO `wp_postmeta` VALUES("1434", "120", "_WPMSGOPTION_FooterBackgroundColor", "1994FF");
INSERT INTO `wp_postmeta` VALUES("1435", "120", "_WPMSGOPTION_ParagraphTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1436", "120", "_WPMSGOPTION_ParagraphTextSize", "");
INSERT INTO `wp_postmeta` VALUES("1437", "120", "_WPMSGOPTION_BackgroundImage", "");
INSERT INTO `wp_postmeta` VALUES("1438", "120", "_WPMSGOPTION_BackgroundImageRepeat", "");
INSERT INTO `wp_postmeta` VALUES("1439", "120", "_WPMSGOPTION_BackgroundImagePosition", "");
INSERT INTO `wp_postmeta` VALUES("1440", "120", "_WPMSGOPTION_TopbarStartColor", "202020");
INSERT INTO `wp_postmeta` VALUES("1441", "120", "_WPMSGOPTION_TopbarEndColor", "858585");
INSERT INTO `wp_postmeta` VALUES("1442", "120", "_WPMSGOPTION_TopbarTextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("1443", "120", "_WPMSGOPTION_TopbarButtonColor", "std");
INSERT INTO `wp_postmeta` VALUES("1444", "120", "_WPMSGOPTION_H1TextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1445", "120", "_WPMSGOPTION_H1TextSize", "");
INSERT INTO `wp_postmeta` VALUES("1446", "120", "_WPMSGOPTION_H1TextShadow", "");
INSERT INTO `wp_postmeta` VALUES("1447", "120", "_WPMSGOPTION_H2TextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1448", "120", "_WPMSGOPTION_H2TextSize", "");
INSERT INTO `wp_postmeta` VALUES("1449", "120", "_WPMSGOPTION_H2TextShadow", "");
INSERT INTO `wp_postmeta` VALUES("1450", "120", "_WPMSGOPTION_H3TextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1451", "120", "_WPMSGOPTION_H3TextSize", "");
INSERT INTO `wp_postmeta` VALUES("1452", "120", "_WPMSGOPTION_H3TextShadow", "");
INSERT INTO `wp_postmeta` VALUES("1453", "120", "_WPMSGOPTION_H4TextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1454", "120", "_WPMSGOPTION_H4TextSize", "");
INSERT INTO `wp_postmeta` VALUES("1455", "120", "_WPMSGOPTION_H4TextShadow", "");
INSERT INTO `wp_postmeta` VALUES("1456", "120", "_WPMSGOPTION_H5TextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1457", "120", "_WPMSGOPTION_H5TextSize", "");
INSERT INTO `wp_postmeta` VALUES("1458", "120", "_WPMSGOPTION_H5TextShadow", "");
INSERT INTO `wp_postmeta` VALUES("1459", "120", "_WPMSGOPTION_H6TextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1460", "120", "_WPMSGOPTION_H6TextSize", "");
INSERT INTO `wp_postmeta` VALUES("1461", "120", "_WPMSGOPTION_H6TextShadow", "");
INSERT INTO `wp_postmeta` VALUES("1462", "120", "_WPMSGOPTION_MenuBackgroundColor", "1994FF");
INSERT INTO `wp_postmeta` VALUES("1463", "120", "_WPMSGOPTION_IconTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1464", "120", "_WPMSGOPTION_MenuTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1465", "120", "_WPMSGOPTION_MenuTextSize", "");
INSERT INTO `wp_postmeta` VALUES("1466", "120", "_WPMSGOPTION_MenuBorderColor", "0505FF");
INSERT INTO `wp_postmeta` VALUES("1467", "120", "_WPMSGOPTION_MenuBorderWidth", "2");
INSERT INTO `wp_postmeta` VALUES("1468", "120", "_WPMSGOPTION_MenuBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("1469", "120", "_WPMSGOPTION_MenuOpacity", "1");
INSERT INTO `wp_postmeta` VALUES("1470", "120", "_WPMSGOPTION_MenuArrowImage", "LightBigArrow");
INSERT INTO `wp_postmeta` VALUES("1471", "120", "_WPMSGOPTION_MenuArrowColor", "Transparent");
INSERT INTO `wp_postmeta` VALUES("1472", "120", "_WPMSGOPTION_MenuSelectedBackgroundColor", "015FE6");
INSERT INTO `wp_postmeta` VALUES("1473", "120", "_WPMSGOPTION_MenuSelectedTextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("1474", "120", "_WPMSGOPTION_MenuSeparatorColor", "878787");
INSERT INTO `wp_postmeta` VALUES("1475", "120", "_WPMSGOPTION_BlockquoteBackgroundColor", "DEE9FF");
INSERT INTO `wp_postmeta` VALUES("1476", "120", "_WPMSGOPTION_BlockquoteTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1477", "120", "_WPMSGOPTION_BlockquoteTextSize", "");
INSERT INTO `wp_postmeta` VALUES("1478", "120", "_WPMSGOPTION_BlockquoteBorderColor", "1994FF");
INSERT INTO `wp_postmeta` VALUES("1479", "120", "_WPMSGOPTION_BlockquoteBorderWidth", "2");
INSERT INTO `wp_postmeta` VALUES("1480", "120", "_WPMSGOPTION_BlockquoteBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("1481", "120", "_WPMSGOPTION_TableBackgroundColor", "DEE9FF");
INSERT INTO `wp_postmeta` VALUES("1482", "120", "_WPMSGOPTION_TableTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1483", "120", "_WPMSGOPTION_TableTextSize", "");
INSERT INTO `wp_postmeta` VALUES("1484", "120", "_WPMSGOPTION_TableBorderColor", "1994FF");
INSERT INTO `wp_postmeta` VALUES("1485", "120", "_WPMSGOPTION_TableBorderWidth", "1");
INSERT INTO `wp_postmeta` VALUES("1486", "120", "_WPMSGOPTION_TableBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("1487", "120", "_WPMSGOPTION_TableWidth", "95");
INSERT INTO `wp_postmeta` VALUES("1488", "120", "_WPMSGOPTION_TablePadding", "2");
INSERT INTO `wp_postmeta` VALUES("1489", "120", "_WPMSGOPTION_ClickToCallBackgroundColor", "04BF04");
INSERT INTO `wp_postmeta` VALUES("1490", "120", "_WPMSGOPTION_ClickToCallTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1491", "120", "_WPMSGOPTION_ClickToCallTextSize", "");
INSERT INTO `wp_postmeta` VALUES("1492", "120", "_WPMSGOPTION_ClickToCallBorderColor", "04BF04");
INSERT INTO `wp_postmeta` VALUES("1493", "120", "_WPMSGOPTION_ClickToCallBorderWidth", "");
INSERT INTO `wp_postmeta` VALUES("1494", "120", "_WPMSGOPTION_ClickToCallBorderStyle", "None");
INSERT INTO `wp_postmeta` VALUES("1495", "120", "_WPMSGOPTION_OptinFormBackgroundColor", "DEE9FF");
INSERT INTO `wp_postmeta` VALUES("1496", "120", "_WPMSGOPTION_OptinFormInputBackgroundColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("1497", "120", "_WPMSGOPTION_OptinFormSubmitBackgroundColor", "1994FF");
INSERT INTO `wp_postmeta` VALUES("1498", "120", "_WPMSGOPTION_OptinFormSubmitTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1499", "120", "_WPMSGOPTION_OptinFormTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1500", "120", "_WPMSGOPTION_OptinFormTextSize", "");
INSERT INTO `wp_postmeta` VALUES("1501", "120", "_WPMSGOPTION_OptinFormBorderColor", "1994FF");
INSERT INTO `wp_postmeta` VALUES("1502", "120", "_WPMSGOPTION_OptinFormBorderWidth", "2");
INSERT INTO `wp_postmeta` VALUES("1503", "120", "_WPMSGOPTION_OptinFormBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("1504", "120", "_WPMSGOPTION_ContactFormBackgroundColor", "DEE9FF");
INSERT INTO `wp_postmeta` VALUES("1505", "120", "_WPMSGOPTION_ContactFormInputBackgroundColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("1506", "120", "_WPMSGOPTION_ContactFormSubmitBackgroundColor", "1994FF");
INSERT INTO `wp_postmeta` VALUES("1507", "120", "_WPMSGOPTION_ContactFormSubmitTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1508", "120", "_WPMSGOPTION_ContactFormTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1509", "120", "_WPMSGOPTION_ContactFormTextSize", "");
INSERT INTO `wp_postmeta` VALUES("1510", "120", "_WPMSGOPTION_ContactFormBorderColor", "1994FF");
INSERT INTO `wp_postmeta` VALUES("1511", "120", "_WPMSGOPTION_ContactFormBorderWidth", "2");
INSERT INTO `wp_postmeta` VALUES("1512", "120", "_WPMSGOPTION_ContactFormBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("1513", "120", "_WPMSGOPTION_DirectionsBackgroundColor", "DEE9FF");
INSERT INTO `wp_postmeta` VALUES("1514", "120", "_WPMSGOPTION_DirectionsInputBackgroundColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("1515", "120", "_WPMSGOPTION_DirectionsSubmitBackgroundColor", "1994FF");
INSERT INTO `wp_postmeta` VALUES("1516", "120", "_WPMSGOPTION_DirectionsSubmitTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1517", "120", "_WPMSGOPTION_DirectionsTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1518", "120", "_WPMSGOPTION_DirectionsTextSize", "");
INSERT INTO `wp_postmeta` VALUES("1519", "120", "_WPMSGOPTION_DirectionsBorderColor", "1994FF");
INSERT INTO `wp_postmeta` VALUES("1520", "120", "_WPMSGOPTION_DirectionsBorderWidth", "2");
INSERT INTO `wp_postmeta` VALUES("1521", "120", "_WPMSGOPTION_DirectionsBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("1522", "120", "_WPMSGOPTION_SlideshowBackgroundColor", "DEE9FF");
INSERT INTO `wp_postmeta` VALUES("1523", "120", "_WPMSGOPTION_SlideshowTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1524", "120", "_WPMSGOPTION_SlideshowTextSize", "");
INSERT INTO `wp_postmeta` VALUES("1525", "120", "_WPMSGOPTION_SlideshowBorderColor", "1994FF");
INSERT INTO `wp_postmeta` VALUES("1526", "120", "_WPMSGOPTION_SlideshowBorderWidth", "");
INSERT INTO `wp_postmeta` VALUES("1527", "120", "_WPMSGOPTION_SlideshowBorderStyle", "None");
INSERT INTO `wp_postmeta` VALUES("1528", "120", "_WPMSGOPTION_AccordianTitleBackgroundColor", "1994FF");
INSERT INTO `wp_postmeta` VALUES("1529", "120", "_WPMSGOPTION_AccordianTitleTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1530", "120", "_WPMSGOPTION_AccordianTitleTextSize", "");
INSERT INTO `wp_postmeta` VALUES("1531", "120", "_WPMSGOPTION_AccordianTitleSelectedBackgroundColor", "015FE6");
INSERT INTO `wp_postmeta` VALUES("1532", "120", "_WPMSGOPTION_AccordianTitleSelectedTextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("1533", "120", "_WPMSGOPTION_AccordianBackgroundColor", "DEE9FF");
INSERT INTO `wp_postmeta` VALUES("1534", "120", "_WPMSGOPTION_AccordianTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1535", "120", "_WPMSGOPTION_AccordianTextSize", "");
INSERT INTO `wp_postmeta` VALUES("1536", "120", "_WPMSGOPTION_AccordianSeparatorColor", "878787");
INSERT INTO `wp_postmeta` VALUES("1537", "120", "_WPMSGOPTION_AccordianBorderColor", "0505FF");
INSERT INTO `wp_postmeta` VALUES("1538", "120", "_WPMSGOPTION_AccordianBorderWidth", "2");
INSERT INTO `wp_postmeta` VALUES("1539", "120", "_WPMSGOPTION_AccordianBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("1540", "120", "_WPMSGOPTION_AccordianArrowImage", "LightTriangle");
INSERT INTO `wp_postmeta` VALUES("1541", "120", "_WPMSGOPTION_AccordianArrowColor", "Transparent");
INSERT INTO `wp_postmeta` VALUES("1542", "120", "_WPMSGOPTION_CouponBackgroundColor", "DEE9FF");
INSERT INTO `wp_postmeta` VALUES("1543", "120", "_WPMSGOPTION_CouponTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1544", "120", "_WPMSGOPTION_CouponTextSize", "");
INSERT INTO `wp_postmeta` VALUES("1545", "120", "_WPMSGOPTION_CouponBorderColor", "1994FF");
INSERT INTO `wp_postmeta` VALUES("1546", "120", "_WPMSGOPTION_CouponBorderWidth", "2");
INSERT INTO `wp_postmeta` VALUES("1547", "120", "_WPMSGOPTION_CouponBorderStyle", "Dashed");
INSERT INTO `wp_postmeta` VALUES("1548", "120", "_WPMSGOPTION_SearchBackgroundColor", "DEE9FF");
INSERT INTO `wp_postmeta` VALUES("1549", "120", "_WPMSGOPTION_SearchTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1550", "120", "_WPMSGOPTION_SearchTextSize", "");
INSERT INTO `wp_postmeta` VALUES("1551", "120", "_WPMSGOPTION_SearchBorderColor", "1994FF");
INSERT INTO `wp_postmeta` VALUES("1552", "120", "_WPMSGOPTION_SearchBorderWidth", "2");
INSERT INTO `wp_postmeta` VALUES("1553", "120", "_WPMSGOPTION_SearchBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("1554", "120", "_WPMSGOPTION_SearchInputBackgroundColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("1555", "120", "_WPMSGOPTION_SearchSubmitBackgroundColor", "1994FF");
INSERT INTO `wp_postmeta` VALUES("1556", "120", "_WPMSGOPTION_SearchSubmitTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1557", "120", "_WPMSGOPTION_SearchSelectedBackgroundColor", "015FE6");
INSERT INTO `wp_postmeta` VALUES("1558", "120", "_WPMSGOPTION_SearchSelectedTextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("1559", "120", "_WPMSGOPTION_SearchHighlightColor", "FFFF00");
INSERT INTO `wp_postmeta` VALUES("1560", "120", "_WPMSGOPTION_RssBackgroundColor", "DEE9FF");
INSERT INTO `wp_postmeta` VALUES("1561", "120", "_WPMSGOPTION_RssTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1562", "120", "_WPMSGOPTION_RssTextSize", "");
INSERT INTO `wp_postmeta` VALUES("1563", "120", "_WPMSGOPTION_RssBorderColor", "1994FF");
INSERT INTO `wp_postmeta` VALUES("1564", "120", "_WPMSGOPTION_RssBorderWidth", "2");
INSERT INTO `wp_postmeta` VALUES("1565", "120", "_WPMSGOPTION_RssBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("1566", "120", "_WPMSGOPTION_RssSelectedBackgroundColor", "015FE6");
INSERT INTO `wp_postmeta` VALUES("1567", "120", "_WPMSGOPTION_RssSelectedTextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("1568", "120", "_WPMSGOPTION_ThemeStyleCSS", "<style  type=\"text/css\" >body{position:relative;-webkit-text-size-adjust:none;min-height:416px;{--wpmsgtknsinglepageminimumheight--}font-family:helvetica,sans-serif;-webkit-background-size:.438em 100%;Background:#ADDEFF;-webkit-touch-callout:none;margin:0;margin-right:auto; margin-left:auto;}img.alignright {float:right; max-width:100%; margin:0 0 1em 1em}img.alignleft {float:left; max-width:100%; margin:0 1em 1em 0}img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}a img.alignright {float:right; max-width:100%; margin:0 0 1em 1em}a img.alignleft {float:left; max-width:100%; margin:0 1em 1em 0}a img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}#accordion {background:#DEE9FF;border-color:#0505FF;border-width:2px;border-style:Solid;margin:5px 5px 5px 5px;border-radius:8px}#accordion H2 {padding-top: 5pxpadding-bottom: 5px; padding-left: 15px; padding-right: 15px; margin: 0px 0px 0px 0px; background:#1994FF;font-size:17px;color:#000000;cursor: pointer; height:43px;overflow:hidden;border-top:1px solid #878787;font-weight: bold; line-height: 40px;}#accordion H2:first-child{border-top:none;border-radius:8px}#accordion H2:last-child{border-bottom-left-radius:8px;border-bottom-right-radius:8px}#accordion H2.current {background-color:#015FE6; color:#FFFFFF; cursor: default}#accordion div.acchead {padding-top: 5pxpadding-bottom: 5px; padding-left: 15px; padding-right: 15px; margin: 0px 0px 0px 0px; font-weight:bold;font-size:17px;background:#1994FF;font-size:17px;color:#000000;cursor: pointer; height:43px;overflow:hidden;border-top:1px solid #878787;line-height: 40px;}#accordion div.acchead:first-child{border-top:none;border-top-left-radius:8px;border-top-right-radius:8px;}#accordion div.acchead.current {background-color:#015FE6; color:#FFFFFF; cursor: default}#accordion .pane {padding-top: 15pxpadding-bottom: 15px; padding-left: 15px; padding-right: 15px; display: none; color:#000000;border-bottom-left-radius:8px;border-bottom-right-radius:8px;}#accordion .acchead .accarrow {float: right;valign: center;width:24px!important;height:24px!important;right:10px;top:18px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/arrows/Down_LightTriangle_Transparent.png) 0 0 no-repeat;margin:0!important ;margin-top: 15px;padding-top: 15px;}.images {background:#DEE9FF;color:#000000;border-color:#1994FF;border-width:px;border-style:;{--wpmsgtknslideshowheight--}{--wpmsgtknslideshowwidth--}overflow:hidden;margin-left:auto;margin-right:auto;position:relative;cursor:pointer;-moz-border-radius:5px;-moz-box-shadow:0 0 25px #666;-webkit-border-radius:5px;-webkit-box-shadow:0 0 25px #666;border-radius:5px;box-shadow:0 0 25px #666;}.images div {display:none;position:absolute;top:0;left:0;width: 100%;}.images div p a img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}.images div p img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}.images div a img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}.images div img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}.images img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}.images h3 {font-size:22px;font-weight:normal;margin:0 0 20px 0;color:#456;}.slidetabs {clear:both;}.slidetabs a {width:8px;height:8px;float:left;margin:3px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navigator.png) 0 0 no-repeat;display:block;font-size:1px;}.slidetabs a:hover {background-position:0 -8px;}.slidetabs a.current {background-position:0 -16px; } .forward, .backward {float:left;background:#fff url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/hori_large.png) no-repeat;display:block;width:30px;height:30px;cursor:pointer;font-size:1px;text-indent:-9999em;}.forward { background-position: 0 -30px; clear:right; }.forward:hover { background-position:-30px -30px; }.forward:active{ background-position:-60px -30px; } .backward:hover{ background-position:-30px 0; }.backward:active{ background-position:-60px 0; }.disabled {visibility:hidden !important;}.gallery { list-style: none; padding: 0; margin: 0; }.gallery:after { clear: both; content: \".\"; display: block; height: 0; visibility: hidden; }.gallery li { float: left; width: 33.33333333%; }.gallery li a { display: block; margin: 5px; border: 1px solid #3c3c3c; }.gallery li img { display: block; width: 100%; height: auto; }.highlight { background:#FFFF00;}.highlight_important { background:#FFFF00;}.center{display:block;text-align:center!important;margin:auto}a:hover .arrow{background:0 -13px!important}#topbar.transparent{background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#202020), to(#858585));background-image: -webkit-linear-gradient(top, #202020, #858585);background-image:-moz-linear-gradient(top, #202020, #858585);background-image: -ms-linear-gradient(top, #202020, #858585);background-image:-o-linear-gradient(top, #202020, #858585);}#topbar{position:relative;left:0;top:0;width:auto;}#title{position:absolute;font-weight:bold;top:0;left:0;right:0;text-align:center;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;color:#FFF;color:#FFFFFF;text-shadow:rgba(0,0,0,0.6) 0 -1px 0;padding:0 10px;}#logo{Background:#ADDEFF;}#content{width:100%;position:relative;min-height:250px;{--wpmsgtknsinglepageminimumheight--}height:auto;z-index:0;overflow:hidden;{--wpmsgtknsinglepagebackgroundimage--}}p {padding:0 5px;color:#000000;}h1 {padding:0 5px;color:#000000;}h2 {padding:0 5px;color:#000000;}h3 {padding:0 5px;color:#000000;}h4 {padding:0 5px;color:#000000;}h5 {padding:0 5px;color:#000000;}h6 {padding:0 5px;color:#000000;}blockquote {background:#DEE9FF;color:#000000;border-color:#1994FF;border-width:2px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 6px 10px;padding:0 5px;border-radius:8px}blockquote p {background:#DEE9FF;color:#000000;}.ezmbfooter p {padding:0 5px;color:#000000;}.ezmbtable {width:95%;margin-left:auto;margin-right:auto;border-collapse:collapse;background:#DEE9FF;color:#000000;border-color:#1994FF;border-width:1px;border-style:Solid;}.ezmbtable td {background:#DEE9FF;color:#000000;border-color:#1994FF;border-width:1px;border-style:Solid;padding:2px;}.ezmbtable td p {background:#DEE9FF;color:#000000;}.ezmbiconlist {color:#000000;}.menulist {background:#1994FF;color:#000000;border-color:#0505FF;border-width:2px;border-style:Solid;opacity:1;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.menulist span.name{color:#000000;text-decoration:none}.menulist span.menudesc{color:#;text-decoration:none}.menulist td a{text-decoration:none}.menulist td a img{vertical-align:text-top;text-decoration:none}.menulist td{vertical-align:text-top;}.searchlist {background:#DEE9FF;color:#000000;border-color:#1994FF;border-width:2px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.searchform {background:#DEE9FF;color:#000000;border-color:#1994FF;border-width:2px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.searchform .button input {background:#1994FF;color:#000000;}.searchlist:hover,{background:-webkit-gradient(linear,0% 0%,0% 100%,from(#058cf5),to(#015fe6))}.searchlist a:hover {background-color:#CCF}.searchlist li a:hover{background:#015FE6;}.searchlist a{display:block;height:43px;width:auto;text-decoration:none}.searchlist a img{width:auto;height:32px;float:left;margin:5px 0 0 5px}.searchlist .name{width:auto;font-weight:bold;font-size:17px;color:#000000;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;float:left;margin:11px 0 0 7px}.searchlist a:hover .name{color:#FFFFFF;}.searchlistsnippet{padding-left:5px;padding-right:5px;}.rssfeedlist {background:#DEE9FF;color:#000000;border-color:#1994FF;border-width:2px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.rssfeedlist:hover{background:-webkit-gradient(linear,0% 0%,0% 100%,from(#058cf5),to(#015fe6))}.rssfeedlist a:hover {background-color:#CCF}.rssfeedlist li a:hover{background-color:#015fe6}.rssfeedlist a{display:block;min-height:43px;width:auto;text-decoration:none}.rssfeedlist a img{width:auto;height:32px;float:left;margin:5px 0 0 5px}.rssfeedlist .name{width:auto;font-weight:bold;font-size:17px;color:#000000;float:left;margin:11px 0 0 7px}.rssfeedlist a:hover .name{color:#FFFFFF;}.rssfeedlistsnippet{padding-left:5px;padding-right:5px;}.ezmbcouponwidget {background:#DEE9FF;color:#000000;border-color:#1994FF;border-width:2px;border-style:Dashed;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.optinform {background:#DEE9FF;color:#000000;border-color:#1994FF;border-width:2px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.optinform .button input {background:#1994FF;color:#000000;}.contactform {background:#DEE9FF;color:#000000;border-color:#1994FF;border-width:2px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.contactform .button input {background:#1994FF;color:#000000;}.customform {background:#DEE9FF;color:#000000;border-color:#1994FF;border-width:2px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.customform .button input {background:#1994FF;color:#000000;}li.customformrow{position:relative;list-style-type:none;display:block;height:43px;overflow:hidden;border-top:1px solid #878787;border-top:1px solid #878787;width:auto}li.customformrowbelow{position:relative;list-style-type:none;display:block;height:43px;overflow:hidden;width:auto}p.customformrow{-webkit-margin-before: 0px;border-top:1px solid #878787;width:auto}.customformrow .customformlabel, .customformrow .customformlabelfull, .customformtextbox .customformlabel, .customformradiorow .customformlabel{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;padding-left:5px;overflow:hidden}.customformrow .customformlabel{line-height:44px;}.customformrow .customformlabelfull{line-height:44px;width:100%;height:auto;}.customformrow input {width:50%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.customformrowbelow input {width:100%;min-width:95%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}input.customformrowrequired{background: #ff8080;}.customformrow input:not([type=\'checkbox\']) {-webkit-appearance:none;}.customformrow select{width:50%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.customformrow:first-child input{border-top-right-radius:8px}.customformrow:last-child input{border-bottom-right-radius:8px}.customformtextbox{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.customformtextbox img{max-width:100%}.customformtextbox p{margin-top:2px;color:#000;margin-bottom:2px;text-align:justify}.customformtextbox ul{list-style:circle!important;margin:3px 0}.customformtextbox li{margin:0!important}.customformtextbox textarea{margin-top:5px;font-size:medium;padding:0}.customformradiorow{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.customformrow input[type=\"checkbox\"]{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOff.png)no-repeat;-webkit-appearance:none;border:0;margin:4px 4px 0 0}.customformrow input[type=\"checkbox\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOn.png)no-repeat;}.customformradiorow input[type=\"radio\"]{-webkit-appearance:none;border:0;width:100%;height: 43px;z-index:2;position:absolute;left:50%;margin:0;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOff.png) no-repeat;-webkit-border-radius:0}.customformradiorow input[type=\"radio\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOn.png) no-repeat;}.customformradiorow .customformradiorowinput {height: 40px;}.customformradiorow label{position: absolute;margin-top: 6px;margin-left:60%;text-overflow: ellipsis;}.customformradiorowbelow{position:relative;overflow:hidden;padding:5px 9px}.customformradiorowbelowlabel{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.customformradiorowbelowlabel .customformlabel{left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;padding-left:5px;overflow:hidden}.customformradiorowbelow input[type=\"radio\"]{-webkit-appearance:none;border:0;width:100%;height: 43px;z-index:2;position:absolute;left:10px;margin:0;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOff.png) no-repeat;-webkit-border-radius:0}.customformradiorowbelow input[type=\"radio\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOn.png) no-repeat;}.customformradiorowbelow .customformradiorowinputbelow {height: 40px;}span.customformlabelfull{font-weight:bold;font-size:17px;}.customformradiorowbelow label{position: absolute;margin-top: 6px;margin-left:45px;text-overflow: ellipsis;}li.customformrowbelow select{width:100%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.customformrowcheckboxright{position:relative;overflow:hidden;border-top:1px solid #878787;height: 40px;padding:5px 9px}.customformrowcheckboxright .customformlabel {left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;line-height:44px;overflow:hidden}.customformrowcheckboxright input[type=\"checkbox\"]{position: absolute;height: 40px;width: 35px;right:0;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOff.png)no-repeat;-webkit-appearance:none;border:0;margin:4px 4px 0 0}.customformrowcheckboxright input[type=\"checkbox\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOn.png) no-repeat;}.customformrowcheckboxleft{position:relative;overflow:hidden;border-top:1px solid #878787;height: 40px;padding:5px 9px}.customformrowcheckboxleft .customformlabel {margin-left:40px;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;line-height:44px;overflow:hidden}.customformrowcheckboxleft input[type=\"checkbox\"]{position: absolute;height: 40px;width: 35px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOff.png)no-repeat;-webkit-appearance:none;border:0;margin:4px 4px 0 0}.customformrowcheckboxleft input[type=\"checkbox\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOn.png) no-repeat;} .directions {background:#DEE9FF;color:#000000;border-color:#1994FF;border-width:2px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.directions .button input {background:#1994FF;color:#000000;}.clear {clear: both;}.ezmbphone {margin-left: auto;margin-right: auto;text-align: center;}.ezmbphoneimg {margin-left: auto;margin-right: auto;text-align: center;}.phonebtnimg {margin-left: auto;margin-right: auto;text-align: center;}.phonebtn, .phonebtn:visited {background:#04BF04;color:#000000;border-color:#04BF04;border-width:px;border-style:None;-webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.6);text-shadow: 0 -1px 1px rgba(0,0,0,0.25);border-bottom: 1px solid rgba(0,0,0,0.25);display: inline-block; padding: 5px 10px 6px; text-decoration: none;border-radius: 10px;position: relative;cursor: pointer;font-weight:bold;}.ezmbfooter {Background:#1994FF;margin:0;}.ezmbfooter p {margin:0;}.textbox{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.searchbox{height:44px;background:-webkit-gradient(linear,0% 0%,0% 100%,from(#f1f3f4),color-stop(3%,#e0e4e7),color-stop(50%,#c7cfd4),color-stop(51%,#bec7cd),color-stop(97%,#b4bec6),to(#8999a5));width:100%;margin:-13px 0 13px}.searchbox form{height:24px;border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/searchfield.png) 4 14 1 24;display:block;position:relative;top:8px;border-width:4px 14px 1px 24px;margin:auto}fieldset{border:0;margin:0;padding:0}.searchbox input[type=\"text\"]{border:0;-webkit-appearance:none;height:18px;float:left;font-size:13px;position:relative;top:2px;left:2px;padding:0}.textbox img{max-width:100%}.textbox p{margin-top:2px;color:#000;margin-bottom:2px;text-align:justify}.textbox ul{list-style:circle!important;margin:3px 0}.textbox li{margin:0!important}.menulist li:first-child,.menulist li.form:first-child{border-top:0}.menu,.checkbox,.radiobutton,.select,li.button,li.bigfield,li.smallfield,li.searchsmallfield,li.optinsmallfield,li.contactsmallfield,li.mapsmallfield{position:relative;list-style-type:none;display:block;height:43px;overflow:hidden;border-top:1px solid #878787;border-top:1px solid #878787;width:auto}.menulist li:first-child:hover,.menulist li:first-child a,.radiobutton:first-child input,.select:first-child select,li.button:first-child input,.bigfield:first-child input{border-top-left-radius:8px;border-top-right-radius:8px}.menulist li:last-child:hover,.menulist li:last-child a,.radiobutton:last-child input,.select:last-child select,li.button:last-child input,.bigfield:last-child input{border-bottom-left-radius:8px;border-bottom-right-radius:8px}.menu:hover,.store:hover,.list #content li a:hover,.list .withimage:hover,.applist li:hover:nth-child(n),.ipodlist li:hover:nth-child(n){background:#015FE6;color:#FFFFFF;}.menu a:hover .comment{color:#FFFFFF;}.menu a{display:block;height:43px;width:auto;text-decoration:none}.menu a img{width:auto;height:32px;float:left;margin:5px 0 0 5px}.menu .name,.checkbox .name,.radiobutton .name{width:auto;font-weight:bold;font-size:17px;color:#000000;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;float:left;margin:11px 0 0 7px}.menu-item{position:relative;list-style-type:none;display:block;height:43px;overflow:hidden;border-top:1px solid #878787;border-top:1px solid #878787;width:auto}.menu-item a{display:block;height:43px;width:auto;text-decoration:none}.menu-item a img{width:auto;height:32px;float:left;margin:5px 0 0 5px}.menu-item .name,.checkbox .name,.radiobutton .name{width:auto;font-weight:bold;font-size:17px;color:#000000;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;float:left;margin:11px 0 0 7px}.menu-item:hover{background:#015FE6;color:#FFFFFF;}.menu-item a:hover .comment{color:#FFFFFF;}.menu-item .comment{width:auto;font-size:17px;text-overflow:ellipsis;overflow:hidden;max-width:75%;white-space:nowrap;float:right;color:#324f85;margin:11px 30px 0 0}.menu-item .arrow{position:absolute;width:24px!important;height:24px!important;right:10px;top:12px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/arrows/LightBigArrow_Transparent.png) 0 0 no-repeat;margin:0!important}.menu-item .arrowleft{float:left;width:24px!important;height:24px!important;left:10px;top:12px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/arrows/LightBigArrow_Transparent.png) 0 0 no-repeat;margin:0!important}.menu-item a:hover .name{color:#FFFFFF;}.menu .comment{width:auto;font-size:17px;text-overflow:ellipsis;overflow:hidden;max-width:75%;white-space:nowrap;float:right;color:#324f85;margin:11px 30px 0 0}.menu .arrow,.store .arrow,.musiclist .arrow,.list .arrow{position:absolute;width:24px!important;height:24px!important;right:10px;top:12px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/arrows/LightBigArrow_Transparent.png) 0 0 no-repeat;margin:0!important}.menu .arrowleft,.store .arrowleft,.musiclist .arrowleft,.list .arrowleft{float:left;width:24px!important;height:24px!important;left:10px;top:12px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/arrows/LightBigArrow_Transparent.png) 0 0 no-repeat;margin:0!important}#leftnav,#leftbutton{position:absolute;font-size:12px;left:9px;font-weight:bold}#leftnav,#leftbutton,#rightnav,#rightbutton{z-index:5000}#leftnav a,#rightnav a,#leftbutton a,#rightbutton a{display:block;color:#fff;text-shadow:rgba(0,0,0,0.6) 0 -1px 0;text-decoration:none}.black #leftnav a:first-child,.transparent #leftnav a:first-child{border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleftblack.png) 0 5 0 13-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleftblack.png) 0 5 0 13-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleftblack.png) 0 5 0 13-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleftblack.png) 0 5 0 13}.black #leftnav a,.transparent #leftnav a{border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleftblack.png) 0 5 0 13-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleftblack.png) 0 5 0 13-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleftblack.png) 0 5 0 13-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleftblack.png) 0 5 0 13}.black #rightnav a:first-child,.transparent #rightnav a:first-child{-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navrightblack.png) 0 13 0 5-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navrightblack.png) 0 13 0 5-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navrightblack.png) 0 13 0 5-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navrightblack.png) 0 13 0 5}.black #rightnav a,.transparent #rightnav a{-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkrightblack.png) 0 13 0 5-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkrightblack.png) 0 13 0 5-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkrightblack.png) 0 13 0 5-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkrightblack.png) 0 13 0 5}.black #leftbutton a,.black #rightbutton a,.transparent #leftbutton a,.transparent #rightbutton a{border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbuttonblack.png) 0 5 0 5-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbuttonblack.png) 0 5 0 5-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbuttonblack.png) 0 5 0 5-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbuttonblack.png) 0 5 0 5}#leftnav a:first-child{z-index:2;border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleft_std.png) 0 5 0 13;-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleft_std.png) 0 5 0 13;-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleft_std.png) 0 5 0 13;-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleft_std.png) 0 5 0 13;width:auto;border-width:0 5px 0 13px;border-radius:16px 6px 6px 16px}#leftnav a{border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleft.png) 0 5 0 13;-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleft.png) 0 5 0 13;-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleft.png) 0 5 0 13;-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleft.png) 0 5 0 13;z-index:3;margin-left:-4px;padding-right:4px;float:left;border-width:0 5px 0 13px;border-radius:16px 6px 6px 16px}#rightnav,#rightbutton{position:absolute;font-size:12px;right:9px;font-weight:bold}#rightnav a{border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkright.png) 0 13 0 5;-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkright.png) 0 13 0 5;-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkright.png) 0 13 0 5;-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkright.png) 0 13 0 5;z-index:3;margin-right:-4px;padding-left:4px;float:right;border-width:0 13px 0 5px;border-radius:6px 16px 16px 6px}#rightnav a:first-child{z-index:2;border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navright_std.png) 0 13 0 5;-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navright_std.png) 0 13 0 5;-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navright_std.png) 0 13 0 5;-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navright_std.png) 0 13 0 5;border-width:0 13px 0 5px;border-radius:6px 16px 16px 6px}#leftbutton a,#rightbutton a{border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbutton_std.png) 0 5 0 5;-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbutton_std.png) 0 5 0 5;-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbutton_std.png) 0 5 0 5;-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbutton_std.png) 0 5 0 5;border-width:0 5px;border-radius:6px}.gform_body ul { list-style-type: none; }.radiobutton .name{z-index:1}.select select{color:#000;font-weight:bold;font-size:17px;border-radius:0}.select option{max-width:90%}.select .arrow{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/arrow.png);width:8px;height:13px;display:block;-webkit-transform:rotate(90deg);position:absolute;right:10px;top:18px}.button input{width:100%;height:100%;-webkit-appearance:none;border:0;font-weight:bold;font-size:17px;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;background:none;border-radius:0}.textbox textarea{margin-top:5px;font-size:medium;padding:0}.bigfield input{-webkit-appearance:none;border:0;height:100%;background:transparent;font-weight:bold;font-size:17px;padding:0 0 0 5px;border-radius:0}.smallfield .name{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;line-height:44px;font-size:17px;padding-left:5px;overflow:hidden}.smallfield input{width:50%;position:absolute;right:0;height:44px;-webkit-appearance:none;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.smallfield:first-child input{border-top-right-radius:8px}.smallfield:last-child input{border-bottom-right-radius:8px}.searchsmallfield .name{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;line-height:44px;font-size:17px;padding-left:5px;overflow:hidden}.searchsmallfield input{width:50%;position:absolute;right:0;height:44px;-webkit-appearance:none;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.searchsmallfield:first-child input{border-top-right-radius:8px}.searchsmallfield:last-child input{border-bottom-right-radius:8px}.optinsmallfield .name{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;line-height:44px;font-size:17px;padding-left:5px;overflow:hidden}.optinsmallfield input{width:50%;position:absolute;right:0;height:44px;-webkit-appearance:none;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.optinsmallfield:first-child input{border-top-right-radius:8px}.optinsmallfield:last-child input{border-bottom-right-radius:8px}.contactsmallfield .name{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;line-height:44px;font-size:17px;padding-left:5px;overflow:hidden}.contactsmallfield input{width:50%;position:absolute;right:0;height:44px;-webkit-appearance:none;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.contactsmallfield:first-child input{border-top-right-radius:8px}.contactsmallfield:last-child input{border-bottom-right-radius:8px}.mapsmallfield .name{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;line-height:44px;font-size:17px;padding-left:5px;overflow:hidden}.mapsmallfield input{width:50%;position:absolute;right:0;height:44px;-webkit-appearance:none;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.mapsmallfield:first-child input{border-top-right-radius:8px}.mapsmallfield:last-child input{border-bottom-right-radius:8px}img,#duobutton a:last-child,#duoselectionbuttons a:first-child,.ipodlist li:hover:nth-child(n) .name,.ipodlist li:hover:nth-child(n) .time{border:0}#triselectionbuttons a:hover,#triselectionbuttons a#pressed,#duoselectionbuttons a:hover,#duoselectionbuttons a#pressed,li#doublead:hover{background:none}.menu a:hover .name,.store:hover .starcomment,.store:hover .name,.store:hover .comment,.list .withimage a:hover .comment,.list #content li a:hover{color:#FFFFFF;}@media screen and (max-width:320px) {#topbar{height:44px}#logo{max-width:320px;width:100%;}#title{line-height:44px;height:44px;font-size:16pt;}.searchbox form{width:272px}.searchbox input[type=\"text\"]{width:275px}.menu .name{max-width:77%}#leftnav a,#rightnav a,#leftbutton a,#rightbutton a{line-height:30px;height:30px}#leftnav img,#rightnav img{margin-top:4px}.textbox textarea{width:85%;}.customformtextbox textarea{width:85%;}.bigfield input{width:295px}.checkbox .name,.radiobutton .name{max-width:190px}#leftnav,#leftbutton,#rightnav,#rightbutton{top:7px}}@media screen and (min-width:321px) {#topbar{height:32px}#title{line-height:32px;height:32px;font-size:13pt}.menu .name{max-width:85%}#leftnav a,#rightnav a,#leftbutton a,#rightbutton a{line-height:24px;height:24px}#leftnav img,#rightnav img{margin-top:4px;height:70%}.textbox textarea{width:85%;}.customformtextbox textarea{width:85%;}#doublead{width:350px!important}.searchbox form{width:432px}.searchbox input[type=\"text\"]{width:435px}.bigfield input{width:455px}.checkbox .name,.radiobutton .name{max-width:75%}#leftnav,#leftbutton,#rightnav,#rightbutton{top:4px}}</style>");
INSERT INTO `wp_postmeta` VALUES("1569", "120", "_WPMSGOPTION_ThemeCustomFormStyleCSS", "<style  type=\"text/css\" >.customform {background:#DEE9FF;color:#000000;border-color:#1994FF;border-width:2px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.customform .button input {background:#1994FF;color:#000000;}li.customformrow{position:relative;list-style-type:none;display:block;height:43px;overflow:hidden;border-top:1px solid #878787;border-top:1px solid #878787;width:auto}li.customformrowbelow{position:relative;list-style-type:none;display:block;height:43px;overflow:hidden;width:auto}p.customformrow{-webkit-margin-before: 0px;border-top:1px solid #878787;width:auto}.customformrow .customformlabel, .customformrow .customformlabelfull, .customformtextbox .customformlabel, .customformradiorow .customformlabel{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;padding-left:5px;overflow:hidden}.customformrow .customformlabel{line-height:44px;}.customformrow .customformlabelfull{line-height:44px;width:100%;height:auto;}.customformrow input {width:50%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.customformrowbelow input {width:100%;min-width:95%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}input.customformrowrequired{background: #ff8080;}.customformrow input:not([type=\'checkbox\']) {-webkit-appearance:none;}.customformrow select{width:50%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.customformrow:first-child input{border-top-right-radius:8px}.customformrow:last-child input{border-bottom-right-radius:8px}.customformtextbox{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.customformtextbox img{max-width:100%}.customformtextbox p{margin-top:2px;color:#000;margin-bottom:2px;text-align:justify}.customformtextbox ul{list-style:circle!important;margin:3px 0}.customformtextbox li{margin:0!important}.customformtextbox textarea{margin-top:5px;font-size:medium;padding:0}.customformradiorow{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.customformrow input[type=\"checkbox\"]{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOff.png)no-repeat;-webkit-appearance:none;border:0;margin:4px 4px 0 0}.customformrow input[type=\"checkbox\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOn.png)no-repeat;}.customformradiorow input[type=\"radio\"]{-webkit-appearance:none;border:0;width:100%;height: 43px;z-index:2;position:absolute;left:50%;margin:0;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOff.png) no-repeat;-webkit-border-radius:0}.customformradiorow input[type=\"radio\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOn.png) no-repeat;}.customformradiorow .customformradiorowinput {height: 40px;}.customformradiorow label{position: absolute;margin-top: 6px;margin-left:60%;text-overflow: ellipsis;}.customformradiorowbelow{position:relative;overflow:hidden;padding:5px 9px}.customformradiorowbelowlabel{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.customformradiorowbelowlabel .customformlabel{left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;padding-left:5px;overflow:hidden}.customformradiorowbelow input[type=\"radio\"]{-webkit-appearance:none;border:0;width:100%;height: 43px;z-index:2;position:absolute;left:10px;margin:0;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOff.png) no-repeat;-webkit-border-radius:0}.customformradiorowbelow input[type=\"radio\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOn.png) no-repeat;}.customformradiorowbelow .customformradiorowinputbelow {height: 40px;}span.customformlabelfull{font-weight:bold;font-size:17px;}.customformradiorowbelow label{position: absolute;margin-top: 6px;margin-left:45px;text-overflow: ellipsis;}li.customformrowbelow select{width:100%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.customformrowcheckboxright{position:relative;overflow:hidden;border-top:1px solid #878787;height: 40px;padding:5px 9px}.customformrowcheckboxright .customformlabel {left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;line-height:44px;overflow:hidden}.customformrowcheckboxright input[type=\"checkbox\"]{position: absolute;height: 40px;width: 35px;right:0;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOff.png)no-repeat;-webkit-appearance:none;border:0;margin:4px 4px 0 0}.customformrowcheckboxright input[type=\"checkbox\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOn.png) no-repeat;}.customformrowcheckboxleft{position:relative;overflow:hidden;border-top:1px solid #878787;height: 40px;padding:5px 9px}.customformrowcheckboxleft .customformlabel {margin-left:40px;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;line-height:44px;overflow:hidden}.customformrowcheckboxleft input[type=\"checkbox\"]{position: absolute;height: 40px;width: 35px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOff.png)no-repeat;-webkit-appearance:none;border:0;margin:4px 4px 0 0}.customformrowcheckboxleft input[type=\"checkbox\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOn.png) no-repeat;}</style>");
INSERT INTO `wp_postmeta` VALUES("1570", "121", "_WPMSGOPTION_PageBackgroundColor", "FFFFCC");
INSERT INTO `wp_postmeta` VALUES("1571", "121", "_WPMSGOPTION_LogoBackgroundColor", "CC504B");
INSERT INTO `wp_postmeta` VALUES("1572", "121", "_WPMSGOPTION_FooterBackgroundColor", "CC504B");
INSERT INTO `wp_postmeta` VALUES("1573", "121", "_WPMSGOPTION_ParagraphTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1574", "121", "_WPMSGOPTION_ParagraphTextSize", "");
INSERT INTO `wp_postmeta` VALUES("1575", "121", "_WPMSGOPTION_BackgroundImage", "");
INSERT INTO `wp_postmeta` VALUES("1576", "121", "_WPMSGOPTION_BackgroundImageRepeat", "");
INSERT INTO `wp_postmeta` VALUES("1577", "121", "_WPMSGOPTION_BackgroundImagePosition", "");
INSERT INTO `wp_postmeta` VALUES("1578", "121", "_WPMSGOPTION_TopbarStartColor", "202020");
INSERT INTO `wp_postmeta` VALUES("1579", "121", "_WPMSGOPTION_TopbarEndColor", "858585");
INSERT INTO `wp_postmeta` VALUES("1580", "121", "_WPMSGOPTION_TopbarTextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("1581", "121", "_WPMSGOPTION_TopbarButtonColor", "std");
INSERT INTO `wp_postmeta` VALUES("1582", "121", "_WPMSGOPTION_H1TextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1583", "121", "_WPMSGOPTION_H1TextSize", "");
INSERT INTO `wp_postmeta` VALUES("1584", "121", "_WPMSGOPTION_H1TextShadow", "");
INSERT INTO `wp_postmeta` VALUES("1585", "121", "_WPMSGOPTION_H2TextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1586", "121", "_WPMSGOPTION_H2TextSize", "");
INSERT INTO `wp_postmeta` VALUES("1587", "121", "_WPMSGOPTION_H2TextShadow", "");
INSERT INTO `wp_postmeta` VALUES("1588", "121", "_WPMSGOPTION_H3TextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1589", "121", "_WPMSGOPTION_H3TextSize", "");
INSERT INTO `wp_postmeta` VALUES("1590", "121", "_WPMSGOPTION_H3TextShadow", "");
INSERT INTO `wp_postmeta` VALUES("1591", "121", "_WPMSGOPTION_H4TextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1592", "121", "_WPMSGOPTION_H4TextSize", "");
INSERT INTO `wp_postmeta` VALUES("1593", "121", "_WPMSGOPTION_H4TextShadow", "");
INSERT INTO `wp_postmeta` VALUES("1594", "121", "_WPMSGOPTION_H5TextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1595", "121", "_WPMSGOPTION_H5TextSize", "");
INSERT INTO `wp_postmeta` VALUES("1596", "121", "_WPMSGOPTION_H5TextShadow", "");
INSERT INTO `wp_postmeta` VALUES("1597", "121", "_WPMSGOPTION_H6TextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1598", "121", "_WPMSGOPTION_H6TextSize", "");
INSERT INTO `wp_postmeta` VALUES("1599", "121", "_WPMSGOPTION_H6TextShadow", "");
INSERT INTO `wp_postmeta` VALUES("1600", "121", "_WPMSGOPTION_MenuBackgroundColor", "CC504B");
INSERT INTO `wp_postmeta` VALUES("1601", "121", "_WPMSGOPTION_IconTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1602", "121", "_WPMSGOPTION_MenuTextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("1603", "121", "_WPMSGOPTION_MenuTextSize", "");
INSERT INTO `wp_postmeta` VALUES("1604", "121", "_WPMSGOPTION_MenuBorderColor", "CC504B");
INSERT INTO `wp_postmeta` VALUES("1605", "121", "_WPMSGOPTION_MenuBorderWidth", "1");
INSERT INTO `wp_postmeta` VALUES("1606", "121", "_WPMSGOPTION_MenuBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("1607", "121", "_WPMSGOPTION_MenuOpacity", "1");
INSERT INTO `wp_postmeta` VALUES("1608", "121", "_WPMSGOPTION_MenuArrowImage", "DarkBigArrow");
INSERT INTO `wp_postmeta` VALUES("1609", "121", "_WPMSGOPTION_MenuArrowColor", "Transparent");
INSERT INTO `wp_postmeta` VALUES("1610", "121", "_WPMSGOPTION_MenuSelectedBackgroundColor", "015FE6");
INSERT INTO `wp_postmeta` VALUES("1611", "121", "_WPMSGOPTION_MenuSelectedTextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("1612", "121", "_WPMSGOPTION_MenuSeparatorColor", "878787");
INSERT INTO `wp_postmeta` VALUES("1613", "121", "_WPMSGOPTION_BlockquoteBackgroundColor", "E3E38A");
INSERT INTO `wp_postmeta` VALUES("1614", "121", "_WPMSGOPTION_BlockquoteTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1615", "121", "_WPMSGOPTION_BlockquoteTextSize", "");
INSERT INTO `wp_postmeta` VALUES("1616", "121", "_WPMSGOPTION_BlockquoteBorderColor", "CC504B");
INSERT INTO `wp_postmeta` VALUES("1617", "121", "_WPMSGOPTION_BlockquoteBorderWidth", "1");
INSERT INTO `wp_postmeta` VALUES("1618", "121", "_WPMSGOPTION_BlockquoteBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("1619", "121", "_WPMSGOPTION_TableBackgroundColor", "E3E38A");
INSERT INTO `wp_postmeta` VALUES("1620", "121", "_WPMSGOPTION_TableTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1621", "121", "_WPMSGOPTION_TableTextSize", "");
INSERT INTO `wp_postmeta` VALUES("1622", "121", "_WPMSGOPTION_TableBorderColor", "CC504B");
INSERT INTO `wp_postmeta` VALUES("1623", "121", "_WPMSGOPTION_TableBorderWidth", "1");
INSERT INTO `wp_postmeta` VALUES("1624", "121", "_WPMSGOPTION_TableBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("1625", "121", "_WPMSGOPTION_TableWidth", "95");
INSERT INTO `wp_postmeta` VALUES("1626", "121", "_WPMSGOPTION_TablePadding", "2");
INSERT INTO `wp_postmeta` VALUES("1627", "121", "_WPMSGOPTION_ClickToCallBackgroundColor", "0AAB1A");
INSERT INTO `wp_postmeta` VALUES("1628", "121", "_WPMSGOPTION_ClickToCallTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1629", "121", "_WPMSGOPTION_ClickToCallTextSize", "");
INSERT INTO `wp_postmeta` VALUES("1630", "121", "_WPMSGOPTION_ClickToCallBorderColor", "0AAB1A");
INSERT INTO `wp_postmeta` VALUES("1631", "121", "_WPMSGOPTION_ClickToCallBorderWidth", "");
INSERT INTO `wp_postmeta` VALUES("1632", "121", "_WPMSGOPTION_ClickToCallBorderStyle", "None");
INSERT INTO `wp_postmeta` VALUES("1633", "121", "_WPMSGOPTION_OptinFormBackgroundColor", "E3E38A");
INSERT INTO `wp_postmeta` VALUES("1634", "121", "_WPMSGOPTION_OptinFormInputBackgroundColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("1635", "121", "_WPMSGOPTION_OptinFormSubmitBackgroundColor", "CC504B");
INSERT INTO `wp_postmeta` VALUES("1636", "121", "_WPMSGOPTION_OptinFormSubmitTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1637", "121", "_WPMSGOPTION_OptinFormTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1638", "121", "_WPMSGOPTION_OptinFormTextSize", "");
INSERT INTO `wp_postmeta` VALUES("1639", "121", "_WPMSGOPTION_OptinFormBorderColor", "CC504B");
INSERT INTO `wp_postmeta` VALUES("1640", "121", "_WPMSGOPTION_OptinFormBorderWidth", "1");
INSERT INTO `wp_postmeta` VALUES("1641", "121", "_WPMSGOPTION_OptinFormBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("1642", "121", "_WPMSGOPTION_ContactFormBackgroundColor", "E3E38A");
INSERT INTO `wp_postmeta` VALUES("1643", "121", "_WPMSGOPTION_ContactFormInputBackgroundColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("1644", "121", "_WPMSGOPTION_ContactFormSubmitBackgroundColor", "CC504B");
INSERT INTO `wp_postmeta` VALUES("1645", "121", "_WPMSGOPTION_ContactFormSubmitTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1646", "121", "_WPMSGOPTION_ContactFormTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1647", "121", "_WPMSGOPTION_ContactFormTextSize", "");
INSERT INTO `wp_postmeta` VALUES("1648", "121", "_WPMSGOPTION_ContactFormBorderColor", "CC504B");
INSERT INTO `wp_postmeta` VALUES("1649", "121", "_WPMSGOPTION_ContactFormBorderWidth", "1");
INSERT INTO `wp_postmeta` VALUES("1650", "121", "_WPMSGOPTION_ContactFormBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("1651", "121", "_WPMSGOPTION_DirectionsBackgroundColor", "E3E38A");
INSERT INTO `wp_postmeta` VALUES("1652", "121", "_WPMSGOPTION_DirectionsInputBackgroundColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("1653", "121", "_WPMSGOPTION_DirectionsSubmitBackgroundColor", "CC504B");
INSERT INTO `wp_postmeta` VALUES("1654", "121", "_WPMSGOPTION_DirectionsSubmitTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1655", "121", "_WPMSGOPTION_DirectionsTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1656", "121", "_WPMSGOPTION_DirectionsTextSize", "");
INSERT INTO `wp_postmeta` VALUES("1657", "121", "_WPMSGOPTION_DirectionsBorderColor", "CC504B");
INSERT INTO `wp_postmeta` VALUES("1658", "121", "_WPMSGOPTION_DirectionsBorderWidth", "1");
INSERT INTO `wp_postmeta` VALUES("1659", "121", "_WPMSGOPTION_DirectionsBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("1660", "121", "_WPMSGOPTION_SlideshowBackgroundColor", "E3E38A");
INSERT INTO `wp_postmeta` VALUES("1661", "121", "_WPMSGOPTION_SlideshowTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1662", "121", "_WPMSGOPTION_SlideshowTextSize", "");
INSERT INTO `wp_postmeta` VALUES("1663", "121", "_WPMSGOPTION_SlideshowBorderColor", "CC504B");
INSERT INTO `wp_postmeta` VALUES("1664", "121", "_WPMSGOPTION_SlideshowBorderWidth", "2");
INSERT INTO `wp_postmeta` VALUES("1665", "121", "_WPMSGOPTION_SlideshowBorderStyle", "Dashed");
INSERT INTO `wp_postmeta` VALUES("1666", "121", "_WPMSGOPTION_AccordianTitleBackgroundColor", "CC504B");
INSERT INTO `wp_postmeta` VALUES("1667", "121", "_WPMSGOPTION_AccordianTitleTextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("1668", "121", "_WPMSGOPTION_AccordianTitleTextSize", "");
INSERT INTO `wp_postmeta` VALUES("1669", "121", "_WPMSGOPTION_AccordianTitleSelectedBackgroundColor", "015FE6");
INSERT INTO `wp_postmeta` VALUES("1670", "121", "_WPMSGOPTION_AccordianTitleSelectedTextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("1671", "121", "_WPMSGOPTION_AccordianBackgroundColor", "E3E38A");
INSERT INTO `wp_postmeta` VALUES("1672", "121", "_WPMSGOPTION_AccordianTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1673", "121", "_WPMSGOPTION_AccordianTextSize", "");
INSERT INTO `wp_postmeta` VALUES("1674", "121", "_WPMSGOPTION_AccordianSeparatorColor", "878787");
INSERT INTO `wp_postmeta` VALUES("1675", "121", "_WPMSGOPTION_AccordianBorderColor", "CC504B");
INSERT INTO `wp_postmeta` VALUES("1676", "121", "_WPMSGOPTION_AccordianBorderWidth", "1");
INSERT INTO `wp_postmeta` VALUES("1677", "121", "_WPMSGOPTION_AccordianBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("1678", "121", "_WPMSGOPTION_AccordianArrowImage", "LightTriangle");
INSERT INTO `wp_postmeta` VALUES("1679", "121", "_WPMSGOPTION_AccordianArrowColor", "Transparent");
INSERT INTO `wp_postmeta` VALUES("1680", "121", "_WPMSGOPTION_CouponBackgroundColor", "E3E38A");
INSERT INTO `wp_postmeta` VALUES("1681", "121", "_WPMSGOPTION_CouponTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1682", "121", "_WPMSGOPTION_CouponTextSize", "");
INSERT INTO `wp_postmeta` VALUES("1683", "121", "_WPMSGOPTION_CouponBorderColor", "CC504B");
INSERT INTO `wp_postmeta` VALUES("1684", "121", "_WPMSGOPTION_CouponBorderWidth", "");
INSERT INTO `wp_postmeta` VALUES("1685", "121", "_WPMSGOPTION_CouponBorderStyle", "None");
INSERT INTO `wp_postmeta` VALUES("1686", "121", "_WPMSGOPTION_SearchBackgroundColor", "E3E38A");
INSERT INTO `wp_postmeta` VALUES("1687", "121", "_WPMSGOPTION_SearchTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1688", "121", "_WPMSGOPTION_SearchTextSize", "");
INSERT INTO `wp_postmeta` VALUES("1689", "121", "_WPMSGOPTION_SearchBorderColor", "CC504B");
INSERT INTO `wp_postmeta` VALUES("1690", "121", "_WPMSGOPTION_SearchBorderWidth", "1");
INSERT INTO `wp_postmeta` VALUES("1691", "121", "_WPMSGOPTION_SearchBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("1692", "121", "_WPMSGOPTION_SearchInputBackgroundColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("1693", "121", "_WPMSGOPTION_SearchSubmitBackgroundColor", "CC504B");
INSERT INTO `wp_postmeta` VALUES("1694", "121", "_WPMSGOPTION_SearchSubmitTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1695", "121", "_WPMSGOPTION_SearchSelectedBackgroundColor", "015FE6");
INSERT INTO `wp_postmeta` VALUES("1696", "121", "_WPMSGOPTION_SearchSelectedTextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("1697", "121", "_WPMSGOPTION_SearchHighlightColor", "FFFF00");
INSERT INTO `wp_postmeta` VALUES("1698", "121", "_WPMSGOPTION_RssBackgroundColor", "E3E38A");
INSERT INTO `wp_postmeta` VALUES("1699", "121", "_WPMSGOPTION_RssTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1700", "121", "_WPMSGOPTION_RssTextSize", "");
INSERT INTO `wp_postmeta` VALUES("1701", "121", "_WPMSGOPTION_RssBorderColor", "CC504B");
INSERT INTO `wp_postmeta` VALUES("1702", "121", "_WPMSGOPTION_RssBorderWidth", "1");
INSERT INTO `wp_postmeta` VALUES("1703", "121", "_WPMSGOPTION_RssBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("1704", "121", "_WPMSGOPTION_RssSelectedBackgroundColor", "015FE6");
INSERT INTO `wp_postmeta` VALUES("1705", "121", "_WPMSGOPTION_RssSelectedTextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("1706", "121", "_WPMSGOPTION_ThemeStyleCSS", "<style  type=\"text/css\" >body{position:relative;-webkit-text-size-adjust:none;min-height:416px;{--wpmsgtknsinglepageminimumheight--}font-family:helvetica,sans-serif;-webkit-background-size:.438em 100%;Background:#FFFFCC;-webkit-touch-callout:none;margin:0;margin-right:auto; margin-left:auto;}img.alignright {float:right; max-width:100%; margin:0 0 1em 1em}img.alignleft {float:left; max-width:100%; margin:0 1em 1em 0}img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}a img.alignright {float:right; max-width:100%; margin:0 0 1em 1em}a img.alignleft {float:left; max-width:100%; margin:0 1em 1em 0}a img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}#accordion {background:#E3E38A;border-color:#CC504B;border-width:1px;border-style:Solid;margin:5px 5px 5px 5px;border-radius:8px}#accordion H2 {padding-top: 5pxpadding-bottom: 5px; padding-left: 15px; padding-right: 15px; margin: 0px 0px 0px 0px; background:#CC504B;font-size:17px;color:#FFFFFF;cursor: pointer; height:43px;overflow:hidden;border-top:1px solid #878787;font-weight: bold; line-height: 40px;}#accordion H2:first-child{border-top:none;border-radius:8px}#accordion H2:last-child{border-bottom-left-radius:8px;border-bottom-right-radius:8px}#accordion H2.current {background-color:#015FE6; color:#FFFFFF; cursor: default}#accordion div.acchead {padding-top: 5pxpadding-bottom: 5px; padding-left: 15px; padding-right: 15px; margin: 0px 0px 0px 0px; font-weight:bold;font-size:17px;background:#CC504B;font-size:17px;color:#FFFFFF;cursor: pointer; height:43px;overflow:hidden;border-top:1px solid #878787;line-height: 40px;}#accordion div.acchead:first-child{border-top:none;border-top-left-radius:8px;border-top-right-radius:8px;}#accordion div.acchead.current {background-color:#015FE6; color:#FFFFFF; cursor: default}#accordion .pane {padding-top: 15pxpadding-bottom: 15px; padding-left: 15px; padding-right: 15px; display: none; color:#000000;border-bottom-left-radius:8px;border-bottom-right-radius:8px;}#accordion .acchead .accarrow {float: right;valign: center;width:24px!important;height:24px!important;right:10px;top:18px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/arrows/Down_LightTriangle_Transparent.png) 0 0 no-repeat;margin:0!important ;margin-top: 15px;padding-top: 15px;}.images {background:#E3E38A;color:#000000;border-color:#CC504B;border-width:2px;border-style:;{--wpmsgtknslideshowheight--}{--wpmsgtknslideshowwidth--}overflow:hidden;margin-left:auto;margin-right:auto;position:relative;cursor:pointer;-moz-border-radius:5px;-moz-box-shadow:0 0 25px #666;-webkit-border-radius:5px;-webkit-box-shadow:0 0 25px #666;border-radius:5px;box-shadow:0 0 25px #666;}.images div {display:none;position:absolute;top:0;left:0;width: 100%;}.images div p a img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}.images div p img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}.images div a img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}.images div img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}.images img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}.images h3 {font-size:22px;font-weight:normal;margin:0 0 20px 0;color:#456;}.slidetabs {clear:both;}.slidetabs a {width:8px;height:8px;float:left;margin:3px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navigator.png) 0 0 no-repeat;display:block;font-size:1px;}.slidetabs a:hover {background-position:0 -8px;}.slidetabs a.current {background-position:0 -16px; } .forward, .backward {float:left;background:#fff url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/hori_large.png) no-repeat;display:block;width:30px;height:30px;cursor:pointer;font-size:1px;text-indent:-9999em;}.forward { background-position: 0 -30px; clear:right; }.forward:hover { background-position:-30px -30px; }.forward:active{ background-position:-60px -30px; } .backward:hover{ background-position:-30px 0; }.backward:active{ background-position:-60px 0; }.disabled {visibility:hidden !important;}.gallery { list-style: none; padding: 0; margin: 0; }.gallery:after { clear: both; content: \".\"; display: block; height: 0; visibility: hidden; }.gallery li { float: left; width: 33.33333333%; }.gallery li a { display: block; margin: 5px; border: 1px solid #3c3c3c; }.gallery li img { display: block; width: 100%; height: auto; }.highlight { background:#FFFF00;}.highlight_important { background:#FFFF00;}.center{display:block;text-align:center!important;margin:auto}a:hover .arrow{background:0 -13px!important}#topbar.transparent{background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#202020), to(#858585));background-image: -webkit-linear-gradient(top, #202020, #858585);background-image:-moz-linear-gradient(top, #202020, #858585);background-image: -ms-linear-gradient(top, #202020, #858585);background-image:-o-linear-gradient(top, #202020, #858585);}#topbar{position:relative;left:0;top:0;width:auto;}#title{position:absolute;font-weight:bold;top:0;left:0;right:0;text-align:center;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;color:#FFF;color:#FFFFFF;text-shadow:rgba(0,0,0,0.6) 0 -1px 0;padding:0 10px;}#logo{Background:#FFFFCC;}#content{width:100%;position:relative;min-height:250px;{--wpmsgtknsinglepageminimumheight--}height:auto;z-index:0;overflow:hidden;{--wpmsgtknsinglepagebackgroundimage--}}p {padding:0 5px;color:#000000;}h1 {padding:0 5px;color:#000000;}h2 {padding:0 5px;color:#000000;}h3 {padding:0 5px;color:#000000;}h4 {padding:0 5px;color:#000000;}h5 {padding:0 5px;color:#000000;}h6 {padding:0 5px;color:#000000;}blockquote {background:#E3E38A;color:#000000;border-color:#CC504B;border-width:1px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 6px 10px;padding:0 5px;border-radius:8px}blockquote p {background:#E3E38A;color:#000000;}.ezmbfooter p {padding:0 5px;color:#000000;}.ezmbtable {width:95%;margin-left:auto;margin-right:auto;border-collapse:collapse;background:#E3E38A;color:#000000;border-color:#CC504B;border-width:1px;border-style:Solid;}.ezmbtable td {background:#E3E38A;color:#000000;border-color:#CC504B;border-width:1px;border-style:Solid;padding:2px;}.ezmbtable td p {background:#E3E38A;color:#000000;}.ezmbiconlist {color:#000000;}.menulist {background:#CC504B;color:#FFFFFF;border-color:#CC504B;border-width:1px;border-style:Solid;opacity:1;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.menulist span.name{color:#FFFFFF;text-decoration:none}.menulist span.menudesc{color:#;text-decoration:none}.menulist td a{text-decoration:none}.menulist td a img{vertical-align:text-top;text-decoration:none}.menulist td{vertical-align:text-top;}.searchlist {background:#E3E38A;color:#000000;border-color:#CC504B;border-width:1px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.searchform {background:#E3E38A;color:#000000;border-color:#CC504B;border-width:1px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.searchform .button input {background:#CC504B;color:#000000;}.searchlist:hover,{background:-webkit-gradient(linear,0% 0%,0% 100%,from(#058cf5),to(#015fe6))}.searchlist a:hover {background-color:#CCF}.searchlist li a:hover{background:#015FE6;}.searchlist a{display:block;height:43px;width:auto;text-decoration:none}.searchlist a img{width:auto;height:32px;float:left;margin:5px 0 0 5px}.searchlist .name{width:auto;font-weight:bold;font-size:17px;color:#000000;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;float:left;margin:11px 0 0 7px}.searchlist a:hover .name{color:#FFFFFF;}.searchlistsnippet{padding-left:5px;padding-right:5px;}.rssfeedlist {background:#E3E38A;color:#000000;border-color:#CC504B;border-width:1px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.rssfeedlist:hover{background:-webkit-gradient(linear,0% 0%,0% 100%,from(#058cf5),to(#015fe6))}.rssfeedlist a:hover {background-color:#CCF}.rssfeedlist li a:hover{background-color:#015fe6}.rssfeedlist a{display:block;min-height:43px;width:auto;text-decoration:none}.rssfeedlist a img{width:auto;height:32px;float:left;margin:5px 0 0 5px}.rssfeedlist .name{width:auto;font-weight:bold;font-size:17px;color:#000000;float:left;margin:11px 0 0 7px}.rssfeedlist a:hover .name{color:#FFFFFF;}.rssfeedlistsnippet{padding-left:5px;padding-right:5px;}.ezmbcouponwidget {background:#E3E38A;color:#000000;border-color:#CC504B;border-width:px;border-style:None;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.optinform {background:#E3E38A;color:#000000;border-color:#CC504B;border-width:1px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.optinform .button input {background:#CC504B;color:#000000;}.contactform {background:#E3E38A;color:#000000;border-color:#CC504B;border-width:1px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.contactform .button input {background:#CC504B;color:#000000;}.customform {background:#E3E38A;color:#000000;border-color:#CC504B;border-width:1px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.customform .button input {background:#CC504B;color:#000000;}li.customformrow{position:relative;list-style-type:none;display:block;height:43px;overflow:hidden;border-top:1px solid #878787;border-top:1px solid #878787;width:auto}li.customformrowbelow{position:relative;list-style-type:none;display:block;height:43px;overflow:hidden;width:auto}p.customformrow{-webkit-margin-before: 0px;border-top:1px solid #878787;width:auto}.customformrow .customformlabel, .customformrow .customformlabelfull, .customformtextbox .customformlabel, .customformradiorow .customformlabel{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;padding-left:5px;overflow:hidden}.customformrow .customformlabel{line-height:44px;}.customformrow .customformlabelfull{line-height:44px;width:100%;height:auto;}.customformrow input {width:50%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.customformrowbelow input {width:100%;min-width:95%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}input.customformrowrequired{background: #ff8080;}.customformrow input:not([type=\'checkbox\']) {-webkit-appearance:none;}.customformrow select{width:50%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.customformrow:first-child input{border-top-right-radius:8px}.customformrow:last-child input{border-bottom-right-radius:8px}.customformtextbox{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.customformtextbox img{max-width:100%}.customformtextbox p{margin-top:2px;color:#000;margin-bottom:2px;text-align:justify}.customformtextbox ul{list-style:circle!important;margin:3px 0}.customformtextbox li{margin:0!important}.customformtextbox textarea{margin-top:5px;font-size:medium;padding:0}.customformradiorow{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.customformrow input[type=\"checkbox\"]{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOff.png)no-repeat;-webkit-appearance:none;border:0;margin:4px 4px 0 0}.customformrow input[type=\"checkbox\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOn.png)no-repeat;}.customformradiorow input[type=\"radio\"]{-webkit-appearance:none;border:0;width:100%;height: 43px;z-index:2;position:absolute;left:50%;margin:0;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOff.png) no-repeat;-webkit-border-radius:0}.customformradiorow input[type=\"radio\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOn.png) no-repeat;}.customformradiorow .customformradiorowinput {height: 40px;}.customformradiorow label{position: absolute;margin-top: 6px;margin-left:60%;text-overflow: ellipsis;}.customformradiorowbelow{position:relative;overflow:hidden;padding:5px 9px}.customformradiorowbelowlabel{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.customformradiorowbelowlabel .customformlabel{left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;padding-left:5px;overflow:hidden}.customformradiorowbelow input[type=\"radio\"]{-webkit-appearance:none;border:0;width:100%;height: 43px;z-index:2;position:absolute;left:10px;margin:0;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOff.png) no-repeat;-webkit-border-radius:0}.customformradiorowbelow input[type=\"radio\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOn.png) no-repeat;}.customformradiorowbelow .customformradiorowinputbelow {height: 40px;}span.customformlabelfull{font-weight:bold;font-size:17px;}.customformradiorowbelow label{position: absolute;margin-top: 6px;margin-left:45px;text-overflow: ellipsis;}li.customformrowbelow select{width:100%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.customformrowcheckboxright{position:relative;overflow:hidden;border-top:1px solid #878787;height: 40px;padding:5px 9px}.customformrowcheckboxright .customformlabel {left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;line-height:44px;overflow:hidden}.customformrowcheckboxright input[type=\"checkbox\"]{position: absolute;height: 40px;width: 35px;right:0;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOff.png)no-repeat;-webkit-appearance:none;border:0;margin:4px 4px 0 0}.customformrowcheckboxright input[type=\"checkbox\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOn.png) no-repeat;}.customformrowcheckboxleft{position:relative;overflow:hidden;border-top:1px solid #878787;height: 40px;padding:5px 9px}.customformrowcheckboxleft .customformlabel {margin-left:40px;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;line-height:44px;overflow:hidden}.customformrowcheckboxleft input[type=\"checkbox\"]{position: absolute;height: 40px;width: 35px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOff.png)no-repeat;-webkit-appearance:none;border:0;margin:4px 4px 0 0}.customformrowcheckboxleft input[type=\"checkbox\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOn.png) no-repeat;} .directions {background:#E3E38A;color:#000000;border-color:#CC504B;border-width:1px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.directions .button input {background:#CC504B;color:#000000;}.clear {clear: both;}.ezmbphone {margin-left: auto;margin-right: auto;text-align: center;}.ezmbphoneimg {margin-left: auto;margin-right: auto;text-align: center;}.phonebtnimg {margin-left: auto;margin-right: auto;text-align: center;}.phonebtn, .phonebtn:visited {background:#0AAB1A;color:#000000;border-color:#0AAB1A;border-width:px;border-style:None;-webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.6);text-shadow: 0 -1px 1px rgba(0,0,0,0.25);border-bottom: 1px solid rgba(0,0,0,0.25);display: inline-block; padding: 5px 10px 6px; text-decoration: none;border-radius: 10px;position: relative;cursor: pointer;font-weight:bold;}.ezmbfooter {Background:#CC504B;margin:0;}.ezmbfooter p {margin:0;}.textbox{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.searchbox{height:44px;background:-webkit-gradient(linear,0% 0%,0% 100%,from(#f1f3f4),color-stop(3%,#e0e4e7),color-stop(50%,#c7cfd4),color-stop(51%,#bec7cd),color-stop(97%,#b4bec6),to(#8999a5));width:100%;margin:-13px 0 13px}.searchbox form{height:24px;border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/searchfield.png) 4 14 1 24;display:block;position:relative;top:8px;border-width:4px 14px 1px 24px;margin:auto}fieldset{border:0;margin:0;padding:0}.searchbox input[type=\"text\"]{border:0;-webkit-appearance:none;height:18px;float:left;font-size:13px;position:relative;top:2px;left:2px;padding:0}.textbox img{max-width:100%}.textbox p{margin-top:2px;color:#000;margin-bottom:2px;text-align:justify}.textbox ul{list-style:circle!important;margin:3px 0}.textbox li{margin:0!important}.menulist li:first-child,.menulist li.form:first-child{border-top:0}.menu,.checkbox,.radiobutton,.select,li.button,li.bigfield,li.smallfield,li.searchsmallfield,li.optinsmallfield,li.contactsmallfield,li.mapsmallfield{position:relative;list-style-type:none;display:block;height:43px;overflow:hidden;border-top:1px solid #878787;border-top:1px solid #878787;width:auto}.menulist li:first-child:hover,.menulist li:first-child a,.radiobutton:first-child input,.select:first-child select,li.button:first-child input,.bigfield:first-child input{border-top-left-radius:8px;border-top-right-radius:8px}.menulist li:last-child:hover,.menulist li:last-child a,.radiobutton:last-child input,.select:last-child select,li.button:last-child input,.bigfield:last-child input{border-bottom-left-radius:8px;border-bottom-right-radius:8px}.menu:hover,.store:hover,.list #content li a:hover,.list .withimage:hover,.applist li:hover:nth-child(n),.ipodlist li:hover:nth-child(n){background:#015FE6;color:#FFFFFF;}.menu a:hover .comment{color:#FFFFFF;}.menu a{display:block;height:43px;width:auto;text-decoration:none}.menu a img{width:auto;height:32px;float:left;margin:5px 0 0 5px}.menu .name,.checkbox .name,.radiobutton .name{width:auto;font-weight:bold;font-size:17px;color:#FFFFFF;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;float:left;margin:11px 0 0 7px}.menu-item{position:relative;list-style-type:none;display:block;height:43px;overflow:hidden;border-top:1px solid #878787;border-top:1px solid #878787;width:auto}.menu-item a{display:block;height:43px;width:auto;text-decoration:none}.menu-item a img{width:auto;height:32px;float:left;margin:5px 0 0 5px}.menu-item .name,.checkbox .name,.radiobutton .name{width:auto;font-weight:bold;font-size:17px;color:#FFFFFF;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;float:left;margin:11px 0 0 7px}.menu-item:hover{background:#015FE6;color:#FFFFFF;}.menu-item a:hover .comment{color:#FFFFFF;}.menu-item .comment{width:auto;font-size:17px;text-overflow:ellipsis;overflow:hidden;max-width:75%;white-space:nowrap;float:right;color:#324f85;margin:11px 30px 0 0}.menu-item .arrow{position:absolute;width:24px!important;height:24px!important;right:10px;top:12px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/arrows/DarkBigArrow_Transparent.png) 0 0 no-repeat;margin:0!important}.menu-item .arrowleft{float:left;width:24px!important;height:24px!important;left:10px;top:12px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/arrows/DarkBigArrow_Transparent.png) 0 0 no-repeat;margin:0!important}.menu-item a:hover .name{color:#FFFFFF;}.menu .comment{width:auto;font-size:17px;text-overflow:ellipsis;overflow:hidden;max-width:75%;white-space:nowrap;float:right;color:#324f85;margin:11px 30px 0 0}.menu .arrow,.store .arrow,.musiclist .arrow,.list .arrow{position:absolute;width:24px!important;height:24px!important;right:10px;top:12px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/arrows/DarkBigArrow_Transparent.png) 0 0 no-repeat;margin:0!important}.menu .arrowleft,.store .arrowleft,.musiclist .arrowleft,.list .arrowleft{float:left;width:24px!important;height:24px!important;left:10px;top:12px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/arrows/DarkBigArrow_Transparent.png) 0 0 no-repeat;margin:0!important}#leftnav,#leftbutton{position:absolute;font-size:12px;left:9px;font-weight:bold}#leftnav,#leftbutton,#rightnav,#rightbutton{z-index:5000}#leftnav a,#rightnav a,#leftbutton a,#rightbutton a{display:block;color:#fff;text-shadow:rgba(0,0,0,0.6) 0 -1px 0;text-decoration:none}.black #leftnav a:first-child,.transparent #leftnav a:first-child{border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleftblack.png) 0 5 0 13-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleftblack.png) 0 5 0 13-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleftblack.png) 0 5 0 13-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleftblack.png) 0 5 0 13}.black #leftnav a,.transparent #leftnav a{border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleftblack.png) 0 5 0 13-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleftblack.png) 0 5 0 13-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleftblack.png) 0 5 0 13-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleftblack.png) 0 5 0 13}.black #rightnav a:first-child,.transparent #rightnav a:first-child{-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navrightblack.png) 0 13 0 5-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navrightblack.png) 0 13 0 5-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navrightblack.png) 0 13 0 5-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navrightblack.png) 0 13 0 5}.black #rightnav a,.transparent #rightnav a{-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkrightblack.png) 0 13 0 5-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkrightblack.png) 0 13 0 5-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkrightblack.png) 0 13 0 5-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkrightblack.png) 0 13 0 5}.black #leftbutton a,.black #rightbutton a,.transparent #leftbutton a,.transparent #rightbutton a{border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbuttonblack.png) 0 5 0 5-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbuttonblack.png) 0 5 0 5-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbuttonblack.png) 0 5 0 5-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbuttonblack.png) 0 5 0 5}#leftnav a:first-child{z-index:2;border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleft_std.png) 0 5 0 13;-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleft_std.png) 0 5 0 13;-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleft_std.png) 0 5 0 13;-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleft_std.png) 0 5 0 13;width:auto;border-width:0 5px 0 13px;border-radius:16px 6px 6px 16px}#leftnav a{border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleft.png) 0 5 0 13;-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleft.png) 0 5 0 13;-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleft.png) 0 5 0 13;-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleft.png) 0 5 0 13;z-index:3;margin-left:-4px;padding-right:4px;float:left;border-width:0 5px 0 13px;border-radius:16px 6px 6px 16px}#rightnav,#rightbutton{position:absolute;font-size:12px;right:9px;font-weight:bold}#rightnav a{border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkright.png) 0 13 0 5;-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkright.png) 0 13 0 5;-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkright.png) 0 13 0 5;-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkright.png) 0 13 0 5;z-index:3;margin-right:-4px;padding-left:4px;float:right;border-width:0 13px 0 5px;border-radius:6px 16px 16px 6px}#rightnav a:first-child{z-index:2;border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navright_std.png) 0 13 0 5;-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navright_std.png) 0 13 0 5;-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navright_std.png) 0 13 0 5;-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navright_std.png) 0 13 0 5;border-width:0 13px 0 5px;border-radius:6px 16px 16px 6px}#leftbutton a,#rightbutton a{border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbutton_std.png) 0 5 0 5;-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbutton_std.png) 0 5 0 5;-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbutton_std.png) 0 5 0 5;-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbutton_std.png) 0 5 0 5;border-width:0 5px;border-radius:6px}.gform_body ul { list-style-type: none; }.radiobutton .name{z-index:1}.select select{color:#000;font-weight:bold;font-size:17px;border-radius:0}.select option{max-width:90%}.select .arrow{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/arrow.png);width:8px;height:13px;display:block;-webkit-transform:rotate(90deg);position:absolute;right:10px;top:18px}.button input{width:100%;height:100%;-webkit-appearance:none;border:0;font-weight:bold;font-size:17px;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;background:none;border-radius:0}.textbox textarea{margin-top:5px;font-size:medium;padding:0}.bigfield input{-webkit-appearance:none;border:0;height:100%;background:transparent;font-weight:bold;font-size:17px;padding:0 0 0 5px;border-radius:0}.smallfield .name{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;line-height:44px;font-size:17px;padding-left:5px;overflow:hidden}.smallfield input{width:50%;position:absolute;right:0;height:44px;-webkit-appearance:none;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.smallfield:first-child input{border-top-right-radius:8px}.smallfield:last-child input{border-bottom-right-radius:8px}.searchsmallfield .name{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;line-height:44px;font-size:17px;padding-left:5px;overflow:hidden}.searchsmallfield input{width:50%;position:absolute;right:0;height:44px;-webkit-appearance:none;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.searchsmallfield:first-child input{border-top-right-radius:8px}.searchsmallfield:last-child input{border-bottom-right-radius:8px}.optinsmallfield .name{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;line-height:44px;font-size:17px;padding-left:5px;overflow:hidden}.optinsmallfield input{width:50%;position:absolute;right:0;height:44px;-webkit-appearance:none;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.optinsmallfield:first-child input{border-top-right-radius:8px}.optinsmallfield:last-child input{border-bottom-right-radius:8px}.contactsmallfield .name{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;line-height:44px;font-size:17px;padding-left:5px;overflow:hidden}.contactsmallfield input{width:50%;position:absolute;right:0;height:44px;-webkit-appearance:none;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.contactsmallfield:first-child input{border-top-right-radius:8px}.contactsmallfield:last-child input{border-bottom-right-radius:8px}.mapsmallfield .name{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;line-height:44px;font-size:17px;padding-left:5px;overflow:hidden}.mapsmallfield input{width:50%;position:absolute;right:0;height:44px;-webkit-appearance:none;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.mapsmallfield:first-child input{border-top-right-radius:8px}.mapsmallfield:last-child input{border-bottom-right-radius:8px}img,#duobutton a:last-child,#duoselectionbuttons a:first-child,.ipodlist li:hover:nth-child(n) .name,.ipodlist li:hover:nth-child(n) .time{border:0}#triselectionbuttons a:hover,#triselectionbuttons a#pressed,#duoselectionbuttons a:hover,#duoselectionbuttons a#pressed,li#doublead:hover{background:none}.menu a:hover .name,.store:hover .starcomment,.store:hover .name,.store:hover .comment,.list .withimage a:hover .comment,.list #content li a:hover{color:#FFFFFF;}@media screen and (max-width:320px) {#topbar{height:44px}#logo{max-width:320px;width:100%;}#title{line-height:44px;height:44px;font-size:16pt;}.searchbox form{width:272px}.searchbox input[type=\"text\"]{width:275px}.menu .name{max-width:77%}#leftnav a,#rightnav a,#leftbutton a,#rightbutton a{line-height:30px;height:30px}#leftnav img,#rightnav img{margin-top:4px}.textbox textarea{width:85%;}.customformtextbox textarea{width:85%;}.bigfield input{width:295px}.checkbox .name,.radiobutton .name{max-width:190px}#leftnav,#leftbutton,#rightnav,#rightbutton{top:7px}}@media screen and (min-width:321px) {#topbar{height:32px}#title{line-height:32px;height:32px;font-size:13pt}.menu .name{max-width:85%}#leftnav a,#rightnav a,#leftbutton a,#rightbutton a{line-height:24px;height:24px}#leftnav img,#rightnav img{margin-top:4px;height:70%}.textbox textarea{width:85%;}.customformtextbox textarea{width:85%;}#doublead{width:350px!important}.searchbox form{width:432px}.searchbox input[type=\"text\"]{width:435px}.bigfield input{width:455px}.checkbox .name,.radiobutton .name{max-width:75%}#leftnav,#leftbutton,#rightnav,#rightbutton{top:4px}}</style>");
INSERT INTO `wp_postmeta` VALUES("1707", "121", "_WPMSGOPTION_ThemeCustomFormStyleCSS", "<style  type=\"text/css\" >.customform {background:#E3E38A;color:#000000;border-color:#CC504B;border-width:1px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.customform .button input {background:#CC504B;color:#000000;}li.customformrow{position:relative;list-style-type:none;display:block;height:43px;overflow:hidden;border-top:1px solid #878787;border-top:1px solid #878787;width:auto}li.customformrowbelow{position:relative;list-style-type:none;display:block;height:43px;overflow:hidden;width:auto}p.customformrow{-webkit-margin-before: 0px;border-top:1px solid #878787;width:auto}.customformrow .customformlabel, .customformrow .customformlabelfull, .customformtextbox .customformlabel, .customformradiorow .customformlabel{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;padding-left:5px;overflow:hidden}.customformrow .customformlabel{line-height:44px;}.customformrow .customformlabelfull{line-height:44px;width:100%;height:auto;}.customformrow input {width:50%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.customformrowbelow input {width:100%;min-width:95%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}input.customformrowrequired{background: #ff8080;}.customformrow input:not([type=\'checkbox\']) {-webkit-appearance:none;}.customformrow select{width:50%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.customformrow:first-child input{border-top-right-radius:8px}.customformrow:last-child input{border-bottom-right-radius:8px}.customformtextbox{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.customformtextbox img{max-width:100%}.customformtextbox p{margin-top:2px;color:#000;margin-bottom:2px;text-align:justify}.customformtextbox ul{list-style:circle!important;margin:3px 0}.customformtextbox li{margin:0!important}.customformtextbox textarea{margin-top:5px;font-size:medium;padding:0}.customformradiorow{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.customformrow input[type=\"checkbox\"]{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOff.png)no-repeat;-webkit-appearance:none;border:0;margin:4px 4px 0 0}.customformrow input[type=\"checkbox\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOn.png)no-repeat;}.customformradiorow input[type=\"radio\"]{-webkit-appearance:none;border:0;width:100%;height: 43px;z-index:2;position:absolute;left:50%;margin:0;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOff.png) no-repeat;-webkit-border-radius:0}.customformradiorow input[type=\"radio\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOn.png) no-repeat;}.customformradiorow .customformradiorowinput {height: 40px;}.customformradiorow label{position: absolute;margin-top: 6px;margin-left:60%;text-overflow: ellipsis;}.customformradiorowbelow{position:relative;overflow:hidden;padding:5px 9px}.customformradiorowbelowlabel{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.customformradiorowbelowlabel .customformlabel{left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;padding-left:5px;overflow:hidden}.customformradiorowbelow input[type=\"radio\"]{-webkit-appearance:none;border:0;width:100%;height: 43px;z-index:2;position:absolute;left:10px;margin:0;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOff.png) no-repeat;-webkit-border-radius:0}.customformradiorowbelow input[type=\"radio\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOn.png) no-repeat;}.customformradiorowbelow .customformradiorowinputbelow {height: 40px;}span.customformlabelfull{font-weight:bold;font-size:17px;}.customformradiorowbelow label{position: absolute;margin-top: 6px;margin-left:45px;text-overflow: ellipsis;}li.customformrowbelow select{width:100%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.customformrowcheckboxright{position:relative;overflow:hidden;border-top:1px solid #878787;height: 40px;padding:5px 9px}.customformrowcheckboxright .customformlabel {left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;line-height:44px;overflow:hidden}.customformrowcheckboxright input[type=\"checkbox\"]{position: absolute;height: 40px;width: 35px;right:0;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOff.png)no-repeat;-webkit-appearance:none;border:0;margin:4px 4px 0 0}.customformrowcheckboxright input[type=\"checkbox\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOn.png) no-repeat;}.customformrowcheckboxleft{position:relative;overflow:hidden;border-top:1px solid #878787;height: 40px;padding:5px 9px}.customformrowcheckboxleft .customformlabel {margin-left:40px;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;line-height:44px;overflow:hidden}.customformrowcheckboxleft input[type=\"checkbox\"]{position: absolute;height: 40px;width: 35px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOff.png)no-repeat;-webkit-appearance:none;border:0;margin:4px 4px 0 0}.customformrowcheckboxleft input[type=\"checkbox\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOn.png) no-repeat;}</style>");
INSERT INTO `wp_postmeta` VALUES("1708", "122", "_WPMSGOPTION_PageBackgroundColor", "FFFFCC");
INSERT INTO `wp_postmeta` VALUES("1709", "122", "_WPMSGOPTION_LogoBackgroundColor", "E3E38A");
INSERT INTO `wp_postmeta` VALUES("1710", "122", "_WPMSGOPTION_FooterBackgroundColor", "E3E38A");
INSERT INTO `wp_postmeta` VALUES("1711", "122", "_WPMSGOPTION_ParagraphTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1712", "122", "_WPMSGOPTION_ParagraphTextSize", "");
INSERT INTO `wp_postmeta` VALUES("1713", "122", "_WPMSGOPTION_BackgroundImage", "");
INSERT INTO `wp_postmeta` VALUES("1714", "122", "_WPMSGOPTION_BackgroundImageRepeat", "");
INSERT INTO `wp_postmeta` VALUES("1715", "122", "_WPMSGOPTION_BackgroundImagePosition", "");
INSERT INTO `wp_postmeta` VALUES("1716", "122", "_WPMSGOPTION_TopbarStartColor", "202020");
INSERT INTO `wp_postmeta` VALUES("1717", "122", "_WPMSGOPTION_TopbarEndColor", "858585");
INSERT INTO `wp_postmeta` VALUES("1718", "122", "_WPMSGOPTION_TopbarTextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("1719", "122", "_WPMSGOPTION_TopbarButtonColor", "std");
INSERT INTO `wp_postmeta` VALUES("1720", "122", "_WPMSGOPTION_H1TextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1721", "122", "_WPMSGOPTION_H1TextSize", "");
INSERT INTO `wp_postmeta` VALUES("1722", "122", "_WPMSGOPTION_H1TextShadow", "");
INSERT INTO `wp_postmeta` VALUES("1723", "122", "_WPMSGOPTION_H2TextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1724", "122", "_WPMSGOPTION_H2TextSize", "");
INSERT INTO `wp_postmeta` VALUES("1725", "122", "_WPMSGOPTION_H2TextShadow", "");
INSERT INTO `wp_postmeta` VALUES("1726", "122", "_WPMSGOPTION_H3TextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1727", "122", "_WPMSGOPTION_H3TextSize", "");
INSERT INTO `wp_postmeta` VALUES("1728", "122", "_WPMSGOPTION_H3TextShadow", "");
INSERT INTO `wp_postmeta` VALUES("1729", "122", "_WPMSGOPTION_H4TextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1730", "122", "_WPMSGOPTION_H4TextSize", "");
INSERT INTO `wp_postmeta` VALUES("1731", "122", "_WPMSGOPTION_H4TextShadow", "");
INSERT INTO `wp_postmeta` VALUES("1732", "122", "_WPMSGOPTION_H5TextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1733", "122", "_WPMSGOPTION_H5TextSize", "");
INSERT INTO `wp_postmeta` VALUES("1734", "122", "_WPMSGOPTION_H5TextShadow", "");
INSERT INTO `wp_postmeta` VALUES("1735", "122", "_WPMSGOPTION_H6TextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1736", "122", "_WPMSGOPTION_H6TextSize", "");
INSERT INTO `wp_postmeta` VALUES("1737", "122", "_WPMSGOPTION_H6TextShadow", "");
INSERT INTO `wp_postmeta` VALUES("1738", "122", "_WPMSGOPTION_MenuBackgroundColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("1739", "122", "_WPMSGOPTION_IconTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1740", "122", "_WPMSGOPTION_MenuTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1741", "122", "_WPMSGOPTION_MenuTextSize", "");
INSERT INTO `wp_postmeta` VALUES("1742", "122", "_WPMSGOPTION_MenuBorderColor", "CC504B");
INSERT INTO `wp_postmeta` VALUES("1743", "122", "_WPMSGOPTION_MenuBorderWidth", "1");
INSERT INTO `wp_postmeta` VALUES("1744", "122", "_WPMSGOPTION_MenuBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("1745", "122", "_WPMSGOPTION_MenuOpacity", "1");
INSERT INTO `wp_postmeta` VALUES("1746", "122", "_WPMSGOPTION_MenuArrowImage", "DarkBigArrow");
INSERT INTO `wp_postmeta` VALUES("1747", "122", "_WPMSGOPTION_MenuArrowColor", "Transparent");
INSERT INTO `wp_postmeta` VALUES("1748", "122", "_WPMSGOPTION_MenuSelectedBackgroundColor", "015FE6");
INSERT INTO `wp_postmeta` VALUES("1749", "122", "_WPMSGOPTION_MenuSelectedTextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("1750", "122", "_WPMSGOPTION_MenuSeparatorColor", "878787");
INSERT INTO `wp_postmeta` VALUES("1751", "122", "_WPMSGOPTION_BlockquoteBackgroundColor", "E3E38A");
INSERT INTO `wp_postmeta` VALUES("1752", "122", "_WPMSGOPTION_BlockquoteTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1753", "122", "_WPMSGOPTION_BlockquoteTextSize", "");
INSERT INTO `wp_postmeta` VALUES("1754", "122", "_WPMSGOPTION_BlockquoteBorderColor", "CC504B");
INSERT INTO `wp_postmeta` VALUES("1755", "122", "_WPMSGOPTION_BlockquoteBorderWidth", "1");
INSERT INTO `wp_postmeta` VALUES("1756", "122", "_WPMSGOPTION_BlockquoteBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("1757", "122", "_WPMSGOPTION_TableBackgroundColor", "E3E38A");
INSERT INTO `wp_postmeta` VALUES("1758", "122", "_WPMSGOPTION_TableTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1759", "122", "_WPMSGOPTION_TableTextSize", "");
INSERT INTO `wp_postmeta` VALUES("1760", "122", "_WPMSGOPTION_TableBorderColor", "CC504B");
INSERT INTO `wp_postmeta` VALUES("1761", "122", "_WPMSGOPTION_TableBorderWidth", "1");
INSERT INTO `wp_postmeta` VALUES("1762", "122", "_WPMSGOPTION_TableBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("1763", "122", "_WPMSGOPTION_TableWidth", "95");
INSERT INTO `wp_postmeta` VALUES("1764", "122", "_WPMSGOPTION_TablePadding", "2");
INSERT INTO `wp_postmeta` VALUES("1765", "122", "_WPMSGOPTION_ClickToCallBackgroundColor", "0AAB1A");
INSERT INTO `wp_postmeta` VALUES("1766", "122", "_WPMSGOPTION_ClickToCallTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1767", "122", "_WPMSGOPTION_ClickToCallTextSize", "");
INSERT INTO `wp_postmeta` VALUES("1768", "122", "_WPMSGOPTION_ClickToCallBorderColor", "0AAB1A");
INSERT INTO `wp_postmeta` VALUES("1769", "122", "_WPMSGOPTION_ClickToCallBorderWidth", "");
INSERT INTO `wp_postmeta` VALUES("1770", "122", "_WPMSGOPTION_ClickToCallBorderStyle", "None");
INSERT INTO `wp_postmeta` VALUES("1771", "122", "_WPMSGOPTION_OptinFormBackgroundColor", "E3E38A");
INSERT INTO `wp_postmeta` VALUES("1772", "122", "_WPMSGOPTION_OptinFormInputBackgroundColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("1773", "122", "_WPMSGOPTION_OptinFormSubmitBackgroundColor", "96B0AD");
INSERT INTO `wp_postmeta` VALUES("1774", "122", "_WPMSGOPTION_OptinFormSubmitTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1775", "122", "_WPMSGOPTION_OptinFormTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1776", "122", "_WPMSGOPTION_OptinFormTextSize", "");
INSERT INTO `wp_postmeta` VALUES("1777", "122", "_WPMSGOPTION_OptinFormBorderColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1778", "122", "_WPMSGOPTION_OptinFormBorderWidth", "1");
INSERT INTO `wp_postmeta` VALUES("1779", "122", "_WPMSGOPTION_OptinFormBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("1780", "122", "_WPMSGOPTION_ContactFormBackgroundColor", "E3E38A");
INSERT INTO `wp_postmeta` VALUES("1781", "122", "_WPMSGOPTION_ContactFormInputBackgroundColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("1782", "122", "_WPMSGOPTION_ContactFormSubmitBackgroundColor", "96B0AD");
INSERT INTO `wp_postmeta` VALUES("1783", "122", "_WPMSGOPTION_ContactFormSubmitTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1784", "122", "_WPMSGOPTION_ContactFormTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1785", "122", "_WPMSGOPTION_ContactFormTextSize", "");
INSERT INTO `wp_postmeta` VALUES("1786", "122", "_WPMSGOPTION_ContactFormBorderColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1787", "122", "_WPMSGOPTION_ContactFormBorderWidth", "1");
INSERT INTO `wp_postmeta` VALUES("1788", "122", "_WPMSGOPTION_ContactFormBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("1789", "122", "_WPMSGOPTION_DirectionsBackgroundColor", "E3E38A");
INSERT INTO `wp_postmeta` VALUES("1790", "122", "_WPMSGOPTION_DirectionsInputBackgroundColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("1791", "122", "_WPMSGOPTION_DirectionsSubmitBackgroundColor", "96B0AD");
INSERT INTO `wp_postmeta` VALUES("1792", "122", "_WPMSGOPTION_DirectionsSubmitTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1793", "122", "_WPMSGOPTION_DirectionsTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1794", "122", "_WPMSGOPTION_DirectionsTextSize", "");
INSERT INTO `wp_postmeta` VALUES("1795", "122", "_WPMSGOPTION_DirectionsBorderColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1796", "122", "_WPMSGOPTION_DirectionsBorderWidth", "1");
INSERT INTO `wp_postmeta` VALUES("1797", "122", "_WPMSGOPTION_DirectionsBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("1798", "122", "_WPMSGOPTION_SlideshowBackgroundColor", "E3E38A");
INSERT INTO `wp_postmeta` VALUES("1799", "122", "_WPMSGOPTION_SlideshowTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1800", "122", "_WPMSGOPTION_SlideshowTextSize", "");
INSERT INTO `wp_postmeta` VALUES("1801", "122", "_WPMSGOPTION_SlideshowBorderColor", "96B0AD");
INSERT INTO `wp_postmeta` VALUES("1802", "122", "_WPMSGOPTION_SlideshowBorderWidth", "");
INSERT INTO `wp_postmeta` VALUES("1803", "122", "_WPMSGOPTION_SlideshowBorderStyle", "None");
INSERT INTO `wp_postmeta` VALUES("1804", "122", "_WPMSGOPTION_AccordianTitleBackgroundColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("1805", "122", "_WPMSGOPTION_AccordianTitleTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1806", "122", "_WPMSGOPTION_AccordianTitleTextSize", "");
INSERT INTO `wp_postmeta` VALUES("1807", "122", "_WPMSGOPTION_AccordianTitleSelectedBackgroundColor", "015FE6");
INSERT INTO `wp_postmeta` VALUES("1808", "122", "_WPMSGOPTION_AccordianTitleSelectedTextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("1809", "122", "_WPMSGOPTION_AccordianBackgroundColor", "E3E38A");
INSERT INTO `wp_postmeta` VALUES("1810", "122", "_WPMSGOPTION_AccordianTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1811", "122", "_WPMSGOPTION_AccordianTextSize", "");
INSERT INTO `wp_postmeta` VALUES("1812", "122", "_WPMSGOPTION_AccordianSeparatorColor", "878787");
INSERT INTO `wp_postmeta` VALUES("1813", "122", "_WPMSGOPTION_AccordianBorderColor", "CC504B");
INSERT INTO `wp_postmeta` VALUES("1814", "122", "_WPMSGOPTION_AccordianBorderWidth", "1");
INSERT INTO `wp_postmeta` VALUES("1815", "122", "_WPMSGOPTION_AccordianBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("1816", "122", "_WPMSGOPTION_AccordianArrowImage", "LightTriangle");
INSERT INTO `wp_postmeta` VALUES("1817", "122", "_WPMSGOPTION_AccordianArrowColor", "Transparent");
INSERT INTO `wp_postmeta` VALUES("1818", "122", "_WPMSGOPTION_CouponBackgroundColor", "E3E38A");
INSERT INTO `wp_postmeta` VALUES("1819", "122", "_WPMSGOPTION_CouponTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1820", "122", "_WPMSGOPTION_CouponTextSize", "");
INSERT INTO `wp_postmeta` VALUES("1821", "122", "_WPMSGOPTION_CouponBorderColor", "96B0AD");
INSERT INTO `wp_postmeta` VALUES("1822", "122", "_WPMSGOPTION_CouponBorderWidth", "2");
INSERT INTO `wp_postmeta` VALUES("1823", "122", "_WPMSGOPTION_CouponBorderStyle", "Dashed");
INSERT INTO `wp_postmeta` VALUES("1824", "122", "_WPMSGOPTION_SearchBackgroundColor", "E3E38A");
INSERT INTO `wp_postmeta` VALUES("1825", "122", "_WPMSGOPTION_SearchTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1826", "122", "_WPMSGOPTION_SearchTextSize", "");
INSERT INTO `wp_postmeta` VALUES("1827", "122", "_WPMSGOPTION_SearchBorderColor", "96B0AD");
INSERT INTO `wp_postmeta` VALUES("1828", "122", "_WPMSGOPTION_SearchBorderWidth", "1");
INSERT INTO `wp_postmeta` VALUES("1829", "122", "_WPMSGOPTION_SearchBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("1830", "122", "_WPMSGOPTION_SearchInputBackgroundColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("1831", "122", "_WPMSGOPTION_SearchSubmitBackgroundColor", "96B0AD");
INSERT INTO `wp_postmeta` VALUES("1832", "122", "_WPMSGOPTION_SearchSubmitTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1833", "122", "_WPMSGOPTION_SearchSelectedBackgroundColor", "015FE6");
INSERT INTO `wp_postmeta` VALUES("1834", "122", "_WPMSGOPTION_SearchSelectedTextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("1835", "122", "_WPMSGOPTION_SearchHighlightColor", "FFFF00");
INSERT INTO `wp_postmeta` VALUES("1836", "122", "_WPMSGOPTION_RssBackgroundColor", "E3E38A");
INSERT INTO `wp_postmeta` VALUES("1837", "122", "_WPMSGOPTION_RssTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1838", "122", "_WPMSGOPTION_RssTextSize", "");
INSERT INTO `wp_postmeta` VALUES("1839", "122", "_WPMSGOPTION_RssBorderColor", "96B0AD");
INSERT INTO `wp_postmeta` VALUES("1840", "122", "_WPMSGOPTION_RssBorderWidth", "1");
INSERT INTO `wp_postmeta` VALUES("1841", "122", "_WPMSGOPTION_RssBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("1842", "122", "_WPMSGOPTION_RssSelectedBackgroundColor", "015FE6");
INSERT INTO `wp_postmeta` VALUES("1843", "122", "_WPMSGOPTION_RssSelectedTextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("1844", "122", "_WPMSGOPTION_ThemeStyleCSS", "<style  type=\"text/css\" >body{position:relative;-webkit-text-size-adjust:none;min-height:416px;{--wpmsgtknsinglepageminimumheight--}font-family:helvetica,sans-serif;-webkit-background-size:.438em 100%;Background:#FFFFCC;-webkit-touch-callout:none;margin:0;margin-right:auto; margin-left:auto;}img.alignright {float:right; max-width:100%; margin:0 0 1em 1em}img.alignleft {float:left; max-width:100%; margin:0 1em 1em 0}img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}a img.alignright {float:right; max-width:100%; margin:0 0 1em 1em}a img.alignleft {float:left; max-width:100%; margin:0 1em 1em 0}a img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}#accordion {background:#E3E38A;border-color:#CC504B;border-width:1px;border-style:Solid;margin:5px 5px 5px 5px;border-radius:8px}#accordion H2 {padding-top: 5pxpadding-bottom: 5px; padding-left: 15px; padding-right: 15px; margin: 0px 0px 0px 0px; background:#FFFFFF;font-size:17px;color:#000000;cursor: pointer; height:43px;overflow:hidden;border-top:1px solid #878787;font-weight: bold; line-height: 40px;}#accordion H2:first-child{border-top:none;border-radius:8px}#accordion H2:last-child{border-bottom-left-radius:8px;border-bottom-right-radius:8px}#accordion H2.current {background-color:#015FE6; color:#FFFFFF; cursor: default}#accordion div.acchead {padding-top: 5pxpadding-bottom: 5px; padding-left: 15px; padding-right: 15px; margin: 0px 0px 0px 0px; font-weight:bold;font-size:17px;background:#FFFFFF;font-size:17px;color:#000000;cursor: pointer; height:43px;overflow:hidden;border-top:1px solid #878787;line-height: 40px;}#accordion div.acchead:first-child{border-top:none;border-top-left-radius:8px;border-top-right-radius:8px;}#accordion div.acchead.current {background-color:#015FE6; color:#FFFFFF; cursor: default}#accordion .pane {padding-top: 15pxpadding-bottom: 15px; padding-left: 15px; padding-right: 15px; display: none; color:#000000;border-bottom-left-radius:8px;border-bottom-right-radius:8px;}#accordion .acchead .accarrow {float: right;valign: center;width:24px!important;height:24px!important;right:10px;top:18px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/arrows/Down_LightTriangle_Transparent.png) 0 0 no-repeat;margin:0!important ;margin-top: 15px;padding-top: 15px;}.images {background:#E3E38A;color:#000000;border-color:#96B0AD;border-width:px;border-style:;{--wpmsgtknslideshowheight--}{--wpmsgtknslideshowwidth--}overflow:hidden;margin-left:auto;margin-right:auto;position:relative;cursor:pointer;-moz-border-radius:5px;-moz-box-shadow:0 0 25px #666;-webkit-border-radius:5px;-webkit-box-shadow:0 0 25px #666;border-radius:5px;box-shadow:0 0 25px #666;}.images div {display:none;position:absolute;top:0;left:0;width: 100%;}.images div p a img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}.images div p img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}.images div a img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}.images div img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}.images img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}.images h3 {font-size:22px;font-weight:normal;margin:0 0 20px 0;color:#456;}.slidetabs {clear:both;}.slidetabs a {width:8px;height:8px;float:left;margin:3px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navigator.png) 0 0 no-repeat;display:block;font-size:1px;}.slidetabs a:hover {background-position:0 -8px;}.slidetabs a.current {background-position:0 -16px; } .forward, .backward {float:left;background:#fff url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/hori_large.png) no-repeat;display:block;width:30px;height:30px;cursor:pointer;font-size:1px;text-indent:-9999em;}.forward { background-position: 0 -30px; clear:right; }.forward:hover { background-position:-30px -30px; }.forward:active{ background-position:-60px -30px; } .backward:hover{ background-position:-30px 0; }.backward:active{ background-position:-60px 0; }.disabled {visibility:hidden !important;}.gallery { list-style: none; padding: 0; margin: 0; }.gallery:after { clear: both; content: \".\"; display: block; height: 0; visibility: hidden; }.gallery li { float: left; width: 33.33333333%; }.gallery li a { display: block; margin: 5px; border: 1px solid #3c3c3c; }.gallery li img { display: block; width: 100%; height: auto; }.highlight { background:#FFFF00;}.highlight_important { background:#FFFF00;}.center{display:block;text-align:center!important;margin:auto}a:hover .arrow{background:0 -13px!important}#topbar.transparent{background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#202020), to(#858585));background-image: -webkit-linear-gradient(top, #202020, #858585);background-image:-moz-linear-gradient(top, #202020, #858585);background-image: -ms-linear-gradient(top, #202020, #858585);background-image:-o-linear-gradient(top, #202020, #858585);}#topbar{position:relative;left:0;top:0;width:auto;}#title{position:absolute;font-weight:bold;top:0;left:0;right:0;text-align:center;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;color:#FFF;color:#FFFFFF;text-shadow:rgba(0,0,0,0.6) 0 -1px 0;padding:0 10px;}#logo{Background:#FFFFCC;}#content{width:100%;position:relative;min-height:250px;{--wpmsgtknsinglepageminimumheight--}height:auto;z-index:0;overflow:hidden;{--wpmsgtknsinglepagebackgroundimage--}}p {padding:0 5px;color:#000000;}h1 {padding:0 5px;color:#000000;}h2 {padding:0 5px;color:#000000;}h3 {padding:0 5px;color:#000000;}h4 {padding:0 5px;color:#000000;}h5 {padding:0 5px;color:#000000;}h6 {padding:0 5px;color:#000000;}blockquote {background:#E3E38A;color:#000000;border-color:#CC504B;border-width:1px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 6px 10px;padding:0 5px;border-radius:8px}blockquote p {background:#E3E38A;color:#000000;}.ezmbfooter p {padding:0 5px;color:#000000;}.ezmbtable {width:95%;margin-left:auto;margin-right:auto;border-collapse:collapse;background:#E3E38A;color:#000000;border-color:#CC504B;border-width:1px;border-style:Solid;}.ezmbtable td {background:#E3E38A;color:#000000;border-color:#CC504B;border-width:1px;border-style:Solid;padding:2px;}.ezmbtable td p {background:#E3E38A;color:#000000;}.ezmbiconlist {color:#000000;}.menulist {background:#FFFFFF;color:#000000;border-color:#CC504B;border-width:1px;border-style:Solid;opacity:1;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.menulist span.name{color:#000000;text-decoration:none}.menulist span.menudesc{color:#;text-decoration:none}.menulist td a{text-decoration:none}.menulist td a img{vertical-align:text-top;text-decoration:none}.menulist td{vertical-align:text-top;}.searchlist {background:#E3E38A;color:#000000;border-color:#96B0AD;border-width:1px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.searchform {background:#E3E38A;color:#000000;border-color:#96B0AD;border-width:1px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.searchform .button input {background:#96B0AD;color:#000000;}.searchlist:hover,{background:-webkit-gradient(linear,0% 0%,0% 100%,from(#058cf5),to(#015fe6))}.searchlist a:hover {background-color:#CCF}.searchlist li a:hover{background:#015FE6;}.searchlist a{display:block;height:43px;width:auto;text-decoration:none}.searchlist a img{width:auto;height:32px;float:left;margin:5px 0 0 5px}.searchlist .name{width:auto;font-weight:bold;font-size:17px;color:#000000;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;float:left;margin:11px 0 0 7px}.searchlist a:hover .name{color:#FFFFFF;}.searchlistsnippet{padding-left:5px;padding-right:5px;}.rssfeedlist {background:#E3E38A;color:#000000;border-color:#96B0AD;border-width:1px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.rssfeedlist:hover{background:-webkit-gradient(linear,0% 0%,0% 100%,from(#058cf5),to(#015fe6))}.rssfeedlist a:hover {background-color:#CCF}.rssfeedlist li a:hover{background-color:#015fe6}.rssfeedlist a{display:block;min-height:43px;width:auto;text-decoration:none}.rssfeedlist a img{width:auto;height:32px;float:left;margin:5px 0 0 5px}.rssfeedlist .name{width:auto;font-weight:bold;font-size:17px;color:#000000;float:left;margin:11px 0 0 7px}.rssfeedlist a:hover .name{color:#FFFFFF;}.rssfeedlistsnippet{padding-left:5px;padding-right:5px;}.ezmbcouponwidget {background:#E3E38A;color:#000000;border-color:#96B0AD;border-width:2px;border-style:Dashed;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.optinform {background:#E3E38A;color:#000000;border-color:#000000;border-width:1px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.optinform .button input {background:#96B0AD;color:#000000;}.contactform {background:#E3E38A;color:#000000;border-color:#000000;border-width:1px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.contactform .button input {background:#96B0AD;color:#000000;}.customform {background:#E3E38A;color:#000000;border-color:#000000;border-width:1px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.customform .button input {background:#96B0AD;color:#000000;}li.customformrow{position:relative;list-style-type:none;display:block;height:43px;overflow:hidden;border-top:1px solid #878787;border-top:1px solid #878787;width:auto}li.customformrowbelow{position:relative;list-style-type:none;display:block;height:43px;overflow:hidden;width:auto}p.customformrow{-webkit-margin-before: 0px;border-top:1px solid #878787;width:auto}.customformrow .customformlabel, .customformrow .customformlabelfull, .customformtextbox .customformlabel, .customformradiorow .customformlabel{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;padding-left:5px;overflow:hidden}.customformrow .customformlabel{line-height:44px;}.customformrow .customformlabelfull{line-height:44px;width:100%;height:auto;}.customformrow input {width:50%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.customformrowbelow input {width:100%;min-width:95%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}input.customformrowrequired{background: #ff8080;}.customformrow input:not([type=\'checkbox\']) {-webkit-appearance:none;}.customformrow select{width:50%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.customformrow:first-child input{border-top-right-radius:8px}.customformrow:last-child input{border-bottom-right-radius:8px}.customformtextbox{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.customformtextbox img{max-width:100%}.customformtextbox p{margin-top:2px;color:#000;margin-bottom:2px;text-align:justify}.customformtextbox ul{list-style:circle!important;margin:3px 0}.customformtextbox li{margin:0!important}.customformtextbox textarea{margin-top:5px;font-size:medium;padding:0}.customformradiorow{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.customformrow input[type=\"checkbox\"]{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOff.png)no-repeat;-webkit-appearance:none;border:0;margin:4px 4px 0 0}.customformrow input[type=\"checkbox\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOn.png)no-repeat;}.customformradiorow input[type=\"radio\"]{-webkit-appearance:none;border:0;width:100%;height: 43px;z-index:2;position:absolute;left:50%;margin:0;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOff.png) no-repeat;-webkit-border-radius:0}.customformradiorow input[type=\"radio\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOn.png) no-repeat;}.customformradiorow .customformradiorowinput {height: 40px;}.customformradiorow label{position: absolute;margin-top: 6px;margin-left:60%;text-overflow: ellipsis;}.customformradiorowbelow{position:relative;overflow:hidden;padding:5px 9px}.customformradiorowbelowlabel{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.customformradiorowbelowlabel .customformlabel{left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;padding-left:5px;overflow:hidden}.customformradiorowbelow input[type=\"radio\"]{-webkit-appearance:none;border:0;width:100%;height: 43px;z-index:2;position:absolute;left:10px;margin:0;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOff.png) no-repeat;-webkit-border-radius:0}.customformradiorowbelow input[type=\"radio\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOn.png) no-repeat;}.customformradiorowbelow .customformradiorowinputbelow {height: 40px;}span.customformlabelfull{font-weight:bold;font-size:17px;}.customformradiorowbelow label{position: absolute;margin-top: 6px;margin-left:45px;text-overflow: ellipsis;}li.customformrowbelow select{width:100%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.customformrowcheckboxright{position:relative;overflow:hidden;border-top:1px solid #878787;height: 40px;padding:5px 9px}.customformrowcheckboxright .customformlabel {left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;line-height:44px;overflow:hidden}.customformrowcheckboxright input[type=\"checkbox\"]{position: absolute;height: 40px;width: 35px;right:0;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOff.png)no-repeat;-webkit-appearance:none;border:0;margin:4px 4px 0 0}.customformrowcheckboxright input[type=\"checkbox\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOn.png) no-repeat;}.customformrowcheckboxleft{position:relative;overflow:hidden;border-top:1px solid #878787;height: 40px;padding:5px 9px}.customformrowcheckboxleft .customformlabel {margin-left:40px;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;line-height:44px;overflow:hidden}.customformrowcheckboxleft input[type=\"checkbox\"]{position: absolute;height: 40px;width: 35px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOff.png)no-repeat;-webkit-appearance:none;border:0;margin:4px 4px 0 0}.customformrowcheckboxleft input[type=\"checkbox\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOn.png) no-repeat;} .directions {background:#E3E38A;color:#000000;border-color:#000000;border-width:1px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.directions .button input {background:#96B0AD;color:#000000;}.clear {clear: both;}.ezmbphone {margin-left: auto;margin-right: auto;text-align: center;}.ezmbphoneimg {margin-left: auto;margin-right: auto;text-align: center;}.phonebtnimg {margin-left: auto;margin-right: auto;text-align: center;}.phonebtn, .phonebtn:visited {background:#0AAB1A;color:#000000;border-color:#0AAB1A;border-width:px;border-style:None;-webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.6);text-shadow: 0 -1px 1px rgba(0,0,0,0.25);border-bottom: 1px solid rgba(0,0,0,0.25);display: inline-block; padding: 5px 10px 6px; text-decoration: none;border-radius: 10px;position: relative;cursor: pointer;font-weight:bold;}.ezmbfooter {Background:#E3E38A;margin:0;}.ezmbfooter p {margin:0;}.textbox{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.searchbox{height:44px;background:-webkit-gradient(linear,0% 0%,0% 100%,from(#f1f3f4),color-stop(3%,#e0e4e7),color-stop(50%,#c7cfd4),color-stop(51%,#bec7cd),color-stop(97%,#b4bec6),to(#8999a5));width:100%;margin:-13px 0 13px}.searchbox form{height:24px;border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/searchfield.png) 4 14 1 24;display:block;position:relative;top:8px;border-width:4px 14px 1px 24px;margin:auto}fieldset{border:0;margin:0;padding:0}.searchbox input[type=\"text\"]{border:0;-webkit-appearance:none;height:18px;float:left;font-size:13px;position:relative;top:2px;left:2px;padding:0}.textbox img{max-width:100%}.textbox p{margin-top:2px;color:#000;margin-bottom:2px;text-align:justify}.textbox ul{list-style:circle!important;margin:3px 0}.textbox li{margin:0!important}.menulist li:first-child,.menulist li.form:first-child{border-top:0}.menu,.checkbox,.radiobutton,.select,li.button,li.bigfield,li.smallfield,li.searchsmallfield,li.optinsmallfield,li.contactsmallfield,li.mapsmallfield{position:relative;list-style-type:none;display:block;height:43px;overflow:hidden;border-top:1px solid #878787;border-top:1px solid #878787;width:auto}.menulist li:first-child:hover,.menulist li:first-child a,.radiobutton:first-child input,.select:first-child select,li.button:first-child input,.bigfield:first-child input{border-top-left-radius:8px;border-top-right-radius:8px}.menulist li:last-child:hover,.menulist li:last-child a,.radiobutton:last-child input,.select:last-child select,li.button:last-child input,.bigfield:last-child input{border-bottom-left-radius:8px;border-bottom-right-radius:8px}.menu:hover,.store:hover,.list #content li a:hover,.list .withimage:hover,.applist li:hover:nth-child(n),.ipodlist li:hover:nth-child(n){background:#015FE6;color:#FFFFFF;}.menu a:hover .comment{color:#FFFFFF;}.menu a{display:block;height:43px;width:auto;text-decoration:none}.menu a img{width:auto;height:32px;float:left;margin:5px 0 0 5px}.menu .name,.checkbox .name,.radiobutton .name{width:auto;font-weight:bold;font-size:17px;color:#000000;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;float:left;margin:11px 0 0 7px}.menu-item{position:relative;list-style-type:none;display:block;height:43px;overflow:hidden;border-top:1px solid #878787;border-top:1px solid #878787;width:auto}.menu-item a{display:block;height:43px;width:auto;text-decoration:none}.menu-item a img{width:auto;height:32px;float:left;margin:5px 0 0 5px}.menu-item .name,.checkbox .name,.radiobutton .name{width:auto;font-weight:bold;font-size:17px;color:#000000;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;float:left;margin:11px 0 0 7px}.menu-item:hover{background:#015FE6;color:#FFFFFF;}.menu-item a:hover .comment{color:#FFFFFF;}.menu-item .comment{width:auto;font-size:17px;text-overflow:ellipsis;overflow:hidden;max-width:75%;white-space:nowrap;float:right;color:#324f85;margin:11px 30px 0 0}.menu-item .arrow{position:absolute;width:24px!important;height:24px!important;right:10px;top:12px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/arrows/DarkBigArrow_Transparent.png) 0 0 no-repeat;margin:0!important}.menu-item .arrowleft{float:left;width:24px!important;height:24px!important;left:10px;top:12px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/arrows/DarkBigArrow_Transparent.png) 0 0 no-repeat;margin:0!important}.menu-item a:hover .name{color:#FFFFFF;}.menu .comment{width:auto;font-size:17px;text-overflow:ellipsis;overflow:hidden;max-width:75%;white-space:nowrap;float:right;color:#324f85;margin:11px 30px 0 0}.menu .arrow,.store .arrow,.musiclist .arrow,.list .arrow{position:absolute;width:24px!important;height:24px!important;right:10px;top:12px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/arrows/DarkBigArrow_Transparent.png) 0 0 no-repeat;margin:0!important}.menu .arrowleft,.store .arrowleft,.musiclist .arrowleft,.list .arrowleft{float:left;width:24px!important;height:24px!important;left:10px;top:12px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/arrows/DarkBigArrow_Transparent.png) 0 0 no-repeat;margin:0!important}#leftnav,#leftbutton{position:absolute;font-size:12px;left:9px;font-weight:bold}#leftnav,#leftbutton,#rightnav,#rightbutton{z-index:5000}#leftnav a,#rightnav a,#leftbutton a,#rightbutton a{display:block;color:#fff;text-shadow:rgba(0,0,0,0.6) 0 -1px 0;text-decoration:none}.black #leftnav a:first-child,.transparent #leftnav a:first-child{border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleftblack.png) 0 5 0 13-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleftblack.png) 0 5 0 13-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleftblack.png) 0 5 0 13-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleftblack.png) 0 5 0 13}.black #leftnav a,.transparent #leftnav a{border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleftblack.png) 0 5 0 13-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleftblack.png) 0 5 0 13-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleftblack.png) 0 5 0 13-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleftblack.png) 0 5 0 13}.black #rightnav a:first-child,.transparent #rightnav a:first-child{-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navrightblack.png) 0 13 0 5-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navrightblack.png) 0 13 0 5-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navrightblack.png) 0 13 0 5-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navrightblack.png) 0 13 0 5}.black #rightnav a,.transparent #rightnav a{-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkrightblack.png) 0 13 0 5-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkrightblack.png) 0 13 0 5-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkrightblack.png) 0 13 0 5-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkrightblack.png) 0 13 0 5}.black #leftbutton a,.black #rightbutton a,.transparent #leftbutton a,.transparent #rightbutton a{border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbuttonblack.png) 0 5 0 5-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbuttonblack.png) 0 5 0 5-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbuttonblack.png) 0 5 0 5-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbuttonblack.png) 0 5 0 5}#leftnav a:first-child{z-index:2;border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleft_std.png) 0 5 0 13;-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleft_std.png) 0 5 0 13;-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleft_std.png) 0 5 0 13;-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleft_std.png) 0 5 0 13;width:auto;border-width:0 5px 0 13px;border-radius:16px 6px 6px 16px}#leftnav a{border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleft.png) 0 5 0 13;-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleft.png) 0 5 0 13;-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleft.png) 0 5 0 13;-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleft.png) 0 5 0 13;z-index:3;margin-left:-4px;padding-right:4px;float:left;border-width:0 5px 0 13px;border-radius:16px 6px 6px 16px}#rightnav,#rightbutton{position:absolute;font-size:12px;right:9px;font-weight:bold}#rightnav a{border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkright.png) 0 13 0 5;-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkright.png) 0 13 0 5;-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkright.png) 0 13 0 5;-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkright.png) 0 13 0 5;z-index:3;margin-right:-4px;padding-left:4px;float:right;border-width:0 13px 0 5px;border-radius:6px 16px 16px 6px}#rightnav a:first-child{z-index:2;border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navright_std.png) 0 13 0 5;-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navright_std.png) 0 13 0 5;-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navright_std.png) 0 13 0 5;-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navright_std.png) 0 13 0 5;border-width:0 13px 0 5px;border-radius:6px 16px 16px 6px}#leftbutton a,#rightbutton a{border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbutton_std.png) 0 5 0 5;-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbutton_std.png) 0 5 0 5;-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbutton_std.png) 0 5 0 5;-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbutton_std.png) 0 5 0 5;border-width:0 5px;border-radius:6px}.gform_body ul { list-style-type: none; }.radiobutton .name{z-index:1}.select select{color:#000;font-weight:bold;font-size:17px;border-radius:0}.select option{max-width:90%}.select .arrow{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/arrow.png);width:8px;height:13px;display:block;-webkit-transform:rotate(90deg);position:absolute;right:10px;top:18px}.button input{width:100%;height:100%;-webkit-appearance:none;border:0;font-weight:bold;font-size:17px;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;background:none;border-radius:0}.textbox textarea{margin-top:5px;font-size:medium;padding:0}.bigfield input{-webkit-appearance:none;border:0;height:100%;background:transparent;font-weight:bold;font-size:17px;padding:0 0 0 5px;border-radius:0}.smallfield .name{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;line-height:44px;font-size:17px;padding-left:5px;overflow:hidden}.smallfield input{width:50%;position:absolute;right:0;height:44px;-webkit-appearance:none;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.smallfield:first-child input{border-top-right-radius:8px}.smallfield:last-child input{border-bottom-right-radius:8px}.searchsmallfield .name{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;line-height:44px;font-size:17px;padding-left:5px;overflow:hidden}.searchsmallfield input{width:50%;position:absolute;right:0;height:44px;-webkit-appearance:none;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.searchsmallfield:first-child input{border-top-right-radius:8px}.searchsmallfield:last-child input{border-bottom-right-radius:8px}.optinsmallfield .name{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;line-height:44px;font-size:17px;padding-left:5px;overflow:hidden}.optinsmallfield input{width:50%;position:absolute;right:0;height:44px;-webkit-appearance:none;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.optinsmallfield:first-child input{border-top-right-radius:8px}.optinsmallfield:last-child input{border-bottom-right-radius:8px}.contactsmallfield .name{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;line-height:44px;font-size:17px;padding-left:5px;overflow:hidden}.contactsmallfield input{width:50%;position:absolute;right:0;height:44px;-webkit-appearance:none;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.contactsmallfield:first-child input{border-top-right-radius:8px}.contactsmallfield:last-child input{border-bottom-right-radius:8px}.mapsmallfield .name{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;line-height:44px;font-size:17px;padding-left:5px;overflow:hidden}.mapsmallfield input{width:50%;position:absolute;right:0;height:44px;-webkit-appearance:none;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.mapsmallfield:first-child input{border-top-right-radius:8px}.mapsmallfield:last-child input{border-bottom-right-radius:8px}img,#duobutton a:last-child,#duoselectionbuttons a:first-child,.ipodlist li:hover:nth-child(n) .name,.ipodlist li:hover:nth-child(n) .time{border:0}#triselectionbuttons a:hover,#triselectionbuttons a#pressed,#duoselectionbuttons a:hover,#duoselectionbuttons a#pressed,li#doublead:hover{background:none}.menu a:hover .name,.store:hover .starcomment,.store:hover .name,.store:hover .comment,.list .withimage a:hover .comment,.list #content li a:hover{color:#FFFFFF;}@media screen and (max-width:320px) {#topbar{height:44px}#logo{max-width:320px;width:100%;}#title{line-height:44px;height:44px;font-size:16pt;}.searchbox form{width:272px}.searchbox input[type=\"text\"]{width:275px}.menu .name{max-width:77%}#leftnav a,#rightnav a,#leftbutton a,#rightbutton a{line-height:30px;height:30px}#leftnav img,#rightnav img{margin-top:4px}.textbox textarea{width:85%;}.customformtextbox textarea{width:85%;}.bigfield input{width:295px}.checkbox .name,.radiobutton .name{max-width:190px}#leftnav,#leftbutton,#rightnav,#rightbutton{top:7px}}@media screen and (min-width:321px) {#topbar{height:32px}#title{line-height:32px;height:32px;font-size:13pt}.menu .name{max-width:85%}#leftnav a,#rightnav a,#leftbutton a,#rightbutton a{line-height:24px;height:24px}#leftnav img,#rightnav img{margin-top:4px;height:70%}.textbox textarea{width:85%;}.customformtextbox textarea{width:85%;}#doublead{width:350px!important}.searchbox form{width:432px}.searchbox input[type=\"text\"]{width:435px}.bigfield input{width:455px}.checkbox .name,.radiobutton .name{max-width:75%}#leftnav,#leftbutton,#rightnav,#rightbutton{top:4px}}</style>");
INSERT INTO `wp_postmeta` VALUES("1845", "122", "_WPMSGOPTION_ThemeCustomFormStyleCSS", "<style  type=\"text/css\" >.customform {background:#E3E38A;color:#000000;border-color:#000000;border-width:1px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.customform .button input {background:#96B0AD;color:#000000;}li.customformrow{position:relative;list-style-type:none;display:block;height:43px;overflow:hidden;border-top:1px solid #878787;border-top:1px solid #878787;width:auto}li.customformrowbelow{position:relative;list-style-type:none;display:block;height:43px;overflow:hidden;width:auto}p.customformrow{-webkit-margin-before: 0px;border-top:1px solid #878787;width:auto}.customformrow .customformlabel, .customformrow .customformlabelfull, .customformtextbox .customformlabel, .customformradiorow .customformlabel{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;padding-left:5px;overflow:hidden}.customformrow .customformlabel{line-height:44px;}.customformrow .customformlabelfull{line-height:44px;width:100%;height:auto;}.customformrow input {width:50%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.customformrowbelow input {width:100%;min-width:95%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}input.customformrowrequired{background: #ff8080;}.customformrow input:not([type=\'checkbox\']) {-webkit-appearance:none;}.customformrow select{width:50%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.customformrow:first-child input{border-top-right-radius:8px}.customformrow:last-child input{border-bottom-right-radius:8px}.customformtextbox{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.customformtextbox img{max-width:100%}.customformtextbox p{margin-top:2px;color:#000;margin-bottom:2px;text-align:justify}.customformtextbox ul{list-style:circle!important;margin:3px 0}.customformtextbox li{margin:0!important}.customformtextbox textarea{margin-top:5px;font-size:medium;padding:0}.customformradiorow{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.customformrow input[type=\"checkbox\"]{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOff.png)no-repeat;-webkit-appearance:none;border:0;margin:4px 4px 0 0}.customformrow input[type=\"checkbox\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOn.png)no-repeat;}.customformradiorow input[type=\"radio\"]{-webkit-appearance:none;border:0;width:100%;height: 43px;z-index:2;position:absolute;left:50%;margin:0;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOff.png) no-repeat;-webkit-border-radius:0}.customformradiorow input[type=\"radio\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOn.png) no-repeat;}.customformradiorow .customformradiorowinput {height: 40px;}.customformradiorow label{position: absolute;margin-top: 6px;margin-left:60%;text-overflow: ellipsis;}.customformradiorowbelow{position:relative;overflow:hidden;padding:5px 9px}.customformradiorowbelowlabel{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.customformradiorowbelowlabel .customformlabel{left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;padding-left:5px;overflow:hidden}.customformradiorowbelow input[type=\"radio\"]{-webkit-appearance:none;border:0;width:100%;height: 43px;z-index:2;position:absolute;left:10px;margin:0;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOff.png) no-repeat;-webkit-border-radius:0}.customformradiorowbelow input[type=\"radio\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOn.png) no-repeat;}.customformradiorowbelow .customformradiorowinputbelow {height: 40px;}span.customformlabelfull{font-weight:bold;font-size:17px;}.customformradiorowbelow label{position: absolute;margin-top: 6px;margin-left:45px;text-overflow: ellipsis;}li.customformrowbelow select{width:100%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.customformrowcheckboxright{position:relative;overflow:hidden;border-top:1px solid #878787;height: 40px;padding:5px 9px}.customformrowcheckboxright .customformlabel {left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;line-height:44px;overflow:hidden}.customformrowcheckboxright input[type=\"checkbox\"]{position: absolute;height: 40px;width: 35px;right:0;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOff.png)no-repeat;-webkit-appearance:none;border:0;margin:4px 4px 0 0}.customformrowcheckboxright input[type=\"checkbox\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOn.png) no-repeat;}.customformrowcheckboxleft{position:relative;overflow:hidden;border-top:1px solid #878787;height: 40px;padding:5px 9px}.customformrowcheckboxleft .customformlabel {margin-left:40px;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;line-height:44px;overflow:hidden}.customformrowcheckboxleft input[type=\"checkbox\"]{position: absolute;height: 40px;width: 35px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOff.png)no-repeat;-webkit-appearance:none;border:0;margin:4px 4px 0 0}.customformrowcheckboxleft input[type=\"checkbox\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOn.png) no-repeat;}</style>");
INSERT INTO `wp_postmeta` VALUES("1846", "123", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1847", "123", "_edit_lock", "1362652642:1");
INSERT INTO `wp_postmeta` VALUES("1848", "124", "_wp_attached_file", "2013/02/KeyHeader21.png");
INSERT INTO `wp_postmeta` VALUES("1849", "124", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"939\";s:6:\"height\";s:3:\"401\";s:14:\"hwstring_small\";s:23:\"height=\'54\' width=\'128\'\";s:4:\"file\";s:23:\"2013/02/KeyHeader21.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:23:\"KeyHeader21-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:23:\"KeyHeader21-300x128.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"128\";}s:15:\"ezgallery-thumb\";a:3:{s:4:\"file\";s:23:\"KeyHeader21-125x125.png\";s:5:\"width\";s:3:\"125\";s:6:\"height\";s:3:\"125\";}s:21:\"single-post-thumbnail\";a:3:{s:4:\"file\";s:21:\"KeyHeader21-75x32.png\";s:5:\"width\";s:2:\"75\";s:6:\"height\";s:2:\"32\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("1850", "123", "_WPMSGOPTION_Initialised", "Y");
INSERT INTO `wp_postmeta` VALUES("1851", "123", "_WPMSGOPTION_Deactivated", "");
INSERT INTO `wp_postmeta` VALUES("1852", "123", "_WPMSGOPTION_PageSlug", "locksmith-tampa");
INSERT INTO `wp_postmeta` VALUES("1853", "123", "_WPMSGOPTION_PageName", "Best Locksmith in New Jersey");
INSERT INTO `wp_postmeta` VALUES("1854", "123", "_WPMSGOPTION_TopbarPageName", "A-1 Locksmith LLC");
INSERT INTO `wp_postmeta` VALUES("1855", "123", "_WPMSGOPTION_MenuDesc", "");
INSERT INTO `wp_postmeta` VALUES("1856", "123", "_WPMSGOPTION_ThemeType", "Site");
INSERT INTO `wp_postmeta` VALUES("1857", "123", "_WPMSGOPTION_PageTheme", "154");
INSERT INTO `wp_postmeta` VALUES("1858", "123", "_WPMSGOPTION_MenuStyle", "Icon");
INSERT INTO `wp_postmeta` VALUES("1859", "123", "_WPMSGOPTION_MenuPosition", "C");
INSERT INTO `wp_postmeta` VALUES("1860", "123", "_WPMSGOPTION_ExcludePage", "");
INSERT INTO `wp_postmeta` VALUES("1861", "123", "_WPMSGOPTION_ExcludeFromSearch", "");
INSERT INTO `wp_postmeta` VALUES("1862", "123", "_WPMSGOPTION_BackgroundImage", "");
INSERT INTO `wp_postmeta` VALUES("1863", "123", "_WPMSGOPTION_BackgroundImageRepeat", "no-repeat");
INSERT INTO `wp_postmeta` VALUES("1864", "123", "_WPMSGOPTION_BackgroundImagePosition", "centerbottom");
INSERT INTO `wp_postmeta` VALUES("1865", "123", "_WPMSGOPTION_PageMinimumHeight", "");
INSERT INTO `wp_postmeta` VALUES("1866", "123", "_WPMSGOPTION_DisplayLogo", "Y");
INSERT INTO `wp_postmeta` VALUES("1867", "123", "_WPMSGOPTION_LogoImage", "http://tampa.keylocksmith.in/fl/wp-content/uploads/2013/03/Graphic1a-300x72.jpg");
INSERT INTO `wp_postmeta` VALUES("1868", "123", "_WPMSGOPTION_LogoBackgroundColor", "000000");
INSERT INTO `wp_postmeta` VALUES("1869", "123", "_WPMSGOPTION_LogoUseBackgroundColor", "Y");
INSERT INTO `wp_postmeta` VALUES("1870", "123", "_WPMSGOPTION_FooterBackgroundColor", "");
INSERT INTO `wp_postmeta` VALUES("1871", "123", "_WPMSGOPTION_ThumbnailImage", "__None__");
INSERT INTO `wp_postmeta` VALUES("1872", "123", "_WPMSGOPTION_ThumbnailImageColor", "LightBlue");
INSERT INTO `wp_postmeta` VALUES("1873", "123", "_WPMSGOPTION_CustomThumbnailImage", "");
INSERT INTO `wp_postmeta` VALUES("1874", "123", "_WPMSGOPTION_DisplayPreview", "");
INSERT INTO `wp_postmeta` VALUES("1875", "123", "_WPMSGOPTION_DisplayTopBar", "");
INSERT INTO `wp_postmeta` VALUES("1876", "123", "_WPMSGOPTION_TopbarRightLinkText", "");
INSERT INTO `wp_postmeta` VALUES("1877", "123", "_WPMSGOPTION_TopbarRightLinkURL", "");
INSERT INTO `wp_postmeta` VALUES("1878", "123", "_WPMSGOPTION_TopbarRightLinkPage", "123");
INSERT INTO `wp_postmeta` VALUES("1879", "123", "_WPMSGOPTION_DisplayPhoneTopBar", "");
INSERT INTO `wp_postmeta` VALUES("1880", "123", "_WPMSGOPTION_FacebookURL", "");
INSERT INTO `wp_postmeta` VALUES("1881", "123", "_WPMSGOPTION_TwitterURL", "");
INSERT INTO `wp_postmeta` VALUES("1882", "123", "_WPMSGOPTION_GooglePlusURL", "");
INSERT INTO `wp_postmeta` VALUES("1883", "123", "_WPMSGOPTION_YouTubeURL", "");
INSERT INTO `wp_postmeta` VALUES("1884", "123", "_WPMSGOPTION_LinkedInURL", "");
INSERT INTO `wp_postmeta` VALUES("1885", "123", "_WPMSGOPTION_SocialMediaPage1URL", "");
INSERT INTO `wp_postmeta` VALUES("1886", "123", "_WPMSGOPTION_SocialMediaIcon1URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/facebook.png");
INSERT INTO `wp_postmeta` VALUES("1887", "123", "_WPMSGOPTION_SocialMediaPage2URL", "");
INSERT INTO `wp_postmeta` VALUES("1888", "123", "_WPMSGOPTION_SocialMediaIcon2URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/twitter.png");
INSERT INTO `wp_postmeta` VALUES("1889", "123", "_WPMSGOPTION_SocialMediaPage3URL", "");
INSERT INTO `wp_postmeta` VALUES("1890", "123", "_WPMSGOPTION_SocialMediaIcon3URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/googleplus.png");
INSERT INTO `wp_postmeta` VALUES("1891", "123", "_WPMSGOPTION_SocialMediaPage4URL", "");
INSERT INTO `wp_postmeta` VALUES("1892", "123", "_WPMSGOPTION_SocialMediaIcon4URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/youtube.png");
INSERT INTO `wp_postmeta` VALUES("1893", "123", "_WPMSGOPTION_SocialMediaPage5URL", "");
INSERT INTO `wp_postmeta` VALUES("1894", "123", "_WPMSGOPTION_SocialMediaIcon5URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/linkedin.png");
INSERT INTO `wp_postmeta` VALUES("1895", "123", "_WPMSGOPTION_SocialMediaPage6URL", "");
INSERT INTO `wp_postmeta` VALUES("1896", "123", "_WPMSGOPTION_SocialMediaIcon6URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/pinterest.png");
INSERT INTO `wp_postmeta` VALUES("1897", "123", "_WPMSGOPTION_SocialMediaPage7URL", "");
INSERT INTO `wp_postmeta` VALUES("1898", "123", "_WPMSGOPTION_SocialMediaIcon7URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/flickr.png");
INSERT INTO `wp_postmeta` VALUES("1899", "123", "_WPMSGOPTION_SocialMediaPage8URL", "");
INSERT INTO `wp_postmeta` VALUES("1900", "123", "_WPMSGOPTION_SocialMediaIcon8URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/yelp.png");
INSERT INTO `wp_postmeta` VALUES("1901", "123", "_WPMSGOPTION_SocialMediaPage9URL", "");
INSERT INTO `wp_postmeta` VALUES("1902", "123", "_WPMSGOPTION_SocialMediaIcon9URL", "");
INSERT INTO `wp_postmeta` VALUES("1903", "123", "_WPMSGOPTION_FBLikeURL", "");
INSERT INTO `wp_postmeta` VALUES("1904", "123", "_WPMSGOPTION_FBLikeWidth", "");
INSERT INTO `wp_postmeta` VALUES("1905", "123", "_WPMSGOPTION_FBLikeSendButton", "Y");
INSERT INTO `wp_postmeta` VALUES("1906", "123", "_WPMSGOPTION_FBLikeFaces", "Y");
INSERT INTO `wp_postmeta` VALUES("1907", "123", "_WPMSGOPTION_FBLikeLayoutStyle", "");
INSERT INTO `wp_postmeta` VALUES("1908", "123", "_WPMSGOPTION_FBLikeVerb", "");
INSERT INTO `wp_postmeta` VALUES("1909", "123", "_WPMSGOPTION_FBLikeColorScheme", "");
INSERT INTO `wp_postmeta` VALUES("1910", "123", "_WPMSGOPTION_FBCommentsURL", "");
INSERT INTO `wp_postmeta` VALUES("1911", "123", "_WPMSGOPTION_FBCommentsPosts", "");
INSERT INTO `wp_postmeta` VALUES("1912", "123", "_WPMSGOPTION_FBCommentsColorScheme", "");
INSERT INTO `wp_postmeta` VALUES("1913", "123", "_WPMSGOPTION_SearchPrompt", "");
INSERT INTO `wp_postmeta` VALUES("1914", "123", "_WPMSGOPTION_SearchSubmitPrompt", "");
INSERT INTO `wp_postmeta` VALUES("1915", "123", "_WPMSGOPTION_RSSFeedURL", "");
INSERT INTO `wp_postmeta` VALUES("1916", "123", "_WPMSGOPTION_RSSFeedMax", "");
INSERT INTO `wp_postmeta` VALUES("1917", "123", "_WPMSGOPTION_RSSFeedStyle", "TitleOnly");
INSERT INTO `wp_postmeta` VALUES("1918", "123", "_WPMSGOPTION_MetaTitle", "");
INSERT INTO `wp_postmeta` VALUES("1919", "123", "_WPMSGOPTION_MetaDescription", "");
INSERT INTO `wp_postmeta` VALUES("1920", "123", "_WPMSGOPTION_MetaKeywords", "");
INSERT INTO `wp_postmeta` VALUES("1921", "123", "_WPMSGOPTION_AnalyticsCode", "");
INSERT INTO `wp_postmeta` VALUES("1922", "123", "_WPMSGOPTION_CouponTitle", "Save Now");
INSERT INTO `wp_postmeta` VALUES("1923", "123", "_WPMSGOPTION_CouponCodeText", "");
INSERT INTO `wp_postmeta` VALUES("1924", "123", "_WPMSGOPTION_CouponStartText", "");
INSERT INTO `wp_postmeta` VALUES("1925", "123", "_WPMSGOPTION_CouponExpiryText", "");
INSERT INTO `wp_postmeta` VALUES("1926", "123", "_WPMSGOPTION_CouponCode", "Mention Key Word");
INSERT INTO `wp_postmeta` VALUES("1927", "123", "_WPMSGOPTION_CouponCodeExpired", "");
INSERT INTO `wp_postmeta` VALUES("1928", "123", "_WPMSGOPTION_CouponStart", "");
INSERT INTO `wp_postmeta` VALUES("1929", "123", "_WPMSGOPTION_CouponExpiry", "");
INSERT INTO `wp_postmeta` VALUES("1930", "123", "_WPMSGOPTION_CouponDateFormat", "Y-m-d");
INSERT INTO `wp_postmeta` VALUES("1931", "123", "_WPMSGOPTION_CouponValidText", "Save Now key word = &quot;Best Locksmith&quot;");
INSERT INTO `wp_postmeta` VALUES("1932", "123", "_WPMSGOPTION_CouponExpiredText", "");
INSERT INTO `wp_postmeta` VALUES("1933", "123", "_WPMSGOPTION_CouponImage", "");
INSERT INTO `wp_postmeta` VALUES("1934", "123", "_WPMSGOPTION_TelephoneNumber", "(201) 391-1177");
INSERT INTO `wp_postmeta` VALUES("1935", "123", "_WPMSGOPTION_TelephoneCallToAction", "Tap To  Call  NOW");
INSERT INTO `wp_postmeta` VALUES("1936", "123", "_WPMSGOPTION_ClickToCallType", "Call");
INSERT INTO `wp_postmeta` VALUES("1937", "123", "_WPMSGOPTION_SMSMessage", "");
INSERT INTO `wp_postmeta` VALUES("1938", "123", "_WPMSGOPTION_HidePhoneIcon", "");
INSERT INTO `wp_postmeta` VALUES("1939", "123", "_WPMSGOPTION_HidePhoneNumber", "Y");
INSERT INTO `wp_postmeta` VALUES("1940", "123", "_WPMSGOPTION_TelephoneIconImage", "");
INSERT INTO `wp_postmeta` VALUES("1941", "123", "_WPMSGOPTION_TelephoneImage", "");
INSERT INTO `wp_postmeta` VALUES("1942", "123", "_WPMSGOPTION_SMSNumber", "");
INSERT INTO `wp_postmeta` VALUES("1943", "123", "_WPMSGOPTION_SMSCallToAction", "");
INSERT INTO `wp_postmeta` VALUES("1944", "123", "_WPMSGOPTION_SMSMessageText", "");
INSERT INTO `wp_postmeta` VALUES("1945", "123", "_WPMSGOPTION_HideSMSIcon", "");
INSERT INTO `wp_postmeta` VALUES("1946", "123", "_WPMSGOPTION_HideSMSNumber", "");
INSERT INTO `wp_postmeta` VALUES("1947", "123", "_WPMSGOPTION_SMSIconImage", "");
INSERT INTO `wp_postmeta` VALUES("1948", "123", "_WPMSGOPTION_SMSImage", "");
INSERT INTO `wp_postmeta` VALUES("1949", "123", "_WPMSGOPTION_EmailTo", "");
INSERT INTO `wp_postmeta` VALUES("1950", "123", "_WPMSGOPTION_EmailCallToAction", "");
INSERT INTO `wp_postmeta` VALUES("1951", "123", "_WPMSGOPTION_EmailSubjectText", "");
INSERT INTO `wp_postmeta` VALUES("1952", "123", "_WPMSGOPTION_EmailMessageText", "");
INSERT INTO `wp_postmeta` VALUES("1953", "123", "_WPMSGOPTION_HideEmailIcon", "");
INSERT INTO `wp_postmeta` VALUES("1954", "123", "_WPMSGOPTION_EmailIconImage", "");
INSERT INTO `wp_postmeta` VALUES("1955", "123", "_WPMSGOPTION_EmailImage", "");
INSERT INTO `wp_postmeta` VALUES("1956", "123", "_WPMSGOPTION_SkypeUsername", "");
INSERT INTO `wp_postmeta` VALUES("1957", "123", "_WPMSGOPTION_SkypeCallToAction", "");
INSERT INTO `wp_postmeta` VALUES("1958", "123", "_WPMSGOPTION_HideSkypeIcon", "");
INSERT INTO `wp_postmeta` VALUES("1959", "123", "_WPMSGOPTION_SkypeIconImage", "");
INSERT INTO `wp_postmeta` VALUES("1960", "123", "_WPMSGOPTION_SkypeImage", "");
INSERT INTO `wp_postmeta` VALUES("1961", "123", "_WPMSGOPTION_RedirectURL", "");
INSERT INTO `wp_postmeta` VALUES("1962", "123", "_WPMSGOPTION_DeactivatedURL", "");
INSERT INTO `wp_postmeta` VALUES("1963", "123", "_WPMSGOPTION_ExportDomain", "");
INSERT INTO `wp_postmeta` VALUES("1964", "123", "_WPMSGOPTION_CreateBitly", "");
INSERT INTO `wp_postmeta` VALUES("1965", "123", "_WPMSGOPTION_BitlyUsername", "");
INSERT INTO `wp_postmeta` VALUES("1966", "123", "_WPMSGOPTION_BitlyApiKey", "");
INSERT INTO `wp_postmeta` VALUES("1967", "123", "_WPMSGOPTION_BitlyLongUrl", "");
INSERT INTO `wp_postmeta` VALUES("1968", "123", "_WPMSGOPTION_BitlyShortUrl", "");
INSERT INTO `wp_postmeta` VALUES("1969", "123", "_WPMSGOPTION_MapLocation", "Tampa, FL, USA");
INSERT INTO `wp_postmeta` VALUES("1970", "123", "_WPMSGOPTION_MapLongitude", "");
INSERT INTO `wp_postmeta` VALUES("1971", "123", "_WPMSGOPTION_MapLatitude", "");
INSERT INTO `wp_postmeta` VALUES("1972", "123", "_WPMSGOPTION_MapWidth", "");
INSERT INTO `wp_postmeta` VALUES("1973", "123", "_WPMSGOPTION_MapHeight", "");
INSERT INTO `wp_postmeta` VALUES("1974", "123", "_WPMSGOPTION_MapZoom", "");
INSERT INTO `wp_postmeta` VALUES("1975", "123", "_WPMSGOPTION_MapLanguage", "en");
INSERT INTO `wp_postmeta` VALUES("1976", "123", "_WPMSGOPTION_DisplayMapDirections", "");
INSERT INTO `wp_postmeta` VALUES("1977", "123", "_WPMSGOPTION_DirectionsPrompt", "");
INSERT INTO `wp_postmeta` VALUES("1978", "123", "_WPMSGOPTION_DirectionsButtonText", "");
INSERT INTO `wp_postmeta` VALUES("1979", "123", "_WPMSGOPTION_DisplayGPSDirectionsButton", "");
INSERT INTO `wp_postmeta` VALUES("1980", "123", "_WPMSGOPTION_GPSDirectionsButtonText", "Locate ");
INSERT INTO `wp_postmeta` VALUES("1981", "123", "_WPMSGOPTION_DirectionsPosition", "A");
INSERT INTO `wp_postmeta` VALUES("1982", "123", "_WPMSGOPTION_OptinNamePrompt", "");
INSERT INTO `wp_postmeta` VALUES("1983", "123", "_WPMSGOPTION_OptinEmailPrompt", "");
INSERT INTO `wp_postmeta` VALUES("1984", "123", "_WPMSGOPTION_OptinSubmitPrompt", "");
INSERT INTO `wp_postmeta` VALUES("1985", "123", "_WPMSGOPTION_OptinCode", "");
INSERT INTO `wp_postmeta` VALUES("1986", "123", "_WPMSGOPTION_OptinRedirectPage", "0");
INSERT INTO `wp_postmeta` VALUES("1987", "123", "_WPMSGOPTION_ContactSendToEmail", "");
INSERT INTO `wp_postmeta` VALUES("1988", "123", "_WPMSGOPTION_ContactSendFromName", "");
INSERT INTO `wp_postmeta` VALUES("1989", "123", "_WPMSGOPTION_ContactSendFromEmail", "");
INSERT INTO `wp_postmeta` VALUES("1990", "123", "_WPMSGOPTION_ContactNamePrompt", "");
INSERT INTO `wp_postmeta` VALUES("1991", "123", "_WPMSGOPTION_ContactPhonePrompt", "");
INSERT INTO `wp_postmeta` VALUES("1992", "123", "_WPMSGOPTION_ContactEmailPrompt", "");
INSERT INTO `wp_postmeta` VALUES("1993", "123", "_WPMSGOPTION_ContactMessagePrompt", "");
INSERT INTO `wp_postmeta` VALUES("1994", "123", "_WPMSGOPTION_ContactSubmitPrompt", "");
INSERT INTO `wp_postmeta` VALUES("1995", "123", "_WPMSGOPTION_ContactShowAcknowledgement", "");
INSERT INTO `wp_postmeta` VALUES("1996", "123", "_WPMSGOPTION_ContactAcknowledgementDisplayMessage", "");
INSERT INTO `wp_postmeta` VALUES("1997", "123", "_WPMSGOPTION_ContactSendAcknowledgement", "");
INSERT INTO `wp_postmeta` VALUES("1998", "123", "_WPMSGOPTION_ContactAcknowledgementName", "");
INSERT INTO `wp_postmeta` VALUES("1999", "123", "_WPMSGOPTION_ContactAcknowledgementEmail", "");
INSERT INTO `wp_postmeta` VALUES("2000", "123", "_WPMSGOPTION_ContactAcknowledgementSubject", "");
INSERT INTO `wp_postmeta` VALUES("2001", "123", "_WPMSGOPTION_ContactAcknowledgementMessage", "");
INSERT INTO `wp_postmeta` VALUES("2002", "123", "_WPMSGOPTION_SiteID", "123");
INSERT INTO `wp_postmeta` VALUES("2003", "125", "_wp_attached_file", "2013/02/KeyHeader415.png");
INSERT INTO `wp_postmeta` VALUES("2004", "125", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"939\";s:6:\"height\";s:3:\"401\";s:14:\"hwstring_small\";s:23:\"height=\'54\' width=\'128\'\";s:4:\"file\";s:24:\"2013/02/KeyHeader415.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:24:\"KeyHeader415-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:24:\"KeyHeader415-300x128.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"128\";}s:15:\"ezgallery-thumb\";a:3:{s:4:\"file\";s:24:\"KeyHeader415-125x125.png\";s:5:\"width\";s:3:\"125\";s:6:\"height\";s:3:\"125\";}s:21:\"single-post-thumbnail\";a:3:{s:4:\"file\";s:22:\"KeyHeader415-75x32.png\";s:5:\"width\";s:2:\"75\";s:6:\"height\";s:2:\"32\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("2005", "126", "_wp_attached_file", "2013/02/KeyHeader3Mobial.png");
INSERT INTO `wp_postmeta` VALUES("2006", "126", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"939\";s:6:\"height\";s:3:\"401\";s:14:\"hwstring_small\";s:23:\"height=\'54\' width=\'128\'\";s:4:\"file\";s:28:\"2013/02/KeyHeader3Mobial.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:28:\"KeyHeader3Mobial-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:28:\"KeyHeader3Mobial-300x128.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"128\";}s:15:\"ezgallery-thumb\";a:3:{s:4:\"file\";s:28:\"KeyHeader3Mobial-125x125.png\";s:5:\"width\";s:3:\"125\";s:6:\"height\";s:3:\"125\";}s:21:\"single-post-thumbnail\";a:3:{s:4:\"file\";s:26:\"KeyHeader3Mobial-75x32.png\";s:5:\"width\";s:2:\"75\";s:6:\"height\";s:2:\"32\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("2007", "123", "_WPMSGOPTION_StreetLat", "27.950575");
INSERT INTO `wp_postmeta` VALUES("2008", "123", "_WPMSGOPTION_StreetLong", "-82.4571776");
INSERT INTO `wp_postmeta` VALUES("2012", "128", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"939\";s:6:\"height\";s:3:\"401\";s:14:\"hwstring_small\";s:23:\"height=\'54\' width=\'128\'\";s:4:\"file\";s:23:\"2013/02/KeyHeader92.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:23:\"KeyHeader92-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:23:\"KeyHeader92-300x128.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"128\";}s:15:\"ezgallery-thumb\";a:3:{s:4:\"file\";s:23:\"KeyHeader92-125x125.png\";s:5:\"width\";s:3:\"125\";s:6:\"height\";s:3:\"125\";}s:21:\"single-post-thumbnail\";a:3:{s:4:\"file\";s:21:\"KeyHeader92-75x32.png\";s:5:\"width\";s:2:\"75\";s:6:\"height\";s:2:\"32\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("2011", "128", "_wp_attached_file", "2013/02/KeyHeader92.png");
INSERT INTO `wp_postmeta` VALUES("2013", "129", "_wp_attached_file", "2013/02/KeyHeader93.png");
INSERT INTO `wp_postmeta` VALUES("2014", "129", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"939\";s:6:\"height\";s:3:\"401\";s:14:\"hwstring_small\";s:23:\"height=\'54\' width=\'128\'\";s:4:\"file\";s:23:\"2013/02/KeyHeader93.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:23:\"KeyHeader93-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:23:\"KeyHeader93-300x128.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"128\";}s:15:\"ezgallery-thumb\";a:3:{s:4:\"file\";s:23:\"KeyHeader93-125x125.png\";s:5:\"width\";s:3:\"125\";s:6:\"height\";s:3:\"125\";}s:21:\"single-post-thumbnail\";a:3:{s:4:\"file\";s:21:\"KeyHeader93-75x32.png\";s:5:\"width\";s:2:\"75\";s:6:\"height\";s:2:\"32\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("2033", "145", "_wp_attached_file", "2013/02/KeyHeader-Mobial.png");
INSERT INTO `wp_postmeta` VALUES("2034", "145", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"939\";s:6:\"height\";s:3:\"401\";s:14:\"hwstring_small\";s:23:\"height=\'54\' width=\'128\'\";s:4:\"file\";s:28:\"2013/02/KeyHeader-Mobial.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:28:\"KeyHeader-Mobial-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:28:\"KeyHeader-Mobial-300x128.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"128\";}s:15:\"ezgallery-thumb\";a:3:{s:4:\"file\";s:28:\"KeyHeader-Mobial-125x125.png\";s:5:\"width\";s:3:\"125\";s:6:\"height\";s:3:\"125\";}s:21:\"single-post-thumbnail\";a:3:{s:4:\"file\";s:26:\"KeyHeader-Mobial-75x32.png\";s:5:\"width\";s:2:\"75\";s:6:\"height\";s:2:\"32\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("2035", "122", "_edit_lock", "1361010809:1");
INSERT INTO `wp_postmeta` VALUES("2043", "123", "_WPMREDOPTION_RedirectNever", "");
INSERT INTO `wp_postmeta` VALUES("2042", "123", "_WPMREDOPTION_RedirectURL", "");
INSERT INTO `wp_postmeta` VALUES("2038", "147", "_wp_attached_file", "2013/02/KeyHeader94.png");
INSERT INTO `wp_postmeta` VALUES("2039", "147", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"939\";s:6:\"height\";s:3:\"401\";s:14:\"hwstring_small\";s:23:\"height=\'54\' width=\'128\'\";s:4:\"file\";s:23:\"2013/02/KeyHeader94.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:23:\"KeyHeader94-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:23:\"KeyHeader94-300x128.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"128\";}s:15:\"ezgallery-thumb\";a:3:{s:4:\"file\";s:23:\"KeyHeader94-125x125.png\";s:5:\"width\";s:3:\"125\";s:6:\"height\";s:3:\"125\";}s:21:\"single-post-thumbnail\";a:3:{s:4:\"file\";s:21:\"KeyHeader94-75x32.png\";s:5:\"width\";s:2:\"75\";s:6:\"height\";s:2:\"32\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("2040", "148", "_wp_attached_file", "2013/02/KeyHeader95.png");
INSERT INTO `wp_postmeta` VALUES("2041", "148", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"939\";s:6:\"height\";s:3:\"401\";s:14:\"hwstring_small\";s:23:\"height=\'54\' width=\'128\'\";s:4:\"file\";s:23:\"2013/02/KeyHeader95.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:23:\"KeyHeader95-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:23:\"KeyHeader95-300x128.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"128\";}s:15:\"ezgallery-thumb\";a:3:{s:4:\"file\";s:23:\"KeyHeader95-125x125.png\";s:5:\"width\";s:3:\"125\";s:6:\"height\";s:3:\"125\";}s:21:\"single-post-thumbnail\";a:3:{s:4:\"file\";s:21:\"KeyHeader95-75x32.png\";s:5:\"width\";s:2:\"75\";s:6:\"height\";s:2:\"32\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("2044", "119", "_edit_lock", "1361288747:1");
INSERT INTO `wp_postmeta` VALUES("2045", "119", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("2046", "119", "_WPMREDOPTION_RedirectURL", "");
INSERT INTO `wp_postmeta` VALUES("2047", "119", "_WPMREDOPTION_RedirectNever", "");
INSERT INTO `wp_postmeta` VALUES("2048", "119", "_WPMSGOPTION_LogoBackgroundStyle", "Color");
INSERT INTO `wp_postmeta` VALUES("2049", "119", "_WPMSGOPTION_FooterBackgroundStyle", "Color");
INSERT INTO `wp_postmeta` VALUES("2050", "119", "_WPMSGOPTION_PageMinimumHeight", "");
INSERT INTO `wp_postmeta` VALUES("2051", "119", "_WPMSGOPTION_PageMaxWidth", "");
INSERT INTO `wp_postmeta` VALUES("2052", "119", "_WPMSGOPTION_TopbarTextSize", "");
INSERT INTO `wp_postmeta` VALUES("2053", "119", "_WPMSGOPTION_MenuDescriptionTextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("2054", "150", "_WPMREDOPTION_RedirectURL", "");
INSERT INTO `wp_postmeta` VALUES("2055", "150", "_WPMREDOPTION_RedirectNever", "");
INSERT INTO `wp_postmeta` VALUES("2056", "150", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("2057", "150", "_edit_lock", "1362324216:1");
INSERT INTO `wp_postmeta` VALUES("2058", "150", "_WPMSGOPTION_Initialised", "Y");
INSERT INTO `wp_postmeta` VALUES("2059", "150", "_WPMSGOPTION_Deactivated", "");
INSERT INTO `wp_postmeta` VALUES("2060", "150", "_WPMSGOPTION_PageSlug", "location-map");
INSERT INTO `wp_postmeta` VALUES("2061", "150", "_WPMSGOPTION_PageName", "Location Map");
INSERT INTO `wp_postmeta` VALUES("2062", "150", "_WPMSGOPTION_TopbarPageName", "Location Map");
INSERT INTO `wp_postmeta` VALUES("2063", "150", "_WPMSGOPTION_MenuDesc", "");
INSERT INTO `wp_postmeta` VALUES("2064", "150", "_WPMSGOPTION_ThemeType", "Site");
INSERT INTO `wp_postmeta` VALUES("2065", "150", "_WPMSGOPTION_PageTheme", "154");
INSERT INTO `wp_postmeta` VALUES("2066", "150", "_WPMSGOPTION_MenuStyle", "Vertical");
INSERT INTO `wp_postmeta` VALUES("2067", "150", "_WPMSGOPTION_MenuPosition", "T");
INSERT INTO `wp_postmeta` VALUES("2068", "150", "_WPMSGOPTION_ExcludePage", "");
INSERT INTO `wp_postmeta` VALUES("2069", "150", "_WPMSGOPTION_ExcludeFromSearch", "");
INSERT INTO `wp_postmeta` VALUES("2070", "150", "_WPMSGOPTION_BackgroundImage", "");
INSERT INTO `wp_postmeta` VALUES("2071", "150", "_WPMSGOPTION_BackgroundImageRepeat", "repeat");
INSERT INTO `wp_postmeta` VALUES("2072", "150", "_WPMSGOPTION_BackgroundImagePosition", "lefttop");
INSERT INTO `wp_postmeta` VALUES("2073", "150", "_WPMSGOPTION_PageMinimumHeight", "");
INSERT INTO `wp_postmeta` VALUES("2074", "150", "_WPMSGOPTION_DisplayLogo", "");
INSERT INTO `wp_postmeta` VALUES("2075", "150", "_WPMSGOPTION_LogoImage", "");
INSERT INTO `wp_postmeta` VALUES("2076", "150", "_WPMSGOPTION_LogoBackgroundColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("2077", "150", "_WPMSGOPTION_LogoUseBackgroundColor", "");
INSERT INTO `wp_postmeta` VALUES("2078", "150", "_WPMSGOPTION_FooterBackgroundColor", "");
INSERT INTO `wp_postmeta` VALUES("2079", "150", "_WPMSGOPTION_ThumbnailImage", "Map");
INSERT INTO `wp_postmeta` VALUES("2080", "150", "_WPMSGOPTION_ThumbnailImageColor", "LightBlue");
INSERT INTO `wp_postmeta` VALUES("2081", "150", "_WPMSGOPTION_CustomThumbnailImage", "");
INSERT INTO `wp_postmeta` VALUES("2082", "150", "_WPMSGOPTION_DisplayPreview", "");
INSERT INTO `wp_postmeta` VALUES("2083", "150", "_WPMSGOPTION_DisplayTopBar", "Y");
INSERT INTO `wp_postmeta` VALUES("2084", "150", "_WPMSGOPTION_TopbarRightLinkText", "");
INSERT INTO `wp_postmeta` VALUES("2085", "150", "_WPMSGOPTION_TopbarRightLinkURL", "");
INSERT INTO `wp_postmeta` VALUES("2086", "150", "_WPMSGOPTION_TopbarRightLinkPage", "0");
INSERT INTO `wp_postmeta` VALUES("2087", "150", "_WPMSGOPTION_DisplayPhoneTopBar", "Y");
INSERT INTO `wp_postmeta` VALUES("2088", "150", "_WPMSGOPTION_FacebookURL", "");
INSERT INTO `wp_postmeta` VALUES("2089", "150", "_WPMSGOPTION_TwitterURL", "");
INSERT INTO `wp_postmeta` VALUES("2090", "150", "_WPMSGOPTION_GooglePlusURL", "");
INSERT INTO `wp_postmeta` VALUES("2091", "150", "_WPMSGOPTION_YouTubeURL", "");
INSERT INTO `wp_postmeta` VALUES("2092", "150", "_WPMSGOPTION_LinkedInURL", "");
INSERT INTO `wp_postmeta` VALUES("2093", "150", "_WPMSGOPTION_SocialMediaPage1URL", "");
INSERT INTO `wp_postmeta` VALUES("2094", "150", "_WPMSGOPTION_SocialMediaIcon1URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/facebook.png");
INSERT INTO `wp_postmeta` VALUES("2095", "150", "_WPMSGOPTION_SocialMediaPage2URL", "");
INSERT INTO `wp_postmeta` VALUES("2096", "150", "_WPMSGOPTION_SocialMediaIcon2URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/twitter.png");
INSERT INTO `wp_postmeta` VALUES("2097", "150", "_WPMSGOPTION_SocialMediaPage3URL", "");
INSERT INTO `wp_postmeta` VALUES("2098", "150", "_WPMSGOPTION_SocialMediaIcon3URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/googleplus.png");
INSERT INTO `wp_postmeta` VALUES("2099", "150", "_WPMSGOPTION_SocialMediaPage4URL", "");
INSERT INTO `wp_postmeta` VALUES("2100", "150", "_WPMSGOPTION_SocialMediaIcon4URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/youtube.png");
INSERT INTO `wp_postmeta` VALUES("2101", "150", "_WPMSGOPTION_SocialMediaPage5URL", "");
INSERT INTO `wp_postmeta` VALUES("2102", "150", "_WPMSGOPTION_SocialMediaIcon5URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/linkedin.png");
INSERT INTO `wp_postmeta` VALUES("2103", "150", "_WPMSGOPTION_SocialMediaPage6URL", "");
INSERT INTO `wp_postmeta` VALUES("2104", "150", "_WPMSGOPTION_SocialMediaIcon6URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/pinterest.png");
INSERT INTO `wp_postmeta` VALUES("2105", "150", "_WPMSGOPTION_SocialMediaPage7URL", "");
INSERT INTO `wp_postmeta` VALUES("2106", "150", "_WPMSGOPTION_SocialMediaIcon7URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/flickr.png");
INSERT INTO `wp_postmeta` VALUES("2107", "150", "_WPMSGOPTION_SocialMediaPage8URL", "");
INSERT INTO `wp_postmeta` VALUES("2108", "150", "_WPMSGOPTION_SocialMediaIcon8URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/yelp.png");
INSERT INTO `wp_postmeta` VALUES("2109", "150", "_WPMSGOPTION_SocialMediaPage9URL", "");
INSERT INTO `wp_postmeta` VALUES("2110", "150", "_WPMSGOPTION_SocialMediaIcon9URL", "");
INSERT INTO `wp_postmeta` VALUES("2111", "150", "_WPMSGOPTION_FBLikeURL", "");
INSERT INTO `wp_postmeta` VALUES("2112", "150", "_WPMSGOPTION_FBLikeWidth", "");
INSERT INTO `wp_postmeta` VALUES("2113", "150", "_WPMSGOPTION_FBLikeSendButton", "Y");
INSERT INTO `wp_postmeta` VALUES("2114", "150", "_WPMSGOPTION_FBLikeFaces", "Y");
INSERT INTO `wp_postmeta` VALUES("2115", "150", "_WPMSGOPTION_FBLikeLayoutStyle", "");
INSERT INTO `wp_postmeta` VALUES("2116", "150", "_WPMSGOPTION_FBLikeVerb", "");
INSERT INTO `wp_postmeta` VALUES("2117", "150", "_WPMSGOPTION_FBLikeColorScheme", "");
INSERT INTO `wp_postmeta` VALUES("2118", "150", "_WPMSGOPTION_FBCommentsURL", "");
INSERT INTO `wp_postmeta` VALUES("2119", "150", "_WPMSGOPTION_FBCommentsPosts", "");
INSERT INTO `wp_postmeta` VALUES("2120", "150", "_WPMSGOPTION_FBCommentsColorScheme", "");
INSERT INTO `wp_postmeta` VALUES("2121", "150", "_WPMSGOPTION_SearchPrompt", "");
INSERT INTO `wp_postmeta` VALUES("2122", "150", "_WPMSGOPTION_SearchSubmitPrompt", "");
INSERT INTO `wp_postmeta` VALUES("2123", "150", "_WPMSGOPTION_RSSFeedURL", "");
INSERT INTO `wp_postmeta` VALUES("2124", "150", "_WPMSGOPTION_RSSFeedMax", "");
INSERT INTO `wp_postmeta` VALUES("2125", "150", "_WPMSGOPTION_RSSFeedStyle", "TitleOnly");
INSERT INTO `wp_postmeta` VALUES("2126", "150", "_WPMSGOPTION_MetaTitle", "");
INSERT INTO `wp_postmeta` VALUES("2127", "150", "_WPMSGOPTION_MetaDescription", "");
INSERT INTO `wp_postmeta` VALUES("2128", "150", "_WPMSGOPTION_MetaKeywords", "");
INSERT INTO `wp_postmeta` VALUES("2129", "150", "_WPMSGOPTION_AnalyticsCode", "");
INSERT INTO `wp_postmeta` VALUES("2130", "150", "_WPMSGOPTION_CouponTitle", "");
INSERT INTO `wp_postmeta` VALUES("2131", "150", "_WPMSGOPTION_CouponCodeText", "");
INSERT INTO `wp_postmeta` VALUES("2132", "150", "_WPMSGOPTION_CouponStartText", "");
INSERT INTO `wp_postmeta` VALUES("2133", "150", "_WPMSGOPTION_CouponExpiryText", "");
INSERT INTO `wp_postmeta` VALUES("2134", "150", "_WPMSGOPTION_CouponCode", "");
INSERT INTO `wp_postmeta` VALUES("2135", "150", "_WPMSGOPTION_CouponCodeExpired", "");
INSERT INTO `wp_postmeta` VALUES("2136", "150", "_WPMSGOPTION_CouponStart", "");
INSERT INTO `wp_postmeta` VALUES("2137", "150", "_WPMSGOPTION_CouponExpiry", "");
INSERT INTO `wp_postmeta` VALUES("2138", "150", "_WPMSGOPTION_CouponDateFormat", "Y-m-d");
INSERT INTO `wp_postmeta` VALUES("2139", "150", "_WPMSGOPTION_CouponValidText", "");
INSERT INTO `wp_postmeta` VALUES("2140", "150", "_WPMSGOPTION_CouponExpiredText", "");
INSERT INTO `wp_postmeta` VALUES("2141", "150", "_WPMSGOPTION_CouponImage", "");
INSERT INTO `wp_postmeta` VALUES("2142", "150", "_WPMSGOPTION_TelephoneNumber", "");
INSERT INTO `wp_postmeta` VALUES("2143", "150", "_WPMSGOPTION_TelephoneCallToAction", "");
INSERT INTO `wp_postmeta` VALUES("2144", "150", "_WPMSGOPTION_ClickToCallType", "Call");
INSERT INTO `wp_postmeta` VALUES("2145", "150", "_WPMSGOPTION_SMSMessage", "");
INSERT INTO `wp_postmeta` VALUES("2146", "150", "_WPMSGOPTION_HidePhoneIcon", "");
INSERT INTO `wp_postmeta` VALUES("2147", "150", "_WPMSGOPTION_HidePhoneNumber", "");
INSERT INTO `wp_postmeta` VALUES("2148", "150", "_WPMSGOPTION_TelephoneIconImage", "");
INSERT INTO `wp_postmeta` VALUES("2149", "150", "_WPMSGOPTION_TelephoneImage", "");
INSERT INTO `wp_postmeta` VALUES("2150", "150", "_WPMSGOPTION_SMSNumber", "");
INSERT INTO `wp_postmeta` VALUES("2151", "150", "_WPMSGOPTION_SMSCallToAction", "");
INSERT INTO `wp_postmeta` VALUES("2152", "150", "_WPMSGOPTION_SMSMessageText", "");
INSERT INTO `wp_postmeta` VALUES("2153", "150", "_WPMSGOPTION_HideSMSIcon", "");
INSERT INTO `wp_postmeta` VALUES("2154", "150", "_WPMSGOPTION_HideSMSNumber", "");
INSERT INTO `wp_postmeta` VALUES("2155", "150", "_WPMSGOPTION_SMSIconImage", "");
INSERT INTO `wp_postmeta` VALUES("2156", "150", "_WPMSGOPTION_SMSImage", "");
INSERT INTO `wp_postmeta` VALUES("2157", "150", "_WPMSGOPTION_EmailTo", "");
INSERT INTO `wp_postmeta` VALUES("2158", "150", "_WPMSGOPTION_EmailCallToAction", "");
INSERT INTO `wp_postmeta` VALUES("2159", "150", "_WPMSGOPTION_EmailSubjectText", "");
INSERT INTO `wp_postmeta` VALUES("2160", "150", "_WPMSGOPTION_EmailMessageText", "");
INSERT INTO `wp_postmeta` VALUES("2161", "150", "_WPMSGOPTION_HideEmailIcon", "");
INSERT INTO `wp_postmeta` VALUES("2162", "150", "_WPMSGOPTION_EmailIconImage", "");
INSERT INTO `wp_postmeta` VALUES("2163", "150", "_WPMSGOPTION_EmailImage", "");
INSERT INTO `wp_postmeta` VALUES("2164", "150", "_WPMSGOPTION_SkypeUsername", "");
INSERT INTO `wp_postmeta` VALUES("2165", "150", "_WPMSGOPTION_SkypeCallToAction", "");
INSERT INTO `wp_postmeta` VALUES("2166", "150", "_WPMSGOPTION_HideSkypeIcon", "");
INSERT INTO `wp_postmeta` VALUES("2167", "150", "_WPMSGOPTION_SkypeIconImage", "");
INSERT INTO `wp_postmeta` VALUES("2168", "150", "_WPMSGOPTION_SkypeImage", "");
INSERT INTO `wp_postmeta` VALUES("2169", "150", "_WPMSGOPTION_RedirectURL", "");
INSERT INTO `wp_postmeta` VALUES("2170", "150", "_WPMSGOPTION_DeactivatedURL", "");
INSERT INTO `wp_postmeta` VALUES("2171", "150", "_WPMSGOPTION_ExportDomain", "");
INSERT INTO `wp_postmeta` VALUES("2172", "150", "_WPMSGOPTION_CreateBitly", "");
INSERT INTO `wp_postmeta` VALUES("2173", "150", "_WPMSGOPTION_BitlyUsername", "");
INSERT INTO `wp_postmeta` VALUES("2174", "150", "_WPMSGOPTION_BitlyApiKey", "");
INSERT INTO `wp_postmeta` VALUES("2175", "150", "_WPMSGOPTION_BitlyLongUrl", "");
INSERT INTO `wp_postmeta` VALUES("2176", "150", "_WPMSGOPTION_BitlyShortUrl", "");
INSERT INTO `wp_postmeta` VALUES("2177", "150", "_WPMSGOPTION_MapLocation", "Westwood, NJ, USA");
INSERT INTO `wp_postmeta` VALUES("2178", "150", "_WPMSGOPTION_MapLongitude", "");
INSERT INTO `wp_postmeta` VALUES("2179", "150", "_WPMSGOPTION_MapLatitude", "");
INSERT INTO `wp_postmeta` VALUES("2180", "150", "_WPMSGOPTION_MapWidth", "");
INSERT INTO `wp_postmeta` VALUES("2181", "150", "_WPMSGOPTION_MapHeight", "");
INSERT INTO `wp_postmeta` VALUES("2182", "150", "_WPMSGOPTION_MapZoom", "");
INSERT INTO `wp_postmeta` VALUES("2183", "150", "_WPMSGOPTION_MapLanguage", "en");
INSERT INTO `wp_postmeta` VALUES("2184", "150", "_WPMSGOPTION_DisplayMapDirections", "Y");
INSERT INTO `wp_postmeta` VALUES("2185", "150", "_WPMSGOPTION_DirectionsPrompt", "");
INSERT INTO `wp_postmeta` VALUES("2186", "150", "_WPMSGOPTION_DirectionsButtonText", "");
INSERT INTO `wp_postmeta` VALUES("2187", "150", "_WPMSGOPTION_DisplayGPSDirectionsButton", "");
INSERT INTO `wp_postmeta` VALUES("2188", "150", "_WPMSGOPTION_GPSDirectionsButtonText", "");
INSERT INTO `wp_postmeta` VALUES("2189", "150", "_WPMSGOPTION_DirectionsPosition", "A");
INSERT INTO `wp_postmeta` VALUES("2190", "150", "_WPMSGOPTION_StreetLat", "40.9912087");
INSERT INTO `wp_postmeta` VALUES("2191", "150", "_WPMSGOPTION_StreetLong", "-74.0326395");
INSERT INTO `wp_postmeta` VALUES("2192", "150", "_WPMSGOPTION_OptinNamePrompt", "");
INSERT INTO `wp_postmeta` VALUES("2193", "150", "_WPMSGOPTION_OptinEmailPrompt", "");
INSERT INTO `wp_postmeta` VALUES("2194", "150", "_WPMSGOPTION_OptinSubmitPrompt", "");
INSERT INTO `wp_postmeta` VALUES("2195", "150", "_WPMSGOPTION_OptinCode", "");
INSERT INTO `wp_postmeta` VALUES("2196", "150", "_WPMSGOPTION_OptinRedirectPage", "0");
INSERT INTO `wp_postmeta` VALUES("2197", "150", "_WPMSGOPTION_ContactSendToEmail", "");
INSERT INTO `wp_postmeta` VALUES("2198", "150", "_WPMSGOPTION_ContactSendFromName", "");
INSERT INTO `wp_postmeta` VALUES("2199", "150", "_WPMSGOPTION_ContactSendFromEmail", "");
INSERT INTO `wp_postmeta` VALUES("2200", "150", "_WPMSGOPTION_ContactNamePrompt", "");
INSERT INTO `wp_postmeta` VALUES("2201", "150", "_WPMSGOPTION_ContactPhonePrompt", "");
INSERT INTO `wp_postmeta` VALUES("2202", "150", "_WPMSGOPTION_ContactEmailPrompt", "");
INSERT INTO `wp_postmeta` VALUES("2203", "150", "_WPMSGOPTION_ContactMessagePrompt", "");
INSERT INTO `wp_postmeta` VALUES("2204", "150", "_WPMSGOPTION_ContactSubmitPrompt", "");
INSERT INTO `wp_postmeta` VALUES("2205", "150", "_WPMSGOPTION_ContactShowAcknowledgement", "");
INSERT INTO `wp_postmeta` VALUES("2206", "150", "_WPMSGOPTION_ContactAcknowledgementDisplayMessage", "");
INSERT INTO `wp_postmeta` VALUES("2207", "150", "_WPMSGOPTION_ContactSendAcknowledgement", "");
INSERT INTO `wp_postmeta` VALUES("2208", "150", "_WPMSGOPTION_ContactAcknowledgementName", "");
INSERT INTO `wp_postmeta` VALUES("2209", "150", "_WPMSGOPTION_ContactAcknowledgementEmail", "");
INSERT INTO `wp_postmeta` VALUES("2210", "150", "_WPMSGOPTION_ContactAcknowledgementSubject", "");
INSERT INTO `wp_postmeta` VALUES("2211", "150", "_WPMSGOPTION_ContactAcknowledgementMessage", "");
INSERT INTO `wp_postmeta` VALUES("2212", "150", "_WPMSGOPTION_SiteID", "123");
INSERT INTO `wp_postmeta` VALUES("2213", "152", "_WPMREDOPTION_RedirectURL", "");
INSERT INTO `wp_postmeta` VALUES("2214", "152", "_WPMREDOPTION_RedirectNever", "");
INSERT INTO `wp_postmeta` VALUES("2215", "152", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("2216", "152", "_edit_lock", "1362354052:1");
INSERT INTO `wp_postmeta` VALUES("2217", "152", "_WPMSGOPTION_Initialised", "Y");
INSERT INTO `wp_postmeta` VALUES("2218", "152", "_WPMSGOPTION_Deactivated", "");
INSERT INTO `wp_postmeta` VALUES("2219", "152", "_WPMSGOPTION_PageSlug", "about-us");
INSERT INTO `wp_postmeta` VALUES("2220", "152", "_WPMSGOPTION_PageName", "About Us");
INSERT INTO `wp_postmeta` VALUES("2221", "152", "_WPMSGOPTION_TopbarPageName", "About Us");
INSERT INTO `wp_postmeta` VALUES("2222", "152", "_WPMSGOPTION_MenuDesc", "");
INSERT INTO `wp_postmeta` VALUES("2223", "152", "_WPMSGOPTION_ThemeType", "Site");
INSERT INTO `wp_postmeta` VALUES("2224", "152", "_WPMSGOPTION_PageTheme", "113");
INSERT INTO `wp_postmeta` VALUES("2225", "152", "_WPMSGOPTION_MenuStyle", "Vertical");
INSERT INTO `wp_postmeta` VALUES("2226", "152", "_WPMSGOPTION_MenuPosition", "T");
INSERT INTO `wp_postmeta` VALUES("2227", "152", "_WPMSGOPTION_ExcludePage", "");
INSERT INTO `wp_postmeta` VALUES("2228", "152", "_WPMSGOPTION_ExcludeFromSearch", "");
INSERT INTO `wp_postmeta` VALUES("2229", "152", "_WPMSGOPTION_BackgroundImage", "");
INSERT INTO `wp_postmeta` VALUES("2230", "152", "_WPMSGOPTION_BackgroundImageRepeat", "repeat");
INSERT INTO `wp_postmeta` VALUES("2231", "152", "_WPMSGOPTION_BackgroundImagePosition", "lefttop");
INSERT INTO `wp_postmeta` VALUES("2232", "152", "_WPMSGOPTION_PageMinimumHeight", "");
INSERT INTO `wp_postmeta` VALUES("2233", "152", "_WPMSGOPTION_DisplayLogo", "");
INSERT INTO `wp_postmeta` VALUES("2234", "152", "_WPMSGOPTION_LogoImage", "");
INSERT INTO `wp_postmeta` VALUES("2235", "152", "_WPMSGOPTION_LogoBackgroundColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("2236", "152", "_WPMSGOPTION_LogoUseBackgroundColor", "");
INSERT INTO `wp_postmeta` VALUES("2237", "152", "_WPMSGOPTION_FooterBackgroundColor", "");
INSERT INTO `wp_postmeta` VALUES("2238", "152", "_WPMSGOPTION_ThumbnailImage", "HappyFace");
INSERT INTO `wp_postmeta` VALUES("2239", "152", "_WPMSGOPTION_ThumbnailImageColor", "LightBlue");
INSERT INTO `wp_postmeta` VALUES("2240", "152", "_WPMSGOPTION_CustomThumbnailImage", "");
INSERT INTO `wp_postmeta` VALUES("2241", "152", "_WPMSGOPTION_DisplayPreview", "");
INSERT INTO `wp_postmeta` VALUES("2242", "152", "_WPMSGOPTION_DisplayTopBar", "Y");
INSERT INTO `wp_postmeta` VALUES("2243", "152", "_WPMSGOPTION_TopbarRightLinkText", "");
INSERT INTO `wp_postmeta` VALUES("2244", "152", "_WPMSGOPTION_TopbarRightLinkURL", "");
INSERT INTO `wp_postmeta` VALUES("2245", "152", "_WPMSGOPTION_TopbarRightLinkPage", "0");
INSERT INTO `wp_postmeta` VALUES("2246", "152", "_WPMSGOPTION_DisplayPhoneTopBar", "Y");
INSERT INTO `wp_postmeta` VALUES("2247", "152", "_WPMSGOPTION_FacebookURL", "");
INSERT INTO `wp_postmeta` VALUES("2248", "152", "_WPMSGOPTION_TwitterURL", "");
INSERT INTO `wp_postmeta` VALUES("2249", "152", "_WPMSGOPTION_GooglePlusURL", "");
INSERT INTO `wp_postmeta` VALUES("2250", "152", "_WPMSGOPTION_YouTubeURL", "");
INSERT INTO `wp_postmeta` VALUES("2251", "152", "_WPMSGOPTION_LinkedInURL", "");
INSERT INTO `wp_postmeta` VALUES("2252", "152", "_WPMSGOPTION_SocialMediaPage1URL", "");
INSERT INTO `wp_postmeta` VALUES("2253", "152", "_WPMSGOPTION_SocialMediaIcon1URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/facebook.png");
INSERT INTO `wp_postmeta` VALUES("2254", "152", "_WPMSGOPTION_SocialMediaPage2URL", "");
INSERT INTO `wp_postmeta` VALUES("2255", "152", "_WPMSGOPTION_SocialMediaIcon2URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/twitter.png");
INSERT INTO `wp_postmeta` VALUES("2256", "152", "_WPMSGOPTION_SocialMediaPage3URL", "");
INSERT INTO `wp_postmeta` VALUES("2257", "152", "_WPMSGOPTION_SocialMediaIcon3URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/googleplus.png");
INSERT INTO `wp_postmeta` VALUES("2258", "152", "_WPMSGOPTION_SocialMediaPage4URL", "");
INSERT INTO `wp_postmeta` VALUES("2259", "152", "_WPMSGOPTION_SocialMediaIcon4URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/youtube.png");
INSERT INTO `wp_postmeta` VALUES("2260", "152", "_WPMSGOPTION_SocialMediaPage5URL", "");
INSERT INTO `wp_postmeta` VALUES("2261", "152", "_WPMSGOPTION_SocialMediaIcon5URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/linkedin.png");
INSERT INTO `wp_postmeta` VALUES("2262", "152", "_WPMSGOPTION_SocialMediaPage6URL", "");
INSERT INTO `wp_postmeta` VALUES("2263", "152", "_WPMSGOPTION_SocialMediaIcon6URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/pinterest.png");
INSERT INTO `wp_postmeta` VALUES("2264", "152", "_WPMSGOPTION_SocialMediaPage7URL", "");
INSERT INTO `wp_postmeta` VALUES("2265", "152", "_WPMSGOPTION_SocialMediaIcon7URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/flickr.png");
INSERT INTO `wp_postmeta` VALUES("2266", "152", "_WPMSGOPTION_SocialMediaPage8URL", "");
INSERT INTO `wp_postmeta` VALUES("2267", "152", "_WPMSGOPTION_SocialMediaIcon8URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/yelp.png");
INSERT INTO `wp_postmeta` VALUES("2268", "152", "_WPMSGOPTION_SocialMediaPage9URL", "");
INSERT INTO `wp_postmeta` VALUES("2269", "152", "_WPMSGOPTION_SocialMediaIcon9URL", "");
INSERT INTO `wp_postmeta` VALUES("2270", "152", "_WPMSGOPTION_FBLikeURL", "");
INSERT INTO `wp_postmeta` VALUES("2271", "152", "_WPMSGOPTION_FBLikeWidth", "");
INSERT INTO `wp_postmeta` VALUES("2272", "152", "_WPMSGOPTION_FBLikeSendButton", "Y");
INSERT INTO `wp_postmeta` VALUES("2273", "152", "_WPMSGOPTION_FBLikeFaces", "Y");
INSERT INTO `wp_postmeta` VALUES("2274", "152", "_WPMSGOPTION_FBLikeLayoutStyle", "");
INSERT INTO `wp_postmeta` VALUES("2275", "152", "_WPMSGOPTION_FBLikeVerb", "");
INSERT INTO `wp_postmeta` VALUES("2276", "152", "_WPMSGOPTION_FBLikeColorScheme", "");
INSERT INTO `wp_postmeta` VALUES("2277", "152", "_WPMSGOPTION_FBCommentsURL", "");
INSERT INTO `wp_postmeta` VALUES("2278", "152", "_WPMSGOPTION_FBCommentsPosts", "");
INSERT INTO `wp_postmeta` VALUES("2279", "152", "_WPMSGOPTION_FBCommentsColorScheme", "");
INSERT INTO `wp_postmeta` VALUES("2280", "152", "_WPMSGOPTION_SearchPrompt", "");
INSERT INTO `wp_postmeta` VALUES("2281", "152", "_WPMSGOPTION_SearchSubmitPrompt", "");
INSERT INTO `wp_postmeta` VALUES("2282", "152", "_WPMSGOPTION_RSSFeedURL", "");
INSERT INTO `wp_postmeta` VALUES("2283", "152", "_WPMSGOPTION_RSSFeedMax", "");
INSERT INTO `wp_postmeta` VALUES("2284", "152", "_WPMSGOPTION_RSSFeedStyle", "TitleOnly");
INSERT INTO `wp_postmeta` VALUES("2285", "152", "_WPMSGOPTION_MetaTitle", "");
INSERT INTO `wp_postmeta` VALUES("2286", "152", "_WPMSGOPTION_MetaDescription", "");
INSERT INTO `wp_postmeta` VALUES("2287", "152", "_WPMSGOPTION_MetaKeywords", "");
INSERT INTO `wp_postmeta` VALUES("2288", "152", "_WPMSGOPTION_AnalyticsCode", "");
INSERT INTO `wp_postmeta` VALUES("2289", "152", "_WPMSGOPTION_CouponTitle", "");
INSERT INTO `wp_postmeta` VALUES("2290", "152", "_WPMSGOPTION_CouponCodeText", "");
INSERT INTO `wp_postmeta` VALUES("2291", "152", "_WPMSGOPTION_CouponStartText", "");
INSERT INTO `wp_postmeta` VALUES("2292", "152", "_WPMSGOPTION_CouponExpiryText", "");
INSERT INTO `wp_postmeta` VALUES("2293", "152", "_WPMSGOPTION_CouponCode", "");
INSERT INTO `wp_postmeta` VALUES("2294", "152", "_WPMSGOPTION_CouponCodeExpired", "");
INSERT INTO `wp_postmeta` VALUES("2295", "152", "_WPMSGOPTION_CouponStart", "");
INSERT INTO `wp_postmeta` VALUES("2296", "152", "_WPMSGOPTION_CouponExpiry", "");
INSERT INTO `wp_postmeta` VALUES("2297", "152", "_WPMSGOPTION_CouponDateFormat", "Y-m-d");
INSERT INTO `wp_postmeta` VALUES("2298", "152", "_WPMSGOPTION_CouponValidText", "");
INSERT INTO `wp_postmeta` VALUES("2299", "152", "_WPMSGOPTION_CouponExpiredText", "");
INSERT INTO `wp_postmeta` VALUES("2300", "152", "_WPMSGOPTION_CouponImage", "");
INSERT INTO `wp_postmeta` VALUES("2301", "152", "_WPMSGOPTION_TelephoneNumber", "");
INSERT INTO `wp_postmeta` VALUES("2302", "152", "_WPMSGOPTION_TelephoneCallToAction", "");
INSERT INTO `wp_postmeta` VALUES("2303", "152", "_WPMSGOPTION_ClickToCallType", "Call");
INSERT INTO `wp_postmeta` VALUES("2304", "152", "_WPMSGOPTION_SMSMessage", "");
INSERT INTO `wp_postmeta` VALUES("2305", "152", "_WPMSGOPTION_HidePhoneIcon", "");
INSERT INTO `wp_postmeta` VALUES("2306", "152", "_WPMSGOPTION_HidePhoneNumber", "");
INSERT INTO `wp_postmeta` VALUES("2307", "152", "_WPMSGOPTION_TelephoneIconImage", "");
INSERT INTO `wp_postmeta` VALUES("2308", "152", "_WPMSGOPTION_TelephoneImage", "");
INSERT INTO `wp_postmeta` VALUES("2309", "152", "_WPMSGOPTION_SMSNumber", "");
INSERT INTO `wp_postmeta` VALUES("2310", "152", "_WPMSGOPTION_SMSCallToAction", "");
INSERT INTO `wp_postmeta` VALUES("2311", "152", "_WPMSGOPTION_SMSMessageText", "");
INSERT INTO `wp_postmeta` VALUES("2312", "152", "_WPMSGOPTION_HideSMSIcon", "");
INSERT INTO `wp_postmeta` VALUES("2313", "152", "_WPMSGOPTION_HideSMSNumber", "");
INSERT INTO `wp_postmeta` VALUES("2314", "152", "_WPMSGOPTION_SMSIconImage", "");
INSERT INTO `wp_postmeta` VALUES("2315", "152", "_WPMSGOPTION_SMSImage", "");
INSERT INTO `wp_postmeta` VALUES("2316", "152", "_WPMSGOPTION_EmailTo", "");
INSERT INTO `wp_postmeta` VALUES("2317", "152", "_WPMSGOPTION_EmailCallToAction", "");
INSERT INTO `wp_postmeta` VALUES("2318", "152", "_WPMSGOPTION_EmailSubjectText", "");
INSERT INTO `wp_postmeta` VALUES("2319", "152", "_WPMSGOPTION_EmailMessageText", "");
INSERT INTO `wp_postmeta` VALUES("2320", "152", "_WPMSGOPTION_HideEmailIcon", "");
INSERT INTO `wp_postmeta` VALUES("2321", "152", "_WPMSGOPTION_EmailIconImage", "");
INSERT INTO `wp_postmeta` VALUES("2322", "152", "_WPMSGOPTION_EmailImage", "");
INSERT INTO `wp_postmeta` VALUES("2323", "152", "_WPMSGOPTION_SkypeUsername", "");
INSERT INTO `wp_postmeta` VALUES("2324", "152", "_WPMSGOPTION_SkypeCallToAction", "");
INSERT INTO `wp_postmeta` VALUES("2325", "152", "_WPMSGOPTION_HideSkypeIcon", "");
INSERT INTO `wp_postmeta` VALUES("2326", "152", "_WPMSGOPTION_SkypeIconImage", "");
INSERT INTO `wp_postmeta` VALUES("2327", "152", "_WPMSGOPTION_SkypeImage", "");
INSERT INTO `wp_postmeta` VALUES("2328", "152", "_WPMSGOPTION_RedirectURL", "");
INSERT INTO `wp_postmeta` VALUES("2329", "152", "_WPMSGOPTION_DeactivatedURL", "");
INSERT INTO `wp_postmeta` VALUES("2330", "152", "_WPMSGOPTION_ExportDomain", "");
INSERT INTO `wp_postmeta` VALUES("2331", "152", "_WPMSGOPTION_CreateBitly", "");
INSERT INTO `wp_postmeta` VALUES("2332", "152", "_WPMSGOPTION_BitlyUsername", "");
INSERT INTO `wp_postmeta` VALUES("2333", "152", "_WPMSGOPTION_BitlyApiKey", "");
INSERT INTO `wp_postmeta` VALUES("2334", "152", "_WPMSGOPTION_BitlyLongUrl", "");
INSERT INTO `wp_postmeta` VALUES("2335", "152", "_WPMSGOPTION_BitlyShortUrl", "");
INSERT INTO `wp_postmeta` VALUES("2336", "152", "_WPMSGOPTION_MapLocation", "");
INSERT INTO `wp_postmeta` VALUES("2337", "152", "_WPMSGOPTION_MapLongitude", "");
INSERT INTO `wp_postmeta` VALUES("2338", "152", "_WPMSGOPTION_MapLatitude", "");
INSERT INTO `wp_postmeta` VALUES("2339", "152", "_WPMSGOPTION_MapWidth", "");
INSERT INTO `wp_postmeta` VALUES("2340", "152", "_WPMSGOPTION_MapHeight", "");
INSERT INTO `wp_postmeta` VALUES("2341", "152", "_WPMSGOPTION_MapZoom", "");
INSERT INTO `wp_postmeta` VALUES("2342", "152", "_WPMSGOPTION_MapLanguage", "en");
INSERT INTO `wp_postmeta` VALUES("2343", "152", "_WPMSGOPTION_DisplayMapDirections", "");
INSERT INTO `wp_postmeta` VALUES("2344", "152", "_WPMSGOPTION_DirectionsPrompt", "");
INSERT INTO `wp_postmeta` VALUES("2345", "152", "_WPMSGOPTION_DirectionsButtonText", "");
INSERT INTO `wp_postmeta` VALUES("2346", "152", "_WPMSGOPTION_DisplayGPSDirectionsButton", "");
INSERT INTO `wp_postmeta` VALUES("2347", "152", "_WPMSGOPTION_GPSDirectionsButtonText", "");
INSERT INTO `wp_postmeta` VALUES("2348", "152", "_WPMSGOPTION_DirectionsPosition", "A");
INSERT INTO `wp_postmeta` VALUES("2349", "152", "_WPMSGOPTION_OptinNamePrompt", "");
INSERT INTO `wp_postmeta` VALUES("2350", "152", "_WPMSGOPTION_OptinEmailPrompt", "");
INSERT INTO `wp_postmeta` VALUES("2351", "152", "_WPMSGOPTION_OptinSubmitPrompt", "");
INSERT INTO `wp_postmeta` VALUES("2352", "152", "_WPMSGOPTION_OptinCode", "");
INSERT INTO `wp_postmeta` VALUES("2353", "152", "_WPMSGOPTION_OptinRedirectPage", "0");
INSERT INTO `wp_postmeta` VALUES("2354", "152", "_WPMSGOPTION_ContactSendToEmail", "");
INSERT INTO `wp_postmeta` VALUES("2355", "152", "_WPMSGOPTION_ContactSendFromName", "");
INSERT INTO `wp_postmeta` VALUES("2356", "152", "_WPMSGOPTION_ContactSendFromEmail", "");
INSERT INTO `wp_postmeta` VALUES("2357", "152", "_WPMSGOPTION_ContactNamePrompt", "");
INSERT INTO `wp_postmeta` VALUES("2358", "152", "_WPMSGOPTION_ContactPhonePrompt", "");
INSERT INTO `wp_postmeta` VALUES("2359", "152", "_WPMSGOPTION_ContactEmailPrompt", "");
INSERT INTO `wp_postmeta` VALUES("2360", "152", "_WPMSGOPTION_ContactMessagePrompt", "");
INSERT INTO `wp_postmeta` VALUES("2361", "152", "_WPMSGOPTION_ContactSubmitPrompt", "");
INSERT INTO `wp_postmeta` VALUES("2362", "152", "_WPMSGOPTION_ContactShowAcknowledgement", "");
INSERT INTO `wp_postmeta` VALUES("2363", "152", "_WPMSGOPTION_ContactAcknowledgementDisplayMessage", "");
INSERT INTO `wp_postmeta` VALUES("2364", "152", "_WPMSGOPTION_ContactSendAcknowledgement", "");
INSERT INTO `wp_postmeta` VALUES("2365", "152", "_WPMSGOPTION_ContactAcknowledgementName", "");
INSERT INTO `wp_postmeta` VALUES("2366", "152", "_WPMSGOPTION_ContactAcknowledgementEmail", "");
INSERT INTO `wp_postmeta` VALUES("2367", "152", "_WPMSGOPTION_ContactAcknowledgementSubject", "");
INSERT INTO `wp_postmeta` VALUES("2368", "152", "_WPMSGOPTION_ContactAcknowledgementMessage", "");
INSERT INTO `wp_postmeta` VALUES("2369", "152", "_WPMSGOPTION_SiteID", "123");
INSERT INTO `wp_postmeta` VALUES("2370", "153", "_WPMREDOPTION_RedirectURL", "");
INSERT INTO `wp_postmeta` VALUES("2371", "153", "_WPMREDOPTION_RedirectNever", "");
INSERT INTO `wp_postmeta` VALUES("3154", "166", "_wp_attached_file", "2013/02/Facebook-Timeline_4.jpg");
INSERT INTO `wp_postmeta` VALUES("2372", "154", "_WPMREDOPTION_RedirectURL", "");
INSERT INTO `wp_postmeta` VALUES("2373", "154", "_WPMREDOPTION_RedirectNever", "");
INSERT INTO `wp_postmeta` VALUES("2374", "154", "_WPMSGOPTION_PageBackgroundColor", "000000");
INSERT INTO `wp_postmeta` VALUES("2375", "154", "_WPMSGOPTION_LogoBackgroundColor", "000000");
INSERT INTO `wp_postmeta` VALUES("2376", "154", "_WPMSGOPTION_FooterBackgroundColor", "000000");
INSERT INTO `wp_postmeta` VALUES("2377", "154", "_WPMSGOPTION_ParagraphTextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("2378", "154", "_WPMSGOPTION_ParagraphTextSize", "");
INSERT INTO `wp_postmeta` VALUES("2379", "154", "_WPMSGOPTION_BackgroundImage", "");
INSERT INTO `wp_postmeta` VALUES("2380", "154", "_WPMSGOPTION_BackgroundImageRepeat", "repeat");
INSERT INTO `wp_postmeta` VALUES("2381", "154", "_WPMSGOPTION_BackgroundImagePosition", "lefttop");
INSERT INTO `wp_postmeta` VALUES("2382", "154", "_WPMSGOPTION_TopbarStartColor", "202020");
INSERT INTO `wp_postmeta` VALUES("2383", "154", "_WPMSGOPTION_TopbarEndColor", "858585");
INSERT INTO `wp_postmeta` VALUES("2384", "154", "_WPMSGOPTION_TopbarTextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("2385", "154", "_WPMSGOPTION_TopbarButtonColor", "std");
INSERT INTO `wp_postmeta` VALUES("2386", "154", "_WPMSGOPTION_H1TextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("2387", "154", "_WPMSGOPTION_H1TextSize", "");
INSERT INTO `wp_postmeta` VALUES("2388", "154", "_WPMSGOPTION_H1TextShadow", "");
INSERT INTO `wp_postmeta` VALUES("2389", "154", "_WPMSGOPTION_H2TextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("2390", "154", "_WPMSGOPTION_H2TextSize", "");
INSERT INTO `wp_postmeta` VALUES("2391", "154", "_WPMSGOPTION_H2TextShadow", "");
INSERT INTO `wp_postmeta` VALUES("2392", "154", "_WPMSGOPTION_H3TextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("2393", "154", "_WPMSGOPTION_H3TextSize", "");
INSERT INTO `wp_postmeta` VALUES("2394", "154", "_WPMSGOPTION_H3TextShadow", "");
INSERT INTO `wp_postmeta` VALUES("2395", "154", "_WPMSGOPTION_H4TextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("2396", "154", "_WPMSGOPTION_H4TextSize", "");
INSERT INTO `wp_postmeta` VALUES("2397", "154", "_WPMSGOPTION_H4TextShadow", "");
INSERT INTO `wp_postmeta` VALUES("2398", "154", "_WPMSGOPTION_H5TextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("2399", "154", "_WPMSGOPTION_H5TextSize", "");
INSERT INTO `wp_postmeta` VALUES("2400", "154", "_WPMSGOPTION_H5TextShadow", "");
INSERT INTO `wp_postmeta` VALUES("2401", "154", "_WPMSGOPTION_H6TextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("2402", "154", "_WPMSGOPTION_H6TextSize", "");
INSERT INTO `wp_postmeta` VALUES("2403", "154", "_WPMSGOPTION_H6TextShadow", "");
INSERT INTO `wp_postmeta` VALUES("2404", "154", "_WPMSGOPTION_MenuBackgroundColor", "FF0800");
INSERT INTO `wp_postmeta` VALUES("2405", "154", "_WPMSGOPTION_IconTextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("2406", "154", "_WPMSGOPTION_MenuTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("2407", "154", "_WPMSGOPTION_MenuTextSize", "");
INSERT INTO `wp_postmeta` VALUES("2408", "154", "_WPMSGOPTION_MenuBorderColor", "FF0800");
INSERT INTO `wp_postmeta` VALUES("2409", "154", "_WPMSGOPTION_MenuBorderWidth", "1");
INSERT INTO `wp_postmeta` VALUES("2410", "154", "_WPMSGOPTION_MenuBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("2411", "154", "_WPMSGOPTION_MenuOpacity", "1");
INSERT INTO `wp_postmeta` VALUES("2412", "154", "_WPMSGOPTION_MenuArrowImage", "LightBigArrow");
INSERT INTO `wp_postmeta` VALUES("2413", "154", "_WPMSGOPTION_MenuArrowColor", "Transparent");
INSERT INTO `wp_postmeta` VALUES("2414", "154", "_WPMSGOPTION_MenuSelectedBackgroundColor", "015FE6");
INSERT INTO `wp_postmeta` VALUES("2415", "154", "_WPMSGOPTION_MenuSelectedTextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("2416", "154", "_WPMSGOPTION_MenuSeparatorColor", "878787");
INSERT INTO `wp_postmeta` VALUES("2417", "154", "_WPMSGOPTION_BlockquoteBackgroundColor", "D40700");
INSERT INTO `wp_postmeta` VALUES("2418", "154", "_WPMSGOPTION_BlockquoteTextColor", "FCFC0F");
INSERT INTO `wp_postmeta` VALUES("2419", "154", "_WPMSGOPTION_BlockquoteTextSize", "");
INSERT INTO `wp_postmeta` VALUES("2420", "154", "_WPMSGOPTION_BlockquoteBorderColor", "FF0800");
INSERT INTO `wp_postmeta` VALUES("2421", "154", "_WPMSGOPTION_BlockquoteBorderWidth", "1");
INSERT INTO `wp_postmeta` VALUES("2422", "154", "_WPMSGOPTION_BlockquoteBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("2423", "154", "_WPMSGOPTION_TableBackgroundColor", "D40700");
INSERT INTO `wp_postmeta` VALUES("2424", "154", "_WPMSGOPTION_TableTextColor", "FCFC0F");
INSERT INTO `wp_postmeta` VALUES("2425", "154", "_WPMSGOPTION_TableTextSize", "");
INSERT INTO `wp_postmeta` VALUES("2426", "154", "_WPMSGOPTION_TableBorderColor", "FF0800");
INSERT INTO `wp_postmeta` VALUES("2427", "154", "_WPMSGOPTION_TableBorderWidth", "1");
INSERT INTO `wp_postmeta` VALUES("2428", "154", "_WPMSGOPTION_TableBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("2429", "154", "_WPMSGOPTION_TableWidth", "95");
INSERT INTO `wp_postmeta` VALUES("2430", "154", "_WPMSGOPTION_TablePadding", "2");
INSERT INTO `wp_postmeta` VALUES("2431", "154", "_WPMSGOPTION_ClickToCallBackgroundColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("2432", "154", "_WPMSGOPTION_ClickToCallTextColor", "F50000");
INSERT INTO `wp_postmeta` VALUES("2433", "154", "_WPMSGOPTION_ClickToCallTextSize", "");
INSERT INTO `wp_postmeta` VALUES("2434", "154", "_WPMSGOPTION_ClickToCallBorderColor", "0831FF");
INSERT INTO `wp_postmeta` VALUES("2435", "154", "_WPMSGOPTION_ClickToCallBorderWidth", "");
INSERT INTO `wp_postmeta` VALUES("2436", "154", "_WPMSGOPTION_ClickToCallBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("2437", "154", "_WPMSGOPTION_OptinFormBackgroundColor", "FF0800");
INSERT INTO `wp_postmeta` VALUES("2438", "154", "_WPMSGOPTION_OptinFormInputBackgroundColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("2439", "154", "_WPMSGOPTION_OptinFormSubmitBackgroundColor", "FCFC0F");
INSERT INTO `wp_postmeta` VALUES("2440", "154", "_WPMSGOPTION_OptinFormSubmitTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("2441", "154", "_WPMSGOPTION_OptinFormTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("2442", "154", "_WPMSGOPTION_OptinFormTextSize", "");
INSERT INTO `wp_postmeta` VALUES("2443", "154", "_WPMSGOPTION_OptinFormBorderColor", "FF0800");
INSERT INTO `wp_postmeta` VALUES("2444", "154", "_WPMSGOPTION_OptinFormBorderWidth", "1");
INSERT INTO `wp_postmeta` VALUES("2445", "154", "_WPMSGOPTION_OptinFormBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("2446", "154", "_WPMSGOPTION_ContactFormBackgroundColor", "96FFFC");
INSERT INTO `wp_postmeta` VALUES("2447", "154", "_WPMSGOPTION_ContactFormInputBackgroundColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("2448", "154", "_WPMSGOPTION_ContactFormSubmitBackgroundColor", "96FFFC");
INSERT INTO `wp_postmeta` VALUES("2449", "154", "_WPMSGOPTION_ContactFormSubmitTextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("2450", "154", "_WPMSGOPTION_ContactFormTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("2451", "154", "_WPMSGOPTION_ContactFormTextSize", "");
INSERT INTO `wp_postmeta` VALUES("2452", "154", "_WPMSGOPTION_ContactFormBorderColor", "96FFFC");
INSERT INTO `wp_postmeta` VALUES("2453", "154", "_WPMSGOPTION_ContactFormBorderWidth", "1");
INSERT INTO `wp_postmeta` VALUES("2454", "154", "_WPMSGOPTION_ContactFormBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("2455", "154", "_WPMSGOPTION_DirectionsBackgroundColor", "96FFFC");
INSERT INTO `wp_postmeta` VALUES("2456", "154", "_WPMSGOPTION_DirectionsInputBackgroundColor", "FFFAFA");
INSERT INTO `wp_postmeta` VALUES("2457", "154", "_WPMSGOPTION_DirectionsSubmitBackgroundColor", "FCFC0F");
INSERT INTO `wp_postmeta` VALUES("2458", "154", "_WPMSGOPTION_DirectionsSubmitTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("2459", "154", "_WPMSGOPTION_DirectionsTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("2460", "154", "_WPMSGOPTION_DirectionsTextSize", "");
INSERT INTO `wp_postmeta` VALUES("2461", "154", "_WPMSGOPTION_DirectionsBorderColor", "FF0800");
INSERT INTO `wp_postmeta` VALUES("2462", "154", "_WPMSGOPTION_DirectionsBorderWidth", "1");
INSERT INTO `wp_postmeta` VALUES("2463", "154", "_WPMSGOPTION_DirectionsBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("2464", "154", "_WPMSGOPTION_SlideshowBackgroundColor", "FF0800");
INSERT INTO `wp_postmeta` VALUES("2465", "154", "_WPMSGOPTION_SlideshowTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("2466", "154", "_WPMSGOPTION_SlideshowTextSize", "");
INSERT INTO `wp_postmeta` VALUES("2467", "154", "_WPMSGOPTION_SlideshowBorderColor", "FCFC0F");
INSERT INTO `wp_postmeta` VALUES("2468", "154", "_WPMSGOPTION_SlideshowBorderWidth", "");
INSERT INTO `wp_postmeta` VALUES("2469", "154", "_WPMSGOPTION_SlideshowBorderStyle", "None");
INSERT INTO `wp_postmeta` VALUES("2470", "154", "_WPMSGOPTION_AccordianTitleBackgroundColor", "FF0800");
INSERT INTO `wp_postmeta` VALUES("2471", "154", "_WPMSGOPTION_AccordianTitleTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("2472", "154", "_WPMSGOPTION_AccordianTitleTextSize", "");
INSERT INTO `wp_postmeta` VALUES("2473", "154", "_WPMSGOPTION_AccordianTitleSelectedBackgroundColor", "015FE6");
INSERT INTO `wp_postmeta` VALUES("2474", "154", "_WPMSGOPTION_AccordianTitleSelectedTextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("2475", "154", "_WPMSGOPTION_AccordianBackgroundColor", "D40700");
INSERT INTO `wp_postmeta` VALUES("2476", "154", "_WPMSGOPTION_AccordianTextColor", "FCFC0F");
INSERT INTO `wp_postmeta` VALUES("2477", "154", "_WPMSGOPTION_AccordianTextSize", "");
INSERT INTO `wp_postmeta` VALUES("2478", "154", "_WPMSGOPTION_AccordianSeparatorColor", "878787");
INSERT INTO `wp_postmeta` VALUES("2479", "154", "_WPMSGOPTION_AccordianBorderColor", "FF0800");
INSERT INTO `wp_postmeta` VALUES("2480", "154", "_WPMSGOPTION_AccordianBorderWidth", "1");
INSERT INTO `wp_postmeta` VALUES("2481", "154", "_WPMSGOPTION_AccordianBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("2482", "154", "_WPMSGOPTION_AccordianArrowImage", "LightTriangle");
INSERT INTO `wp_postmeta` VALUES("2483", "154", "_WPMSGOPTION_AccordianArrowColor", "Transparent");
INSERT INTO `wp_postmeta` VALUES("2484", "154", "_WPMSGOPTION_CouponBackgroundColor", "96FFFC");
INSERT INTO `wp_postmeta` VALUES("2485", "154", "_WPMSGOPTION_CouponTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("2486", "154", "_WPMSGOPTION_CouponTextSize", "");
INSERT INTO `wp_postmeta` VALUES("2487", "154", "_WPMSGOPTION_CouponBorderColor", "FCFC0F");
INSERT INTO `wp_postmeta` VALUES("2488", "154", "_WPMSGOPTION_CouponBorderWidth", "2");
INSERT INTO `wp_postmeta` VALUES("2489", "154", "_WPMSGOPTION_CouponBorderStyle", "Dashed");
INSERT INTO `wp_postmeta` VALUES("2490", "154", "_WPMSGOPTION_SearchBackgroundColor", "FF0800");
INSERT INTO `wp_postmeta` VALUES("2491", "154", "_WPMSGOPTION_SearchTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("2492", "154", "_WPMSGOPTION_SearchTextSize", "");
INSERT INTO `wp_postmeta` VALUES("2493", "154", "_WPMSGOPTION_SearchBorderColor", "FCFC0F");
INSERT INTO `wp_postmeta` VALUES("2494", "154", "_WPMSGOPTION_SearchBorderWidth", "2");
INSERT INTO `wp_postmeta` VALUES("2495", "154", "_WPMSGOPTION_SearchBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("2496", "154", "_WPMSGOPTION_SearchInputBackgroundColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("2497", "154", "_WPMSGOPTION_SearchSubmitBackgroundColor", "FCFC0F");
INSERT INTO `wp_postmeta` VALUES("2498", "154", "_WPMSGOPTION_SearchSubmitTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("2499", "154", "_WPMSGOPTION_SearchSelectedBackgroundColor", "015FE6");
INSERT INTO `wp_postmeta` VALUES("2500", "154", "_WPMSGOPTION_SearchSelectedTextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("2501", "154", "_WPMSGOPTION_SearchHighlightColor", "FFFF00");
INSERT INTO `wp_postmeta` VALUES("2502", "154", "_WPMSGOPTION_RssBackgroundColor", "FF0800");
INSERT INTO `wp_postmeta` VALUES("2503", "154", "_WPMSGOPTION_RssTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("2504", "154", "_WPMSGOPTION_RssTextSize", "");
INSERT INTO `wp_postmeta` VALUES("2505", "154", "_WPMSGOPTION_RssBorderColor", "FCFC0F");
INSERT INTO `wp_postmeta` VALUES("2506", "154", "_WPMSGOPTION_RssBorderWidth", "2");
INSERT INTO `wp_postmeta` VALUES("2507", "154", "_WPMSGOPTION_RssBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("2508", "154", "_WPMSGOPTION_RssSelectedBackgroundColor", "015FE6");
INSERT INTO `wp_postmeta` VALUES("2509", "154", "_WPMSGOPTION_RssSelectedTextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("2510", "154", "_WPMSGOPTION_ThemeStyleCSS", "<style  type=\"text/css\" >body{position:relative;-webkit-text-size-adjust:none;min-height:416px;{--wpmsgtknsinglepageminimumheight--}font-family:helvetica,sans-serif;-webkit-background-size:.438em 100%;Background:#000000;-webkit-touch-callout:none;margin:0;margin-right:auto; margin-left:auto;}img.alignright {float:right; max-width:100%; margin:0 0 1em 1em}img.alignleft {float:left; max-width:100%; margin:0 1em 1em 0}img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}a img.alignright {float:right; max-width:100%; margin:0 0 1em 1em}a img.alignleft {float:left; max-width:100%; margin:0 1em 1em 0}a img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}#accordion {background:#D40700;border-color:#FF0800;border-width:1px;border-style:Solid;margin:5px 5px 5px 5px;border-radius:8px}#accordion H2 {padding-top: 5pxpadding-bottom: 5px; padding-left: 15px; padding-right: 15px; margin: 0px 0px 0px 0px; background:#FF0800;font-size:17px;color:#000000;cursor: pointer; height:43px;overflow:hidden;border-top:1px solid #878787;font-weight: bold; line-height: 40px;}#accordion H2:first-child{border-top:none;border-radius:8px}#accordion H2:last-child{border-bottom-left-radius:8px;border-bottom-right-radius:8px}#accordion H2.current {background-color:#015FE6; color:#FFFFFF; cursor: default}#accordion div.acchead {padding-top: 5pxpadding-bottom: 5px; padding-left: 15px; padding-right: 15px; margin: 0px 0px 0px 0px; font-weight:bold;font-size:17px;background:#FF0800;font-size:17px;color:#000000;cursor: pointer; height:43px;overflow:hidden;border-top:1px solid #878787;line-height: 40px;}#accordion div.acchead:first-child{border-top:none;border-top-left-radius:8px;border-top-right-radius:8px;}#accordion div.acchead.current {background-color:#015FE6; color:#FFFFFF; cursor: default}#accordion .pane {padding-top: 15pxpadding-bottom: 15px; padding-left: 15px; padding-right: 15px; display: none; color:#FCFC0F;border-bottom-left-radius:8px;border-bottom-right-radius:8px;}#accordion .acchead .accarrow {float: right;valign: center;width:24px!important;height:24px!important;right:10px;top:18px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/arrows/Down_LightTriangle_Transparent.png) 0 0 no-repeat;margin:0!important ;margin-top: 15px;padding-top: 15px;}.images {background:#FF0800;color:#000000;border-color:#FCFC0F;border-width:px;border-style:;{--wpmsgtknslideshowheight--}{--wpmsgtknslideshowwidth--}overflow:hidden;margin-left:auto;margin-right:auto;position:relative;cursor:pointer;-moz-border-radius:5px;-moz-box-shadow:0 0 25px #666;-webkit-border-radius:5px;-webkit-box-shadow:0 0 25px #666;border-radius:5px;box-shadow:0 0 25px #666;}.images div {display:none;position:absolute;top:0;left:0;width: 100%;}.images div p a img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}.images div p img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}.images div a img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}.images div img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}.images img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}.images h3 {font-size:22px;font-weight:normal;margin:0 0 20px 0;color:#456;}.slidetabs {clear:both;}.slidetabs a {width:8px;height:8px;float:left;margin:3px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navigator.png) 0 0 no-repeat;display:block;font-size:1px;}.slidetabs a:hover {background-position:0 -8px;}.slidetabs a.current {background-position:0 -16px; } .forward, .backward {float:left;background:#fff url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/hori_large.png) no-repeat;display:block;width:30px;height:30px;cursor:pointer;font-size:1px;text-indent:-9999em;}.forward { background-position: 0 -30px; clear:right; }.forward:hover { background-position:-30px -30px; }.forward:active{ background-position:-60px -30px; } .backward:hover{ background-position:-30px 0; }.backward:active{ background-position:-60px 0; }.disabled {visibility:hidden !important;}.gallery { list-style: none; padding: 0; margin: 0; }.gallery:after { clear: both; content: \".\"; display: block; height: 0; visibility: hidden; }.gallery li { float: left; width: 33.33333333%; }.gallery li a { display: block; margin: 5px; border: 1px solid #3c3c3c; }.gallery li img { display: block; width: 100%; height: auto; }.highlight { background:#FFFF00;}.highlight_important { background:#FFFF00;}.center{display:block;text-align:center!important;margin:auto}a:hover .arrow{background:0 -13px!important}#topbar.transparent{background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#202020), to(#858585));background-image: -webkit-linear-gradient(top, #202020, #858585);background-image:-moz-linear-gradient(top, #202020, #858585);background-image: -ms-linear-gradient(top, #202020, #858585);background-image:-o-linear-gradient(top, #202020, #858585);}#topbar{position:relative;left:0;top:0;width:auto;}#title{position:absolute;font-weight:bold;top:0;left:0;right:0;text-align:center;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;color:#FFF;color:#FFFFFF;text-shadow:rgba(0,0,0,0.6) 0 -1px 0;padding:0 10px;}#logo{Background:#000000;}#content{width:100%;position:relative;min-height:250px;{--wpmsgtknsinglepageminimumheight--}height:auto;z-index:0;overflow:hidden;{--wpmsgtknsinglepagebackgroundimage--}}p {padding:0 5px;color:#FFFFFF;}h1 {padding:0 5px;color:#FFFFFF;}h2 {padding:0 5px;color:#FFFFFF;}h3 {padding:0 5px;color:#FFFFFF;}h4 {padding:0 5px;color:#FFFFFF;}h5 {padding:0 5px;color:#FFFFFF;}h6 {padding:0 5px;color:#FFFFFF;}blockquote {background:#D40700;color:#FCFC0F;border-color:#FF0800;border-width:1px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 6px 10px;padding:0 5px;border-radius:8px}blockquote p {background:#D40700;color:#FCFC0F;}.ezmbfooter p {padding:0 5px;color:#FFFFFF;}.ezmbtable {width:95%;margin-left:auto;margin-right:auto;border-collapse:collapse;background:#D40700;color:#FCFC0F;border-color:#FF0800;border-width:1px;border-style:Solid;}.ezmbtable td {background:#D40700;color:#FCFC0F;border-color:#FF0800;border-width:1px;border-style:Solid;padding:2px;}.ezmbtable td p {background:#D40700;color:#FCFC0F;}.ezmbiconlist {color:#FFFFFF;}.menulist {background:#FF0800;color:#000000;border-color:#FF0800;border-width:1px;border-style:Solid;opacity:1;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.menulist span.name{color:#000000;text-decoration:none}.menulist span.menudesc{color:#FFFFFF;text-decoration:none}.menulist td a{text-decoration:none}.menulist td a img{vertical-align:text-top;text-decoration:none}.menulist td{vertical-align:text-top;}.searchlist {background:#FF0800;color:#000000;border-color:#FCFC0F;border-width:2px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.searchform {background:#FF0800;color:#000000;border-color:#FCFC0F;border-width:2px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.searchform .button input {background:#FCFC0F;color:#000000;}.searchlist:hover,{background:-webkit-gradient(linear,0% 0%,0% 100%,from(#058cf5),to(#015fe6))}.searchlist a:hover {background-color:#CCF}.searchlist li a:hover{background:#015FE6;}.searchlist a{display:block;height:43px;width:auto;text-decoration:none}.searchlist a img{width:auto;height:32px;float:left;margin:5px 0 0 5px}.searchlist .name{width:auto;font-weight:bold;font-size:17px;color:#000000;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;float:left;margin:11px 0 0 7px}.searchlist a:hover .name{color:#FFFFFF;}.searchlistsnippet{padding-left:5px;padding-right:5px;}.rssfeedlist {background:#FF0800;color:#000000;border-color:#FCFC0F;border-width:2px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.rssfeedlist:hover{background:-webkit-gradient(linear,0% 0%,0% 100%,from(#058cf5),to(#015fe6))}.rssfeedlist a:hover {background-color:#CCF}.rssfeedlist li a:hover{background-color:#015fe6}.rssfeedlist a{display:block;min-height:43px;width:auto;text-decoration:none}.rssfeedlist a img{width:auto;height:32px;float:left;margin:5px 0 0 5px}.rssfeedlist .name{width:auto;font-weight:bold;font-size:17px;color:#000000;float:left;margin:11px 0 0 7px}.rssfeedlist a:hover .name{color:#FFFFFF;}.rssfeedlistsnippet{padding-left:5px;padding-right:5px;}.ezmbcouponwidget {background:#96FFFC;color:#000000;border-color:#FCFC0F;border-width:2px;border-style:Dashed;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.optinform {background:#FF0800;color:#000000;border-color:#FF0800;border-width:1px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.optinform .button input {background:#FCFC0F;color:#000000;}.contactform {background:#96FFFC;color:#000000;border-color:#96FFFC;border-width:1px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.contactform .button input {background:#96FFFC;color:#FFFFFF;}.customform {background:#96FFFC;color:#000000;border-color:#96FFFC;border-width:1px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.customform .button input {background:#96FFFC;color:#FFFFFF;}li.customformrow{position:relative;list-style-type:none;display:block;height:43px;overflow:hidden;border-top:1px solid #878787;border-top:1px solid #878787;width:auto}li.customformrowbelow{position:relative;list-style-type:none;display:block;height:43px;overflow:hidden;width:auto}p.customformrow{-webkit-margin-before: 0px;border-top:1px solid #878787;width:auto}.customformrow .customformlabel, .customformrow .customformlabelfull, .customformtextbox .customformlabel, .customformradiorow .customformlabel{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;padding-left:5px;overflow:hidden}.customformrow .customformlabel{line-height:44px;}.customformrow .customformlabelfull{line-height:44px;width:100%;height:auto;}.customformrow input {width:50%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.customformrowbelow input {width:100%;min-width:95%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}input.customformrowrequired{background: #ff8080;}.customformrow input:not([type=\'checkbox\']) {-webkit-appearance:none;}.customformrow select{width:50%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.customformrow:first-child input{border-top-right-radius:8px}.customformrow:last-child input{border-bottom-right-radius:8px}.customformtextbox{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.customformtextbox img{max-width:100%}.customformtextbox p{margin-top:2px;color:#000;margin-bottom:2px;text-align:justify}.customformtextbox ul{list-style:circle!important;margin:3px 0}.customformtextbox li{margin:0!important}.customformtextbox textarea{margin-top:5px;font-size:medium;padding:0}.customformradiorow{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.customformrow input[type=\"checkbox\"]{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOff.png)no-repeat;-webkit-appearance:none;border:0;margin:4px 4px 0 0}.customformrow input[type=\"checkbox\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOn.png)no-repeat;}.customformradiorow input[type=\"radio\"]{-webkit-appearance:none;border:0;width:100%;height: 43px;z-index:2;position:absolute;left:50%;margin:0;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOff.png) no-repeat;-webkit-border-radius:0}.customformradiorow input[type=\"radio\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOn.png) no-repeat;}.customformradiorow .customformradiorowinput {height: 40px;}.customformradiorow label{position: absolute;margin-top: 6px;margin-left:60%;text-overflow: ellipsis;}.customformradiorowbelow{position:relative;overflow:hidden;padding:5px 9px}.customformradiorowbelowlabel{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.customformradiorowbelowlabel .customformlabel{left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;padding-left:5px;overflow:hidden}.customformradiorowbelow input[type=\"radio\"]{-webkit-appearance:none;border:0;width:100%;height: 43px;z-index:2;position:absolute;left:10px;margin:0;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOff.png) no-repeat;-webkit-border-radius:0}.customformradiorowbelow input[type=\"radio\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOn.png) no-repeat;}.customformradiorowbelow .customformradiorowinputbelow {height: 40px;}span.customformlabelfull{font-weight:bold;font-size:17px;}.customformradiorowbelow label{position: absolute;margin-top: 6px;margin-left:45px;text-overflow: ellipsis;}li.customformrowbelow select{width:100%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.customformrowcheckboxright{position:relative;overflow:hidden;border-top:1px solid #878787;height: 40px;padding:5px 9px}.customformrowcheckboxright .customformlabel {left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;line-height:44px;overflow:hidden}.customformrowcheckboxright input[type=\"checkbox\"]{position: absolute;height: 40px;width: 35px;right:0;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOff.png)no-repeat;-webkit-appearance:none;border:0;margin:4px 4px 0 0}.customformrowcheckboxright input[type=\"checkbox\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOn.png) no-repeat;}.customformrowcheckboxleft{position:relative;overflow:hidden;border-top:1px solid #878787;height: 40px;padding:5px 9px}.customformrowcheckboxleft .customformlabel {margin-left:40px;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;line-height:44px;overflow:hidden}.customformrowcheckboxleft input[type=\"checkbox\"]{position: absolute;height: 40px;width: 35px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOff.png)no-repeat;-webkit-appearance:none;border:0;margin:4px 4px 0 0}.customformrowcheckboxleft input[type=\"checkbox\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOn.png) no-repeat;} .directions {background:#96FFFC;color:#000000;border-color:#FF0800;border-width:1px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.directions .button input {background:#FCFC0F;color:#000000;}.clear {clear: both;}.ezmbphone {margin-left: auto;margin-right: auto;text-align: center;}.ezmbphoneimg {margin-left: auto;margin-right: auto;text-align: center;}.phonebtnimg {margin-left: auto;margin-right: auto;text-align: center;}.phonebtn, .phonebtn:visited {background:#FFFFFF;color:#F50000;border-color:#0831FF;border-width:px;border-style:Solid;display: inline-block; padding: 5px 10px 6px; text-decoration: none;border-radius: 10px;position: relative;cursor: pointer;font-weight:bold;}.ezmbfooter {Background:#000000;margin:0;}.ezmbfooter p {margin:0;}.textbox{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.searchbox{height:44px;background:-webkit-gradient(linear,0% 0%,0% 100%,from(#f1f3f4),color-stop(3%,#e0e4e7),color-stop(50%,#c7cfd4),color-stop(51%,#bec7cd),color-stop(97%,#b4bec6),to(#8999a5));width:100%;margin:-13px 0 13px}.searchbox form{height:24px;border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/searchfield.png) 4 14 1 24;display:block;position:relative;top:8px;border-width:4px 14px 1px 24px;margin:auto}fieldset{border:0;margin:0;padding:0}.searchbox input[type=\"text\"]{border:0;-webkit-appearance:none;height:18px;float:left;font-size:13px;position:relative;top:2px;left:2px;padding:0}.textbox img{max-width:100%}.textbox p{margin-top:2px;color:#000;margin-bottom:2px;text-align:justify}.textbox ul{list-style:circle!important;margin:3px 0}.textbox li{margin:0!important}.menulist li:first-child,.menulist li.form:first-child{border-top:0}.menu,.checkbox,.radiobutton,.select,li.button,li.bigfield,li.smallfield,li.searchsmallfield,li.optinsmallfield,li.contactsmallfield,li.mapsmallfield{position:relative;list-style-type:none;display:block;height:43px;overflow:hidden;border-top:1px solid #878787;border-top:1px solid #878787;width:auto}.menulist li:first-child:hover,.menulist li:first-child a,.radiobutton:first-child input,.select:first-child select,li.button:first-child input,.bigfield:first-child input{border-top-left-radius:8px;border-top-right-radius:8px}.menulist li:last-child:hover,.menulist li:last-child a,.radiobutton:last-child input,.select:last-child select,li.button:last-child input,.bigfield:last-child input{border-bottom-left-radius:8px;border-bottom-right-radius:8px}.menu:hover,.store:hover,.list #content li a:hover,.list .withimage:hover,.applist li:hover:nth-child(n),.ipodlist li:hover:nth-child(n){background:#015FE6;color:#FFFFFF;}.menu a:hover .comment{color:#FFFFFF;}.menu a{display:block;height:43px;width:auto;text-decoration:none}.menu a img{width:auto;height:32px;float:left;margin:5px 0 0 5px}.menu .name,.checkbox .name,.radiobutton .name{width:auto;font-weight:bold;font-size:17px;color:#000000;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;float:left;margin:11px 0 0 7px}.menu-item{position:relative;list-style-type:none;display:block;height:43px;overflow:hidden;border-top:1px solid #878787;border-top:1px solid #878787;width:auto}.menu-item a{display:block;height:43px;width:auto;text-decoration:none}.menu-item a img{width:auto;height:32px;float:left;margin:5px 0 0 5px}.menu-item .name,.checkbox .name,.radiobutton .name{width:auto;font-weight:bold;font-size:17px;color:#000000;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;float:left;margin:11px 0 0 7px}.menu-item:hover{background:#015FE6;color:#FFFFFF;}.menu-item a:hover .comment{color:#FFFFFF;}.menu-item .comment{width:auto;font-size:17px;text-overflow:ellipsis;overflow:hidden;max-width:75%;white-space:nowrap;float:right;color:#324f85;margin:11px 30px 0 0}.menu-item .arrow{position:absolute;width:24px!important;height:24px!important;right:10px;top:12px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/arrows/LightBigArrow_Transparent.png) 0 0 no-repeat;margin:0!important}.menu-item .arrowleft{float:left;width:24px!important;height:24px!important;left:10px;top:12px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/arrows/LightBigArrow_Transparent.png) 0 0 no-repeat;margin:0!important}.menu-item a:hover .name{color:#FFFFFF;}.menu .comment{width:auto;font-size:17px;text-overflow:ellipsis;overflow:hidden;max-width:75%;white-space:nowrap;float:right;color:#324f85;margin:11px 30px 0 0}.menu .arrow,.store .arrow,.musiclist .arrow,.list .arrow{position:absolute;width:24px!important;height:24px!important;right:10px;top:12px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/arrows/LightBigArrow_Transparent.png) 0 0 no-repeat;margin:0!important}.menu .arrowleft,.store .arrowleft,.musiclist .arrowleft,.list .arrowleft{float:left;width:24px!important;height:24px!important;left:10px;top:12px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/arrows/LightBigArrow_Transparent.png) 0 0 no-repeat;margin:0!important}#leftnav,#leftbutton{position:absolute;font-size:12px;left:9px;font-weight:bold}#leftnav,#leftbutton,#rightnav,#rightbutton{z-index:5000}#leftnav a,#rightnav a,#leftbutton a,#rightbutton a{display:block;color:#fff;text-shadow:rgba(0,0,0,0.6) 0 -1px 0;text-decoration:none}.black #leftnav a:first-child,.transparent #leftnav a:first-child{border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleftblack.png) 0 5 0 13-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleftblack.png) 0 5 0 13-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleftblack.png) 0 5 0 13-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleftblack.png) 0 5 0 13}.black #leftnav a,.transparent #leftnav a{border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleftblack.png) 0 5 0 13-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleftblack.png) 0 5 0 13-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleftblack.png) 0 5 0 13-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleftblack.png) 0 5 0 13}.black #rightnav a:first-child,.transparent #rightnav a:first-child{-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navrightblack.png) 0 13 0 5-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navrightblack.png) 0 13 0 5-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navrightblack.png) 0 13 0 5-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navrightblack.png) 0 13 0 5}.black #rightnav a,.transparent #rightnav a{-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkrightblack.png) 0 13 0 5-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkrightblack.png) 0 13 0 5-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkrightblack.png) 0 13 0 5-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkrightblack.png) 0 13 0 5}.black #leftbutton a,.black #rightbutton a,.transparent #leftbutton a,.transparent #rightbutton a{border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbuttonblack.png) 0 5 0 5-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbuttonblack.png) 0 5 0 5-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbuttonblack.png) 0 5 0 5-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbuttonblack.png) 0 5 0 5}#leftnav a:first-child{z-index:2;border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleft_std.png) 0 5 0 13;-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleft_std.png) 0 5 0 13;-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleft_std.png) 0 5 0 13;-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleft_std.png) 0 5 0 13;width:auto;border-width:0 5px 0 13px;border-radius:16px 6px 6px 16px}#leftnav a{border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleft.png) 0 5 0 13;-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleft.png) 0 5 0 13;-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleft.png) 0 5 0 13;-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleft.png) 0 5 0 13;z-index:3;margin-left:-4px;padding-right:4px;float:left;border-width:0 5px 0 13px;border-radius:16px 6px 6px 16px}#rightnav,#rightbutton{position:absolute;font-size:12px;right:9px;font-weight:bold}#rightnav a{border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkright.png) 0 13 0 5;-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkright.png) 0 13 0 5;-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkright.png) 0 13 0 5;-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkright.png) 0 13 0 5;z-index:3;margin-right:-4px;padding-left:4px;float:right;border-width:0 13px 0 5px;border-radius:6px 16px 16px 6px}#rightnav a:first-child{z-index:2;border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navright_std.png) 0 13 0 5;-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navright_std.png) 0 13 0 5;-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navright_std.png) 0 13 0 5;-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navright_std.png) 0 13 0 5;border-width:0 13px 0 5px;border-radius:6px 16px 16px 6px}#leftbutton a,#rightbutton a{border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbutton_std.png) 0 5 0 5;-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbutton_std.png) 0 5 0 5;-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbutton_std.png) 0 5 0 5;-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbutton_std.png) 0 5 0 5;border-width:0 5px;border-radius:6px}.gform_body ul { list-style-type: none; }.radiobutton .name{z-index:1}.select select{color:#000;font-weight:bold;font-size:17px;border-radius:0}.select option{max-width:90%}.select .arrow{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/arrow.png);width:8px;height:13px;display:block;-webkit-transform:rotate(90deg);position:absolute;right:10px;top:18px}.button input{width:100%;height:100%;-webkit-appearance:none;border:0;font-weight:bold;font-size:17px;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;background:none;border-radius:0}.textbox textarea{margin-top:5px;font-size:medium;padding:0}.bigfield input{-webkit-appearance:none;border:0;height:100%;background:transparent;font-weight:bold;font-size:17px;padding:0 0 0 5px;border-radius:0}.smallfield .name{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;line-height:44px;font-size:17px;padding-left:5px;overflow:hidden}.smallfield input{width:50%;position:absolute;right:0;height:44px;-webkit-appearance:none;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.smallfield:first-child input{border-top-right-radius:8px}.smallfield:last-child input{border-bottom-right-radius:8px}.searchsmallfield .name{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;line-height:44px;font-size:17px;padding-left:5px;overflow:hidden}.searchsmallfield input{width:50%;position:absolute;right:0;height:44px;-webkit-appearance:none;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.searchsmallfield:first-child input{border-top-right-radius:8px}.searchsmallfield:last-child input{border-bottom-right-radius:8px}.optinsmallfield .name{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;line-height:44px;font-size:17px;padding-left:5px;overflow:hidden}.optinsmallfield input{width:50%;position:absolute;right:0;height:44px;-webkit-appearance:none;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.optinsmallfield:first-child input{border-top-right-radius:8px}.optinsmallfield:last-child input{border-bottom-right-radius:8px}.contactsmallfield .name{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;line-height:44px;font-size:17px;padding-left:5px;overflow:hidden}.contactsmallfield input{width:50%;position:absolute;right:0;height:44px;-webkit-appearance:none;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.contactsmallfield:first-child input{border-top-right-radius:8px}.contactsmallfield:last-child input{border-bottom-right-radius:8px}.mapsmallfield .name{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;line-height:44px;font-size:17px;padding-left:5px;overflow:hidden}.mapsmallfield input{width:50%;position:absolute;right:0;height:44px;-webkit-appearance:none;border:none;background:#FFFAFA;font-weight:bold;font-size:17px;padding:0;border-radius:0}.mapsmallfield:first-child input{border-top-right-radius:8px}.mapsmallfield:last-child input{border-bottom-right-radius:8px}img,#duobutton a:last-child,#duoselectionbuttons a:first-child,.ipodlist li:hover:nth-child(n) .name,.ipodlist li:hover:nth-child(n) .time{border:0}#triselectionbuttons a:hover,#triselectionbuttons a#pressed,#duoselectionbuttons a:hover,#duoselectionbuttons a#pressed,li#doublead:hover{background:none}.menu a:hover .name,.store:hover .starcomment,.store:hover .name,.store:hover .comment,.list .withimage a:hover .comment,.list #content li a:hover{color:#FFFFFF;}@media screen and (max-width:320px) {#topbar{height:44px}#logo{max-width:320px;width:100%;}#title{line-height:44px;height:44px;font-size:16pt;}.searchbox form{width:272px}.searchbox input[type=\"text\"]{width:275px}.menu .name{max-width:77%}#leftnav a,#rightnav a,#leftbutton a,#rightbutton a{line-height:30px;height:30px}#leftnav img,#rightnav img{margin-top:4px}.textbox textarea{width:85%;}.customformtextbox textarea{width:85%;}.bigfield input{width:295px}.checkbox .name,.radiobutton .name{max-width:190px}#leftnav,#leftbutton,#rightnav,#rightbutton{top:7px}}@media screen and (min-width:321px) {#topbar{height:32px}#title{line-height:32px;height:32px;font-size:13pt}.menu .name{max-width:85%}#leftnav a,#rightnav a,#leftbutton a,#rightbutton a{line-height:24px;height:24px}#leftnav img,#rightnav img{margin-top:4px;height:70%}.textbox textarea{width:85%;}.customformtextbox textarea{width:85%;}#doublead{width:350px!important}.searchbox form{width:432px}.searchbox input[type=\"text\"]{width:435px}.bigfield input{width:455px}.checkbox .name,.radiobutton .name{max-width:75%}#leftnav,#leftbutton,#rightnav,#rightbutton{top:4px}}</style>");
INSERT INTO `wp_postmeta` VALUES("2522", "155", "_wp_attached_file", "2013/02/RockStar-FB-Images.jpg");
INSERT INTO `wp_postmeta` VALUES("2511", "154", "_WPMSGOPTION_ThemeCustomFormStyleCSS", "<style  type=\"text/css\" >.customform {background:#96FFFC;color:#000000;border-color:#96FFFC;border-width:1px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.customform .button input {background:#96FFFC;color:#FFFFFF;}li.customformrow{position:relative;list-style-type:none;display:block;height:43px;overflow:hidden;border-top:1px solid #878787;border-top:1px solid #878787;width:auto}li.customformrowbelow{position:relative;list-style-type:none;display:block;height:43px;overflow:hidden;width:auto}p.customformrow{-webkit-margin-before: 0px;border-top:1px solid #878787;width:auto}.customformrow .customformlabel, .customformrow .customformlabelfull, .customformtextbox .customformlabel, .customformradiorow .customformlabel{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;padding-left:5px;overflow:hidden}.customformrow .customformlabel{line-height:44px;}.customformrow .customformlabelfull{line-height:44px;width:100%;height:auto;}.customformrow input {width:50%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.customformrowbelow input {width:100%;min-width:95%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}input.customformrowrequired{background: #ff8080;}.customformrow input:not([type=\'checkbox\']) {-webkit-appearance:none;}.customformrow select{width:50%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.customformrow:first-child input{border-top-right-radius:8px}.customformrow:last-child input{border-bottom-right-radius:8px}.customformtextbox{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.customformtextbox img{max-width:100%}.customformtextbox p{margin-top:2px;color:#000;margin-bottom:2px;text-align:justify}.customformtextbox ul{list-style:circle!important;margin:3px 0}.customformtextbox li{margin:0!important}.customformtextbox textarea{margin-top:5px;font-size:medium;padding:0}.customformradiorow{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.customformrow input[type=\"checkbox\"]{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOff.png)no-repeat;-webkit-appearance:none;border:0;margin:4px 4px 0 0}.customformrow input[type=\"checkbox\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOn.png)no-repeat;}.customformradiorow input[type=\"radio\"]{-webkit-appearance:none;border:0;width:100%;height: 43px;z-index:2;position:absolute;left:50%;margin:0;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOff.png) no-repeat;-webkit-border-radius:0}.customformradiorow input[type=\"radio\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOn.png) no-repeat;}.customformradiorow .customformradiorowinput {height: 40px;}.customformradiorow label{position: absolute;margin-top: 6px;margin-left:60%;text-overflow: ellipsis;}.customformradiorowbelow{position:relative;overflow:hidden;padding:5px 9px}.customformradiorowbelowlabel{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.customformradiorowbelowlabel .customformlabel{left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;padding-left:5px;overflow:hidden}.customformradiorowbelow input[type=\"radio\"]{-webkit-appearance:none;border:0;width:100%;height: 43px;z-index:2;position:absolute;left:10px;margin:0;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOff.png) no-repeat;-webkit-border-radius:0}.customformradiorowbelow input[type=\"radio\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOn.png) no-repeat;}.customformradiorowbelow .customformradiorowinputbelow {height: 40px;}span.customformlabelfull{font-weight:bold;font-size:17px;}.customformradiorowbelow label{position: absolute;margin-top: 6px;margin-left:45px;text-overflow: ellipsis;}li.customformrowbelow select{width:100%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.customformrowcheckboxright{position:relative;overflow:hidden;border-top:1px solid #878787;height: 40px;padding:5px 9px}.customformrowcheckboxright .customformlabel {left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;line-height:44px;overflow:hidden}.customformrowcheckboxright input[type=\"checkbox\"]{position: absolute;height: 40px;width: 35px;right:0;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOff.png)no-repeat;-webkit-appearance:none;border:0;margin:4px 4px 0 0}.customformrowcheckboxright input[type=\"checkbox\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOn.png) no-repeat;}.customformrowcheckboxleft{position:relative;overflow:hidden;border-top:1px solid #878787;height: 40px;padding:5px 9px}.customformrowcheckboxleft .customformlabel {margin-left:40px;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;line-height:44px;overflow:hidden}.customformrowcheckboxleft input[type=\"checkbox\"]{position: absolute;height: 40px;width: 35px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOff.png)no-repeat;-webkit-appearance:none;border:0;margin:4px 4px 0 0}.customformrowcheckboxleft input[type=\"checkbox\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOn.png) no-repeat;}</style>");
INSERT INTO `wp_postmeta` VALUES("2512", "154", "_edit_lock", "1362324351:1");
INSERT INTO `wp_postmeta` VALUES("2513", "154", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("2514", "154", "_WPMREDOPTION_RedirectURL", "");
INSERT INTO `wp_postmeta` VALUES("2515", "154", "_WPMREDOPTION_RedirectNever", "");
INSERT INTO `wp_postmeta` VALUES("2516", "154", "_WPMSGOPTION_LogoBackgroundStyle", "Color");
INSERT INTO `wp_postmeta` VALUES("2517", "154", "_WPMSGOPTION_FooterBackgroundStyle", "Color");
INSERT INTO `wp_postmeta` VALUES("2518", "154", "_WPMSGOPTION_PageMinimumHeight", "");
INSERT INTO `wp_postmeta` VALUES("2519", "154", "_WPMSGOPTION_PageMaxWidth", "");
INSERT INTO `wp_postmeta` VALUES("2520", "154", "_WPMSGOPTION_TopbarTextSize", "");
INSERT INTO `wp_postmeta` VALUES("2521", "154", "_WPMSGOPTION_MenuDescriptionTextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("2523", "155", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"590\";s:6:\"height\";s:3:\"494\";s:14:\"hwstring_small\";s:23:\"height=\'96\' width=\'114\'\";s:4:\"file\";s:30:\"2013/02/RockStar-FB-Images.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:30:\"RockStar-FB-Images-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:30:\"RockStar-FB-Images-300x251.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"251\";}s:15:\"ezgallery-thumb\";a:3:{s:4:\"file\";s:30:\"RockStar-FB-Images-125x125.jpg\";s:5:\"width\";s:3:\"125\";s:6:\"height\";s:3:\"125\";}s:21:\"single-post-thumbnail\";a:3:{s:4:\"file\";s:28:\"RockStar-FB-Images-75x62.jpg\";s:5:\"width\";s:2:\"75\";s:6:\"height\";s:2:\"62\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("2524", "156", "_wp_attached_file", "2013/02/Facebook-Timeline_1.jpg");
INSERT INTO `wp_postmeta` VALUES("2525", "156", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"850\";s:6:\"height\";s:3:\"315\";s:14:\"hwstring_small\";s:23:\"height=\'47\' width=\'128\'\";s:4:\"file\";s:31:\"2013/02/Facebook-Timeline_1.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:31:\"Facebook-Timeline_1-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:31:\"Facebook-Timeline_1-300x111.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"111\";}s:15:\"ezgallery-thumb\";a:3:{s:4:\"file\";s:31:\"Facebook-Timeline_1-125x125.jpg\";s:5:\"width\";s:3:\"125\";s:6:\"height\";s:3:\"125\";}s:21:\"single-post-thumbnail\";a:3:{s:4:\"file\";s:29:\"Facebook-Timeline_1-75x27.jpg\";s:5:\"width\";s:2:\"75\";s:6:\"height\";s:2:\"27\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("2526", "157", "_WPMREDOPTION_RedirectURL", "");
INSERT INTO `wp_postmeta` VALUES("2527", "157", "_WPMREDOPTION_RedirectNever", "");
INSERT INTO `wp_postmeta` VALUES("2528", "157", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("2529", "157", "_edit_lock", "1362353996:1");
INSERT INTO `wp_postmeta` VALUES("2530", "157", "_WPMSGOPTION_Initialised", "Y");
INSERT INTO `wp_postmeta` VALUES("2531", "157", "_WPMSGOPTION_Deactivated", "");
INSERT INTO `wp_postmeta` VALUES("2532", "157", "_WPMSGOPTION_PageSlug", "services");
INSERT INTO `wp_postmeta` VALUES("2533", "157", "_WPMSGOPTION_PageName", "Services");
INSERT INTO `wp_postmeta` VALUES("2534", "157", "_WPMSGOPTION_TopbarPageName", "Services");
INSERT INTO `wp_postmeta` VALUES("2535", "157", "_WPMSGOPTION_MenuDesc", "");
INSERT INTO `wp_postmeta` VALUES("2536", "157", "_WPMSGOPTION_ThemeType", "Site");
INSERT INTO `wp_postmeta` VALUES("2537", "157", "_WPMSGOPTION_PageTheme", "113");
INSERT INTO `wp_postmeta` VALUES("2538", "157", "_WPMSGOPTION_MenuStyle", "Vertical");
INSERT INTO `wp_postmeta` VALUES("2539", "157", "_WPMSGOPTION_MenuPosition", "T");
INSERT INTO `wp_postmeta` VALUES("2540", "157", "_WPMSGOPTION_ExcludePage", "");
INSERT INTO `wp_postmeta` VALUES("2541", "157", "_WPMSGOPTION_ExcludeFromSearch", "");
INSERT INTO `wp_postmeta` VALUES("2542", "157", "_WPMSGOPTION_BackgroundImage", "");
INSERT INTO `wp_postmeta` VALUES("2543", "157", "_WPMSGOPTION_BackgroundImageRepeat", "repeat");
INSERT INTO `wp_postmeta` VALUES("2544", "157", "_WPMSGOPTION_BackgroundImagePosition", "lefttop");
INSERT INTO `wp_postmeta` VALUES("2545", "157", "_WPMSGOPTION_PageMinimumHeight", "");
INSERT INTO `wp_postmeta` VALUES("2546", "157", "_WPMSGOPTION_DisplayLogo", "");
INSERT INTO `wp_postmeta` VALUES("2547", "157", "_WPMSGOPTION_LogoImage", "");
INSERT INTO `wp_postmeta` VALUES("2548", "157", "_WPMSGOPTION_LogoBackgroundColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("2549", "157", "_WPMSGOPTION_LogoUseBackgroundColor", "");
INSERT INTO `wp_postmeta` VALUES("2550", "157", "_WPMSGOPTION_FooterBackgroundColor", "");
INSERT INTO `wp_postmeta` VALUES("2551", "157", "_WPMSGOPTION_ThumbnailImage", "Info");
INSERT INTO `wp_postmeta` VALUES("2552", "157", "_WPMSGOPTION_ThumbnailImageColor", "LightBlue");
INSERT INTO `wp_postmeta` VALUES("2553", "157", "_WPMSGOPTION_CustomThumbnailImage", "");
INSERT INTO `wp_postmeta` VALUES("2554", "157", "_WPMSGOPTION_DisplayPreview", "");
INSERT INTO `wp_postmeta` VALUES("2555", "157", "_WPMSGOPTION_DisplayTopBar", "");
INSERT INTO `wp_postmeta` VALUES("2556", "157", "_WPMSGOPTION_TopbarRightLinkText", "");
INSERT INTO `wp_postmeta` VALUES("2557", "157", "_WPMSGOPTION_TopbarRightLinkURL", "");
INSERT INTO `wp_postmeta` VALUES("2558", "157", "_WPMSGOPTION_TopbarRightLinkPage", "0");
INSERT INTO `wp_postmeta` VALUES("2559", "157", "_WPMSGOPTION_DisplayPhoneTopBar", "");
INSERT INTO `wp_postmeta` VALUES("2560", "157", "_WPMSGOPTION_FacebookURL", "");
INSERT INTO `wp_postmeta` VALUES("2561", "157", "_WPMSGOPTION_TwitterURL", "");
INSERT INTO `wp_postmeta` VALUES("2562", "157", "_WPMSGOPTION_GooglePlusURL", "");
INSERT INTO `wp_postmeta` VALUES("2563", "157", "_WPMSGOPTION_YouTubeURL", "");
INSERT INTO `wp_postmeta` VALUES("2564", "157", "_WPMSGOPTION_LinkedInURL", "");
INSERT INTO `wp_postmeta` VALUES("2565", "157", "_WPMSGOPTION_SocialMediaPage1URL", "");
INSERT INTO `wp_postmeta` VALUES("2566", "157", "_WPMSGOPTION_SocialMediaIcon1URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/facebook.png");
INSERT INTO `wp_postmeta` VALUES("2567", "157", "_WPMSGOPTION_SocialMediaPage2URL", "");
INSERT INTO `wp_postmeta` VALUES("2568", "157", "_WPMSGOPTION_SocialMediaIcon2URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/twitter.png");
INSERT INTO `wp_postmeta` VALUES("2569", "157", "_WPMSGOPTION_SocialMediaPage3URL", "");
INSERT INTO `wp_postmeta` VALUES("2570", "157", "_WPMSGOPTION_SocialMediaIcon3URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/googleplus.png");
INSERT INTO `wp_postmeta` VALUES("2571", "157", "_WPMSGOPTION_SocialMediaPage4URL", "");
INSERT INTO `wp_postmeta` VALUES("2572", "157", "_WPMSGOPTION_SocialMediaIcon4URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/youtube.png");
INSERT INTO `wp_postmeta` VALUES("2573", "157", "_WPMSGOPTION_SocialMediaPage5URL", "");
INSERT INTO `wp_postmeta` VALUES("2574", "157", "_WPMSGOPTION_SocialMediaIcon5URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/linkedin.png");
INSERT INTO `wp_postmeta` VALUES("2575", "157", "_WPMSGOPTION_SocialMediaPage6URL", "");
INSERT INTO `wp_postmeta` VALUES("2576", "157", "_WPMSGOPTION_SocialMediaIcon6URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/pinterest.png");
INSERT INTO `wp_postmeta` VALUES("2577", "157", "_WPMSGOPTION_SocialMediaPage7URL", "");
INSERT INTO `wp_postmeta` VALUES("2578", "157", "_WPMSGOPTION_SocialMediaIcon7URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/flickr.png");
INSERT INTO `wp_postmeta` VALUES("2579", "157", "_WPMSGOPTION_SocialMediaPage8URL", "");
INSERT INTO `wp_postmeta` VALUES("2580", "157", "_WPMSGOPTION_SocialMediaIcon8URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/yelp.png");
INSERT INTO `wp_postmeta` VALUES("2581", "157", "_WPMSGOPTION_SocialMediaPage9URL", "");
INSERT INTO `wp_postmeta` VALUES("2582", "157", "_WPMSGOPTION_SocialMediaIcon9URL", "");
INSERT INTO `wp_postmeta` VALUES("2583", "157", "_WPMSGOPTION_FBLikeURL", "");
INSERT INTO `wp_postmeta` VALUES("2584", "157", "_WPMSGOPTION_FBLikeWidth", "");
INSERT INTO `wp_postmeta` VALUES("2585", "157", "_WPMSGOPTION_FBLikeSendButton", "Y");
INSERT INTO `wp_postmeta` VALUES("2586", "157", "_WPMSGOPTION_FBLikeFaces", "Y");
INSERT INTO `wp_postmeta` VALUES("2587", "157", "_WPMSGOPTION_FBLikeLayoutStyle", "");
INSERT INTO `wp_postmeta` VALUES("2588", "157", "_WPMSGOPTION_FBLikeVerb", "");
INSERT INTO `wp_postmeta` VALUES("2589", "157", "_WPMSGOPTION_FBLikeColorScheme", "");
INSERT INTO `wp_postmeta` VALUES("2590", "157", "_WPMSGOPTION_FBCommentsURL", "");
INSERT INTO `wp_postmeta` VALUES("2591", "157", "_WPMSGOPTION_FBCommentsPosts", "");
INSERT INTO `wp_postmeta` VALUES("2592", "157", "_WPMSGOPTION_FBCommentsColorScheme", "");
INSERT INTO `wp_postmeta` VALUES("2593", "157", "_WPMSGOPTION_SearchPrompt", "");
INSERT INTO `wp_postmeta` VALUES("2594", "157", "_WPMSGOPTION_SearchSubmitPrompt", "");
INSERT INTO `wp_postmeta` VALUES("2595", "157", "_WPMSGOPTION_RSSFeedURL", "");
INSERT INTO `wp_postmeta` VALUES("2596", "157", "_WPMSGOPTION_RSSFeedMax", "");
INSERT INTO `wp_postmeta` VALUES("2597", "157", "_WPMSGOPTION_RSSFeedStyle", "TitleOnly");
INSERT INTO `wp_postmeta` VALUES("2598", "157", "_WPMSGOPTION_MetaTitle", "");
INSERT INTO `wp_postmeta` VALUES("2599", "157", "_WPMSGOPTION_MetaDescription", "");
INSERT INTO `wp_postmeta` VALUES("2600", "157", "_WPMSGOPTION_MetaKeywords", "");
INSERT INTO `wp_postmeta` VALUES("2601", "157", "_WPMSGOPTION_AnalyticsCode", "");
INSERT INTO `wp_postmeta` VALUES("2602", "157", "_WPMSGOPTION_CouponTitle", "");
INSERT INTO `wp_postmeta` VALUES("2603", "157", "_WPMSGOPTION_CouponCodeText", "");
INSERT INTO `wp_postmeta` VALUES("2604", "157", "_WPMSGOPTION_CouponStartText", "");
INSERT INTO `wp_postmeta` VALUES("2605", "157", "_WPMSGOPTION_CouponExpiryText", "");
INSERT INTO `wp_postmeta` VALUES("2606", "157", "_WPMSGOPTION_CouponCode", "");
INSERT INTO `wp_postmeta` VALUES("2607", "157", "_WPMSGOPTION_CouponCodeExpired", "");
INSERT INTO `wp_postmeta` VALUES("2608", "157", "_WPMSGOPTION_CouponStart", "");
INSERT INTO `wp_postmeta` VALUES("2609", "157", "_WPMSGOPTION_CouponExpiry", "");
INSERT INTO `wp_postmeta` VALUES("2610", "157", "_WPMSGOPTION_CouponDateFormat", "Y-m-d");
INSERT INTO `wp_postmeta` VALUES("2611", "157", "_WPMSGOPTION_CouponValidText", "");
INSERT INTO `wp_postmeta` VALUES("2612", "157", "_WPMSGOPTION_CouponExpiredText", "");
INSERT INTO `wp_postmeta` VALUES("2613", "157", "_WPMSGOPTION_CouponImage", "");
INSERT INTO `wp_postmeta` VALUES("2614", "157", "_WPMSGOPTION_TelephoneNumber", "");
INSERT INTO `wp_postmeta` VALUES("2615", "157", "_WPMSGOPTION_TelephoneCallToAction", "");
INSERT INTO `wp_postmeta` VALUES("2616", "157", "_WPMSGOPTION_ClickToCallType", "Call");
INSERT INTO `wp_postmeta` VALUES("2617", "157", "_WPMSGOPTION_SMSMessage", "");
INSERT INTO `wp_postmeta` VALUES("2618", "157", "_WPMSGOPTION_HidePhoneIcon", "");
INSERT INTO `wp_postmeta` VALUES("2619", "157", "_WPMSGOPTION_HidePhoneNumber", "");
INSERT INTO `wp_postmeta` VALUES("2620", "157", "_WPMSGOPTION_TelephoneIconImage", "");
INSERT INTO `wp_postmeta` VALUES("2621", "157", "_WPMSGOPTION_TelephoneImage", "");
INSERT INTO `wp_postmeta` VALUES("2622", "157", "_WPMSGOPTION_SMSNumber", "");
INSERT INTO `wp_postmeta` VALUES("2623", "157", "_WPMSGOPTION_SMSCallToAction", "");
INSERT INTO `wp_postmeta` VALUES("2624", "157", "_WPMSGOPTION_SMSMessageText", "");
INSERT INTO `wp_postmeta` VALUES("2625", "157", "_WPMSGOPTION_HideSMSIcon", "");
INSERT INTO `wp_postmeta` VALUES("2626", "157", "_WPMSGOPTION_HideSMSNumber", "");
INSERT INTO `wp_postmeta` VALUES("2627", "157", "_WPMSGOPTION_SMSIconImage", "");
INSERT INTO `wp_postmeta` VALUES("2628", "157", "_WPMSGOPTION_SMSImage", "");
INSERT INTO `wp_postmeta` VALUES("2629", "157", "_WPMSGOPTION_EmailTo", "");
INSERT INTO `wp_postmeta` VALUES("2630", "157", "_WPMSGOPTION_EmailCallToAction", "");
INSERT INTO `wp_postmeta` VALUES("2631", "157", "_WPMSGOPTION_EmailSubjectText", "");
INSERT INTO `wp_postmeta` VALUES("2632", "157", "_WPMSGOPTION_EmailMessageText", "");
INSERT INTO `wp_postmeta` VALUES("2633", "157", "_WPMSGOPTION_HideEmailIcon", "");
INSERT INTO `wp_postmeta` VALUES("2634", "157", "_WPMSGOPTION_EmailIconImage", "");
INSERT INTO `wp_postmeta` VALUES("2635", "157", "_WPMSGOPTION_EmailImage", "");
INSERT INTO `wp_postmeta` VALUES("2636", "157", "_WPMSGOPTION_SkypeUsername", "");
INSERT INTO `wp_postmeta` VALUES("2637", "157", "_WPMSGOPTION_SkypeCallToAction", "");
INSERT INTO `wp_postmeta` VALUES("2638", "157", "_WPMSGOPTION_HideSkypeIcon", "");
INSERT INTO `wp_postmeta` VALUES("2639", "157", "_WPMSGOPTION_SkypeIconImage", "");
INSERT INTO `wp_postmeta` VALUES("2640", "157", "_WPMSGOPTION_SkypeImage", "");
INSERT INTO `wp_postmeta` VALUES("2641", "157", "_WPMSGOPTION_RedirectURL", "");
INSERT INTO `wp_postmeta` VALUES("2642", "157", "_WPMSGOPTION_DeactivatedURL", "");
INSERT INTO `wp_postmeta` VALUES("2643", "157", "_WPMSGOPTION_ExportDomain", "");
INSERT INTO `wp_postmeta` VALUES("2644", "157", "_WPMSGOPTION_CreateBitly", "");
INSERT INTO `wp_postmeta` VALUES("2645", "157", "_WPMSGOPTION_BitlyUsername", "");
INSERT INTO `wp_postmeta` VALUES("2646", "157", "_WPMSGOPTION_BitlyApiKey", "");
INSERT INTO `wp_postmeta` VALUES("2647", "157", "_WPMSGOPTION_BitlyLongUrl", "");
INSERT INTO `wp_postmeta` VALUES("2648", "157", "_WPMSGOPTION_BitlyShortUrl", "");
INSERT INTO `wp_postmeta` VALUES("2649", "157", "_WPMSGOPTION_MapLocation", "");
INSERT INTO `wp_postmeta` VALUES("2650", "157", "_WPMSGOPTION_MapLongitude", "");
INSERT INTO `wp_postmeta` VALUES("2651", "157", "_WPMSGOPTION_MapLatitude", "");
INSERT INTO `wp_postmeta` VALUES("2652", "157", "_WPMSGOPTION_MapWidth", "");
INSERT INTO `wp_postmeta` VALUES("2653", "157", "_WPMSGOPTION_MapHeight", "");
INSERT INTO `wp_postmeta` VALUES("2654", "157", "_WPMSGOPTION_MapZoom", "");
INSERT INTO `wp_postmeta` VALUES("2655", "157", "_WPMSGOPTION_MapLanguage", "en");
INSERT INTO `wp_postmeta` VALUES("2656", "157", "_WPMSGOPTION_DisplayMapDirections", "");
INSERT INTO `wp_postmeta` VALUES("2657", "157", "_WPMSGOPTION_DirectionsPrompt", "");
INSERT INTO `wp_postmeta` VALUES("2658", "157", "_WPMSGOPTION_DirectionsButtonText", "");
INSERT INTO `wp_postmeta` VALUES("2659", "157", "_WPMSGOPTION_DisplayGPSDirectionsButton", "");
INSERT INTO `wp_postmeta` VALUES("2660", "157", "_WPMSGOPTION_GPSDirectionsButtonText", "");
INSERT INTO `wp_postmeta` VALUES("2661", "157", "_WPMSGOPTION_DirectionsPosition", "A");
INSERT INTO `wp_postmeta` VALUES("2662", "157", "_WPMSGOPTION_OptinNamePrompt", "");
INSERT INTO `wp_postmeta` VALUES("2663", "157", "_WPMSGOPTION_OptinEmailPrompt", "");
INSERT INTO `wp_postmeta` VALUES("2664", "157", "_WPMSGOPTION_OptinSubmitPrompt", "");
INSERT INTO `wp_postmeta` VALUES("2665", "157", "_WPMSGOPTION_OptinCode", "");
INSERT INTO `wp_postmeta` VALUES("2666", "157", "_WPMSGOPTION_OptinRedirectPage", "0");
INSERT INTO `wp_postmeta` VALUES("2667", "157", "_WPMSGOPTION_ContactSendToEmail", "");
INSERT INTO `wp_postmeta` VALUES("2668", "157", "_WPMSGOPTION_ContactSendFromName", "");
INSERT INTO `wp_postmeta` VALUES("2669", "157", "_WPMSGOPTION_ContactSendFromEmail", "");
INSERT INTO `wp_postmeta` VALUES("2670", "157", "_WPMSGOPTION_ContactNamePrompt", "");
INSERT INTO `wp_postmeta` VALUES("2671", "157", "_WPMSGOPTION_ContactPhonePrompt", "");
INSERT INTO `wp_postmeta` VALUES("2672", "157", "_WPMSGOPTION_ContactEmailPrompt", "");
INSERT INTO `wp_postmeta` VALUES("2673", "157", "_WPMSGOPTION_ContactMessagePrompt", "");
INSERT INTO `wp_postmeta` VALUES("2674", "157", "_WPMSGOPTION_ContactSubmitPrompt", "");
INSERT INTO `wp_postmeta` VALUES("2675", "157", "_WPMSGOPTION_ContactShowAcknowledgement", "");
INSERT INTO `wp_postmeta` VALUES("2676", "157", "_WPMSGOPTION_ContactAcknowledgementDisplayMessage", "");
INSERT INTO `wp_postmeta` VALUES("2677", "157", "_WPMSGOPTION_ContactSendAcknowledgement", "");
INSERT INTO `wp_postmeta` VALUES("2678", "157", "_WPMSGOPTION_ContactAcknowledgementName", "");
INSERT INTO `wp_postmeta` VALUES("2679", "157", "_WPMSGOPTION_ContactAcknowledgementEmail", "");
INSERT INTO `wp_postmeta` VALUES("2680", "157", "_WPMSGOPTION_ContactAcknowledgementSubject", "");
INSERT INTO `wp_postmeta` VALUES("2681", "157", "_WPMSGOPTION_ContactAcknowledgementMessage", "");
INSERT INTO `wp_postmeta` VALUES("2682", "157", "_WPMSGOPTION_SiteID", "123");
INSERT INTO `wp_postmeta` VALUES("2683", "159", "_WPMREDOPTION_RedirectURL", "");
INSERT INTO `wp_postmeta` VALUES("2684", "159", "_WPMREDOPTION_RedirectNever", "");
INSERT INTO `wp_postmeta` VALUES("2685", "159", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("2686", "159", "_edit_lock", "1362324602:1");
INSERT INTO `wp_postmeta` VALUES("2687", "159", "_WPMSGOPTION_Initialised", "Y");
INSERT INTO `wp_postmeta` VALUES("2688", "159", "_WPMSGOPTION_Deactivated", "");
INSERT INTO `wp_postmeta` VALUES("2689", "159", "_WPMSGOPTION_PageSlug", "pricing-guidlines");
INSERT INTO `wp_postmeta` VALUES("2690", "159", "_WPMSGOPTION_PageName", "Basic Fee");
INSERT INTO `wp_postmeta` VALUES("2691", "159", "_WPMSGOPTION_TopbarPageName", "Basic Fee");
INSERT INTO `wp_postmeta` VALUES("2692", "159", "_WPMSGOPTION_MenuDesc", "");
INSERT INTO `wp_postmeta` VALUES("2693", "159", "_WPMSGOPTION_ThemeType", "Site");
INSERT INTO `wp_postmeta` VALUES("2694", "159", "_WPMSGOPTION_PageTheme", "113");
INSERT INTO `wp_postmeta` VALUES("2695", "159", "_WPMSGOPTION_MenuStyle", "Vertical");
INSERT INTO `wp_postmeta` VALUES("2696", "159", "_WPMSGOPTION_MenuPosition", "T");
INSERT INTO `wp_postmeta` VALUES("2697", "159", "_WPMSGOPTION_ExcludePage", "");
INSERT INTO `wp_postmeta` VALUES("2698", "159", "_WPMSGOPTION_ExcludeFromSearch", "");
INSERT INTO `wp_postmeta` VALUES("2699", "159", "_WPMSGOPTION_BackgroundImage", "");
INSERT INTO `wp_postmeta` VALUES("2700", "159", "_WPMSGOPTION_BackgroundImageRepeat", "repeat");
INSERT INTO `wp_postmeta` VALUES("2701", "159", "_WPMSGOPTION_BackgroundImagePosition", "lefttop");
INSERT INTO `wp_postmeta` VALUES("2702", "159", "_WPMSGOPTION_PageMinimumHeight", "");
INSERT INTO `wp_postmeta` VALUES("2703", "159", "_WPMSGOPTION_DisplayLogo", "");
INSERT INTO `wp_postmeta` VALUES("2704", "159", "_WPMSGOPTION_LogoImage", "");
INSERT INTO `wp_postmeta` VALUES("2705", "159", "_WPMSGOPTION_LogoBackgroundColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("2706", "159", "_WPMSGOPTION_LogoUseBackgroundColor", "");
INSERT INTO `wp_postmeta` VALUES("2707", "159", "_WPMSGOPTION_FooterBackgroundColor", "");
INSERT INTO `wp_postmeta` VALUES("2708", "159", "_WPMSGOPTION_ThumbnailImage", "Lock");
INSERT INTO `wp_postmeta` VALUES("2709", "159", "_WPMSGOPTION_ThumbnailImageColor", "LightBlue");
INSERT INTO `wp_postmeta` VALUES("2710", "159", "_WPMSGOPTION_CustomThumbnailImage", "");
INSERT INTO `wp_postmeta` VALUES("2711", "159", "_WPMSGOPTION_DisplayPreview", "");
INSERT INTO `wp_postmeta` VALUES("2712", "159", "_WPMSGOPTION_DisplayTopBar", "");
INSERT INTO `wp_postmeta` VALUES("2713", "159", "_WPMSGOPTION_TopbarRightLinkText", "");
INSERT INTO `wp_postmeta` VALUES("2714", "159", "_WPMSGOPTION_TopbarRightLinkURL", "");
INSERT INTO `wp_postmeta` VALUES("2715", "159", "_WPMSGOPTION_TopbarRightLinkPage", "0");
INSERT INTO `wp_postmeta` VALUES("2716", "159", "_WPMSGOPTION_DisplayPhoneTopBar", "");
INSERT INTO `wp_postmeta` VALUES("2717", "159", "_WPMSGOPTION_FacebookURL", "");
INSERT INTO `wp_postmeta` VALUES("2718", "159", "_WPMSGOPTION_TwitterURL", "");
INSERT INTO `wp_postmeta` VALUES("2719", "159", "_WPMSGOPTION_GooglePlusURL", "");
INSERT INTO `wp_postmeta` VALUES("2720", "159", "_WPMSGOPTION_YouTubeURL", "");
INSERT INTO `wp_postmeta` VALUES("2721", "159", "_WPMSGOPTION_LinkedInURL", "");
INSERT INTO `wp_postmeta` VALUES("2722", "159", "_WPMSGOPTION_SocialMediaPage1URL", "");
INSERT INTO `wp_postmeta` VALUES("2723", "159", "_WPMSGOPTION_SocialMediaIcon1URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/facebook.png");
INSERT INTO `wp_postmeta` VALUES("2724", "159", "_WPMSGOPTION_SocialMediaPage2URL", "");
INSERT INTO `wp_postmeta` VALUES("2725", "159", "_WPMSGOPTION_SocialMediaIcon2URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/twitter.png");
INSERT INTO `wp_postmeta` VALUES("2726", "159", "_WPMSGOPTION_SocialMediaPage3URL", "");
INSERT INTO `wp_postmeta` VALUES("2727", "159", "_WPMSGOPTION_SocialMediaIcon3URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/googleplus.png");
INSERT INTO `wp_postmeta` VALUES("2728", "159", "_WPMSGOPTION_SocialMediaPage4URL", "");
INSERT INTO `wp_postmeta` VALUES("2729", "159", "_WPMSGOPTION_SocialMediaIcon4URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/youtube.png");
INSERT INTO `wp_postmeta` VALUES("2730", "159", "_WPMSGOPTION_SocialMediaPage5URL", "");
INSERT INTO `wp_postmeta` VALUES("2731", "159", "_WPMSGOPTION_SocialMediaIcon5URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/linkedin.png");
INSERT INTO `wp_postmeta` VALUES("2732", "159", "_WPMSGOPTION_SocialMediaPage6URL", "");
INSERT INTO `wp_postmeta` VALUES("2733", "159", "_WPMSGOPTION_SocialMediaIcon6URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/pinterest.png");
INSERT INTO `wp_postmeta` VALUES("2734", "159", "_WPMSGOPTION_SocialMediaPage7URL", "");
INSERT INTO `wp_postmeta` VALUES("2735", "159", "_WPMSGOPTION_SocialMediaIcon7URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/flickr.png");
INSERT INTO `wp_postmeta` VALUES("2736", "159", "_WPMSGOPTION_SocialMediaPage8URL", "");
INSERT INTO `wp_postmeta` VALUES("2737", "159", "_WPMSGOPTION_SocialMediaIcon8URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/yelp.png");
INSERT INTO `wp_postmeta` VALUES("2738", "159", "_WPMSGOPTION_SocialMediaPage9URL", "");
INSERT INTO `wp_postmeta` VALUES("2739", "159", "_WPMSGOPTION_SocialMediaIcon9URL", "");
INSERT INTO `wp_postmeta` VALUES("2740", "159", "_WPMSGOPTION_FBLikeURL", "");
INSERT INTO `wp_postmeta` VALUES("2741", "159", "_WPMSGOPTION_FBLikeWidth", "");
INSERT INTO `wp_postmeta` VALUES("2742", "159", "_WPMSGOPTION_FBLikeSendButton", "Y");
INSERT INTO `wp_postmeta` VALUES("2743", "159", "_WPMSGOPTION_FBLikeFaces", "Y");
INSERT INTO `wp_postmeta` VALUES("2744", "159", "_WPMSGOPTION_FBLikeLayoutStyle", "");
INSERT INTO `wp_postmeta` VALUES("2745", "159", "_WPMSGOPTION_FBLikeVerb", "");
INSERT INTO `wp_postmeta` VALUES("2746", "159", "_WPMSGOPTION_FBLikeColorScheme", "");
INSERT INTO `wp_postmeta` VALUES("2747", "159", "_WPMSGOPTION_FBCommentsURL", "");
INSERT INTO `wp_postmeta` VALUES("2748", "159", "_WPMSGOPTION_FBCommentsPosts", "");
INSERT INTO `wp_postmeta` VALUES("2749", "159", "_WPMSGOPTION_FBCommentsColorScheme", "");
INSERT INTO `wp_postmeta` VALUES("2750", "159", "_WPMSGOPTION_SearchPrompt", "");
INSERT INTO `wp_postmeta` VALUES("2751", "159", "_WPMSGOPTION_SearchSubmitPrompt", "");
INSERT INTO `wp_postmeta` VALUES("2752", "159", "_WPMSGOPTION_RSSFeedURL", "");
INSERT INTO `wp_postmeta` VALUES("2753", "159", "_WPMSGOPTION_RSSFeedMax", "");
INSERT INTO `wp_postmeta` VALUES("2754", "159", "_WPMSGOPTION_RSSFeedStyle", "TitleOnly");
INSERT INTO `wp_postmeta` VALUES("2755", "159", "_WPMSGOPTION_MetaTitle", "");
INSERT INTO `wp_postmeta` VALUES("2756", "159", "_WPMSGOPTION_MetaDescription", "");
INSERT INTO `wp_postmeta` VALUES("2757", "159", "_WPMSGOPTION_MetaKeywords", "");
INSERT INTO `wp_postmeta` VALUES("2758", "159", "_WPMSGOPTION_AnalyticsCode", "");
INSERT INTO `wp_postmeta` VALUES("2759", "159", "_WPMSGOPTION_CouponTitle", "");
INSERT INTO `wp_postmeta` VALUES("2760", "159", "_WPMSGOPTION_CouponCodeText", "");
INSERT INTO `wp_postmeta` VALUES("2761", "159", "_WPMSGOPTION_CouponStartText", "");
INSERT INTO `wp_postmeta` VALUES("2762", "159", "_WPMSGOPTION_CouponExpiryText", "");
INSERT INTO `wp_postmeta` VALUES("2763", "159", "_WPMSGOPTION_CouponCode", "");
INSERT INTO `wp_postmeta` VALUES("2764", "159", "_WPMSGOPTION_CouponCodeExpired", "");
INSERT INTO `wp_postmeta` VALUES("2765", "159", "_WPMSGOPTION_CouponStart", "");
INSERT INTO `wp_postmeta` VALUES("2766", "159", "_WPMSGOPTION_CouponExpiry", "");
INSERT INTO `wp_postmeta` VALUES("2767", "159", "_WPMSGOPTION_CouponDateFormat", "Y-m-d");
INSERT INTO `wp_postmeta` VALUES("2768", "159", "_WPMSGOPTION_CouponValidText", "");
INSERT INTO `wp_postmeta` VALUES("2769", "159", "_WPMSGOPTION_CouponExpiredText", "");
INSERT INTO `wp_postmeta` VALUES("2770", "159", "_WPMSGOPTION_CouponImage", "");
INSERT INTO `wp_postmeta` VALUES("2771", "159", "_WPMSGOPTION_TelephoneNumber", "");
INSERT INTO `wp_postmeta` VALUES("2772", "159", "_WPMSGOPTION_TelephoneCallToAction", "");
INSERT INTO `wp_postmeta` VALUES("2773", "159", "_WPMSGOPTION_ClickToCallType", "Call");
INSERT INTO `wp_postmeta` VALUES("2774", "159", "_WPMSGOPTION_SMSMessage", "");
INSERT INTO `wp_postmeta` VALUES("2775", "159", "_WPMSGOPTION_HidePhoneIcon", "");
INSERT INTO `wp_postmeta` VALUES("2776", "159", "_WPMSGOPTION_HidePhoneNumber", "");
INSERT INTO `wp_postmeta` VALUES("2777", "159", "_WPMSGOPTION_TelephoneIconImage", "");
INSERT INTO `wp_postmeta` VALUES("2778", "159", "_WPMSGOPTION_TelephoneImage", "");
INSERT INTO `wp_postmeta` VALUES("2779", "159", "_WPMSGOPTION_SMSNumber", "");
INSERT INTO `wp_postmeta` VALUES("2780", "159", "_WPMSGOPTION_SMSCallToAction", "");
INSERT INTO `wp_postmeta` VALUES("2781", "159", "_WPMSGOPTION_SMSMessageText", "");
INSERT INTO `wp_postmeta` VALUES("2782", "159", "_WPMSGOPTION_HideSMSIcon", "");
INSERT INTO `wp_postmeta` VALUES("2783", "159", "_WPMSGOPTION_HideSMSNumber", "");
INSERT INTO `wp_postmeta` VALUES("2784", "159", "_WPMSGOPTION_SMSIconImage", "");
INSERT INTO `wp_postmeta` VALUES("2785", "159", "_WPMSGOPTION_SMSImage", "");
INSERT INTO `wp_postmeta` VALUES("2786", "159", "_WPMSGOPTION_EmailTo", "");
INSERT INTO `wp_postmeta` VALUES("2787", "159", "_WPMSGOPTION_EmailCallToAction", "");
INSERT INTO `wp_postmeta` VALUES("2788", "159", "_WPMSGOPTION_EmailSubjectText", "");
INSERT INTO `wp_postmeta` VALUES("2789", "159", "_WPMSGOPTION_EmailMessageText", "");
INSERT INTO `wp_postmeta` VALUES("2790", "159", "_WPMSGOPTION_HideEmailIcon", "");
INSERT INTO `wp_postmeta` VALUES("2791", "159", "_WPMSGOPTION_EmailIconImage", "");
INSERT INTO `wp_postmeta` VALUES("2792", "159", "_WPMSGOPTION_EmailImage", "");
INSERT INTO `wp_postmeta` VALUES("2793", "159", "_WPMSGOPTION_SkypeUsername", "");
INSERT INTO `wp_postmeta` VALUES("2794", "159", "_WPMSGOPTION_SkypeCallToAction", "");
INSERT INTO `wp_postmeta` VALUES("2795", "159", "_WPMSGOPTION_HideSkypeIcon", "");
INSERT INTO `wp_postmeta` VALUES("2796", "159", "_WPMSGOPTION_SkypeIconImage", "");
INSERT INTO `wp_postmeta` VALUES("2797", "159", "_WPMSGOPTION_SkypeImage", "");
INSERT INTO `wp_postmeta` VALUES("2798", "159", "_WPMSGOPTION_RedirectURL", "");
INSERT INTO `wp_postmeta` VALUES("2799", "159", "_WPMSGOPTION_DeactivatedURL", "");
INSERT INTO `wp_postmeta` VALUES("2800", "159", "_WPMSGOPTION_ExportDomain", "");
INSERT INTO `wp_postmeta` VALUES("2801", "159", "_WPMSGOPTION_CreateBitly", "");
INSERT INTO `wp_postmeta` VALUES("2802", "159", "_WPMSGOPTION_BitlyUsername", "");
INSERT INTO `wp_postmeta` VALUES("2803", "159", "_WPMSGOPTION_BitlyApiKey", "");
INSERT INTO `wp_postmeta` VALUES("2804", "159", "_WPMSGOPTION_BitlyLongUrl", "");
INSERT INTO `wp_postmeta` VALUES("2805", "159", "_WPMSGOPTION_BitlyShortUrl", "");
INSERT INTO `wp_postmeta` VALUES("2806", "159", "_WPMSGOPTION_MapLocation", "");
INSERT INTO `wp_postmeta` VALUES("2807", "159", "_WPMSGOPTION_MapLongitude", "");
INSERT INTO `wp_postmeta` VALUES("2808", "159", "_WPMSGOPTION_MapLatitude", "");
INSERT INTO `wp_postmeta` VALUES("2809", "159", "_WPMSGOPTION_MapWidth", "");
INSERT INTO `wp_postmeta` VALUES("2810", "159", "_WPMSGOPTION_MapHeight", "");
INSERT INTO `wp_postmeta` VALUES("2811", "159", "_WPMSGOPTION_MapZoom", "");
INSERT INTO `wp_postmeta` VALUES("2812", "159", "_WPMSGOPTION_MapLanguage", "en");
INSERT INTO `wp_postmeta` VALUES("2813", "159", "_WPMSGOPTION_DisplayMapDirections", "");
INSERT INTO `wp_postmeta` VALUES("2814", "159", "_WPMSGOPTION_DirectionsPrompt", "");
INSERT INTO `wp_postmeta` VALUES("2815", "159", "_WPMSGOPTION_DirectionsButtonText", "");
INSERT INTO `wp_postmeta` VALUES("2816", "159", "_WPMSGOPTION_DisplayGPSDirectionsButton", "");
INSERT INTO `wp_postmeta` VALUES("2817", "159", "_WPMSGOPTION_GPSDirectionsButtonText", "");
INSERT INTO `wp_postmeta` VALUES("2818", "159", "_WPMSGOPTION_DirectionsPosition", "A");
INSERT INTO `wp_postmeta` VALUES("2819", "159", "_WPMSGOPTION_OptinNamePrompt", "");
INSERT INTO `wp_postmeta` VALUES("2820", "159", "_WPMSGOPTION_OptinEmailPrompt", "");
INSERT INTO `wp_postmeta` VALUES("2821", "159", "_WPMSGOPTION_OptinSubmitPrompt", "");
INSERT INTO `wp_postmeta` VALUES("2822", "159", "_WPMSGOPTION_OptinCode", "");
INSERT INTO `wp_postmeta` VALUES("2823", "159", "_WPMSGOPTION_OptinRedirectPage", "0");
INSERT INTO `wp_postmeta` VALUES("2824", "159", "_WPMSGOPTION_ContactSendToEmail", "");
INSERT INTO `wp_postmeta` VALUES("2825", "159", "_WPMSGOPTION_ContactSendFromName", "");
INSERT INTO `wp_postmeta` VALUES("2826", "159", "_WPMSGOPTION_ContactSendFromEmail", "");
INSERT INTO `wp_postmeta` VALUES("2827", "159", "_WPMSGOPTION_ContactNamePrompt", "");
INSERT INTO `wp_postmeta` VALUES("2828", "159", "_WPMSGOPTION_ContactPhonePrompt", "");
INSERT INTO `wp_postmeta` VALUES("2829", "159", "_WPMSGOPTION_ContactEmailPrompt", "");
INSERT INTO `wp_postmeta` VALUES("2830", "159", "_WPMSGOPTION_ContactMessagePrompt", "");
INSERT INTO `wp_postmeta` VALUES("2831", "159", "_WPMSGOPTION_ContactSubmitPrompt", "");
INSERT INTO `wp_postmeta` VALUES("2832", "159", "_WPMSGOPTION_ContactShowAcknowledgement", "");
INSERT INTO `wp_postmeta` VALUES("2833", "159", "_WPMSGOPTION_ContactAcknowledgementDisplayMessage", "");
INSERT INTO `wp_postmeta` VALUES("2834", "159", "_WPMSGOPTION_ContactSendAcknowledgement", "");
INSERT INTO `wp_postmeta` VALUES("2835", "159", "_WPMSGOPTION_ContactAcknowledgementName", "");
INSERT INTO `wp_postmeta` VALUES("2836", "159", "_WPMSGOPTION_ContactAcknowledgementEmail", "");
INSERT INTO `wp_postmeta` VALUES("2837", "159", "_WPMSGOPTION_ContactAcknowledgementSubject", "");
INSERT INTO `wp_postmeta` VALUES("2838", "159", "_WPMSGOPTION_ContactAcknowledgementMessage", "");
INSERT INTO `wp_postmeta` VALUES("2839", "159", "_WPMSGOPTION_SiteID", "123");
INSERT INTO `wp_postmeta` VALUES("2840", "162", "_WPMREDOPTION_RedirectURL", "");
INSERT INTO `wp_postmeta` VALUES("2841", "162", "_WPMREDOPTION_RedirectNever", "");
INSERT INTO `wp_postmeta` VALUES("2842", "162", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("2843", "162", "_edit_lock", "1362324480:1");
INSERT INTO `wp_postmeta` VALUES("2844", "162", "_WPMSGOPTION_Initialised", "Y");
INSERT INTO `wp_postmeta` VALUES("2845", "162", "_WPMSGOPTION_Deactivated", "");
INSERT INTO `wp_postmeta` VALUES("2846", "162", "_WPMSGOPTION_PageSlug", "coupon");
INSERT INTO `wp_postmeta` VALUES("2847", "162", "_WPMSGOPTION_PageName", "Coupon");
INSERT INTO `wp_postmeta` VALUES("2848", "162", "_WPMSGOPTION_TopbarPageName", "Coupon");
INSERT INTO `wp_postmeta` VALUES("2849", "162", "_WPMSGOPTION_MenuDesc", "");
INSERT INTO `wp_postmeta` VALUES("2850", "162", "_WPMSGOPTION_ThemeType", "Site");
INSERT INTO `wp_postmeta` VALUES("2851", "162", "_WPMSGOPTION_PageTheme", "113");
INSERT INTO `wp_postmeta` VALUES("2852", "162", "_WPMSGOPTION_MenuStyle", "Vertical");
INSERT INTO `wp_postmeta` VALUES("2853", "162", "_WPMSGOPTION_MenuPosition", "T");
INSERT INTO `wp_postmeta` VALUES("2854", "162", "_WPMSGOPTION_ExcludePage", "");
INSERT INTO `wp_postmeta` VALUES("2855", "162", "_WPMSGOPTION_ExcludeFromSearch", "");
INSERT INTO `wp_postmeta` VALUES("2856", "162", "_WPMSGOPTION_BackgroundImage", "");
INSERT INTO `wp_postmeta` VALUES("2857", "162", "_WPMSGOPTION_BackgroundImageRepeat", "repeat");
INSERT INTO `wp_postmeta` VALUES("2858", "162", "_WPMSGOPTION_BackgroundImagePosition", "lefttop");
INSERT INTO `wp_postmeta` VALUES("2859", "162", "_WPMSGOPTION_PageMinimumHeight", "");
INSERT INTO `wp_postmeta` VALUES("2860", "162", "_WPMSGOPTION_DisplayLogo", "");
INSERT INTO `wp_postmeta` VALUES("2861", "162", "_WPMSGOPTION_LogoImage", "");
INSERT INTO `wp_postmeta` VALUES("2862", "162", "_WPMSGOPTION_LogoBackgroundColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("2863", "162", "_WPMSGOPTION_LogoUseBackgroundColor", "");
INSERT INTO `wp_postmeta` VALUES("2864", "162", "_WPMSGOPTION_FooterBackgroundColor", "");
INSERT INTO `wp_postmeta` VALUES("2865", "162", "_WPMSGOPTION_ThumbnailImage", "Coupon");
INSERT INTO `wp_postmeta` VALUES("2866", "162", "_WPMSGOPTION_ThumbnailImageColor", "LightBlue");
INSERT INTO `wp_postmeta` VALUES("2867", "162", "_WPMSGOPTION_CustomThumbnailImage", "");
INSERT INTO `wp_postmeta` VALUES("2868", "162", "_WPMSGOPTION_DisplayPreview", "");
INSERT INTO `wp_postmeta` VALUES("2869", "162", "_WPMSGOPTION_DisplayTopBar", "");
INSERT INTO `wp_postmeta` VALUES("2870", "162", "_WPMSGOPTION_TopbarRightLinkText", "");
INSERT INTO `wp_postmeta` VALUES("2871", "162", "_WPMSGOPTION_TopbarRightLinkURL", "");
INSERT INTO `wp_postmeta` VALUES("2872", "162", "_WPMSGOPTION_TopbarRightLinkPage", "0");
INSERT INTO `wp_postmeta` VALUES("2873", "162", "_WPMSGOPTION_DisplayPhoneTopBar", "");
INSERT INTO `wp_postmeta` VALUES("2874", "162", "_WPMSGOPTION_FacebookURL", "");
INSERT INTO `wp_postmeta` VALUES("2875", "162", "_WPMSGOPTION_TwitterURL", "");
INSERT INTO `wp_postmeta` VALUES("2876", "162", "_WPMSGOPTION_GooglePlusURL", "");
INSERT INTO `wp_postmeta` VALUES("2877", "162", "_WPMSGOPTION_YouTubeURL", "");
INSERT INTO `wp_postmeta` VALUES("2878", "162", "_WPMSGOPTION_LinkedInURL", "");
INSERT INTO `wp_postmeta` VALUES("2879", "162", "_WPMSGOPTION_SocialMediaPage1URL", "");
INSERT INTO `wp_postmeta` VALUES("2880", "162", "_WPMSGOPTION_SocialMediaIcon1URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/facebook.png");
INSERT INTO `wp_postmeta` VALUES("2881", "162", "_WPMSGOPTION_SocialMediaPage2URL", "");
INSERT INTO `wp_postmeta` VALUES("2882", "162", "_WPMSGOPTION_SocialMediaIcon2URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/twitter.png");
INSERT INTO `wp_postmeta` VALUES("2883", "162", "_WPMSGOPTION_SocialMediaPage3URL", "");
INSERT INTO `wp_postmeta` VALUES("2884", "162", "_WPMSGOPTION_SocialMediaIcon3URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/googleplus.png");
INSERT INTO `wp_postmeta` VALUES("2885", "162", "_WPMSGOPTION_SocialMediaPage4URL", "");
INSERT INTO `wp_postmeta` VALUES("2886", "162", "_WPMSGOPTION_SocialMediaIcon4URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/youtube.png");
INSERT INTO `wp_postmeta` VALUES("2887", "162", "_WPMSGOPTION_SocialMediaPage5URL", "");
INSERT INTO `wp_postmeta` VALUES("2888", "162", "_WPMSGOPTION_SocialMediaIcon5URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/linkedin.png");
INSERT INTO `wp_postmeta` VALUES("2889", "162", "_WPMSGOPTION_SocialMediaPage6URL", "");
INSERT INTO `wp_postmeta` VALUES("2890", "162", "_WPMSGOPTION_SocialMediaIcon6URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/pinterest.png");
INSERT INTO `wp_postmeta` VALUES("2891", "162", "_WPMSGOPTION_SocialMediaPage7URL", "");
INSERT INTO `wp_postmeta` VALUES("2892", "162", "_WPMSGOPTION_SocialMediaIcon7URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/flickr.png");
INSERT INTO `wp_postmeta` VALUES("2893", "162", "_WPMSGOPTION_SocialMediaPage8URL", "");
INSERT INTO `wp_postmeta` VALUES("2894", "162", "_WPMSGOPTION_SocialMediaIcon8URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/yelp.png");
INSERT INTO `wp_postmeta` VALUES("2895", "162", "_WPMSGOPTION_SocialMediaPage9URL", "");
INSERT INTO `wp_postmeta` VALUES("2896", "162", "_WPMSGOPTION_SocialMediaIcon9URL", "");
INSERT INTO `wp_postmeta` VALUES("2897", "162", "_WPMSGOPTION_FBLikeURL", "");
INSERT INTO `wp_postmeta` VALUES("2898", "162", "_WPMSGOPTION_FBLikeWidth", "");
INSERT INTO `wp_postmeta` VALUES("2899", "162", "_WPMSGOPTION_FBLikeSendButton", "Y");
INSERT INTO `wp_postmeta` VALUES("2900", "162", "_WPMSGOPTION_FBLikeFaces", "Y");
INSERT INTO `wp_postmeta` VALUES("2901", "162", "_WPMSGOPTION_FBLikeLayoutStyle", "");
INSERT INTO `wp_postmeta` VALUES("2902", "162", "_WPMSGOPTION_FBLikeVerb", "");
INSERT INTO `wp_postmeta` VALUES("2903", "162", "_WPMSGOPTION_FBLikeColorScheme", "");
INSERT INTO `wp_postmeta` VALUES("2904", "162", "_WPMSGOPTION_FBCommentsURL", "");
INSERT INTO `wp_postmeta` VALUES("2905", "162", "_WPMSGOPTION_FBCommentsPosts", "");
INSERT INTO `wp_postmeta` VALUES("2906", "162", "_WPMSGOPTION_FBCommentsColorScheme", "");
INSERT INTO `wp_postmeta` VALUES("2907", "162", "_WPMSGOPTION_SearchPrompt", "");
INSERT INTO `wp_postmeta` VALUES("2908", "162", "_WPMSGOPTION_SearchSubmitPrompt", "");
INSERT INTO `wp_postmeta` VALUES("2909", "162", "_WPMSGOPTION_RSSFeedURL", "");
INSERT INTO `wp_postmeta` VALUES("2910", "162", "_WPMSGOPTION_RSSFeedMax", "");
INSERT INTO `wp_postmeta` VALUES("2911", "162", "_WPMSGOPTION_RSSFeedStyle", "TitleOnly");
INSERT INTO `wp_postmeta` VALUES("2912", "162", "_WPMSGOPTION_MetaTitle", "");
INSERT INTO `wp_postmeta` VALUES("2913", "162", "_WPMSGOPTION_MetaDescription", "");
INSERT INTO `wp_postmeta` VALUES("2914", "162", "_WPMSGOPTION_MetaKeywords", "");
INSERT INTO `wp_postmeta` VALUES("2915", "162", "_WPMSGOPTION_AnalyticsCode", "");
INSERT INTO `wp_postmeta` VALUES("2916", "162", "_WPMSGOPTION_CouponTitle", "10% Instant Coupon");
INSERT INTO `wp_postmeta` VALUES("2917", "162", "_WPMSGOPTION_CouponCodeText", "");
INSERT INTO `wp_postmeta` VALUES("2997", "164", "_WPMREDOPTION_RedirectURL", "");
INSERT INTO `wp_postmeta` VALUES("2918", "162", "_WPMSGOPTION_CouponStartText", "");
INSERT INTO `wp_postmeta` VALUES("2919", "162", "_WPMSGOPTION_CouponExpiryText", "");
INSERT INTO `wp_postmeta` VALUES("2920", "162", "_WPMSGOPTION_CouponCode", "");
INSERT INTO `wp_postmeta` VALUES("2921", "162", "_WPMSGOPTION_CouponCodeExpired", "");
INSERT INTO `wp_postmeta` VALUES("2922", "162", "_WPMSGOPTION_CouponStart", "");
INSERT INTO `wp_postmeta` VALUES("2923", "162", "_WPMSGOPTION_CouponExpiry", "");
INSERT INTO `wp_postmeta` VALUES("2924", "162", "_WPMSGOPTION_CouponDateFormat", "Y-m-d");
INSERT INTO `wp_postmeta` VALUES("2925", "162", "_WPMSGOPTION_CouponValidText", "Just Mention You Found Us On Our Mobile Device  ");
INSERT INTO `wp_postmeta` VALUES("2926", "162", "_WPMSGOPTION_CouponExpiredText", "");
INSERT INTO `wp_postmeta` VALUES("2927", "162", "_WPMSGOPTION_CouponImage", "");
INSERT INTO `wp_postmeta` VALUES("2928", "162", "_WPMSGOPTION_TelephoneNumber", "");
INSERT INTO `wp_postmeta` VALUES("2929", "162", "_WPMSGOPTION_TelephoneCallToAction", "");
INSERT INTO `wp_postmeta` VALUES("2930", "162", "_WPMSGOPTION_ClickToCallType", "Call");
INSERT INTO `wp_postmeta` VALUES("2931", "162", "_WPMSGOPTION_SMSMessage", "");
INSERT INTO `wp_postmeta` VALUES("2932", "162", "_WPMSGOPTION_HidePhoneIcon", "");
INSERT INTO `wp_postmeta` VALUES("2933", "162", "_WPMSGOPTION_HidePhoneNumber", "");
INSERT INTO `wp_postmeta` VALUES("2934", "162", "_WPMSGOPTION_TelephoneIconImage", "");
INSERT INTO `wp_postmeta` VALUES("2935", "162", "_WPMSGOPTION_TelephoneImage", "");
INSERT INTO `wp_postmeta` VALUES("2936", "162", "_WPMSGOPTION_SMSNumber", "");
INSERT INTO `wp_postmeta` VALUES("2937", "162", "_WPMSGOPTION_SMSCallToAction", "");
INSERT INTO `wp_postmeta` VALUES("2938", "162", "_WPMSGOPTION_SMSMessageText", "");
INSERT INTO `wp_postmeta` VALUES("2939", "162", "_WPMSGOPTION_HideSMSIcon", "");
INSERT INTO `wp_postmeta` VALUES("2940", "162", "_WPMSGOPTION_HideSMSNumber", "");
INSERT INTO `wp_postmeta` VALUES("2941", "162", "_WPMSGOPTION_SMSIconImage", "");
INSERT INTO `wp_postmeta` VALUES("2942", "162", "_WPMSGOPTION_SMSImage", "");
INSERT INTO `wp_postmeta` VALUES("2943", "162", "_WPMSGOPTION_EmailTo", "");
INSERT INTO `wp_postmeta` VALUES("2944", "162", "_WPMSGOPTION_EmailCallToAction", "");
INSERT INTO `wp_postmeta` VALUES("2945", "162", "_WPMSGOPTION_EmailSubjectText", "");
INSERT INTO `wp_postmeta` VALUES("2946", "162", "_WPMSGOPTION_EmailMessageText", "");
INSERT INTO `wp_postmeta` VALUES("2947", "162", "_WPMSGOPTION_HideEmailIcon", "");
INSERT INTO `wp_postmeta` VALUES("2948", "162", "_WPMSGOPTION_EmailIconImage", "");
INSERT INTO `wp_postmeta` VALUES("2949", "162", "_WPMSGOPTION_EmailImage", "");
INSERT INTO `wp_postmeta` VALUES("2950", "162", "_WPMSGOPTION_SkypeUsername", "");
INSERT INTO `wp_postmeta` VALUES("2951", "162", "_WPMSGOPTION_SkypeCallToAction", "");
INSERT INTO `wp_postmeta` VALUES("2952", "162", "_WPMSGOPTION_HideSkypeIcon", "");
INSERT INTO `wp_postmeta` VALUES("2953", "162", "_WPMSGOPTION_SkypeIconImage", "");
INSERT INTO `wp_postmeta` VALUES("2954", "162", "_WPMSGOPTION_SkypeImage", "");
INSERT INTO `wp_postmeta` VALUES("2955", "162", "_WPMSGOPTION_RedirectURL", "");
INSERT INTO `wp_postmeta` VALUES("2956", "162", "_WPMSGOPTION_DeactivatedURL", "");
INSERT INTO `wp_postmeta` VALUES("2957", "162", "_WPMSGOPTION_ExportDomain", "");
INSERT INTO `wp_postmeta` VALUES("2958", "162", "_WPMSGOPTION_CreateBitly", "");
INSERT INTO `wp_postmeta` VALUES("2959", "162", "_WPMSGOPTION_BitlyUsername", "");
INSERT INTO `wp_postmeta` VALUES("2960", "162", "_WPMSGOPTION_BitlyApiKey", "");
INSERT INTO `wp_postmeta` VALUES("2961", "162", "_WPMSGOPTION_BitlyLongUrl", "");
INSERT INTO `wp_postmeta` VALUES("2962", "162", "_WPMSGOPTION_BitlyShortUrl", "");
INSERT INTO `wp_postmeta` VALUES("2963", "162", "_WPMSGOPTION_MapLocation", "");
INSERT INTO `wp_postmeta` VALUES("2964", "162", "_WPMSGOPTION_MapLongitude", "");
INSERT INTO `wp_postmeta` VALUES("2965", "162", "_WPMSGOPTION_MapLatitude", "");
INSERT INTO `wp_postmeta` VALUES("2966", "162", "_WPMSGOPTION_MapWidth", "");
INSERT INTO `wp_postmeta` VALUES("2967", "162", "_WPMSGOPTION_MapHeight", "");
INSERT INTO `wp_postmeta` VALUES("2968", "162", "_WPMSGOPTION_MapZoom", "");
INSERT INTO `wp_postmeta` VALUES("2969", "162", "_WPMSGOPTION_MapLanguage", "en");
INSERT INTO `wp_postmeta` VALUES("2970", "162", "_WPMSGOPTION_DisplayMapDirections", "");
INSERT INTO `wp_postmeta` VALUES("2971", "162", "_WPMSGOPTION_DirectionsPrompt", "");
INSERT INTO `wp_postmeta` VALUES("2972", "162", "_WPMSGOPTION_DirectionsButtonText", "");
INSERT INTO `wp_postmeta` VALUES("2973", "162", "_WPMSGOPTION_DisplayGPSDirectionsButton", "");
INSERT INTO `wp_postmeta` VALUES("2974", "162", "_WPMSGOPTION_GPSDirectionsButtonText", "");
INSERT INTO `wp_postmeta` VALUES("2975", "162", "_WPMSGOPTION_DirectionsPosition", "A");
INSERT INTO `wp_postmeta` VALUES("2976", "162", "_WPMSGOPTION_OptinNamePrompt", "");
INSERT INTO `wp_postmeta` VALUES("2977", "162", "_WPMSGOPTION_OptinEmailPrompt", "");
INSERT INTO `wp_postmeta` VALUES("2978", "162", "_WPMSGOPTION_OptinSubmitPrompt", "");
INSERT INTO `wp_postmeta` VALUES("2979", "162", "_WPMSGOPTION_OptinCode", "");
INSERT INTO `wp_postmeta` VALUES("2980", "162", "_WPMSGOPTION_OptinRedirectPage", "0");
INSERT INTO `wp_postmeta` VALUES("2981", "162", "_WPMSGOPTION_ContactSendToEmail", "");
INSERT INTO `wp_postmeta` VALUES("2982", "162", "_WPMSGOPTION_ContactSendFromName", "");
INSERT INTO `wp_postmeta` VALUES("2983", "162", "_WPMSGOPTION_ContactSendFromEmail", "");
INSERT INTO `wp_postmeta` VALUES("2984", "162", "_WPMSGOPTION_ContactNamePrompt", "");
INSERT INTO `wp_postmeta` VALUES("2985", "162", "_WPMSGOPTION_ContactPhonePrompt", "");
INSERT INTO `wp_postmeta` VALUES("2986", "162", "_WPMSGOPTION_ContactEmailPrompt", "");
INSERT INTO `wp_postmeta` VALUES("2987", "162", "_WPMSGOPTION_ContactMessagePrompt", "");
INSERT INTO `wp_postmeta` VALUES("2988", "162", "_WPMSGOPTION_ContactSubmitPrompt", "");
INSERT INTO `wp_postmeta` VALUES("2989", "162", "_WPMSGOPTION_ContactShowAcknowledgement", "");
INSERT INTO `wp_postmeta` VALUES("2990", "162", "_WPMSGOPTION_ContactAcknowledgementDisplayMessage", "");
INSERT INTO `wp_postmeta` VALUES("2991", "162", "_WPMSGOPTION_ContactSendAcknowledgement", "");
INSERT INTO `wp_postmeta` VALUES("2992", "162", "_WPMSGOPTION_ContactAcknowledgementName", "");
INSERT INTO `wp_postmeta` VALUES("2993", "162", "_WPMSGOPTION_ContactAcknowledgementEmail", "");
INSERT INTO `wp_postmeta` VALUES("2994", "162", "_WPMSGOPTION_ContactAcknowledgementSubject", "");
INSERT INTO `wp_postmeta` VALUES("2995", "162", "_WPMSGOPTION_ContactAcknowledgementMessage", "");
INSERT INTO `wp_postmeta` VALUES("2996", "162", "_WPMSGOPTION_SiteID", "123");
INSERT INTO `wp_postmeta` VALUES("2998", "164", "_WPMREDOPTION_RedirectNever", "");
INSERT INTO `wp_postmeta` VALUES("2999", "164", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("3000", "164", "_edit_lock", "1362324048:1");
INSERT INTO `wp_postmeta` VALUES("3001", "164", "_WPMSGOPTION_Initialised", "Y");
INSERT INTO `wp_postmeta` VALUES("3002", "164", "_WPMSGOPTION_Deactivated", "");
INSERT INTO `wp_postmeta` VALUES("3003", "164", "_WPMSGOPTION_PageSlug", "e-mail-us");
INSERT INTO `wp_postmeta` VALUES("3004", "164", "_WPMSGOPTION_PageName", "E-Mail Us");
INSERT INTO `wp_postmeta` VALUES("3005", "164", "_WPMSGOPTION_TopbarPageName", "E-Mail Us");
INSERT INTO `wp_postmeta` VALUES("3006", "164", "_WPMSGOPTION_MenuDesc", "");
INSERT INTO `wp_postmeta` VALUES("3007", "164", "_WPMSGOPTION_ThemeType", "Site");
INSERT INTO `wp_postmeta` VALUES("3008", "164", "_WPMSGOPTION_PageTheme", "170");
INSERT INTO `wp_postmeta` VALUES("3009", "164", "_WPMSGOPTION_MenuStyle", "Vertical");
INSERT INTO `wp_postmeta` VALUES("3010", "164", "_WPMSGOPTION_MenuPosition", "T");
INSERT INTO `wp_postmeta` VALUES("3011", "164", "_WPMSGOPTION_ExcludePage", "");
INSERT INTO `wp_postmeta` VALUES("3012", "164", "_WPMSGOPTION_ExcludeFromSearch", "");
INSERT INTO `wp_postmeta` VALUES("3013", "164", "_WPMSGOPTION_BackgroundImage", "");
INSERT INTO `wp_postmeta` VALUES("3014", "164", "_WPMSGOPTION_BackgroundImageRepeat", "repeat");
INSERT INTO `wp_postmeta` VALUES("3015", "164", "_WPMSGOPTION_BackgroundImagePosition", "lefttop");
INSERT INTO `wp_postmeta` VALUES("3016", "164", "_WPMSGOPTION_PageMinimumHeight", "");
INSERT INTO `wp_postmeta` VALUES("3017", "164", "_WPMSGOPTION_DisplayLogo", "");
INSERT INTO `wp_postmeta` VALUES("3018", "164", "_WPMSGOPTION_LogoImage", "");
INSERT INTO `wp_postmeta` VALUES("3019", "164", "_WPMSGOPTION_LogoBackgroundColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("3020", "164", "_WPMSGOPTION_LogoUseBackgroundColor", "");
INSERT INTO `wp_postmeta` VALUES("3021", "164", "_WPMSGOPTION_FooterBackgroundColor", "");
INSERT INTO `wp_postmeta` VALUES("3022", "164", "_WPMSGOPTION_ThumbnailImage", "Email2");
INSERT INTO `wp_postmeta` VALUES("3023", "164", "_WPMSGOPTION_ThumbnailImageColor", "LightBlue");
INSERT INTO `wp_postmeta` VALUES("3024", "164", "_WPMSGOPTION_CustomThumbnailImage", "");
INSERT INTO `wp_postmeta` VALUES("3025", "164", "_WPMSGOPTION_DisplayPreview", "");
INSERT INTO `wp_postmeta` VALUES("3026", "164", "_WPMSGOPTION_DisplayTopBar", "");
INSERT INTO `wp_postmeta` VALUES("3027", "164", "_WPMSGOPTION_TopbarRightLinkText", "");
INSERT INTO `wp_postmeta` VALUES("3028", "164", "_WPMSGOPTION_TopbarRightLinkURL", "");
INSERT INTO `wp_postmeta` VALUES("3029", "164", "_WPMSGOPTION_TopbarRightLinkPage", "0");
INSERT INTO `wp_postmeta` VALUES("3030", "164", "_WPMSGOPTION_DisplayPhoneTopBar", "");
INSERT INTO `wp_postmeta` VALUES("3031", "164", "_WPMSGOPTION_FacebookURL", "");
INSERT INTO `wp_postmeta` VALUES("3032", "164", "_WPMSGOPTION_TwitterURL", "");
INSERT INTO `wp_postmeta` VALUES("3033", "164", "_WPMSGOPTION_GooglePlusURL", "");
INSERT INTO `wp_postmeta` VALUES("3034", "164", "_WPMSGOPTION_YouTubeURL", "");
INSERT INTO `wp_postmeta` VALUES("3035", "164", "_WPMSGOPTION_LinkedInURL", "");
INSERT INTO `wp_postmeta` VALUES("3036", "164", "_WPMSGOPTION_SocialMediaPage1URL", "");
INSERT INTO `wp_postmeta` VALUES("3037", "164", "_WPMSGOPTION_SocialMediaIcon1URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/facebook.png");
INSERT INTO `wp_postmeta` VALUES("3038", "164", "_WPMSGOPTION_SocialMediaPage2URL", "");
INSERT INTO `wp_postmeta` VALUES("3039", "164", "_WPMSGOPTION_SocialMediaIcon2URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/twitter.png");
INSERT INTO `wp_postmeta` VALUES("3040", "164", "_WPMSGOPTION_SocialMediaPage3URL", "");
INSERT INTO `wp_postmeta` VALUES("3041", "164", "_WPMSGOPTION_SocialMediaIcon3URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/googleplus.png");
INSERT INTO `wp_postmeta` VALUES("3042", "164", "_WPMSGOPTION_SocialMediaPage4URL", "");
INSERT INTO `wp_postmeta` VALUES("3043", "164", "_WPMSGOPTION_SocialMediaIcon4URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/youtube.png");
INSERT INTO `wp_postmeta` VALUES("3044", "164", "_WPMSGOPTION_SocialMediaPage5URL", "");
INSERT INTO `wp_postmeta` VALUES("3045", "164", "_WPMSGOPTION_SocialMediaIcon5URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/linkedin.png");
INSERT INTO `wp_postmeta` VALUES("3046", "164", "_WPMSGOPTION_SocialMediaPage6URL", "");
INSERT INTO `wp_postmeta` VALUES("3047", "164", "_WPMSGOPTION_SocialMediaIcon6URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/pinterest.png");
INSERT INTO `wp_postmeta` VALUES("3048", "164", "_WPMSGOPTION_SocialMediaPage7URL", "");
INSERT INTO `wp_postmeta` VALUES("3049", "164", "_WPMSGOPTION_SocialMediaIcon7URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/flickr.png");
INSERT INTO `wp_postmeta` VALUES("3050", "164", "_WPMSGOPTION_SocialMediaPage8URL", "");
INSERT INTO `wp_postmeta` VALUES("3051", "164", "_WPMSGOPTION_SocialMediaIcon8URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/yelp.png");
INSERT INTO `wp_postmeta` VALUES("3052", "164", "_WPMSGOPTION_SocialMediaPage9URL", "");
INSERT INTO `wp_postmeta` VALUES("3053", "164", "_WPMSGOPTION_SocialMediaIcon9URL", "");
INSERT INTO `wp_postmeta` VALUES("3054", "164", "_WPMSGOPTION_FBLikeURL", "");
INSERT INTO `wp_postmeta` VALUES("3055", "164", "_WPMSGOPTION_FBLikeWidth", "");
INSERT INTO `wp_postmeta` VALUES("3056", "164", "_WPMSGOPTION_FBLikeSendButton", "Y");
INSERT INTO `wp_postmeta` VALUES("3057", "164", "_WPMSGOPTION_FBLikeFaces", "Y");
INSERT INTO `wp_postmeta` VALUES("3058", "164", "_WPMSGOPTION_FBLikeLayoutStyle", "");
INSERT INTO `wp_postmeta` VALUES("3059", "164", "_WPMSGOPTION_FBLikeVerb", "");
INSERT INTO `wp_postmeta` VALUES("3060", "164", "_WPMSGOPTION_FBLikeColorScheme", "");
INSERT INTO `wp_postmeta` VALUES("3061", "164", "_WPMSGOPTION_FBCommentsURL", "");
INSERT INTO `wp_postmeta` VALUES("3062", "164", "_WPMSGOPTION_FBCommentsPosts", "");
INSERT INTO `wp_postmeta` VALUES("3063", "164", "_WPMSGOPTION_FBCommentsColorScheme", "");
INSERT INTO `wp_postmeta` VALUES("3064", "164", "_WPMSGOPTION_SearchPrompt", "");
INSERT INTO `wp_postmeta` VALUES("3065", "164", "_WPMSGOPTION_SearchSubmitPrompt", "");
INSERT INTO `wp_postmeta` VALUES("3066", "164", "_WPMSGOPTION_RSSFeedURL", "");
INSERT INTO `wp_postmeta` VALUES("3067", "164", "_WPMSGOPTION_RSSFeedMax", "");
INSERT INTO `wp_postmeta` VALUES("3068", "164", "_WPMSGOPTION_RSSFeedStyle", "TitleOnly");
INSERT INTO `wp_postmeta` VALUES("3069", "164", "_WPMSGOPTION_MetaTitle", "");
INSERT INTO `wp_postmeta` VALUES("3070", "164", "_WPMSGOPTION_MetaDescription", "");
INSERT INTO `wp_postmeta` VALUES("3071", "164", "_WPMSGOPTION_MetaKeywords", "");
INSERT INTO `wp_postmeta` VALUES("3072", "164", "_WPMSGOPTION_AnalyticsCode", "");
INSERT INTO `wp_postmeta` VALUES("3073", "164", "_WPMSGOPTION_CouponTitle", "");
INSERT INTO `wp_postmeta` VALUES("3074", "164", "_WPMSGOPTION_CouponCodeText", "");
INSERT INTO `wp_postmeta` VALUES("3075", "164", "_WPMSGOPTION_CouponStartText", "");
INSERT INTO `wp_postmeta` VALUES("3076", "164", "_WPMSGOPTION_CouponExpiryText", "");
INSERT INTO `wp_postmeta` VALUES("3077", "164", "_WPMSGOPTION_CouponCode", "");
INSERT INTO `wp_postmeta` VALUES("3078", "164", "_WPMSGOPTION_CouponCodeExpired", "");
INSERT INTO `wp_postmeta` VALUES("3079", "164", "_WPMSGOPTION_CouponStart", "");
INSERT INTO `wp_postmeta` VALUES("3080", "164", "_WPMSGOPTION_CouponExpiry", "");
INSERT INTO `wp_postmeta` VALUES("3081", "164", "_WPMSGOPTION_CouponDateFormat", "Y-m-d");
INSERT INTO `wp_postmeta` VALUES("3082", "164", "_WPMSGOPTION_CouponValidText", "");
INSERT INTO `wp_postmeta` VALUES("3083", "164", "_WPMSGOPTION_CouponExpiredText", "");
INSERT INTO `wp_postmeta` VALUES("3084", "164", "_WPMSGOPTION_CouponImage", "");
INSERT INTO `wp_postmeta` VALUES("3085", "164", "_WPMSGOPTION_TelephoneNumber", "");
INSERT INTO `wp_postmeta` VALUES("3086", "164", "_WPMSGOPTION_TelephoneCallToAction", "");
INSERT INTO `wp_postmeta` VALUES("3087", "164", "_WPMSGOPTION_ClickToCallType", "Call");
INSERT INTO `wp_postmeta` VALUES("3088", "164", "_WPMSGOPTION_SMSMessage", "");
INSERT INTO `wp_postmeta` VALUES("3089", "164", "_WPMSGOPTION_HidePhoneIcon", "");
INSERT INTO `wp_postmeta` VALUES("3090", "164", "_WPMSGOPTION_HidePhoneNumber", "");
INSERT INTO `wp_postmeta` VALUES("3091", "164", "_WPMSGOPTION_TelephoneIconImage", "");
INSERT INTO `wp_postmeta` VALUES("3092", "164", "_WPMSGOPTION_TelephoneImage", "");
INSERT INTO `wp_postmeta` VALUES("3093", "164", "_WPMSGOPTION_SMSNumber", "");
INSERT INTO `wp_postmeta` VALUES("3094", "164", "_WPMSGOPTION_SMSCallToAction", "");
INSERT INTO `wp_postmeta` VALUES("3095", "164", "_WPMSGOPTION_SMSMessageText", "");
INSERT INTO `wp_postmeta` VALUES("3096", "164", "_WPMSGOPTION_HideSMSIcon", "");
INSERT INTO `wp_postmeta` VALUES("3097", "164", "_WPMSGOPTION_HideSMSNumber", "");
INSERT INTO `wp_postmeta` VALUES("3098", "164", "_WPMSGOPTION_SMSIconImage", "");
INSERT INTO `wp_postmeta` VALUES("3099", "164", "_WPMSGOPTION_SMSImage", "");
INSERT INTO `wp_postmeta` VALUES("3100", "164", "_WPMSGOPTION_EmailTo", "");
INSERT INTO `wp_postmeta` VALUES("3101", "164", "_WPMSGOPTION_EmailCallToAction", "");
INSERT INTO `wp_postmeta` VALUES("3102", "164", "_WPMSGOPTION_EmailSubjectText", "");
INSERT INTO `wp_postmeta` VALUES("3103", "164", "_WPMSGOPTION_EmailMessageText", "");
INSERT INTO `wp_postmeta` VALUES("3104", "164", "_WPMSGOPTION_HideEmailIcon", "");
INSERT INTO `wp_postmeta` VALUES("3105", "164", "_WPMSGOPTION_EmailIconImage", "");
INSERT INTO `wp_postmeta` VALUES("3106", "164", "_WPMSGOPTION_EmailImage", "");
INSERT INTO `wp_postmeta` VALUES("3107", "164", "_WPMSGOPTION_SkypeUsername", "");
INSERT INTO `wp_postmeta` VALUES("3108", "164", "_WPMSGOPTION_SkypeCallToAction", "");
INSERT INTO `wp_postmeta` VALUES("3109", "164", "_WPMSGOPTION_HideSkypeIcon", "");
INSERT INTO `wp_postmeta` VALUES("3110", "164", "_WPMSGOPTION_SkypeIconImage", "");
INSERT INTO `wp_postmeta` VALUES("3111", "164", "_WPMSGOPTION_SkypeImage", "");
INSERT INTO `wp_postmeta` VALUES("3112", "164", "_WPMSGOPTION_RedirectURL", "");
INSERT INTO `wp_postmeta` VALUES("3113", "164", "_WPMSGOPTION_DeactivatedURL", "");
INSERT INTO `wp_postmeta` VALUES("3114", "164", "_WPMSGOPTION_ExportDomain", "");
INSERT INTO `wp_postmeta` VALUES("3115", "164", "_WPMSGOPTION_CreateBitly", "");
INSERT INTO `wp_postmeta` VALUES("3116", "164", "_WPMSGOPTION_BitlyUsername", "");
INSERT INTO `wp_postmeta` VALUES("3117", "164", "_WPMSGOPTION_BitlyApiKey", "");
INSERT INTO `wp_postmeta` VALUES("3118", "164", "_WPMSGOPTION_BitlyLongUrl", "");
INSERT INTO `wp_postmeta` VALUES("3119", "164", "_WPMSGOPTION_BitlyShortUrl", "");
INSERT INTO `wp_postmeta` VALUES("3120", "164", "_WPMSGOPTION_MapLocation", "");
INSERT INTO `wp_postmeta` VALUES("3121", "164", "_WPMSGOPTION_MapLongitude", "");
INSERT INTO `wp_postmeta` VALUES("3122", "164", "_WPMSGOPTION_MapLatitude", "");
INSERT INTO `wp_postmeta` VALUES("3123", "164", "_WPMSGOPTION_MapWidth", "");
INSERT INTO `wp_postmeta` VALUES("3124", "164", "_WPMSGOPTION_MapHeight", "");
INSERT INTO `wp_postmeta` VALUES("3125", "164", "_WPMSGOPTION_MapZoom", "");
INSERT INTO `wp_postmeta` VALUES("3126", "164", "_WPMSGOPTION_MapLanguage", "en");
INSERT INTO `wp_postmeta` VALUES("3127", "164", "_WPMSGOPTION_DisplayMapDirections", "");
INSERT INTO `wp_postmeta` VALUES("3128", "164", "_WPMSGOPTION_DirectionsPrompt", "");
INSERT INTO `wp_postmeta` VALUES("3129", "164", "_WPMSGOPTION_DirectionsButtonText", "");
INSERT INTO `wp_postmeta` VALUES("3130", "164", "_WPMSGOPTION_DisplayGPSDirectionsButton", "");
INSERT INTO `wp_postmeta` VALUES("3131", "164", "_WPMSGOPTION_GPSDirectionsButtonText", "");
INSERT INTO `wp_postmeta` VALUES("3132", "164", "_WPMSGOPTION_DirectionsPosition", "A");
INSERT INTO `wp_postmeta` VALUES("3133", "164", "_WPMSGOPTION_OptinNamePrompt", "");
INSERT INTO `wp_postmeta` VALUES("3134", "164", "_WPMSGOPTION_OptinEmailPrompt", "");
INSERT INTO `wp_postmeta` VALUES("3135", "164", "_WPMSGOPTION_OptinSubmitPrompt", "");
INSERT INTO `wp_postmeta` VALUES("3136", "164", "_WPMSGOPTION_OptinCode", "");
INSERT INTO `wp_postmeta` VALUES("3137", "164", "_WPMSGOPTION_OptinRedirectPage", "0");
INSERT INTO `wp_postmeta` VALUES("3138", "164", "_WPMSGOPTION_ContactSendToEmail", "junior5011@optonline.net");
INSERT INTO `wp_postmeta` VALUES("3139", "164", "_WPMSGOPTION_ContactSendFromName", "");
INSERT INTO `wp_postmeta` VALUES("3140", "164", "_WPMSGOPTION_ContactSendFromEmail", "");
INSERT INTO `wp_postmeta` VALUES("3141", "164", "_WPMSGOPTION_ContactNamePrompt", "");
INSERT INTO `wp_postmeta` VALUES("3142", "164", "_WPMSGOPTION_ContactPhonePrompt", "");
INSERT INTO `wp_postmeta` VALUES("3143", "164", "_WPMSGOPTION_ContactEmailPrompt", "");
INSERT INTO `wp_postmeta` VALUES("3144", "164", "_WPMSGOPTION_ContactMessagePrompt", "");
INSERT INTO `wp_postmeta` VALUES("3145", "164", "_WPMSGOPTION_ContactSubmitPrompt", "");
INSERT INTO `wp_postmeta` VALUES("3146", "164", "_WPMSGOPTION_ContactShowAcknowledgement", "Y");
INSERT INTO `wp_postmeta` VALUES("3147", "164", "_WPMSGOPTION_ContactAcknowledgementDisplayMessage", "");
INSERT INTO `wp_postmeta` VALUES("3148", "164", "_WPMSGOPTION_ContactSendAcknowledgement", "");
INSERT INTO `wp_postmeta` VALUES("3149", "164", "_WPMSGOPTION_ContactAcknowledgementName", "");
INSERT INTO `wp_postmeta` VALUES("3150", "164", "_WPMSGOPTION_ContactAcknowledgementEmail", "");
INSERT INTO `wp_postmeta` VALUES("3151", "164", "_WPMSGOPTION_ContactAcknowledgementSubject", "");
INSERT INTO `wp_postmeta` VALUES("3152", "164", "_WPMSGOPTION_ContactAcknowledgementMessage", "");
INSERT INTO `wp_postmeta` VALUES("3153", "164", "_WPMSGOPTION_SiteID", "123");
INSERT INTO `wp_postmeta` VALUES("3155", "166", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"850\";s:6:\"height\";s:3:\"315\";s:14:\"hwstring_small\";s:23:\"height=\'47\' width=\'128\'\";s:4:\"file\";s:31:\"2013/02/Facebook-Timeline_4.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:31:\"Facebook-Timeline_4-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:31:\"Facebook-Timeline_4-300x111.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"111\";}s:15:\"ezgallery-thumb\";a:3:{s:4:\"file\";s:31:\"Facebook-Timeline_4-125x125.jpg\";s:5:\"width\";s:3:\"125\";s:6:\"height\";s:3:\"125\";}s:21:\"single-post-thumbnail\";a:3:{s:4:\"file\";s:29:\"Facebook-Timeline_4-75x27.jpg\";s:5:\"width\";s:2:\"75\";s:6:\"height\";s:2:\"27\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("3156", "167", "_wp_attached_file", "2013/02/untitled.jpg");
INSERT INTO `wp_postmeta` VALUES("3157", "167", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"318\";s:6:\"height\";s:3:\"249\";s:14:\"hwstring_small\";s:23:\"height=\'96\' width=\'122\'\";s:4:\"file\";s:20:\"2013/02/untitled.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:20:\"untitled-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:20:\"untitled-300x234.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"234\";}s:15:\"ezgallery-thumb\";a:3:{s:4:\"file\";s:20:\"untitled-125x125.jpg\";s:5:\"width\";s:3:\"125\";s:6:\"height\";s:3:\"125\";}s:21:\"single-post-thumbnail\";a:3:{s:4:\"file\";s:18:\"untitled-75x58.jpg\";s:5:\"width\";s:2:\"75\";s:6:\"height\";s:2:\"58\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("3160", "170", "_WPMREDOPTION_RedirectURL", "");
INSERT INTO `wp_postmeta` VALUES("3158", "168", "_wp_attached_file", "2013/02/Graphic24.jpg");
INSERT INTO `wp_postmeta` VALUES("3159", "168", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"741\";s:6:\"height\";s:3:\"480\";s:14:\"hwstring_small\";s:23:\"height=\'82\' width=\'128\'\";s:4:\"file\";s:21:\"2013/02/Graphic24.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:21:\"Graphic24-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:21:\"Graphic24-300x194.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"194\";}s:15:\"ezgallery-thumb\";a:3:{s:4:\"file\";s:21:\"Graphic24-125x125.jpg\";s:5:\"width\";s:3:\"125\";s:6:\"height\";s:3:\"125\";}s:21:\"single-post-thumbnail\";a:3:{s:4:\"file\";s:19:\"Graphic24-75x48.jpg\";s:5:\"width\";s:2:\"75\";s:6:\"height\";s:2:\"48\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("3161", "170", "_WPMREDOPTION_RedirectNever", "");
INSERT INTO `wp_postmeta` VALUES("3162", "170", "_WPMREDOPTION_RedirectURL", "");
INSERT INTO `wp_postmeta` VALUES("3163", "170", "_WPMREDOPTION_RedirectNever", "");
INSERT INTO `wp_postmeta` VALUES("3164", "170", "_WPMSGOPTION_PageBackgroundColor", "000000");
INSERT INTO `wp_postmeta` VALUES("3165", "170", "_WPMSGOPTION_LogoBackgroundColor", "000000");
INSERT INTO `wp_postmeta` VALUES("3166", "170", "_WPMSGOPTION_FooterBackgroundColor", "000000");
INSERT INTO `wp_postmeta` VALUES("3167", "170", "_WPMSGOPTION_ParagraphTextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("3168", "170", "_WPMSGOPTION_ParagraphTextSize", "");
INSERT INTO `wp_postmeta` VALUES("3169", "170", "_WPMSGOPTION_BackgroundImage", "http://tampa.keylocksmith.in/fl/wp-content/uploads/2013/02/Graphic10-300x187.jpg");
INSERT INTO `wp_postmeta` VALUES("3170", "170", "_WPMSGOPTION_BackgroundImageRepeat", "no-repeat");
INSERT INTO `wp_postmeta` VALUES("3171", "170", "_WPMSGOPTION_BackgroundImagePosition", "lefttop");
INSERT INTO `wp_postmeta` VALUES("3172", "170", "_WPMSGOPTION_TopbarStartColor", "202020");
INSERT INTO `wp_postmeta` VALUES("3173", "170", "_WPMSGOPTION_TopbarEndColor", "858585");
INSERT INTO `wp_postmeta` VALUES("3174", "170", "_WPMSGOPTION_TopbarTextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("3175", "170", "_WPMSGOPTION_TopbarButtonColor", "std");
INSERT INTO `wp_postmeta` VALUES("3176", "170", "_WPMSGOPTION_H1TextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("3177", "170", "_WPMSGOPTION_H1TextSize", "");
INSERT INTO `wp_postmeta` VALUES("3178", "170", "_WPMSGOPTION_H1TextShadow", "");
INSERT INTO `wp_postmeta` VALUES("3179", "170", "_WPMSGOPTION_H2TextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("3180", "170", "_WPMSGOPTION_H2TextSize", "");
INSERT INTO `wp_postmeta` VALUES("3181", "170", "_WPMSGOPTION_H2TextShadow", "");
INSERT INTO `wp_postmeta` VALUES("3182", "170", "_WPMSGOPTION_H3TextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("3183", "170", "_WPMSGOPTION_H3TextSize", "");
INSERT INTO `wp_postmeta` VALUES("3184", "170", "_WPMSGOPTION_H3TextShadow", "");
INSERT INTO `wp_postmeta` VALUES("3185", "170", "_WPMSGOPTION_H4TextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("3186", "170", "_WPMSGOPTION_H4TextSize", "");
INSERT INTO `wp_postmeta` VALUES("3187", "170", "_WPMSGOPTION_H4TextShadow", "");
INSERT INTO `wp_postmeta` VALUES("3188", "170", "_WPMSGOPTION_H5TextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("3189", "170", "_WPMSGOPTION_H5TextSize", "");
INSERT INTO `wp_postmeta` VALUES("3190", "170", "_WPMSGOPTION_H5TextShadow", "");
INSERT INTO `wp_postmeta` VALUES("3191", "170", "_WPMSGOPTION_H6TextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("3192", "170", "_WPMSGOPTION_H6TextSize", "");
INSERT INTO `wp_postmeta` VALUES("3193", "170", "_WPMSGOPTION_H6TextShadow", "");
INSERT INTO `wp_postmeta` VALUES("3194", "170", "_WPMSGOPTION_MenuBackgroundColor", "FF0800");
INSERT INTO `wp_postmeta` VALUES("3195", "170", "_WPMSGOPTION_IconTextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("3196", "170", "_WPMSGOPTION_MenuTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("3197", "170", "_WPMSGOPTION_MenuTextSize", "");
INSERT INTO `wp_postmeta` VALUES("3198", "170", "_WPMSGOPTION_MenuBorderColor", "FF0800");
INSERT INTO `wp_postmeta` VALUES("3199", "170", "_WPMSGOPTION_MenuBorderWidth", "1");
INSERT INTO `wp_postmeta` VALUES("3200", "170", "_WPMSGOPTION_MenuBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("3201", "170", "_WPMSGOPTION_MenuOpacity", "1");
INSERT INTO `wp_postmeta` VALUES("3202", "170", "_WPMSGOPTION_MenuArrowImage", "LightBigArrow");
INSERT INTO `wp_postmeta` VALUES("3203", "170", "_WPMSGOPTION_MenuArrowColor", "Transparent");
INSERT INTO `wp_postmeta` VALUES("3204", "170", "_WPMSGOPTION_MenuSelectedBackgroundColor", "015FE6");
INSERT INTO `wp_postmeta` VALUES("3205", "170", "_WPMSGOPTION_MenuSelectedTextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("3206", "170", "_WPMSGOPTION_MenuSeparatorColor", "878787");
INSERT INTO `wp_postmeta` VALUES("3207", "170", "_WPMSGOPTION_BlockquoteBackgroundColor", "D40700");
INSERT INTO `wp_postmeta` VALUES("3208", "170", "_WPMSGOPTION_BlockquoteTextColor", "FCFC0F");
INSERT INTO `wp_postmeta` VALUES("3209", "170", "_WPMSGOPTION_BlockquoteTextSize", "");
INSERT INTO `wp_postmeta` VALUES("3210", "170", "_WPMSGOPTION_BlockquoteBorderColor", "FF0800");
INSERT INTO `wp_postmeta` VALUES("3211", "170", "_WPMSGOPTION_BlockquoteBorderWidth", "1");
INSERT INTO `wp_postmeta` VALUES("3212", "170", "_WPMSGOPTION_BlockquoteBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("3213", "170", "_WPMSGOPTION_TableBackgroundColor", "D40700");
INSERT INTO `wp_postmeta` VALUES("3214", "170", "_WPMSGOPTION_TableTextColor", "FCFC0F");
INSERT INTO `wp_postmeta` VALUES("3215", "170", "_WPMSGOPTION_TableTextSize", "");
INSERT INTO `wp_postmeta` VALUES("3216", "170", "_WPMSGOPTION_TableBorderColor", "FF0800");
INSERT INTO `wp_postmeta` VALUES("3217", "170", "_WPMSGOPTION_TableBorderWidth", "1");
INSERT INTO `wp_postmeta` VALUES("3218", "170", "_WPMSGOPTION_TableBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("3219", "170", "_WPMSGOPTION_TableWidth", "95");
INSERT INTO `wp_postmeta` VALUES("3220", "170", "_WPMSGOPTION_TablePadding", "2");
INSERT INTO `wp_postmeta` VALUES("3221", "170", "_WPMSGOPTION_ClickToCallBackgroundColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("3222", "170", "_WPMSGOPTION_ClickToCallTextColor", "F50000");
INSERT INTO `wp_postmeta` VALUES("3223", "170", "_WPMSGOPTION_ClickToCallTextSize", "");
INSERT INTO `wp_postmeta` VALUES("3224", "170", "_WPMSGOPTION_ClickToCallBorderColor", "0831FF");
INSERT INTO `wp_postmeta` VALUES("3225", "170", "_WPMSGOPTION_ClickToCallBorderWidth", "");
INSERT INTO `wp_postmeta` VALUES("3226", "170", "_WPMSGOPTION_ClickToCallBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("3227", "170", "_WPMSGOPTION_OptinFormBackgroundColor", "FF0800");
INSERT INTO `wp_postmeta` VALUES("3228", "170", "_WPMSGOPTION_OptinFormInputBackgroundColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("3229", "170", "_WPMSGOPTION_OptinFormSubmitBackgroundColor", "FCFC0F");
INSERT INTO `wp_postmeta` VALUES("3230", "170", "_WPMSGOPTION_OptinFormSubmitTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("3231", "170", "_WPMSGOPTION_OptinFormTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("3232", "170", "_WPMSGOPTION_OptinFormTextSize", "");
INSERT INTO `wp_postmeta` VALUES("3233", "170", "_WPMSGOPTION_OptinFormBorderColor", "FF0800");
INSERT INTO `wp_postmeta` VALUES("3234", "170", "_WPMSGOPTION_OptinFormBorderWidth", "1");
INSERT INTO `wp_postmeta` VALUES("3235", "170", "_WPMSGOPTION_OptinFormBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("3236", "170", "_WPMSGOPTION_ContactFormBackgroundColor", "FF0800");
INSERT INTO `wp_postmeta` VALUES("3237", "170", "_WPMSGOPTION_ContactFormInputBackgroundColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("3238", "170", "_WPMSGOPTION_ContactFormSubmitBackgroundColor", "FCFC0F");
INSERT INTO `wp_postmeta` VALUES("3239", "170", "_WPMSGOPTION_ContactFormSubmitTextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("3240", "170", "_WPMSGOPTION_ContactFormTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("3241", "170", "_WPMSGOPTION_ContactFormTextSize", "");
INSERT INTO `wp_postmeta` VALUES("3242", "170", "_WPMSGOPTION_ContactFormBorderColor", "FF0800");
INSERT INTO `wp_postmeta` VALUES("3243", "170", "_WPMSGOPTION_ContactFormBorderWidth", "1");
INSERT INTO `wp_postmeta` VALUES("3244", "170", "_WPMSGOPTION_ContactFormBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("3245", "170", "_WPMSGOPTION_DirectionsBackgroundColor", "FF0800");
INSERT INTO `wp_postmeta` VALUES("3246", "170", "_WPMSGOPTION_DirectionsInputBackgroundColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("3247", "170", "_WPMSGOPTION_DirectionsSubmitBackgroundColor", "FCFC0F");
INSERT INTO `wp_postmeta` VALUES("3248", "170", "_WPMSGOPTION_DirectionsSubmitTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("3249", "170", "_WPMSGOPTION_DirectionsTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("3250", "170", "_WPMSGOPTION_DirectionsTextSize", "");
INSERT INTO `wp_postmeta` VALUES("3251", "170", "_WPMSGOPTION_DirectionsBorderColor", "FF0800");
INSERT INTO `wp_postmeta` VALUES("3252", "170", "_WPMSGOPTION_DirectionsBorderWidth", "1");
INSERT INTO `wp_postmeta` VALUES("3253", "170", "_WPMSGOPTION_DirectionsBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("3254", "170", "_WPMSGOPTION_SlideshowBackgroundColor", "FF0800");
INSERT INTO `wp_postmeta` VALUES("3255", "170", "_WPMSGOPTION_SlideshowTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("3256", "170", "_WPMSGOPTION_SlideshowTextSize", "");
INSERT INTO `wp_postmeta` VALUES("3257", "170", "_WPMSGOPTION_SlideshowBorderColor", "FCFC0F");
INSERT INTO `wp_postmeta` VALUES("3258", "170", "_WPMSGOPTION_SlideshowBorderWidth", "");
INSERT INTO `wp_postmeta` VALUES("3259", "170", "_WPMSGOPTION_SlideshowBorderStyle", "None");
INSERT INTO `wp_postmeta` VALUES("3260", "170", "_WPMSGOPTION_AccordianTitleBackgroundColor", "FF0800");
INSERT INTO `wp_postmeta` VALUES("3261", "170", "_WPMSGOPTION_AccordianTitleTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("3262", "170", "_WPMSGOPTION_AccordianTitleTextSize", "");
INSERT INTO `wp_postmeta` VALUES("3263", "170", "_WPMSGOPTION_AccordianTitleSelectedBackgroundColor", "015FE6");
INSERT INTO `wp_postmeta` VALUES("3264", "170", "_WPMSGOPTION_AccordianTitleSelectedTextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("3265", "170", "_WPMSGOPTION_AccordianBackgroundColor", "D40700");
INSERT INTO `wp_postmeta` VALUES("3266", "170", "_WPMSGOPTION_AccordianTextColor", "FCFC0F");
INSERT INTO `wp_postmeta` VALUES("3267", "170", "_WPMSGOPTION_AccordianTextSize", "");
INSERT INTO `wp_postmeta` VALUES("3268", "170", "_WPMSGOPTION_AccordianSeparatorColor", "878787");
INSERT INTO `wp_postmeta` VALUES("3269", "170", "_WPMSGOPTION_AccordianBorderColor", "FF0800");
INSERT INTO `wp_postmeta` VALUES("3270", "170", "_WPMSGOPTION_AccordianBorderWidth", "1");
INSERT INTO `wp_postmeta` VALUES("3271", "170", "_WPMSGOPTION_AccordianBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("3272", "170", "_WPMSGOPTION_AccordianArrowImage", "LightTriangle");
INSERT INTO `wp_postmeta` VALUES("3273", "170", "_WPMSGOPTION_AccordianArrowColor", "Transparent");
INSERT INTO `wp_postmeta` VALUES("3274", "170", "_WPMSGOPTION_CouponBackgroundColor", "FF0800");
INSERT INTO `wp_postmeta` VALUES("3275", "170", "_WPMSGOPTION_CouponTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("3276", "170", "_WPMSGOPTION_CouponTextSize", "");
INSERT INTO `wp_postmeta` VALUES("3277", "170", "_WPMSGOPTION_CouponBorderColor", "FCFC0F");
INSERT INTO `wp_postmeta` VALUES("3278", "170", "_WPMSGOPTION_CouponBorderWidth", "2");
INSERT INTO `wp_postmeta` VALUES("3279", "170", "_WPMSGOPTION_CouponBorderStyle", "Dashed");
INSERT INTO `wp_postmeta` VALUES("3280", "170", "_WPMSGOPTION_SearchBackgroundColor", "FF0800");
INSERT INTO `wp_postmeta` VALUES("3281", "170", "_WPMSGOPTION_SearchTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("3282", "170", "_WPMSGOPTION_SearchTextSize", "");
INSERT INTO `wp_postmeta` VALUES("3283", "170", "_WPMSGOPTION_SearchBorderColor", "FCFC0F");
INSERT INTO `wp_postmeta` VALUES("3284", "170", "_WPMSGOPTION_SearchBorderWidth", "2");
INSERT INTO `wp_postmeta` VALUES("3285", "170", "_WPMSGOPTION_SearchBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("3286", "170", "_WPMSGOPTION_SearchInputBackgroundColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("3287", "170", "_WPMSGOPTION_SearchSubmitBackgroundColor", "FCFC0F");
INSERT INTO `wp_postmeta` VALUES("3288", "170", "_WPMSGOPTION_SearchSubmitTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("3289", "170", "_WPMSGOPTION_SearchSelectedBackgroundColor", "015FE6");
INSERT INTO `wp_postmeta` VALUES("3290", "170", "_WPMSGOPTION_SearchSelectedTextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("3291", "170", "_WPMSGOPTION_SearchHighlightColor", "FFFF00");
INSERT INTO `wp_postmeta` VALUES("3292", "170", "_WPMSGOPTION_RssBackgroundColor", "FF0800");
INSERT INTO `wp_postmeta` VALUES("3293", "170", "_WPMSGOPTION_RssTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("3294", "170", "_WPMSGOPTION_RssTextSize", "");
INSERT INTO `wp_postmeta` VALUES("3295", "170", "_WPMSGOPTION_RssBorderColor", "FCFC0F");
INSERT INTO `wp_postmeta` VALUES("3296", "170", "_WPMSGOPTION_RssBorderWidth", "2");
INSERT INTO `wp_postmeta` VALUES("3297", "170", "_WPMSGOPTION_RssBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("3298", "170", "_WPMSGOPTION_RssSelectedBackgroundColor", "015FE6");
INSERT INTO `wp_postmeta` VALUES("3299", "170", "_WPMSGOPTION_RssSelectedTextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("3300", "170", "_WPMSGOPTION_ThemeStyleCSS", "<style  type=\"text/css\" >body{position:relative;-webkit-text-size-adjust:none;min-height:416px;{--wpmsgtknsinglepageminimumheight--}font-family:helvetica,sans-serif;-webkit-background-size:.438em 100%;Background:#000000;-webkit-touch-callout:none;margin:0;margin-right:auto; margin-left:auto;}img.alignright {float:right; max-width:100%; margin:0 0 1em 1em}img.alignleft {float:left; max-width:100%; margin:0 1em 1em 0}img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}a img.alignright {float:right; max-width:100%; margin:0 0 1em 1em}a img.alignleft {float:left; max-width:100%; margin:0 1em 1em 0}a img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}#accordion {background:#D40700;border-color:#FF0800;border-width:1px;border-style:Solid;margin:5px 5px 5px 5px;border-radius:8px}#accordion H2 {padding-top: 5pxpadding-bottom: 5px; padding-left: 15px; padding-right: 15px; margin: 0px 0px 0px 0px; background:#FF0800;font-size:17px;color:#000000;cursor: pointer; height:43px;overflow:hidden;border-top:1px solid #878787;font-weight: bold; line-height: 40px;}#accordion H2:first-child{border-top:none;border-radius:8px}#accordion H2:last-child{border-bottom-left-radius:8px;border-bottom-right-radius:8px}#accordion H2.current {background-color:#015FE6; color:#FFFFFF; cursor: default}#accordion div.acchead {padding-top: 5pxpadding-bottom: 5px; padding-left: 15px; padding-right: 15px; margin: 0px 0px 0px 0px; font-weight:bold;font-size:17px;background:#FF0800;font-size:17px;color:#000000;cursor: pointer; height:43px;overflow:hidden;border-top:1px solid #878787;line-height: 40px;}#accordion div.acchead:first-child{border-top:none;border-top-left-radius:8px;border-top-right-radius:8px;}#accordion div.acchead.current {background-color:#015FE6; color:#FFFFFF; cursor: default}#accordion .pane {padding-top: 15pxpadding-bottom: 15px; padding-left: 15px; padding-right: 15px; display: none; color:#FCFC0F;border-bottom-left-radius:8px;border-bottom-right-radius:8px;}#accordion .acchead .accarrow {float: right;valign: center;width:24px!important;height:24px!important;right:10px;top:18px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/arrows/Down_LightTriangle_Transparent.png) 0 0 no-repeat;margin:0!important ;margin-top: 15px;padding-top: 15px;}.images {background:#FF0800;color:#000000;border-color:#FCFC0F;border-width:px;border-style:;{--wpmsgtknslideshowheight--}{--wpmsgtknslideshowwidth--}overflow:hidden;margin-left:auto;margin-right:auto;position:relative;cursor:pointer;-moz-border-radius:5px;-moz-box-shadow:0 0 25px #666;-webkit-border-radius:5px;-webkit-box-shadow:0 0 25px #666;border-radius:5px;box-shadow:0 0 25px #666;}.images div {display:none;position:absolute;top:0;left:0;width: 100%;}.images div p a img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}.images div p img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}.images div a img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}.images div img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}.images img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}.images h3 {font-size:22px;font-weight:normal;margin:0 0 20px 0;color:#456;}.slidetabs {clear:both;}.slidetabs a {width:8px;height:8px;float:left;margin:3px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navigator.png) 0 0 no-repeat;display:block;font-size:1px;}.slidetabs a:hover {background-position:0 -8px;}.slidetabs a.current {background-position:0 -16px; } .forward, .backward {float:left;background:#fff url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/hori_large.png) no-repeat;display:block;width:30px;height:30px;cursor:pointer;font-size:1px;text-indent:-9999em;}.forward { background-position: 0 -30px; clear:right; }.forward:hover { background-position:-30px -30px; }.forward:active{ background-position:-60px -30px; } .backward:hover{ background-position:-30px 0; }.backward:active{ background-position:-60px 0; }.disabled {visibility:hidden !important;}.gallery { list-style: none; padding: 0; margin: 0; }.gallery:after { clear: both; content: \".\"; display: block; height: 0; visibility: hidden; }.gallery li { float: left; width: 33.33333333%; }.gallery li a { display: block; margin: 5px; border: 1px solid #3c3c3c; }.gallery li img { display: block; width: 100%; height: auto; }.highlight { background:#FFFF00;}.highlight_important { background:#FFFF00;}.center{display:block;text-align:center!important;margin:auto}a:hover .arrow{background:0 -13px!important}#topbar.transparent{background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#202020), to(#858585));background-image: -webkit-linear-gradient(top, #202020, #858585);background-image:-moz-linear-gradient(top, #202020, #858585);background-image: -ms-linear-gradient(top, #202020, #858585);background-image:-o-linear-gradient(top, #202020, #858585);}#topbar{position:relative;left:0;top:0;width:auto;}#title{position:absolute;font-weight:bold;top:0;left:0;right:0;text-align:center;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;color:#FFF;color:#FFFFFF;text-shadow:rgba(0,0,0,0.6) 0 -1px 0;padding:0 10px;}#logo{Background:#000000;}#content{width:100%;position:relative;min-height:250px;{--wpmsgtknsinglepageminimumheight--}height:auto;z-index:0;overflow:hidden;background: url(http://tampa.keylocksmith.in/fl/wp-content/uploads/2013/02/Graphic10-300x187.jpg) left top no-repeat ;{--wpmsgtknsinglepagebackgroundimage--}}p {padding:0 5px;color:#FFFFFF;}h1 {padding:0 5px;color:#FFFFFF;}h2 {padding:0 5px;color:#FFFFFF;}h3 {padding:0 5px;color:#FFFFFF;}h4 {padding:0 5px;color:#FFFFFF;}h5 {padding:0 5px;color:#FFFFFF;}h6 {padding:0 5px;color:#FFFFFF;}blockquote {background:#D40700;color:#FCFC0F;border-color:#FF0800;border-width:1px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 6px 10px;padding:0 5px;border-radius:8px}blockquote p {background:#D40700;color:#FCFC0F;}.ezmbfooter p {padding:0 5px;color:#FFFFFF;}.ezmbtable {width:95%;margin-left:auto;margin-right:auto;border-collapse:collapse;background:#D40700;color:#FCFC0F;border-color:#FF0800;border-width:1px;border-style:Solid;}.ezmbtable td {background:#D40700;color:#FCFC0F;border-color:#FF0800;border-width:1px;border-style:Solid;padding:2px;}.ezmbtable td p {background:#D40700;color:#FCFC0F;}.ezmbiconlist {color:#FFFFFF;}.menulist {background:#FF0800;color:#000000;border-color:#FF0800;border-width:1px;border-style:Solid;opacity:1;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.menulist span.name{color:#000000;text-decoration:none}.menulist span.menudesc{color:#FFFFFF;text-decoration:none}.menulist td a{text-decoration:none}.menulist td a img{vertical-align:text-top;text-decoration:none}.menulist td{vertical-align:text-top;}.searchlist {background:#FF0800;color:#000000;border-color:#FCFC0F;border-width:2px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.searchform {background:#FF0800;color:#000000;border-color:#FCFC0F;border-width:2px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.searchform .button input {background:#FCFC0F;color:#000000;}.searchlist:hover,{background:-webkit-gradient(linear,0% 0%,0% 100%,from(#058cf5),to(#015fe6))}.searchlist a:hover {background-color:#CCF}.searchlist li a:hover{background:#015FE6;}.searchlist a{display:block;height:43px;width:auto;text-decoration:none}.searchlist a img{width:auto;height:32px;float:left;margin:5px 0 0 5px}.searchlist .name{width:auto;font-weight:bold;font-size:17px;color:#000000;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;float:left;margin:11px 0 0 7px}.searchlist a:hover .name{color:#FFFFFF;}.searchlistsnippet{padding-left:5px;padding-right:5px;}.rssfeedlist {background:#FF0800;color:#000000;border-color:#FCFC0F;border-width:2px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.rssfeedlist:hover{background:-webkit-gradient(linear,0% 0%,0% 100%,from(#058cf5),to(#015fe6))}.rssfeedlist a:hover {background-color:#CCF}.rssfeedlist li a:hover{background-color:#015fe6}.rssfeedlist a{display:block;min-height:43px;width:auto;text-decoration:none}.rssfeedlist a img{width:auto;height:32px;float:left;margin:5px 0 0 5px}.rssfeedlist .name{width:auto;font-weight:bold;font-size:17px;color:#000000;float:left;margin:11px 0 0 7px}.rssfeedlist a:hover .name{color:#FFFFFF;}.rssfeedlistsnippet{padding-left:5px;padding-right:5px;}.ezmbcouponwidget {background:#FF0800;color:#000000;border-color:#FCFC0F;border-width:2px;border-style:Dashed;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.optinform {background:#FF0800;color:#000000;border-color:#FF0800;border-width:1px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.optinform .button input {background:#FCFC0F;color:#000000;}.contactform {background:#FF0800;color:#000000;border-color:#FF0800;border-width:1px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.contactform .button input {background:#FCFC0F;color:#FFFFFF;}.customform {background:#FF0800;color:#000000;border-color:#FF0800;border-width:1px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.customform .button input {background:#FCFC0F;color:#FFFFFF;}li.customformrow{position:relative;list-style-type:none;display:block;height:43px;overflow:hidden;border-top:1px solid #878787;border-top:1px solid #878787;width:auto}li.customformrowbelow{position:relative;list-style-type:none;display:block;height:43px;overflow:hidden;width:auto}p.customformrow{-webkit-margin-before: 0px;border-top:1px solid #878787;width:auto}.customformrow .customformlabel, .customformrow .customformlabelfull, .customformtextbox .customformlabel, .customformradiorow .customformlabel{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;padding-left:5px;overflow:hidden}.customformrow .customformlabel{line-height:44px;}.customformrow .customformlabelfull{line-height:44px;width:100%;height:auto;}.customformrow input {width:50%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.customformrowbelow input {width:100%;min-width:95%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}input.customformrowrequired{background: #ff8080;}.customformrow input:not([type=\'checkbox\']) {-webkit-appearance:none;}.customformrow select{width:50%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.customformrow:first-child input{border-top-right-radius:8px}.customformrow:last-child input{border-bottom-right-radius:8px}.customformtextbox{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.customformtextbox img{max-width:100%}.customformtextbox p{margin-top:2px;color:#000;margin-bottom:2px;text-align:justify}.customformtextbox ul{list-style:circle!important;margin:3px 0}.customformtextbox li{margin:0!important}.customformtextbox textarea{margin-top:5px;font-size:medium;padding:0}.customformradiorow{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.customformrow input[type=\"checkbox\"]{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOff.png)no-repeat;-webkit-appearance:none;border:0;margin:4px 4px 0 0}.customformrow input[type=\"checkbox\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOn.png)no-repeat;}.customformradiorow input[type=\"radio\"]{-webkit-appearance:none;border:0;width:100%;height: 43px;z-index:2;position:absolute;left:50%;margin:0;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOff.png) no-repeat;-webkit-border-radius:0}.customformradiorow input[type=\"radio\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOn.png) no-repeat;}.customformradiorow .customformradiorowinput {height: 40px;}.customformradiorow label{position: absolute;margin-top: 6px;margin-left:60%;text-overflow: ellipsis;}.customformradiorowbelow{position:relative;overflow:hidden;padding:5px 9px}.customformradiorowbelowlabel{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.customformradiorowbelowlabel .customformlabel{left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;padding-left:5px;overflow:hidden}.customformradiorowbelow input[type=\"radio\"]{-webkit-appearance:none;border:0;width:100%;height: 43px;z-index:2;position:absolute;left:10px;margin:0;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOff.png) no-repeat;-webkit-border-radius:0}.customformradiorowbelow input[type=\"radio\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOn.png) no-repeat;}.customformradiorowbelow .customformradiorowinputbelow {height: 40px;}span.customformlabelfull{font-weight:bold;font-size:17px;}.customformradiorowbelow label{position: absolute;margin-top: 6px;margin-left:45px;text-overflow: ellipsis;}li.customformrowbelow select{width:100%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.customformrowcheckboxright{position:relative;overflow:hidden;border-top:1px solid #878787;height: 40px;padding:5px 9px}.customformrowcheckboxright .customformlabel {left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;line-height:44px;overflow:hidden}.customformrowcheckboxright input[type=\"checkbox\"]{position: absolute;height: 40px;width: 35px;right:0;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOff.png)no-repeat;-webkit-appearance:none;border:0;margin:4px 4px 0 0}.customformrowcheckboxright input[type=\"checkbox\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOn.png) no-repeat;}.customformrowcheckboxleft{position:relative;overflow:hidden;border-top:1px solid #878787;height: 40px;padding:5px 9px}.customformrowcheckboxleft .customformlabel {margin-left:40px;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;line-height:44px;overflow:hidden}.customformrowcheckboxleft input[type=\"checkbox\"]{position: absolute;height: 40px;width: 35px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOff.png)no-repeat;-webkit-appearance:none;border:0;margin:4px 4px 0 0}.customformrowcheckboxleft input[type=\"checkbox\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOn.png) no-repeat;} .directions {background:#FF0800;color:#000000;border-color:#FF0800;border-width:1px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.directions .button input {background:#FCFC0F;color:#000000;}.clear {clear: both;}.ezmbphone {margin-left: auto;margin-right: auto;text-align: center;}.ezmbphoneimg {margin-left: auto;margin-right: auto;text-align: center;}.phonebtnimg {margin-left: auto;margin-right: auto;text-align: center;}.phonebtn, .phonebtn:visited {background:#FFFFFF;color:#F50000;border-color:#0831FF;border-width:px;border-style:Solid;display: inline-block; padding: 5px 10px 6px; text-decoration: none;border-radius: 10px;position: relative;cursor: pointer;font-weight:bold;}.ezmbfooter {Background:#000000;margin:0;}.ezmbfooter p {margin:0;}.textbox{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.searchbox{height:44px;background:-webkit-gradient(linear,0% 0%,0% 100%,from(#f1f3f4),color-stop(3%,#e0e4e7),color-stop(50%,#c7cfd4),color-stop(51%,#bec7cd),color-stop(97%,#b4bec6),to(#8999a5));width:100%;margin:-13px 0 13px}.searchbox form{height:24px;border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/searchfield.png) 4 14 1 24;display:block;position:relative;top:8px;border-width:4px 14px 1px 24px;margin:auto}fieldset{border:0;margin:0;padding:0}.searchbox input[type=\"text\"]{border:0;-webkit-appearance:none;height:18px;float:left;font-size:13px;position:relative;top:2px;left:2px;padding:0}.textbox img{max-width:100%}.textbox p{margin-top:2px;color:#000;margin-bottom:2px;text-align:justify}.textbox ul{list-style:circle!important;margin:3px 0}.textbox li{margin:0!important}.menulist li:first-child,.menulist li.form:first-child{border-top:0}.menu,.checkbox,.radiobutton,.select,li.button,li.bigfield,li.smallfield,li.searchsmallfield,li.optinsmallfield,li.contactsmallfield,li.mapsmallfield{position:relative;list-style-type:none;display:block;height:43px;overflow:hidden;border-top:1px solid #878787;border-top:1px solid #878787;width:auto}.menulist li:first-child:hover,.menulist li:first-child a,.radiobutton:first-child input,.select:first-child select,li.button:first-child input,.bigfield:first-child input{border-top-left-radius:8px;border-top-right-radius:8px}.menulist li:last-child:hover,.menulist li:last-child a,.radiobutton:last-child input,.select:last-child select,li.button:last-child input,.bigfield:last-child input{border-bottom-left-radius:8px;border-bottom-right-radius:8px}.menu:hover,.store:hover,.list #content li a:hover,.list .withimage:hover,.applist li:hover:nth-child(n),.ipodlist li:hover:nth-child(n){background:#015FE6;color:#FFFFFF;}.menu a:hover .comment{color:#FFFFFF;}.menu a{display:block;height:43px;width:auto;text-decoration:none}.menu a img{width:auto;height:32px;float:left;margin:5px 0 0 5px}.menu .name,.checkbox .name,.radiobutton .name{width:auto;font-weight:bold;font-size:17px;color:#000000;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;float:left;margin:11px 0 0 7px}.menu-item{position:relative;list-style-type:none;display:block;height:43px;overflow:hidden;border-top:1px solid #878787;border-top:1px solid #878787;width:auto}.menu-item a{display:block;height:43px;width:auto;text-decoration:none}.menu-item a img{width:auto;height:32px;float:left;margin:5px 0 0 5px}.menu-item .name,.checkbox .name,.radiobutton .name{width:auto;font-weight:bold;font-size:17px;color:#000000;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;float:left;margin:11px 0 0 7px}.menu-item:hover{background:#015FE6;color:#FFFFFF;}.menu-item a:hover .comment{color:#FFFFFF;}.menu-item .comment{width:auto;font-size:17px;text-overflow:ellipsis;overflow:hidden;max-width:75%;white-space:nowrap;float:right;color:#324f85;margin:11px 30px 0 0}.menu-item .arrow{position:absolute;width:24px!important;height:24px!important;right:10px;top:12px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/arrows/LightBigArrow_Transparent.png) 0 0 no-repeat;margin:0!important}.menu-item .arrowleft{float:left;width:24px!important;height:24px!important;left:10px;top:12px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/arrows/LightBigArrow_Transparent.png) 0 0 no-repeat;margin:0!important}.menu-item a:hover .name{color:#FFFFFF;}.menu .comment{width:auto;font-size:17px;text-overflow:ellipsis;overflow:hidden;max-width:75%;white-space:nowrap;float:right;color:#324f85;margin:11px 30px 0 0}.menu .arrow,.store .arrow,.musiclist .arrow,.list .arrow{position:absolute;width:24px!important;height:24px!important;right:10px;top:12px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/arrows/LightBigArrow_Transparent.png) 0 0 no-repeat;margin:0!important}.menu .arrowleft,.store .arrowleft,.musiclist .arrowleft,.list .arrowleft{float:left;width:24px!important;height:24px!important;left:10px;top:12px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/arrows/LightBigArrow_Transparent.png) 0 0 no-repeat;margin:0!important}#leftnav,#leftbutton{position:absolute;font-size:12px;left:9px;font-weight:bold}#leftnav,#leftbutton,#rightnav,#rightbutton{z-index:5000}#leftnav a,#rightnav a,#leftbutton a,#rightbutton a{display:block;color:#fff;text-shadow:rgba(0,0,0,0.6) 0 -1px 0;text-decoration:none}.black #leftnav a:first-child,.transparent #leftnav a:first-child{border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleftblack.png) 0 5 0 13-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleftblack.png) 0 5 0 13-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleftblack.png) 0 5 0 13-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleftblack.png) 0 5 0 13}.black #leftnav a,.transparent #leftnav a{border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleftblack.png) 0 5 0 13-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleftblack.png) 0 5 0 13-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleftblack.png) 0 5 0 13-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleftblack.png) 0 5 0 13}.black #rightnav a:first-child,.transparent #rightnav a:first-child{-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navrightblack.png) 0 13 0 5-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navrightblack.png) 0 13 0 5-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navrightblack.png) 0 13 0 5-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navrightblack.png) 0 13 0 5}.black #rightnav a,.transparent #rightnav a{-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkrightblack.png) 0 13 0 5-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkrightblack.png) 0 13 0 5-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkrightblack.png) 0 13 0 5-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkrightblack.png) 0 13 0 5}.black #leftbutton a,.black #rightbutton a,.transparent #leftbutton a,.transparent #rightbutton a{border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbuttonblack.png) 0 5 0 5-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbuttonblack.png) 0 5 0 5-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbuttonblack.png) 0 5 0 5-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbuttonblack.png) 0 5 0 5}#leftnav a:first-child{z-index:2;border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleft_std.png) 0 5 0 13;-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleft_std.png) 0 5 0 13;-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleft_std.png) 0 5 0 13;-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleft_std.png) 0 5 0 13;width:auto;border-width:0 5px 0 13px;border-radius:16px 6px 6px 16px}#leftnav a{border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleft.png) 0 5 0 13;-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleft.png) 0 5 0 13;-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleft.png) 0 5 0 13;-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleft.png) 0 5 0 13;z-index:3;margin-left:-4px;padding-right:4px;float:left;border-width:0 5px 0 13px;border-radius:16px 6px 6px 16px}#rightnav,#rightbutton{position:absolute;font-size:12px;right:9px;font-weight:bold}#rightnav a{border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkright.png) 0 13 0 5;-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkright.png) 0 13 0 5;-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkright.png) 0 13 0 5;-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkright.png) 0 13 0 5;z-index:3;margin-right:-4px;padding-left:4px;float:right;border-width:0 13px 0 5px;border-radius:6px 16px 16px 6px}#rightnav a:first-child{z-index:2;border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navright_std.png) 0 13 0 5;-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navright_std.png) 0 13 0 5;-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navright_std.png) 0 13 0 5;-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navright_std.png) 0 13 0 5;border-width:0 13px 0 5px;border-radius:6px 16px 16px 6px}#leftbutton a,#rightbutton a{border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbutton_std.png) 0 5 0 5;-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbutton_std.png) 0 5 0 5;-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbutton_std.png) 0 5 0 5;-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbutton_std.png) 0 5 0 5;border-width:0 5px;border-radius:6px}.gform_body ul { list-style-type: none; }.radiobutton .name{z-index:1}.select select{color:#000;font-weight:bold;font-size:17px;border-radius:0}.select option{max-width:90%}.select .arrow{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/arrow.png);width:8px;height:13px;display:block;-webkit-transform:rotate(90deg);position:absolute;right:10px;top:18px}.button input{width:100%;height:100%;-webkit-appearance:none;border:0;font-weight:bold;font-size:17px;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;background:none;border-radius:0}.textbox textarea{margin-top:5px;font-size:medium;padding:0}.bigfield input{-webkit-appearance:none;border:0;height:100%;background:transparent;font-weight:bold;font-size:17px;padding:0 0 0 5px;border-radius:0}.smallfield .name{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;line-height:44px;font-size:17px;padding-left:5px;overflow:hidden}.smallfield input{width:50%;position:absolute;right:0;height:44px;-webkit-appearance:none;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.smallfield:first-child input{border-top-right-radius:8px}.smallfield:last-child input{border-bottom-right-radius:8px}.searchsmallfield .name{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;line-height:44px;font-size:17px;padding-left:5px;overflow:hidden}.searchsmallfield input{width:50%;position:absolute;right:0;height:44px;-webkit-appearance:none;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.searchsmallfield:first-child input{border-top-right-radius:8px}.searchsmallfield:last-child input{border-bottom-right-radius:8px}.optinsmallfield .name{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;line-height:44px;font-size:17px;padding-left:5px;overflow:hidden}.optinsmallfield input{width:50%;position:absolute;right:0;height:44px;-webkit-appearance:none;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.optinsmallfield:first-child input{border-top-right-radius:8px}.optinsmallfield:last-child input{border-bottom-right-radius:8px}.contactsmallfield .name{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;line-height:44px;font-size:17px;padding-left:5px;overflow:hidden}.contactsmallfield input{width:50%;position:absolute;right:0;height:44px;-webkit-appearance:none;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.contactsmallfield:first-child input{border-top-right-radius:8px}.contactsmallfield:last-child input{border-bottom-right-radius:8px}.mapsmallfield .name{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;line-height:44px;font-size:17px;padding-left:5px;overflow:hidden}.mapsmallfield input{width:50%;position:absolute;right:0;height:44px;-webkit-appearance:none;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.mapsmallfield:first-child input{border-top-right-radius:8px}.mapsmallfield:last-child input{border-bottom-right-radius:8px}img,#duobutton a:last-child,#duoselectionbuttons a:first-child,.ipodlist li:hover:nth-child(n) .name,.ipodlist li:hover:nth-child(n) .time{border:0}#triselectionbuttons a:hover,#triselectionbuttons a#pressed,#duoselectionbuttons a:hover,#duoselectionbuttons a#pressed,li#doublead:hover{background:none}.menu a:hover .name,.store:hover .starcomment,.store:hover .name,.store:hover .comment,.list .withimage a:hover .comment,.list #content li a:hover{color:#FFFFFF;}@media screen and (max-width:320px) {#topbar{height:44px}#logo{max-width:320px;width:100%;}#title{line-height:44px;height:44px;font-size:16pt;}.searchbox form{width:272px}.searchbox input[type=\"text\"]{width:275px}.menu .name{max-width:77%}#leftnav a,#rightnav a,#leftbutton a,#rightbutton a{line-height:30px;height:30px}#leftnav img,#rightnav img{margin-top:4px}.textbox textarea{width:85%;}.customformtextbox textarea{width:85%;}.bigfield input{width:295px}.checkbox .name,.radiobutton .name{max-width:190px}#leftnav,#leftbutton,#rightnav,#rightbutton{top:7px}}@media screen and (min-width:321px) {#topbar{height:32px}#title{line-height:32px;height:32px;font-size:13pt}.menu .name{max-width:85%}#leftnav a,#rightnav a,#leftbutton a,#rightbutton a{line-height:24px;height:24px}#leftnav img,#rightnav img{margin-top:4px;height:70%}.textbox textarea{width:85%;}.customformtextbox textarea{width:85%;}#doublead{width:350px!important}.searchbox form{width:432px}.searchbox input[type=\"text\"]{width:435px}.bigfield input{width:455px}.checkbox .name,.radiobutton .name{max-width:75%}#leftnav,#leftbutton,#rightnav,#rightbutton{top:4px}}</style>");
INSERT INTO `wp_postmeta` VALUES("3301", "170", "_WPMSGOPTION_ThemeCustomFormStyleCSS", "<style  type=\"text/css\" >.customform {background:#FF0800;color:#000000;border-color:#FF0800;border-width:1px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.customform .button input {background:#FCFC0F;color:#FFFFFF;}li.customformrow{position:relative;list-style-type:none;display:block;height:43px;overflow:hidden;border-top:1px solid #878787;border-top:1px solid #878787;width:auto}li.customformrowbelow{position:relative;list-style-type:none;display:block;height:43px;overflow:hidden;width:auto}p.customformrow{-webkit-margin-before: 0px;border-top:1px solid #878787;width:auto}.customformrow .customformlabel, .customformrow .customformlabelfull, .customformtextbox .customformlabel, .customformradiorow .customformlabel{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;padding-left:5px;overflow:hidden}.customformrow .customformlabel{line-height:44px;}.customformrow .customformlabelfull{line-height:44px;width:100%;height:auto;}.customformrow input {width:50%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.customformrowbelow input {width:100%;min-width:95%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}input.customformrowrequired{background: #ff8080;}.customformrow input:not([type=\'checkbox\']) {-webkit-appearance:none;}.customformrow select{width:50%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.customformrow:first-child input{border-top-right-radius:8px}.customformrow:last-child input{border-bottom-right-radius:8px}.customformtextbox{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.customformtextbox img{max-width:100%}.customformtextbox p{margin-top:2px;color:#000;margin-bottom:2px;text-align:justify}.customformtextbox ul{list-style:circle!important;margin:3px 0}.customformtextbox li{margin:0!important}.customformtextbox textarea{margin-top:5px;font-size:medium;padding:0}.customformradiorow{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.customformrow input[type=\"checkbox\"]{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOff.png)no-repeat;-webkit-appearance:none;border:0;margin:4px 4px 0 0}.customformrow input[type=\"checkbox\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOn.png)no-repeat;}.customformradiorow input[type=\"radio\"]{-webkit-appearance:none;border:0;width:100%;height: 43px;z-index:2;position:absolute;left:50%;margin:0;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOff.png) no-repeat;-webkit-border-radius:0}.customformradiorow input[type=\"radio\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOn.png) no-repeat;}.customformradiorow .customformradiorowinput {height: 40px;}.customformradiorow label{position: absolute;margin-top: 6px;margin-left:60%;text-overflow: ellipsis;}.customformradiorowbelow{position:relative;overflow:hidden;padding:5px 9px}.customformradiorowbelowlabel{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.customformradiorowbelowlabel .customformlabel{left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;padding-left:5px;overflow:hidden}.customformradiorowbelow input[type=\"radio\"]{-webkit-appearance:none;border:0;width:100%;height: 43px;z-index:2;position:absolute;left:10px;margin:0;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOff.png) no-repeat;-webkit-border-radius:0}.customformradiorowbelow input[type=\"radio\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOn.png) no-repeat;}.customformradiorowbelow .customformradiorowinputbelow {height: 40px;}span.customformlabelfull{font-weight:bold;font-size:17px;}.customformradiorowbelow label{position: absolute;margin-top: 6px;margin-left:45px;text-overflow: ellipsis;}li.customformrowbelow select{width:100%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.customformrowcheckboxright{position:relative;overflow:hidden;border-top:1px solid #878787;height: 40px;padding:5px 9px}.customformrowcheckboxright .customformlabel {left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;line-height:44px;overflow:hidden}.customformrowcheckboxright input[type=\"checkbox\"]{position: absolute;height: 40px;width: 35px;right:0;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOff.png)no-repeat;-webkit-appearance:none;border:0;margin:4px 4px 0 0}.customformrowcheckboxright input[type=\"checkbox\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOn.png) no-repeat;}.customformrowcheckboxleft{position:relative;overflow:hidden;border-top:1px solid #878787;height: 40px;padding:5px 9px}.customformrowcheckboxleft .customformlabel {margin-left:40px;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;line-height:44px;overflow:hidden}.customformrowcheckboxleft input[type=\"checkbox\"]{position: absolute;height: 40px;width: 35px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOff.png)no-repeat;-webkit-appearance:none;border:0;margin:4px 4px 0 0}.customformrowcheckboxleft input[type=\"checkbox\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOn.png) no-repeat;}</style>");
INSERT INTO `wp_postmeta` VALUES("3302", "170", "_edit_lock", "1361588144:1");
INSERT INTO `wp_postmeta` VALUES("3303", "170", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("3304", "170", "_WPMREDOPTION_RedirectURL", "");
INSERT INTO `wp_postmeta` VALUES("3305", "170", "_WPMREDOPTION_RedirectNever", "");
INSERT INTO `wp_postmeta` VALUES("3306", "170", "_WPMSGOPTION_LogoBackgroundStyle", "Color");
INSERT INTO `wp_postmeta` VALUES("3307", "170", "_WPMSGOPTION_FooterBackgroundStyle", "Color");
INSERT INTO `wp_postmeta` VALUES("3308", "170", "_WPMSGOPTION_PageMinimumHeight", "");
INSERT INTO `wp_postmeta` VALUES("3309", "170", "_WPMSGOPTION_PageMaxWidth", "");
INSERT INTO `wp_postmeta` VALUES("3310", "170", "_WPMSGOPTION_TopbarTextSize", "");
INSERT INTO `wp_postmeta` VALUES("3311", "170", "_WPMSGOPTION_MenuDescriptionTextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("3312", "171", "_wp_attached_file", "2013/02/Graphic10.jpg");
INSERT INTO `wp_postmeta` VALUES("3313", "171", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"767\";s:6:\"height\";s:3:\"480\";s:14:\"hwstring_small\";s:23:\"height=\'80\' width=\'128\'\";s:4:\"file\";s:21:\"2013/02/Graphic10.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:21:\"Graphic10-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:21:\"Graphic10-300x187.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"187\";}s:15:\"ezgallery-thumb\";a:3:{s:4:\"file\";s:21:\"Graphic10-125x125.jpg\";s:5:\"width\";s:3:\"125\";s:6:\"height\";s:3:\"125\";}s:21:\"single-post-thumbnail\";a:3:{s:4:\"file\";s:19:\"Graphic10-75x46.jpg\";s:5:\"width\";s:2:\"75\";s:6:\"height\";s:2:\"46\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("3314", "120", "_edit_lock", "1361611680:1");
INSERT INTO `wp_postmeta` VALUES("3315", "172", "_wp_attached_file", "2013/02/KeyHeader10.png");
INSERT INTO `wp_postmeta` VALUES("3316", "172", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"939\";s:6:\"height\";s:3:\"401\";s:14:\"hwstring_small\";s:23:\"height=\'54\' width=\'128\'\";s:4:\"file\";s:23:\"2013/02/KeyHeader10.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:23:\"KeyHeader10-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:23:\"KeyHeader10-300x128.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"128\";}s:15:\"ezgallery-thumb\";a:3:{s:4:\"file\";s:23:\"KeyHeader10-125x125.png\";s:5:\"width\";s:3:\"125\";s:6:\"height\";s:3:\"125\";}s:21:\"single-post-thumbnail\";a:3:{s:4:\"file\";s:21:\"KeyHeader10-75x32.png\";s:5:\"width\";s:2:\"75\";s:6:\"height\";s:2:\"32\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("3317", "173", "_wp_attached_file", "2013/02/KeyHeader12.png");
INSERT INTO `wp_postmeta` VALUES("3318", "173", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"939\";s:6:\"height\";s:3:\"401\";s:14:\"hwstring_small\";s:23:\"height=\'54\' width=\'128\'\";s:4:\"file\";s:23:\"2013/02/KeyHeader12.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:23:\"KeyHeader12-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:23:\"KeyHeader12-300x128.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"128\";}s:15:\"ezgallery-thumb\";a:3:{s:4:\"file\";s:23:\"KeyHeader12-125x125.png\";s:5:\"width\";s:3:\"125\";s:6:\"height\";s:3:\"125\";}s:21:\"single-post-thumbnail\";a:3:{s:4:\"file\";s:21:\"KeyHeader12-75x32.png\";s:5:\"width\";s:2:\"75\";s:6:\"height\";s:2:\"32\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("3319", "174", "_wp_attached_file", "2013/02/KeyHeader13.png");
INSERT INTO `wp_postmeta` VALUES("3320", "174", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"939\";s:6:\"height\";s:3:\"401\";s:14:\"hwstring_small\";s:23:\"height=\'54\' width=\'128\'\";s:4:\"file\";s:23:\"2013/02/KeyHeader13.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:23:\"KeyHeader13-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:23:\"KeyHeader13-300x128.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"128\";}s:15:\"ezgallery-thumb\";a:3:{s:4:\"file\";s:23:\"KeyHeader13-125x125.png\";s:5:\"width\";s:3:\"125\";s:6:\"height\";s:3:\"125\";}s:21:\"single-post-thumbnail\";a:3:{s:4:\"file\";s:21:\"KeyHeader13-75x32.png\";s:5:\"width\";s:2:\"75\";s:6:\"height\";s:2:\"32\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("3321", "175", "_wp_attached_file", "2013/02/KeyHeader121.png");
INSERT INTO `wp_postmeta` VALUES("3322", "175", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"939\";s:6:\"height\";s:3:\"401\";s:14:\"hwstring_small\";s:23:\"height=\'54\' width=\'128\'\";s:4:\"file\";s:24:\"2013/02/KeyHeader121.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:24:\"KeyHeader121-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:24:\"KeyHeader121-300x128.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"128\";}s:15:\"ezgallery-thumb\";a:3:{s:4:\"file\";s:24:\"KeyHeader121-125x125.png\";s:5:\"width\";s:3:\"125\";s:6:\"height\";s:3:\"125\";}s:21:\"single-post-thumbnail\";a:3:{s:4:\"file\";s:22:\"KeyHeader121-75x32.png\";s:5:\"width\";s:2:\"75\";s:6:\"height\";s:2:\"32\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("5788", "181", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"220\";s:6:\"height\";s:3:\"200\";s:14:\"hwstring_small\";s:23:\"height=\'96\' width=\'105\'\";s:4:\"file\";s:60:\"2013/03/lockout-services-westwood-nj-a-locksmith-callout.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:60:\"lockout-services-westwood-nj-a-locksmith-callout-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:15:\"ezgallery-thumb\";a:3:{s:4:\"file\";s:60:\"lockout-services-westwood-nj-a-locksmith-callout-125x125.jpg\";s:5:\"width\";s:3:\"125\";s:6:\"height\";s:3:\"125\";}s:21:\"single-post-thumbnail\";a:3:{s:4:\"file\";s:58:\"lockout-services-westwood-nj-a-locksmith-callout-75x68.jpg\";s:5:\"width\";s:2:\"75\";s:6:\"height\";s:2:\"68\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("3325", "120", "_WPMSGOPTION_PageBackgroundColor", "ADDEFF");
INSERT INTO `wp_postmeta` VALUES("3326", "120", "_WPMSGOPTION_LogoBackgroundColor", "1994FF");
INSERT INTO `wp_postmeta` VALUES("3327", "120", "_WPMSGOPTION_FooterBackgroundColor", "1994FF");
INSERT INTO `wp_postmeta` VALUES("3328", "120", "_WPMSGOPTION_ParagraphTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("3329", "120", "_WPMSGOPTION_ParagraphTextSize", "");
INSERT INTO `wp_postmeta` VALUES("3330", "120", "_WPMSGOPTION_BackgroundImage", "");
INSERT INTO `wp_postmeta` VALUES("3331", "120", "_WPMSGOPTION_BackgroundImageRepeat", "");
INSERT INTO `wp_postmeta` VALUES("3332", "120", "_WPMSGOPTION_BackgroundImagePosition", "");
INSERT INTO `wp_postmeta` VALUES("3333", "120", "_WPMSGOPTION_TopbarStartColor", "202020");
INSERT INTO `wp_postmeta` VALUES("3334", "120", "_WPMSGOPTION_TopbarEndColor", "858585");
INSERT INTO `wp_postmeta` VALUES("3335", "120", "_WPMSGOPTION_TopbarTextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("3336", "120", "_WPMSGOPTION_TopbarButtonColor", "std");
INSERT INTO `wp_postmeta` VALUES("3337", "120", "_WPMSGOPTION_H1TextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("3338", "120", "_WPMSGOPTION_H1TextSize", "");
INSERT INTO `wp_postmeta` VALUES("3339", "120", "_WPMSGOPTION_H1TextShadow", "");
INSERT INTO `wp_postmeta` VALUES("3340", "120", "_WPMSGOPTION_H2TextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("3341", "120", "_WPMSGOPTION_H2TextSize", "");
INSERT INTO `wp_postmeta` VALUES("3342", "120", "_WPMSGOPTION_H2TextShadow", "");
INSERT INTO `wp_postmeta` VALUES("3343", "120", "_WPMSGOPTION_H3TextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("3344", "120", "_WPMSGOPTION_H3TextSize", "");
INSERT INTO `wp_postmeta` VALUES("3345", "120", "_WPMSGOPTION_H3TextShadow", "");
INSERT INTO `wp_postmeta` VALUES("3346", "120", "_WPMSGOPTION_H4TextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("3347", "120", "_WPMSGOPTION_H4TextSize", "");
INSERT INTO `wp_postmeta` VALUES("3348", "120", "_WPMSGOPTION_H4TextShadow", "");
INSERT INTO `wp_postmeta` VALUES("3349", "120", "_WPMSGOPTION_H5TextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("3350", "120", "_WPMSGOPTION_H5TextSize", "");
INSERT INTO `wp_postmeta` VALUES("3351", "120", "_WPMSGOPTION_H5TextShadow", "");
INSERT INTO `wp_postmeta` VALUES("3352", "120", "_WPMSGOPTION_H6TextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("3353", "120", "_WPMSGOPTION_H6TextSize", "");
INSERT INTO `wp_postmeta` VALUES("3354", "120", "_WPMSGOPTION_H6TextShadow", "");
INSERT INTO `wp_postmeta` VALUES("3355", "120", "_WPMSGOPTION_MenuBackgroundColor", "1994FF");
INSERT INTO `wp_postmeta` VALUES("3356", "120", "_WPMSGOPTION_IconTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("3357", "120", "_WPMSGOPTION_MenuTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("3358", "120", "_WPMSGOPTION_MenuTextSize", "");
INSERT INTO `wp_postmeta` VALUES("3359", "120", "_WPMSGOPTION_MenuBorderColor", "0505FF");
INSERT INTO `wp_postmeta` VALUES("3360", "120", "_WPMSGOPTION_MenuBorderWidth", "2");
INSERT INTO `wp_postmeta` VALUES("3361", "120", "_WPMSGOPTION_MenuBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("3362", "120", "_WPMSGOPTION_MenuOpacity", "1");
INSERT INTO `wp_postmeta` VALUES("3363", "120", "_WPMSGOPTION_MenuArrowImage", "LightBigArrow");
INSERT INTO `wp_postmeta` VALUES("3364", "120", "_WPMSGOPTION_MenuArrowColor", "Transparent");
INSERT INTO `wp_postmeta` VALUES("3365", "120", "_WPMSGOPTION_MenuSelectedBackgroundColor", "015FE6");
INSERT INTO `wp_postmeta` VALUES("3366", "120", "_WPMSGOPTION_MenuSelectedTextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("3367", "120", "_WPMSGOPTION_MenuSeparatorColor", "878787");
INSERT INTO `wp_postmeta` VALUES("3368", "120", "_WPMSGOPTION_BlockquoteBackgroundColor", "DEE9FF");
INSERT INTO `wp_postmeta` VALUES("3369", "120", "_WPMSGOPTION_BlockquoteTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("3370", "120", "_WPMSGOPTION_BlockquoteTextSize", "");
INSERT INTO `wp_postmeta` VALUES("3371", "120", "_WPMSGOPTION_BlockquoteBorderColor", "1994FF");
INSERT INTO `wp_postmeta` VALUES("3372", "120", "_WPMSGOPTION_BlockquoteBorderWidth", "2");
INSERT INTO `wp_postmeta` VALUES("3373", "120", "_WPMSGOPTION_BlockquoteBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("3374", "120", "_WPMSGOPTION_TableBackgroundColor", "DEE9FF");
INSERT INTO `wp_postmeta` VALUES("3375", "120", "_WPMSGOPTION_TableTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("3376", "120", "_WPMSGOPTION_TableTextSize", "");
INSERT INTO `wp_postmeta` VALUES("3377", "120", "_WPMSGOPTION_TableBorderColor", "1994FF");
INSERT INTO `wp_postmeta` VALUES("3378", "120", "_WPMSGOPTION_TableBorderWidth", "1");
INSERT INTO `wp_postmeta` VALUES("3379", "120", "_WPMSGOPTION_TableBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("3380", "120", "_WPMSGOPTION_TableWidth", "95");
INSERT INTO `wp_postmeta` VALUES("3381", "120", "_WPMSGOPTION_TablePadding", "2");
INSERT INTO `wp_postmeta` VALUES("3382", "120", "_WPMSGOPTION_ClickToCallBackgroundColor", "04BF04");
INSERT INTO `wp_postmeta` VALUES("3383", "120", "_WPMSGOPTION_ClickToCallTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("3384", "120", "_WPMSGOPTION_ClickToCallTextSize", "");
INSERT INTO `wp_postmeta` VALUES("3385", "120", "_WPMSGOPTION_ClickToCallBorderColor", "04BF04");
INSERT INTO `wp_postmeta` VALUES("3386", "120", "_WPMSGOPTION_ClickToCallBorderWidth", "");
INSERT INTO `wp_postmeta` VALUES("3387", "120", "_WPMSGOPTION_ClickToCallBorderStyle", "None");
INSERT INTO `wp_postmeta` VALUES("3388", "120", "_WPMSGOPTION_OptinFormBackgroundColor", "DEE9FF");
INSERT INTO `wp_postmeta` VALUES("3389", "120", "_WPMSGOPTION_OptinFormInputBackgroundColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("3390", "120", "_WPMSGOPTION_OptinFormSubmitBackgroundColor", "1994FF");
INSERT INTO `wp_postmeta` VALUES("3391", "120", "_WPMSGOPTION_OptinFormSubmitTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("3392", "120", "_WPMSGOPTION_OptinFormTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("3393", "120", "_WPMSGOPTION_OptinFormTextSize", "");
INSERT INTO `wp_postmeta` VALUES("3394", "120", "_WPMSGOPTION_OptinFormBorderColor", "1994FF");
INSERT INTO `wp_postmeta` VALUES("3395", "120", "_WPMSGOPTION_OptinFormBorderWidth", "2");
INSERT INTO `wp_postmeta` VALUES("3396", "120", "_WPMSGOPTION_OptinFormBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("3397", "120", "_WPMSGOPTION_ContactFormBackgroundColor", "DEE9FF");
INSERT INTO `wp_postmeta` VALUES("3398", "120", "_WPMSGOPTION_ContactFormInputBackgroundColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("3399", "120", "_WPMSGOPTION_ContactFormSubmitBackgroundColor", "1994FF");
INSERT INTO `wp_postmeta` VALUES("3400", "120", "_WPMSGOPTION_ContactFormSubmitTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("3401", "120", "_WPMSGOPTION_ContactFormTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("3402", "120", "_WPMSGOPTION_ContactFormTextSize", "");
INSERT INTO `wp_postmeta` VALUES("3403", "120", "_WPMSGOPTION_ContactFormBorderColor", "1994FF");
INSERT INTO `wp_postmeta` VALUES("3404", "120", "_WPMSGOPTION_ContactFormBorderWidth", "2");
INSERT INTO `wp_postmeta` VALUES("3405", "120", "_WPMSGOPTION_ContactFormBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("3406", "120", "_WPMSGOPTION_DirectionsBackgroundColor", "DEE9FF");
INSERT INTO `wp_postmeta` VALUES("3407", "120", "_WPMSGOPTION_DirectionsInputBackgroundColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("3408", "120", "_WPMSGOPTION_DirectionsSubmitBackgroundColor", "1994FF");
INSERT INTO `wp_postmeta` VALUES("3409", "120", "_WPMSGOPTION_DirectionsSubmitTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("3410", "120", "_WPMSGOPTION_DirectionsTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("3411", "120", "_WPMSGOPTION_DirectionsTextSize", "");
INSERT INTO `wp_postmeta` VALUES("3412", "120", "_WPMSGOPTION_DirectionsBorderColor", "1994FF");
INSERT INTO `wp_postmeta` VALUES("3413", "120", "_WPMSGOPTION_DirectionsBorderWidth", "2");
INSERT INTO `wp_postmeta` VALUES("3414", "120", "_WPMSGOPTION_DirectionsBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("3415", "120", "_WPMSGOPTION_SlideshowBackgroundColor", "DEE9FF");
INSERT INTO `wp_postmeta` VALUES("3416", "120", "_WPMSGOPTION_SlideshowTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("3417", "120", "_WPMSGOPTION_SlideshowTextSize", "");
INSERT INTO `wp_postmeta` VALUES("3418", "120", "_WPMSGOPTION_SlideshowBorderColor", "1994FF");
INSERT INTO `wp_postmeta` VALUES("3419", "120", "_WPMSGOPTION_SlideshowBorderWidth", "");
INSERT INTO `wp_postmeta` VALUES("3420", "120", "_WPMSGOPTION_SlideshowBorderStyle", "None");
INSERT INTO `wp_postmeta` VALUES("3421", "120", "_WPMSGOPTION_AccordianTitleBackgroundColor", "1994FF");
INSERT INTO `wp_postmeta` VALUES("3422", "120", "_WPMSGOPTION_AccordianTitleTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("3423", "120", "_WPMSGOPTION_AccordianTitleTextSize", "");
INSERT INTO `wp_postmeta` VALUES("3424", "120", "_WPMSGOPTION_AccordianTitleSelectedBackgroundColor", "015FE6");
INSERT INTO `wp_postmeta` VALUES("3425", "120", "_WPMSGOPTION_AccordianTitleSelectedTextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("3426", "120", "_WPMSGOPTION_AccordianBackgroundColor", "DEE9FF");
INSERT INTO `wp_postmeta` VALUES("3427", "120", "_WPMSGOPTION_AccordianTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("3428", "120", "_WPMSGOPTION_AccordianTextSize", "");
INSERT INTO `wp_postmeta` VALUES("3429", "120", "_WPMSGOPTION_AccordianSeparatorColor", "878787");
INSERT INTO `wp_postmeta` VALUES("3430", "120", "_WPMSGOPTION_AccordianBorderColor", "0505FF");
INSERT INTO `wp_postmeta` VALUES("3431", "120", "_WPMSGOPTION_AccordianBorderWidth", "2");
INSERT INTO `wp_postmeta` VALUES("3432", "120", "_WPMSGOPTION_AccordianBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("3433", "120", "_WPMSGOPTION_AccordianArrowImage", "LightTriangle");
INSERT INTO `wp_postmeta` VALUES("3434", "120", "_WPMSGOPTION_AccordianArrowColor", "Transparent");
INSERT INTO `wp_postmeta` VALUES("3435", "120", "_WPMSGOPTION_CouponBackgroundColor", "DEE9FF");
INSERT INTO `wp_postmeta` VALUES("3436", "120", "_WPMSGOPTION_CouponTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("3437", "120", "_WPMSGOPTION_CouponTextSize", "");
INSERT INTO `wp_postmeta` VALUES("3438", "120", "_WPMSGOPTION_CouponBorderColor", "1994FF");
INSERT INTO `wp_postmeta` VALUES("3439", "120", "_WPMSGOPTION_CouponBorderWidth", "2");
INSERT INTO `wp_postmeta` VALUES("3440", "120", "_WPMSGOPTION_CouponBorderStyle", "Dashed");
INSERT INTO `wp_postmeta` VALUES("3441", "120", "_WPMSGOPTION_SearchBackgroundColor", "DEE9FF");
INSERT INTO `wp_postmeta` VALUES("3442", "120", "_WPMSGOPTION_SearchTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("3443", "120", "_WPMSGOPTION_SearchTextSize", "");
INSERT INTO `wp_postmeta` VALUES("3444", "120", "_WPMSGOPTION_SearchBorderColor", "1994FF");
INSERT INTO `wp_postmeta` VALUES("3445", "120", "_WPMSGOPTION_SearchBorderWidth", "2");
INSERT INTO `wp_postmeta` VALUES("3446", "120", "_WPMSGOPTION_SearchBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("3447", "120", "_WPMSGOPTION_SearchInputBackgroundColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("3448", "120", "_WPMSGOPTION_SearchSubmitBackgroundColor", "1994FF");
INSERT INTO `wp_postmeta` VALUES("3449", "120", "_WPMSGOPTION_SearchSubmitTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("3450", "120", "_WPMSGOPTION_SearchSelectedBackgroundColor", "015FE6");
INSERT INTO `wp_postmeta` VALUES("3451", "120", "_WPMSGOPTION_SearchSelectedTextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("3452", "120", "_WPMSGOPTION_SearchHighlightColor", "FFFF00");
INSERT INTO `wp_postmeta` VALUES("3453", "120", "_WPMSGOPTION_RssBackgroundColor", "DEE9FF");
INSERT INTO `wp_postmeta` VALUES("3454", "120", "_WPMSGOPTION_RssTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("3455", "120", "_WPMSGOPTION_RssTextSize", "");
INSERT INTO `wp_postmeta` VALUES("3456", "120", "_WPMSGOPTION_RssBorderColor", "1994FF");
INSERT INTO `wp_postmeta` VALUES("3457", "120", "_WPMSGOPTION_RssBorderWidth", "2");
INSERT INTO `wp_postmeta` VALUES("3458", "120", "_WPMSGOPTION_RssBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("3459", "120", "_WPMSGOPTION_RssSelectedBackgroundColor", "015FE6");
INSERT INTO `wp_postmeta` VALUES("3460", "120", "_WPMSGOPTION_RssSelectedTextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("3461", "120", "_WPMSGOPTION_ThemeStyleCSS", "<style  type=\"text/css\" >body{position:relative;-webkit-text-size-adjust:none;min-height:416px;{--wpmsgtknsinglepageminimumheight--}font-family:helvetica,sans-serif;-webkit-background-size:.438em 100%;Background:#ADDEFF;-webkit-touch-callout:none;margin:0;margin-right:auto; margin-left:auto;}img.alignright {float:right; max-width:100%; margin:0 0 1em 1em}img.alignleft {float:left; max-width:100%; margin:0 1em 1em 0}img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}a img.alignright {float:right; max-width:100%; margin:0 0 1em 1em}a img.alignleft {float:left; max-width:100%; margin:0 1em 1em 0}a img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}#accordion {background:#DEE9FF;border-color:#0505FF;border-width:2px;border-style:Solid;margin:5px 5px 5px 5px;border-radius:8px}#accordion H2 {padding-top: 5pxpadding-bottom: 5px; padding-left: 15px; padding-right: 15px; margin: 0px 0px 0px 0px; background:#1994FF;font-size:17px;color:#000000;cursor: pointer; height:43px;overflow:hidden;border-top:1px solid #878787;font-weight: bold; line-height: 40px;}#accordion H2:first-child{border-top:none;border-radius:8px}#accordion H2:last-child{border-bottom-left-radius:8px;border-bottom-right-radius:8px}#accordion H2.current {background-color:#015FE6; color:#FFFFFF; cursor: default}#accordion div.acchead {padding-top: 5pxpadding-bottom: 5px; padding-left: 15px; padding-right: 15px; margin: 0px 0px 0px 0px; font-weight:bold;font-size:17px;background:#1994FF;font-size:17px;color:#000000;cursor: pointer; height:43px;overflow:hidden;border-top:1px solid #878787;line-height: 40px;}#accordion div.acchead:first-child{border-top:none;border-top-left-radius:8px;border-top-right-radius:8px;}#accordion div.acchead.current {background-color:#015FE6; color:#FFFFFF; cursor: default}#accordion .pane {padding-top: 15pxpadding-bottom: 15px; padding-left: 15px; padding-right: 15px; display: none; color:#000000;border-bottom-left-radius:8px;border-bottom-right-radius:8px;}#accordion .acchead .accarrow {float: right;valign: center;width:24px!important;height:24px!important;right:10px;top:18px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/arrows/Down_LightTriangle_Transparent.png) 0 0 no-repeat;margin:0!important ;margin-top: 15px;padding-top: 15px;}.images {background:#DEE9FF;color:#000000;border-color:#1994FF;border-width:px;border-style:;{--wpmsgtknslideshowheight--}{--wpmsgtknslideshowwidth--}overflow:hidden;margin-left:auto;margin-right:auto;position:relative;cursor:pointer;-moz-border-radius:5px;-moz-box-shadow:0 0 25px #666;-webkit-border-radius:5px;-webkit-box-shadow:0 0 25px #666;border-radius:5px;box-shadow:0 0 25px #666;}.images div {display:none;position:absolute;top:0;left:0;width: 100%;}.images div p a img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}.images div p img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}.images div a img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}.images div img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}.images img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}.images h3 {font-size:22px;font-weight:normal;margin:0 0 20px 0;color:#456;}.slidetabs {clear:both;}.slidetabs a {width:8px;height:8px;float:left;margin:3px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navigator.png) 0 0 no-repeat;display:block;font-size:1px;}.slidetabs a:hover {background-position:0 -8px;}.slidetabs a.current {background-position:0 -16px; } .forward, .backward {float:left;background:#fff url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/hori_large.png) no-repeat;display:block;width:30px;height:30px;cursor:pointer;font-size:1px;text-indent:-9999em;}.forward { background-position: 0 -30px; clear:right; }.forward:hover { background-position:-30px -30px; }.forward:active{ background-position:-60px -30px; } .backward:hover{ background-position:-30px 0; }.backward:active{ background-position:-60px 0; }.disabled {visibility:hidden !important;}.gallery { list-style: none; padding: 0; margin: 0; }.gallery:after { clear: both; content: \".\"; display: block; height: 0; visibility: hidden; }.gallery li { float: left; width: 33.33333333%; }.gallery li a { display: block; margin: 5px; border: 1px solid #3c3c3c; }.gallery li img { display: block; width: 100%; height: auto; }.highlight { background:#FFFF00;}.highlight_important { background:#FFFF00;}.center{display:block;text-align:center!important;margin:auto}a:hover .arrow{background:0 -13px!important}#topbar.transparent{background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#202020), to(#858585));background-image: -webkit-linear-gradient(top, #202020, #858585);background-image:-moz-linear-gradient(top, #202020, #858585);background-image: -ms-linear-gradient(top, #202020, #858585);background-image:-o-linear-gradient(top, #202020, #858585);}#topbar{position:relative;left:0;top:0;width:auto;}#title{position:absolute;font-weight:bold;top:0;left:0;right:0;text-align:center;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;color:#FFF;color:#FFFFFF;text-shadow:rgba(0,0,0,0.6) 0 -1px 0;padding:0 10px;}#logo{Background:#ADDEFF;}#content{width:100%;position:relative;min-height:250px;{--wpmsgtknsinglepageminimumheight--}height:auto;z-index:0;overflow:hidden;{--wpmsgtknsinglepagebackgroundimage--}}p {padding:0 5px;color:#000000;}h1 {padding:0 5px;color:#000000;}h2 {padding:0 5px;color:#000000;}h3 {padding:0 5px;color:#000000;}h4 {padding:0 5px;color:#000000;}h5 {padding:0 5px;color:#000000;}h6 {padding:0 5px;color:#000000;}blockquote {background:#DEE9FF;color:#000000;border-color:#1994FF;border-width:2px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 6px 10px;padding:0 5px;border-radius:8px}blockquote p {background:#DEE9FF;color:#000000;}.ezmbfooter p {padding:0 5px;color:#000000;}.ezmbtable {width:95%;margin-left:auto;margin-right:auto;border-collapse:collapse;background:#DEE9FF;color:#000000;border-color:#1994FF;border-width:1px;border-style:Solid;}.ezmbtable td {background:#DEE9FF;color:#000000;border-color:#1994FF;border-width:1px;border-style:Solid;padding:2px;}.ezmbtable td p {background:#DEE9FF;color:#000000;}.ezmbiconlist {color:#000000;}.menulist {background:#1994FF;color:#000000;border-color:#0505FF;border-width:2px;border-style:Solid;opacity:1;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.menulist span.name{color:#000000;text-decoration:none}.menulist span.menudesc{color:#;text-decoration:none}.menulist td a{text-decoration:none}.menulist td a img{vertical-align:text-top;text-decoration:none}.menulist td{vertical-align:text-top;}.searchlist {background:#DEE9FF;color:#000000;border-color:#1994FF;border-width:2px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.searchform {background:#DEE9FF;color:#000000;border-color:#1994FF;border-width:2px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.searchform .button input {background:#1994FF;color:#000000;}.searchlist:hover,{background:-webkit-gradient(linear,0% 0%,0% 100%,from(#058cf5),to(#015fe6))}.searchlist a:hover {background-color:#CCF}.searchlist li a:hover{background:#015FE6;}.searchlist a{display:block;height:43px;width:auto;text-decoration:none}.searchlist a img{width:auto;height:32px;float:left;margin:5px 0 0 5px}.searchlist .name{width:auto;font-weight:bold;font-size:17px;color:#000000;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;float:left;margin:11px 0 0 7px}.searchlist a:hover .name{color:#FFFFFF;}.searchlistsnippet{padding-left:5px;padding-right:5px;}.rssfeedlist {background:#DEE9FF;color:#000000;border-color:#1994FF;border-width:2px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.rssfeedlist:hover{background:-webkit-gradient(linear,0% 0%,0% 100%,from(#058cf5),to(#015fe6))}.rssfeedlist a:hover {background-color:#CCF}.rssfeedlist li a:hover{background-color:#015fe6}.rssfeedlist a{display:block;min-height:43px;width:auto;text-decoration:none}.rssfeedlist a img{width:auto;height:32px;float:left;margin:5px 0 0 5px}.rssfeedlist .name{width:auto;font-weight:bold;font-size:17px;color:#000000;float:left;margin:11px 0 0 7px}.rssfeedlist a:hover .name{color:#FFFFFF;}.rssfeedlistsnippet{padding-left:5px;padding-right:5px;}.ezmbcouponwidget {background:#DEE9FF;color:#000000;border-color:#1994FF;border-width:2px;border-style:Dashed;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.optinform {background:#DEE9FF;color:#000000;border-color:#1994FF;border-width:2px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.optinform .button input {background:#1994FF;color:#000000;}.contactform {background:#DEE9FF;color:#000000;border-color:#1994FF;border-width:2px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.contactform .button input {background:#1994FF;color:#000000;}.customform {background:#DEE9FF;color:#000000;border-color:#1994FF;border-width:2px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.customform .button input {background:#1994FF;color:#000000;}li.customformrow{position:relative;list-style-type:none;display:block;height:43px;overflow:hidden;border-top:1px solid #878787;border-top:1px solid #878787;width:auto}li.customformrowbelow{position:relative;list-style-type:none;display:block;height:43px;overflow:hidden;width:auto}p.customformrow{-webkit-margin-before: 0px;border-top:1px solid #878787;width:auto}.customformrow .customformlabel, .customformrow .customformlabelfull, .customformtextbox .customformlabel, .customformradiorow .customformlabel{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;padding-left:5px;overflow:hidden}.customformrow .customformlabel{line-height:44px;}.customformrow .customformlabelfull{line-height:44px;width:100%;height:auto;}.customformrow input {width:50%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.customformrowbelow input {width:100%;min-width:95%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}input.customformrowrequired{background: #ff8080;}.customformrow input:not([type=\'checkbox\']) {-webkit-appearance:none;}.customformrow select{width:50%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.customformrow:first-child input{border-top-right-radius:8px}.customformrow:last-child input{border-bottom-right-radius:8px}.customformtextbox{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.customformtextbox img{max-width:100%}.customformtextbox p{margin-top:2px;color:#000;margin-bottom:2px;text-align:justify}.customformtextbox ul{list-style:circle!important;margin:3px 0}.customformtextbox li{margin:0!important}.customformtextbox textarea{margin-top:5px;font-size:medium;padding:0}.customformradiorow{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.customformrow input[type=\"checkbox\"]{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOff.png)no-repeat;-webkit-appearance:none;border:0;margin:4px 4px 0 0}.customformrow input[type=\"checkbox\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOn.png)no-repeat;}.customformradiorow input[type=\"radio\"]{-webkit-appearance:none;border:0;width:100%;height: 43px;z-index:2;position:absolute;left:50%;margin:0;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOff.png) no-repeat;-webkit-border-radius:0}.customformradiorow input[type=\"radio\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOn.png) no-repeat;}.customformradiorow .customformradiorowinput {height: 40px;}.customformradiorow label{position: absolute;margin-top: 6px;margin-left:60%;text-overflow: ellipsis;}.customformradiorowbelow{position:relative;overflow:hidden;padding:5px 9px}.customformradiorowbelowlabel{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.customformradiorowbelowlabel .customformlabel{left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;padding-left:5px;overflow:hidden}.customformradiorowbelow input[type=\"radio\"]{-webkit-appearance:none;border:0;width:100%;height: 43px;z-index:2;position:absolute;left:10px;margin:0;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOff.png) no-repeat;-webkit-border-radius:0}.customformradiorowbelow input[type=\"radio\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOn.png) no-repeat;}.customformradiorowbelow .customformradiorowinputbelow {height: 40px;}span.customformlabelfull{font-weight:bold;font-size:17px;}.customformradiorowbelow label{position: absolute;margin-top: 6px;margin-left:45px;text-overflow: ellipsis;}li.customformrowbelow select{width:100%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.customformrowcheckboxright{position:relative;overflow:hidden;border-top:1px solid #878787;height: 40px;padding:5px 9px}.customformrowcheckboxright .customformlabel {left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;line-height:44px;overflow:hidden}.customformrowcheckboxright input[type=\"checkbox\"]{position: absolute;height: 40px;width: 35px;right:0;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOff.png)no-repeat;-webkit-appearance:none;border:0;margin:4px 4px 0 0}.customformrowcheckboxright input[type=\"checkbox\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOn.png) no-repeat;}.customformrowcheckboxleft{position:relative;overflow:hidden;border-top:1px solid #878787;height: 40px;padding:5px 9px}.customformrowcheckboxleft .customformlabel {margin-left:40px;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;line-height:44px;overflow:hidden}.customformrowcheckboxleft input[type=\"checkbox\"]{position: absolute;height: 40px;width: 35px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOff.png)no-repeat;-webkit-appearance:none;border:0;margin:4px 4px 0 0}.customformrowcheckboxleft input[type=\"checkbox\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOn.png) no-repeat;} .directions {background:#DEE9FF;color:#000000;border-color:#1994FF;border-width:2px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.directions .button input {background:#1994FF;color:#000000;}.clear {clear: both;}.ezmbphone {margin-left: auto;margin-right: auto;text-align: center;}.ezmbphoneimg {margin-left: auto;margin-right: auto;text-align: center;}.phonebtnimg {margin-left: auto;margin-right: auto;text-align: center;}.phonebtn, .phonebtn:visited {background:#04BF04;color:#000000;border-color:#04BF04;border-width:px;border-style:None;-webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.6);text-shadow: 0 -1px 1px rgba(0,0,0,0.25);border-bottom: 1px solid rgba(0,0,0,0.25);display: inline-block; padding: 5px 10px 6px; text-decoration: none;border-radius: 10px;position: relative;cursor: pointer;font-weight:bold;}.ezmbfooter {Background:#1994FF;margin:0;}.ezmbfooter p {margin:0;}.textbox{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.searchbox{height:44px;background:-webkit-gradient(linear,0% 0%,0% 100%,from(#f1f3f4),color-stop(3%,#e0e4e7),color-stop(50%,#c7cfd4),color-stop(51%,#bec7cd),color-stop(97%,#b4bec6),to(#8999a5));width:100%;margin:-13px 0 13px}.searchbox form{height:24px;border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/searchfield.png) 4 14 1 24;display:block;position:relative;top:8px;border-width:4px 14px 1px 24px;margin:auto}fieldset{border:0;margin:0;padding:0}.searchbox input[type=\"text\"]{border:0;-webkit-appearance:none;height:18px;float:left;font-size:13px;position:relative;top:2px;left:2px;padding:0}.textbox img{max-width:100%}.textbox p{margin-top:2px;color:#000;margin-bottom:2px;text-align:justify}.textbox ul{list-style:circle!important;margin:3px 0}.textbox li{margin:0!important}.menulist li:first-child,.menulist li.form:first-child{border-top:0}.menu,.checkbox,.radiobutton,.select,li.button,li.bigfield,li.smallfield,li.searchsmallfield,li.optinsmallfield,li.contactsmallfield,li.mapsmallfield{position:relative;list-style-type:none;display:block;height:43px;overflow:hidden;border-top:1px solid #878787;border-top:1px solid #878787;width:auto}.menulist li:first-child:hover,.menulist li:first-child a,.radiobutton:first-child input,.select:first-child select,li.button:first-child input,.bigfield:first-child input{border-top-left-radius:8px;border-top-right-radius:8px}.menulist li:last-child:hover,.menulist li:last-child a,.radiobutton:last-child input,.select:last-child select,li.button:last-child input,.bigfield:last-child input{border-bottom-left-radius:8px;border-bottom-right-radius:8px}.menu:hover,.store:hover,.list #content li a:hover,.list .withimage:hover,.applist li:hover:nth-child(n),.ipodlist li:hover:nth-child(n){background:#015FE6;color:#FFFFFF;}.menu a:hover .comment{color:#FFFFFF;}.menu a{display:block;height:43px;width:auto;text-decoration:none}.menu a img{width:auto;height:32px;float:left;margin:5px 0 0 5px}.menu .name,.checkbox .name,.radiobutton .name{width:auto;font-weight:bold;font-size:17px;color:#000000;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;float:left;margin:11px 0 0 7px}.menu-item{position:relative;list-style-type:none;display:block;height:43px;overflow:hidden;border-top:1px solid #878787;border-top:1px solid #878787;width:auto}.menu-item a{display:block;height:43px;width:auto;text-decoration:none}.menu-item a img{width:auto;height:32px;float:left;margin:5px 0 0 5px}.menu-item .name,.checkbox .name,.radiobutton .name{width:auto;font-weight:bold;font-size:17px;color:#000000;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;float:left;margin:11px 0 0 7px}.menu-item:hover{background:#015FE6;color:#FFFFFF;}.menu-item a:hover .comment{color:#FFFFFF;}.menu-item .comment{width:auto;font-size:17px;text-overflow:ellipsis;overflow:hidden;max-width:75%;white-space:nowrap;float:right;color:#324f85;margin:11px 30px 0 0}.menu-item .arrow{position:absolute;width:24px!important;height:24px!important;right:10px;top:12px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/arrows/LightBigArrow_Transparent.png) 0 0 no-repeat;margin:0!important}.menu-item .arrowleft{float:left;width:24px!important;height:24px!important;left:10px;top:12px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/arrows/LightBigArrow_Transparent.png) 0 0 no-repeat;margin:0!important}.menu-item a:hover .name{color:#FFFFFF;}.menu .comment{width:auto;font-size:17px;text-overflow:ellipsis;overflow:hidden;max-width:75%;white-space:nowrap;float:right;color:#324f85;margin:11px 30px 0 0}.menu .arrow,.store .arrow,.musiclist .arrow,.list .arrow{position:absolute;width:24px!important;height:24px!important;right:10px;top:12px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/arrows/LightBigArrow_Transparent.png) 0 0 no-repeat;margin:0!important}.menu .arrowleft,.store .arrowleft,.musiclist .arrowleft,.list .arrowleft{float:left;width:24px!important;height:24px!important;left:10px;top:12px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/arrows/LightBigArrow_Transparent.png) 0 0 no-repeat;margin:0!important}#leftnav,#leftbutton{position:absolute;font-size:12px;left:9px;font-weight:bold}#leftnav,#leftbutton,#rightnav,#rightbutton{z-index:5000}#leftnav a,#rightnav a,#leftbutton a,#rightbutton a{display:block;color:#fff;text-shadow:rgba(0,0,0,0.6) 0 -1px 0;text-decoration:none}.black #leftnav a:first-child,.transparent #leftnav a:first-child{border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleftblack.png) 0 5 0 13-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleftblack.png) 0 5 0 13-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleftblack.png) 0 5 0 13-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleftblack.png) 0 5 0 13}.black #leftnav a,.transparent #leftnav a{border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleftblack.png) 0 5 0 13-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleftblack.png) 0 5 0 13-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleftblack.png) 0 5 0 13-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleftblack.png) 0 5 0 13}.black #rightnav a:first-child,.transparent #rightnav a:first-child{-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navrightblack.png) 0 13 0 5-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navrightblack.png) 0 13 0 5-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navrightblack.png) 0 13 0 5-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navrightblack.png) 0 13 0 5}.black #rightnav a,.transparent #rightnav a{-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkrightblack.png) 0 13 0 5-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkrightblack.png) 0 13 0 5-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkrightblack.png) 0 13 0 5-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkrightblack.png) 0 13 0 5}.black #leftbutton a,.black #rightbutton a,.transparent #leftbutton a,.transparent #rightbutton a{border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbuttonblack.png) 0 5 0 5-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbuttonblack.png) 0 5 0 5-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbuttonblack.png) 0 5 0 5-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbuttonblack.png) 0 5 0 5}#leftnav a:first-child{z-index:2;border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleft_std.png) 0 5 0 13;-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleft_std.png) 0 5 0 13;-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleft_std.png) 0 5 0 13;-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleft_std.png) 0 5 0 13;width:auto;border-width:0 5px 0 13px;border-radius:16px 6px 6px 16px}#leftnav a{border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleft.png) 0 5 0 13;-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleft.png) 0 5 0 13;-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleft.png) 0 5 0 13;-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleft.png) 0 5 0 13;z-index:3;margin-left:-4px;padding-right:4px;float:left;border-width:0 5px 0 13px;border-radius:16px 6px 6px 16px}#rightnav,#rightbutton{position:absolute;font-size:12px;right:9px;font-weight:bold}#rightnav a{border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkright.png) 0 13 0 5;-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkright.png) 0 13 0 5;-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkright.png) 0 13 0 5;-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkright.png) 0 13 0 5;z-index:3;margin-right:-4px;padding-left:4px;float:right;border-width:0 13px 0 5px;border-radius:6px 16px 16px 6px}#rightnav a:first-child{z-index:2;border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navright_std.png) 0 13 0 5;-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navright_std.png) 0 13 0 5;-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navright_std.png) 0 13 0 5;-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navright_std.png) 0 13 0 5;border-width:0 13px 0 5px;border-radius:6px 16px 16px 6px}#leftbutton a,#rightbutton a{border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbutton_std.png) 0 5 0 5;-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbutton_std.png) 0 5 0 5;-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbutton_std.png) 0 5 0 5;-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbutton_std.png) 0 5 0 5;border-width:0 5px;border-radius:6px}.gform_body ul { list-style-type: none; }.radiobutton .name{z-index:1}.select select{color:#000;font-weight:bold;font-size:17px;border-radius:0}.select option{max-width:90%}.select .arrow{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/arrow.png);width:8px;height:13px;display:block;-webkit-transform:rotate(90deg);position:absolute;right:10px;top:18px}.button input{width:100%;height:100%;-webkit-appearance:none;border:0;font-weight:bold;font-size:17px;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;background:none;border-radius:0}.textbox textarea{margin-top:5px;font-size:medium;padding:0}.bigfield input{-webkit-appearance:none;border:0;height:100%;background:transparent;font-weight:bold;font-size:17px;padding:0 0 0 5px;border-radius:0}.smallfield .name{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;line-height:44px;font-size:17px;padding-left:5px;overflow:hidden}.smallfield input{width:50%;position:absolute;right:0;height:44px;-webkit-appearance:none;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.smallfield:first-child input{border-top-right-radius:8px}.smallfield:last-child input{border-bottom-right-radius:8px}.searchsmallfield .name{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;line-height:44px;font-size:17px;padding-left:5px;overflow:hidden}.searchsmallfield input{width:50%;position:absolute;right:0;height:44px;-webkit-appearance:none;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.searchsmallfield:first-child input{border-top-right-radius:8px}.searchsmallfield:last-child input{border-bottom-right-radius:8px}.optinsmallfield .name{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;line-height:44px;font-size:17px;padding-left:5px;overflow:hidden}.optinsmallfield input{width:50%;position:absolute;right:0;height:44px;-webkit-appearance:none;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.optinsmallfield:first-child input{border-top-right-radius:8px}.optinsmallfield:last-child input{border-bottom-right-radius:8px}.contactsmallfield .name{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;line-height:44px;font-size:17px;padding-left:5px;overflow:hidden}.contactsmallfield input{width:50%;position:absolute;right:0;height:44px;-webkit-appearance:none;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.contactsmallfield:first-child input{border-top-right-radius:8px}.contactsmallfield:last-child input{border-bottom-right-radius:8px}.mapsmallfield .name{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;line-height:44px;font-size:17px;padding-left:5px;overflow:hidden}.mapsmallfield input{width:50%;position:absolute;right:0;height:44px;-webkit-appearance:none;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.mapsmallfield:first-child input{border-top-right-radius:8px}.mapsmallfield:last-child input{border-bottom-right-radius:8px}img,#duobutton a:last-child,#duoselectionbuttons a:first-child,.ipodlist li:hover:nth-child(n) .name,.ipodlist li:hover:nth-child(n) .time{border:0}#triselectionbuttons a:hover,#triselectionbuttons a#pressed,#duoselectionbuttons a:hover,#duoselectionbuttons a#pressed,li#doublead:hover{background:none}.menu a:hover .name,.store:hover .starcomment,.store:hover .name,.store:hover .comment,.list .withimage a:hover .comment,.list #content li a:hover{color:#FFFFFF;}@media screen and (max-width:320px) {#topbar{height:44px}#logo{max-width:320px;width:100%;}#title{line-height:44px;height:44px;font-size:16pt;}.searchbox form{width:272px}.searchbox input[type=\"text\"]{width:275px}.menu .name{max-width:77%}#leftnav a,#rightnav a,#leftbutton a,#rightbutton a{line-height:30px;height:30px}#leftnav img,#rightnav img{margin-top:4px}.textbox textarea{width:85%;}.customformtextbox textarea{width:85%;}.bigfield input{width:295px}.checkbox .name,.radiobutton .name{max-width:190px}#leftnav,#leftbutton,#rightnav,#rightbutton{top:7px}}@media screen and (min-width:321px) {#topbar{height:32px}#title{line-height:32px;height:32px;font-size:13pt}.menu .name{max-width:85%}#leftnav a,#rightnav a,#leftbutton a,#rightbutton a{line-height:24px;height:24px}#leftnav img,#rightnav img{margin-top:4px;height:70%}.textbox textarea{width:85%;}.customformtextbox textarea{width:85%;}#doublead{width:350px!important}.searchbox form{width:432px}.searchbox input[type=\"text\"]{width:435px}.bigfield input{width:455px}.checkbox .name,.radiobutton .name{max-width:75%}#leftnav,#leftbutton,#rightnav,#rightbutton{top:4px}}</style>");
INSERT INTO `wp_postmeta` VALUES("3462", "120", "_WPMSGOPTION_ThemeCustomFormStyleCSS", "<style  type=\"text/css\" >.customform {background:#DEE9FF;color:#000000;border-color:#1994FF;border-width:2px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.customform .button input {background:#1994FF;color:#000000;}li.customformrow{position:relative;list-style-type:none;display:block;height:43px;overflow:hidden;border-top:1px solid #878787;border-top:1px solid #878787;width:auto}li.customformrowbelow{position:relative;list-style-type:none;display:block;height:43px;overflow:hidden;width:auto}p.customformrow{-webkit-margin-before: 0px;border-top:1px solid #878787;width:auto}.customformrow .customformlabel, .customformrow .customformlabelfull, .customformtextbox .customformlabel, .customformradiorow .customformlabel{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;padding-left:5px;overflow:hidden}.customformrow .customformlabel{line-height:44px;}.customformrow .customformlabelfull{line-height:44px;width:100%;height:auto;}.customformrow input {width:50%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.customformrowbelow input {width:100%;min-width:95%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}input.customformrowrequired{background: #ff8080;}.customformrow input:not([type=\'checkbox\']) {-webkit-appearance:none;}.customformrow select{width:50%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.customformrow:first-child input{border-top-right-radius:8px}.customformrow:last-child input{border-bottom-right-radius:8px}.customformtextbox{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.customformtextbox img{max-width:100%}.customformtextbox p{margin-top:2px;color:#000;margin-bottom:2px;text-align:justify}.customformtextbox ul{list-style:circle!important;margin:3px 0}.customformtextbox li{margin:0!important}.customformtextbox textarea{margin-top:5px;font-size:medium;padding:0}.customformradiorow{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.customformrow input[type=\"checkbox\"]{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOff.png)no-repeat;-webkit-appearance:none;border:0;margin:4px 4px 0 0}.customformrow input[type=\"checkbox\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOn.png)no-repeat;}.customformradiorow input[type=\"radio\"]{-webkit-appearance:none;border:0;width:100%;height: 43px;z-index:2;position:absolute;left:50%;margin:0;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOff.png) no-repeat;-webkit-border-radius:0}.customformradiorow input[type=\"radio\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOn.png) no-repeat;}.customformradiorow .customformradiorowinput {height: 40px;}.customformradiorow label{position: absolute;margin-top: 6px;margin-left:60%;text-overflow: ellipsis;}.customformradiorowbelow{position:relative;overflow:hidden;padding:5px 9px}.customformradiorowbelowlabel{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.customformradiorowbelowlabel .customformlabel{left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;padding-left:5px;overflow:hidden}.customformradiorowbelow input[type=\"radio\"]{-webkit-appearance:none;border:0;width:100%;height: 43px;z-index:2;position:absolute;left:10px;margin:0;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOff.png) no-repeat;-webkit-border-radius:0}.customformradiorowbelow input[type=\"radio\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOn.png) no-repeat;}.customformradiorowbelow .customformradiorowinputbelow {height: 40px;}span.customformlabelfull{font-weight:bold;font-size:17px;}.customformradiorowbelow label{position: absolute;margin-top: 6px;margin-left:45px;text-overflow: ellipsis;}li.customformrowbelow select{width:100%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.customformrowcheckboxright{position:relative;overflow:hidden;border-top:1px solid #878787;height: 40px;padding:5px 9px}.customformrowcheckboxright .customformlabel {left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;line-height:44px;overflow:hidden}.customformrowcheckboxright input[type=\"checkbox\"]{position: absolute;height: 40px;width: 35px;right:0;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOff.png)no-repeat;-webkit-appearance:none;border:0;margin:4px 4px 0 0}.customformrowcheckboxright input[type=\"checkbox\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOn.png) no-repeat;}.customformrowcheckboxleft{position:relative;overflow:hidden;border-top:1px solid #878787;height: 40px;padding:5px 9px}.customformrowcheckboxleft .customformlabel {margin-left:40px;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;line-height:44px;overflow:hidden}.customformrowcheckboxleft input[type=\"checkbox\"]{position: absolute;height: 40px;width: 35px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOff.png)no-repeat;-webkit-appearance:none;border:0;margin:4px 4px 0 0}.customformrowcheckboxleft input[type=\"checkbox\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOn.png) no-repeat;}</style>");
INSERT INTO `wp_postmeta` VALUES("3463", "123", "_WPMSGOPTION_Initialised", "Y");
INSERT INTO `wp_postmeta` VALUES("3464", "123", "_WPMSGOPTION_Deactivated", "");
INSERT INTO `wp_postmeta` VALUES("3465", "123", "_WPMSGOPTION_PageSlug", "locksmith-tampa");
INSERT INTO `wp_postmeta` VALUES("3466", "123", "_WPMSGOPTION_PageName", "Best Locksmith in New Jersey");
INSERT INTO `wp_postmeta` VALUES("3467", "123", "_WPMSGOPTION_TopbarPageName", "A-1 Locksmith LLC");
INSERT INTO `wp_postmeta` VALUES("3468", "123", "_WPMSGOPTION_MenuDesc", "");
INSERT INTO `wp_postmeta` VALUES("3469", "123", "_WPMSGOPTION_ThemeType", "Site");
INSERT INTO `wp_postmeta` VALUES("3470", "123", "_WPMSGOPTION_PageTheme", "154");
INSERT INTO `wp_postmeta` VALUES("3471", "123", "_WPMSGOPTION_MenuStyle", "Icon");
INSERT INTO `wp_postmeta` VALUES("3472", "123", "_WPMSGOPTION_MenuPosition", "C");
INSERT INTO `wp_postmeta` VALUES("3473", "123", "_WPMSGOPTION_ExcludePage", "");
INSERT INTO `wp_postmeta` VALUES("3474", "123", "_WPMSGOPTION_ExcludeFromSearch", "");
INSERT INTO `wp_postmeta` VALUES("3475", "123", "_WPMSGOPTION_BackgroundImage", "");
INSERT INTO `wp_postmeta` VALUES("3476", "123", "_WPMSGOPTION_BackgroundImageRepeat", "no-repeat");
INSERT INTO `wp_postmeta` VALUES("3477", "123", "_WPMSGOPTION_BackgroundImagePosition", "centerbottom");
INSERT INTO `wp_postmeta` VALUES("3478", "123", "_WPMSGOPTION_PageMinimumHeight", "");
INSERT INTO `wp_postmeta` VALUES("3479", "123", "_WPMSGOPTION_DisplayLogo", "Y");
INSERT INTO `wp_postmeta` VALUES("3480", "123", "_WPMSGOPTION_LogoImage", "http://tampa.keylocksmith.in/fl/wp-content/uploads/2013/03/Graphic1a-300x72.jpg");
INSERT INTO `wp_postmeta` VALUES("3481", "123", "_WPMSGOPTION_LogoBackgroundColor", "000000");
INSERT INTO `wp_postmeta` VALUES("3482", "123", "_WPMSGOPTION_LogoUseBackgroundColor", "Y");
INSERT INTO `wp_postmeta` VALUES("3483", "123", "_WPMSGOPTION_FooterBackgroundColor", "");
INSERT INTO `wp_postmeta` VALUES("3484", "123", "_WPMSGOPTION_ThumbnailImage", "__None__");
INSERT INTO `wp_postmeta` VALUES("3485", "123", "_WPMSGOPTION_ThumbnailImageColor", "LightBlue");
INSERT INTO `wp_postmeta` VALUES("3486", "123", "_WPMSGOPTION_CustomThumbnailImage", "");
INSERT INTO `wp_postmeta` VALUES("3487", "123", "_WPMSGOPTION_DisplayPreview", "");
INSERT INTO `wp_postmeta` VALUES("3488", "123", "_WPMSGOPTION_DisplayTopBar", "");
INSERT INTO `wp_postmeta` VALUES("3489", "123", "_WPMSGOPTION_TopbarRightLinkText", "");
INSERT INTO `wp_postmeta` VALUES("3490", "123", "_WPMSGOPTION_TopbarRightLinkURL", "");
INSERT INTO `wp_postmeta` VALUES("3491", "123", "_WPMSGOPTION_TopbarRightLinkPage", "123");
INSERT INTO `wp_postmeta` VALUES("3492", "123", "_WPMSGOPTION_DisplayPhoneTopBar", "");
INSERT INTO `wp_postmeta` VALUES("3493", "123", "_WPMSGOPTION_FacebookURL", "");
INSERT INTO `wp_postmeta` VALUES("3494", "123", "_WPMSGOPTION_TwitterURL", "");
INSERT INTO `wp_postmeta` VALUES("3495", "123", "_WPMSGOPTION_GooglePlusURL", "");
INSERT INTO `wp_postmeta` VALUES("3496", "123", "_WPMSGOPTION_YouTubeURL", "");
INSERT INTO `wp_postmeta` VALUES("3497", "123", "_WPMSGOPTION_LinkedInURL", "");
INSERT INTO `wp_postmeta` VALUES("3498", "123", "_WPMSGOPTION_SocialMediaPage1URL", "");
INSERT INTO `wp_postmeta` VALUES("3499", "123", "_WPMSGOPTION_SocialMediaIcon1URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/facebook.png");
INSERT INTO `wp_postmeta` VALUES("3500", "123", "_WPMSGOPTION_SocialMediaPage2URL", "");
INSERT INTO `wp_postmeta` VALUES("3501", "123", "_WPMSGOPTION_SocialMediaIcon2URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/twitter.png");
INSERT INTO `wp_postmeta` VALUES("3502", "123", "_WPMSGOPTION_SocialMediaPage3URL", "");
INSERT INTO `wp_postmeta` VALUES("3503", "123", "_WPMSGOPTION_SocialMediaIcon3URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/googleplus.png");
INSERT INTO `wp_postmeta` VALUES("3504", "123", "_WPMSGOPTION_SocialMediaPage4URL", "");
INSERT INTO `wp_postmeta` VALUES("3505", "123", "_WPMSGOPTION_SocialMediaIcon4URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/youtube.png");
INSERT INTO `wp_postmeta` VALUES("3506", "123", "_WPMSGOPTION_SocialMediaPage5URL", "");
INSERT INTO `wp_postmeta` VALUES("3507", "123", "_WPMSGOPTION_SocialMediaIcon5URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/linkedin.png");
INSERT INTO `wp_postmeta` VALUES("3508", "123", "_WPMSGOPTION_SocialMediaPage6URL", "");
INSERT INTO `wp_postmeta` VALUES("3509", "123", "_WPMSGOPTION_SocialMediaIcon6URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/pinterest.png");
INSERT INTO `wp_postmeta` VALUES("3510", "123", "_WPMSGOPTION_SocialMediaPage7URL", "");
INSERT INTO `wp_postmeta` VALUES("3511", "123", "_WPMSGOPTION_SocialMediaIcon7URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/flickr.png");
INSERT INTO `wp_postmeta` VALUES("3512", "123", "_WPMSGOPTION_SocialMediaPage8URL", "");
INSERT INTO `wp_postmeta` VALUES("3513", "123", "_WPMSGOPTION_SocialMediaIcon8URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/yelp.png");
INSERT INTO `wp_postmeta` VALUES("3514", "123", "_WPMSGOPTION_SocialMediaPage9URL", "");
INSERT INTO `wp_postmeta` VALUES("3515", "123", "_WPMSGOPTION_SocialMediaIcon9URL", "");
INSERT INTO `wp_postmeta` VALUES("3516", "123", "_WPMSGOPTION_FBLikeURL", "");
INSERT INTO `wp_postmeta` VALUES("3517", "123", "_WPMSGOPTION_FBLikeWidth", "");
INSERT INTO `wp_postmeta` VALUES("3518", "123", "_WPMSGOPTION_FBLikeSendButton", "Y");
INSERT INTO `wp_postmeta` VALUES("3519", "123", "_WPMSGOPTION_FBLikeFaces", "Y");
INSERT INTO `wp_postmeta` VALUES("3520", "123", "_WPMSGOPTION_FBLikeLayoutStyle", "");
INSERT INTO `wp_postmeta` VALUES("3521", "123", "_WPMSGOPTION_FBLikeVerb", "");
INSERT INTO `wp_postmeta` VALUES("3522", "123", "_WPMSGOPTION_FBLikeColorScheme", "");
INSERT INTO `wp_postmeta` VALUES("3523", "123", "_WPMSGOPTION_FBCommentsURL", "");
INSERT INTO `wp_postmeta` VALUES("3524", "123", "_WPMSGOPTION_FBCommentsPosts", "");
INSERT INTO `wp_postmeta` VALUES("3525", "123", "_WPMSGOPTION_FBCommentsColorScheme", "");
INSERT INTO `wp_postmeta` VALUES("3526", "123", "_WPMSGOPTION_SearchPrompt", "");
INSERT INTO `wp_postmeta` VALUES("3527", "123", "_WPMSGOPTION_SearchSubmitPrompt", "");
INSERT INTO `wp_postmeta` VALUES("3528", "123", "_WPMSGOPTION_RSSFeedURL", "");
INSERT INTO `wp_postmeta` VALUES("3529", "123", "_WPMSGOPTION_RSSFeedMax", "");
INSERT INTO `wp_postmeta` VALUES("3530", "123", "_WPMSGOPTION_RSSFeedStyle", "TitleOnly");
INSERT INTO `wp_postmeta` VALUES("3531", "123", "_WPMSGOPTION_MetaTitle", "");
INSERT INTO `wp_postmeta` VALUES("3532", "123", "_WPMSGOPTION_MetaDescription", "");
INSERT INTO `wp_postmeta` VALUES("3533", "123", "_WPMSGOPTION_MetaKeywords", "");
INSERT INTO `wp_postmeta` VALUES("3534", "123", "_WPMSGOPTION_AnalyticsCode", "");
INSERT INTO `wp_postmeta` VALUES("3535", "123", "_WPMSGOPTION_CouponTitle", "Save Now");
INSERT INTO `wp_postmeta` VALUES("3536", "123", "_WPMSGOPTION_CouponCodeText", "");
INSERT INTO `wp_postmeta` VALUES("3537", "123", "_WPMSGOPTION_CouponStartText", "");
INSERT INTO `wp_postmeta` VALUES("3538", "123", "_WPMSGOPTION_CouponExpiryText", "");
INSERT INTO `wp_postmeta` VALUES("3539", "123", "_WPMSGOPTION_CouponCode", "Mention Key Word");
INSERT INTO `wp_postmeta` VALUES("3540", "123", "_WPMSGOPTION_CouponCodeExpired", "");
INSERT INTO `wp_postmeta` VALUES("3541", "123", "_WPMSGOPTION_CouponStart", "");
INSERT INTO `wp_postmeta` VALUES("3542", "123", "_WPMSGOPTION_CouponExpiry", "");
INSERT INTO `wp_postmeta` VALUES("3543", "123", "_WPMSGOPTION_CouponDateFormat", "Y-m-d");
INSERT INTO `wp_postmeta` VALUES("3544", "123", "_WPMSGOPTION_CouponValidText", "Save Now key word = &quot;Best Locksmith&quot;");
INSERT INTO `wp_postmeta` VALUES("3545", "123", "_WPMSGOPTION_CouponExpiredText", "");
INSERT INTO `wp_postmeta` VALUES("3546", "123", "_WPMSGOPTION_CouponImage", "");
INSERT INTO `wp_postmeta` VALUES("3547", "123", "_WPMSGOPTION_TelephoneNumber", "(201) 391-1177");
INSERT INTO `wp_postmeta` VALUES("3548", "123", "_WPMSGOPTION_TelephoneCallToAction", "Tap To  Call  NOW");
INSERT INTO `wp_postmeta` VALUES("3549", "123", "_WPMSGOPTION_ClickToCallType", "Call");
INSERT INTO `wp_postmeta` VALUES("3550", "123", "_WPMSGOPTION_SMSMessage", "");
INSERT INTO `wp_postmeta` VALUES("3551", "123", "_WPMSGOPTION_HidePhoneIcon", "");
INSERT INTO `wp_postmeta` VALUES("3552", "123", "_WPMSGOPTION_HidePhoneNumber", "Y");
INSERT INTO `wp_postmeta` VALUES("3553", "123", "_WPMSGOPTION_TelephoneIconImage", "");
INSERT INTO `wp_postmeta` VALUES("3554", "123", "_WPMSGOPTION_TelephoneImage", "");
INSERT INTO `wp_postmeta` VALUES("3555", "123", "_WPMSGOPTION_SMSNumber", "");
INSERT INTO `wp_postmeta` VALUES("3556", "123", "_WPMSGOPTION_SMSCallToAction", "");
INSERT INTO `wp_postmeta` VALUES("3557", "123", "_WPMSGOPTION_SMSMessageText", "");
INSERT INTO `wp_postmeta` VALUES("3558", "123", "_WPMSGOPTION_HideSMSIcon", "");
INSERT INTO `wp_postmeta` VALUES("3559", "123", "_WPMSGOPTION_HideSMSNumber", "");
INSERT INTO `wp_postmeta` VALUES("3560", "123", "_WPMSGOPTION_SMSIconImage", "");
INSERT INTO `wp_postmeta` VALUES("3561", "123", "_WPMSGOPTION_SMSImage", "");
INSERT INTO `wp_postmeta` VALUES("3562", "123", "_WPMSGOPTION_EmailTo", "");
INSERT INTO `wp_postmeta` VALUES("3563", "123", "_WPMSGOPTION_EmailCallToAction", "");
INSERT INTO `wp_postmeta` VALUES("3564", "123", "_WPMSGOPTION_EmailSubjectText", "");
INSERT INTO `wp_postmeta` VALUES("3565", "123", "_WPMSGOPTION_EmailMessageText", "");
INSERT INTO `wp_postmeta` VALUES("3566", "123", "_WPMSGOPTION_HideEmailIcon", "");
INSERT INTO `wp_postmeta` VALUES("3567", "123", "_WPMSGOPTION_EmailIconImage", "");
INSERT INTO `wp_postmeta` VALUES("3568", "123", "_WPMSGOPTION_EmailImage", "");
INSERT INTO `wp_postmeta` VALUES("3569", "123", "_WPMSGOPTION_SkypeUsername", "");
INSERT INTO `wp_postmeta` VALUES("3570", "123", "_WPMSGOPTION_SkypeCallToAction", "");
INSERT INTO `wp_postmeta` VALUES("3571", "123", "_WPMSGOPTION_HideSkypeIcon", "");
INSERT INTO `wp_postmeta` VALUES("3572", "123", "_WPMSGOPTION_SkypeIconImage", "");
INSERT INTO `wp_postmeta` VALUES("3573", "123", "_WPMSGOPTION_SkypeImage", "");
INSERT INTO `wp_postmeta` VALUES("3574", "123", "_WPMSGOPTION_RedirectURL", "");
INSERT INTO `wp_postmeta` VALUES("3575", "123", "_WPMSGOPTION_DeactivatedURL", "");
INSERT INTO `wp_postmeta` VALUES("3576", "123", "_WPMSGOPTION_ExportDomain", "");
INSERT INTO `wp_postmeta` VALUES("3577", "123", "_WPMSGOPTION_CreateBitly", "");
INSERT INTO `wp_postmeta` VALUES("3578", "123", "_WPMSGOPTION_BitlyUsername", "");
INSERT INTO `wp_postmeta` VALUES("3579", "123", "_WPMSGOPTION_BitlyApiKey", "");
INSERT INTO `wp_postmeta` VALUES("3580", "123", "_WPMSGOPTION_BitlyLongUrl", "");
INSERT INTO `wp_postmeta` VALUES("3581", "123", "_WPMSGOPTION_BitlyShortUrl", "");
INSERT INTO `wp_postmeta` VALUES("3582", "123", "_WPMSGOPTION_MapLocation", "Tampa, FL, USA");
INSERT INTO `wp_postmeta` VALUES("3583", "123", "_WPMSGOPTION_MapLongitude", "");
INSERT INTO `wp_postmeta` VALUES("3584", "123", "_WPMSGOPTION_MapLatitude", "");
INSERT INTO `wp_postmeta` VALUES("3585", "123", "_WPMSGOPTION_MapWidth", "");
INSERT INTO `wp_postmeta` VALUES("3586", "123", "_WPMSGOPTION_MapHeight", "");
INSERT INTO `wp_postmeta` VALUES("3587", "123", "_WPMSGOPTION_MapZoom", "");
INSERT INTO `wp_postmeta` VALUES("3588", "123", "_WPMSGOPTION_MapLanguage", "en");
INSERT INTO `wp_postmeta` VALUES("3589", "123", "_WPMSGOPTION_DisplayMapDirections", "");
INSERT INTO `wp_postmeta` VALUES("3590", "123", "_WPMSGOPTION_DirectionsPrompt", "");
INSERT INTO `wp_postmeta` VALUES("3591", "123", "_WPMSGOPTION_DirectionsButtonText", "");
INSERT INTO `wp_postmeta` VALUES("3592", "123", "_WPMSGOPTION_DisplayGPSDirectionsButton", "");
INSERT INTO `wp_postmeta` VALUES("3593", "123", "_WPMSGOPTION_GPSDirectionsButtonText", "Locate ");
INSERT INTO `wp_postmeta` VALUES("3594", "123", "_WPMSGOPTION_DirectionsPosition", "A");
INSERT INTO `wp_postmeta` VALUES("3595", "123", "_WPMSGOPTION_OptinNamePrompt", "");
INSERT INTO `wp_postmeta` VALUES("3596", "123", "_WPMSGOPTION_OptinEmailPrompt", "");
INSERT INTO `wp_postmeta` VALUES("3597", "123", "_WPMSGOPTION_OptinSubmitPrompt", "");
INSERT INTO `wp_postmeta` VALUES("3598", "123", "_WPMSGOPTION_OptinCode", "");
INSERT INTO `wp_postmeta` VALUES("3599", "123", "_WPMSGOPTION_OptinRedirectPage", "0");
INSERT INTO `wp_postmeta` VALUES("3600", "123", "_WPMSGOPTION_ContactSendToEmail", "");
INSERT INTO `wp_postmeta` VALUES("3601", "123", "_WPMSGOPTION_ContactSendFromName", "");
INSERT INTO `wp_postmeta` VALUES("3602", "123", "_WPMSGOPTION_ContactSendFromEmail", "");
INSERT INTO `wp_postmeta` VALUES("3603", "123", "_WPMSGOPTION_ContactNamePrompt", "");
INSERT INTO `wp_postmeta` VALUES("3604", "123", "_WPMSGOPTION_ContactPhonePrompt", "");
INSERT INTO `wp_postmeta` VALUES("3605", "123", "_WPMSGOPTION_ContactEmailPrompt", "");
INSERT INTO `wp_postmeta` VALUES("3606", "123", "_WPMSGOPTION_ContactMessagePrompt", "");
INSERT INTO `wp_postmeta` VALUES("3607", "123", "_WPMSGOPTION_ContactSubmitPrompt", "");
INSERT INTO `wp_postmeta` VALUES("3608", "123", "_WPMSGOPTION_ContactShowAcknowledgement", "");
INSERT INTO `wp_postmeta` VALUES("3609", "123", "_WPMSGOPTION_ContactAcknowledgementDisplayMessage", "");
INSERT INTO `wp_postmeta` VALUES("3610", "123", "_WPMSGOPTION_ContactSendAcknowledgement", "");
INSERT INTO `wp_postmeta` VALUES("3611", "123", "_WPMSGOPTION_ContactAcknowledgementName", "");
INSERT INTO `wp_postmeta` VALUES("3612", "123", "_WPMSGOPTION_ContactAcknowledgementEmail", "");
INSERT INTO `wp_postmeta` VALUES("3613", "123", "_WPMSGOPTION_ContactAcknowledgementSubject", "");
INSERT INTO `wp_postmeta` VALUES("3614", "123", "_WPMSGOPTION_ContactAcknowledgementMessage", "");
INSERT INTO `wp_postmeta` VALUES("3615", "123", "_WPMSGOPTION_SiteID", "123");
INSERT INTO `wp_postmeta` VALUES("3616", "123", "_WPMSGOPTION_StreetLat", "27.950575");
INSERT INTO `wp_postmeta` VALUES("3617", "123", "_WPMSGOPTION_StreetLong", "-82.4571776");
INSERT INTO `wp_postmeta` VALUES("3618", "123", "_WPMREDOPTION_RedirectNever", "");
INSERT INTO `wp_postmeta` VALUES("3619", "123", "_WPMREDOPTION_RedirectURL", "");
INSERT INTO `wp_postmeta` VALUES("3620", "150", "_WPMREDOPTION_RedirectURL", "");
INSERT INTO `wp_postmeta` VALUES("3621", "150", "_WPMREDOPTION_RedirectNever", "");
INSERT INTO `wp_postmeta` VALUES("3622", "150", "_WPMSGOPTION_Initialised", "Y");
INSERT INTO `wp_postmeta` VALUES("3623", "150", "_WPMSGOPTION_Deactivated", "");
INSERT INTO `wp_postmeta` VALUES("3624", "150", "_WPMSGOPTION_PageSlug", "location-map");
INSERT INTO `wp_postmeta` VALUES("3625", "150", "_WPMSGOPTION_PageName", "Location Map");
INSERT INTO `wp_postmeta` VALUES("3626", "150", "_WPMSGOPTION_TopbarPageName", "Location Map");
INSERT INTO `wp_postmeta` VALUES("3627", "150", "_WPMSGOPTION_MenuDesc", "");
INSERT INTO `wp_postmeta` VALUES("3628", "150", "_WPMSGOPTION_ThemeType", "Site");
INSERT INTO `wp_postmeta` VALUES("3629", "150", "_WPMSGOPTION_PageTheme", "154");
INSERT INTO `wp_postmeta` VALUES("3630", "150", "_WPMSGOPTION_MenuStyle", "Vertical");
INSERT INTO `wp_postmeta` VALUES("3631", "150", "_WPMSGOPTION_MenuPosition", "T");
INSERT INTO `wp_postmeta` VALUES("3632", "150", "_WPMSGOPTION_ExcludePage", "");
INSERT INTO `wp_postmeta` VALUES("3633", "150", "_WPMSGOPTION_ExcludeFromSearch", "");
INSERT INTO `wp_postmeta` VALUES("3634", "150", "_WPMSGOPTION_BackgroundImage", "");
INSERT INTO `wp_postmeta` VALUES("3635", "150", "_WPMSGOPTION_BackgroundImageRepeat", "repeat");
INSERT INTO `wp_postmeta` VALUES("3636", "150", "_WPMSGOPTION_BackgroundImagePosition", "lefttop");
INSERT INTO `wp_postmeta` VALUES("3637", "150", "_WPMSGOPTION_PageMinimumHeight", "");
INSERT INTO `wp_postmeta` VALUES("3638", "150", "_WPMSGOPTION_DisplayLogo", "");
INSERT INTO `wp_postmeta` VALUES("3639", "150", "_WPMSGOPTION_LogoImage", "");
INSERT INTO `wp_postmeta` VALUES("3640", "150", "_WPMSGOPTION_LogoBackgroundColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("3641", "150", "_WPMSGOPTION_LogoUseBackgroundColor", "");
INSERT INTO `wp_postmeta` VALUES("3642", "150", "_WPMSGOPTION_FooterBackgroundColor", "");
INSERT INTO `wp_postmeta` VALUES("3643", "150", "_WPMSGOPTION_ThumbnailImage", "Map");
INSERT INTO `wp_postmeta` VALUES("3644", "150", "_WPMSGOPTION_ThumbnailImageColor", "LightBlue");
INSERT INTO `wp_postmeta` VALUES("3645", "150", "_WPMSGOPTION_CustomThumbnailImage", "");
INSERT INTO `wp_postmeta` VALUES("3646", "150", "_WPMSGOPTION_DisplayPreview", "");
INSERT INTO `wp_postmeta` VALUES("3647", "150", "_WPMSGOPTION_DisplayTopBar", "Y");
INSERT INTO `wp_postmeta` VALUES("3648", "150", "_WPMSGOPTION_TopbarRightLinkText", "");
INSERT INTO `wp_postmeta` VALUES("3649", "150", "_WPMSGOPTION_TopbarRightLinkURL", "");
INSERT INTO `wp_postmeta` VALUES("3650", "150", "_WPMSGOPTION_TopbarRightLinkPage", "0");
INSERT INTO `wp_postmeta` VALUES("3651", "150", "_WPMSGOPTION_DisplayPhoneTopBar", "Y");
INSERT INTO `wp_postmeta` VALUES("3652", "150", "_WPMSGOPTION_FacebookURL", "");
INSERT INTO `wp_postmeta` VALUES("3653", "150", "_WPMSGOPTION_TwitterURL", "");
INSERT INTO `wp_postmeta` VALUES("3654", "150", "_WPMSGOPTION_GooglePlusURL", "");
INSERT INTO `wp_postmeta` VALUES("3655", "150", "_WPMSGOPTION_YouTubeURL", "");
INSERT INTO `wp_postmeta` VALUES("3656", "150", "_WPMSGOPTION_LinkedInURL", "");
INSERT INTO `wp_postmeta` VALUES("3657", "150", "_WPMSGOPTION_SocialMediaPage1URL", "");
INSERT INTO `wp_postmeta` VALUES("3658", "150", "_WPMSGOPTION_SocialMediaIcon1URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/facebook.png");
INSERT INTO `wp_postmeta` VALUES("3659", "150", "_WPMSGOPTION_SocialMediaPage2URL", "");
INSERT INTO `wp_postmeta` VALUES("3660", "150", "_WPMSGOPTION_SocialMediaIcon2URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/twitter.png");
INSERT INTO `wp_postmeta` VALUES("3661", "150", "_WPMSGOPTION_SocialMediaPage3URL", "");
INSERT INTO `wp_postmeta` VALUES("3662", "150", "_WPMSGOPTION_SocialMediaIcon3URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/googleplus.png");
INSERT INTO `wp_postmeta` VALUES("3663", "150", "_WPMSGOPTION_SocialMediaPage4URL", "");
INSERT INTO `wp_postmeta` VALUES("3664", "150", "_WPMSGOPTION_SocialMediaIcon4URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/youtube.png");
INSERT INTO `wp_postmeta` VALUES("3665", "150", "_WPMSGOPTION_SocialMediaPage5URL", "");
INSERT INTO `wp_postmeta` VALUES("3666", "150", "_WPMSGOPTION_SocialMediaIcon5URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/linkedin.png");
INSERT INTO `wp_postmeta` VALUES("3667", "150", "_WPMSGOPTION_SocialMediaPage6URL", "");
INSERT INTO `wp_postmeta` VALUES("3668", "150", "_WPMSGOPTION_SocialMediaIcon6URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/pinterest.png");
INSERT INTO `wp_postmeta` VALUES("3669", "150", "_WPMSGOPTION_SocialMediaPage7URL", "");
INSERT INTO `wp_postmeta` VALUES("3670", "150", "_WPMSGOPTION_SocialMediaIcon7URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/flickr.png");
INSERT INTO `wp_postmeta` VALUES("3671", "150", "_WPMSGOPTION_SocialMediaPage8URL", "");
INSERT INTO `wp_postmeta` VALUES("3672", "150", "_WPMSGOPTION_SocialMediaIcon8URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/yelp.png");
INSERT INTO `wp_postmeta` VALUES("3673", "150", "_WPMSGOPTION_SocialMediaPage9URL", "");
INSERT INTO `wp_postmeta` VALUES("3674", "150", "_WPMSGOPTION_SocialMediaIcon9URL", "");
INSERT INTO `wp_postmeta` VALUES("3675", "150", "_WPMSGOPTION_FBLikeURL", "");
INSERT INTO `wp_postmeta` VALUES("3676", "150", "_WPMSGOPTION_FBLikeWidth", "");
INSERT INTO `wp_postmeta` VALUES("3677", "150", "_WPMSGOPTION_FBLikeSendButton", "Y");
INSERT INTO `wp_postmeta` VALUES("3678", "150", "_WPMSGOPTION_FBLikeFaces", "Y");
INSERT INTO `wp_postmeta` VALUES("3679", "150", "_WPMSGOPTION_FBLikeLayoutStyle", "");
INSERT INTO `wp_postmeta` VALUES("3680", "150", "_WPMSGOPTION_FBLikeVerb", "");
INSERT INTO `wp_postmeta` VALUES("3681", "150", "_WPMSGOPTION_FBLikeColorScheme", "");
INSERT INTO `wp_postmeta` VALUES("3682", "150", "_WPMSGOPTION_FBCommentsURL", "");
INSERT INTO `wp_postmeta` VALUES("3683", "150", "_WPMSGOPTION_FBCommentsPosts", "");
INSERT INTO `wp_postmeta` VALUES("3684", "150", "_WPMSGOPTION_FBCommentsColorScheme", "");
INSERT INTO `wp_postmeta` VALUES("3685", "150", "_WPMSGOPTION_SearchPrompt", "");
INSERT INTO `wp_postmeta` VALUES("3686", "150", "_WPMSGOPTION_SearchSubmitPrompt", "");
INSERT INTO `wp_postmeta` VALUES("3687", "150", "_WPMSGOPTION_RSSFeedURL", "");
INSERT INTO `wp_postmeta` VALUES("3688", "150", "_WPMSGOPTION_RSSFeedMax", "");
INSERT INTO `wp_postmeta` VALUES("3689", "150", "_WPMSGOPTION_RSSFeedStyle", "TitleOnly");
INSERT INTO `wp_postmeta` VALUES("3690", "150", "_WPMSGOPTION_MetaTitle", "");
INSERT INTO `wp_postmeta` VALUES("3691", "150", "_WPMSGOPTION_MetaDescription", "");
INSERT INTO `wp_postmeta` VALUES("3692", "150", "_WPMSGOPTION_MetaKeywords", "");
INSERT INTO `wp_postmeta` VALUES("3693", "150", "_WPMSGOPTION_AnalyticsCode", "");
INSERT INTO `wp_postmeta` VALUES("3694", "150", "_WPMSGOPTION_CouponTitle", "");
INSERT INTO `wp_postmeta` VALUES("3695", "150", "_WPMSGOPTION_CouponCodeText", "");
INSERT INTO `wp_postmeta` VALUES("3696", "150", "_WPMSGOPTION_CouponStartText", "");
INSERT INTO `wp_postmeta` VALUES("3697", "150", "_WPMSGOPTION_CouponExpiryText", "");
INSERT INTO `wp_postmeta` VALUES("3698", "150", "_WPMSGOPTION_CouponCode", "");
INSERT INTO `wp_postmeta` VALUES("3699", "150", "_WPMSGOPTION_CouponCodeExpired", "");
INSERT INTO `wp_postmeta` VALUES("3700", "150", "_WPMSGOPTION_CouponStart", "");
INSERT INTO `wp_postmeta` VALUES("3701", "150", "_WPMSGOPTION_CouponExpiry", "");
INSERT INTO `wp_postmeta` VALUES("3702", "150", "_WPMSGOPTION_CouponDateFormat", "Y-m-d");
INSERT INTO `wp_postmeta` VALUES("3703", "150", "_WPMSGOPTION_CouponValidText", "");
INSERT INTO `wp_postmeta` VALUES("3704", "150", "_WPMSGOPTION_CouponExpiredText", "");
INSERT INTO `wp_postmeta` VALUES("3705", "150", "_WPMSGOPTION_CouponImage", "");
INSERT INTO `wp_postmeta` VALUES("3706", "150", "_WPMSGOPTION_TelephoneNumber", "");
INSERT INTO `wp_postmeta` VALUES("3707", "150", "_WPMSGOPTION_TelephoneCallToAction", "");
INSERT INTO `wp_postmeta` VALUES("3708", "150", "_WPMSGOPTION_ClickToCallType", "Call");
INSERT INTO `wp_postmeta` VALUES("3709", "150", "_WPMSGOPTION_SMSMessage", "");
INSERT INTO `wp_postmeta` VALUES("3710", "150", "_WPMSGOPTION_HidePhoneIcon", "");
INSERT INTO `wp_postmeta` VALUES("3711", "150", "_WPMSGOPTION_HidePhoneNumber", "");
INSERT INTO `wp_postmeta` VALUES("3712", "150", "_WPMSGOPTION_TelephoneIconImage", "");
INSERT INTO `wp_postmeta` VALUES("3713", "150", "_WPMSGOPTION_TelephoneImage", "");
INSERT INTO `wp_postmeta` VALUES("3714", "150", "_WPMSGOPTION_SMSNumber", "");
INSERT INTO `wp_postmeta` VALUES("3715", "150", "_WPMSGOPTION_SMSCallToAction", "");
INSERT INTO `wp_postmeta` VALUES("3716", "150", "_WPMSGOPTION_SMSMessageText", "");
INSERT INTO `wp_postmeta` VALUES("3717", "150", "_WPMSGOPTION_HideSMSIcon", "");
INSERT INTO `wp_postmeta` VALUES("3718", "150", "_WPMSGOPTION_HideSMSNumber", "");
INSERT INTO `wp_postmeta` VALUES("3719", "150", "_WPMSGOPTION_SMSIconImage", "");
INSERT INTO `wp_postmeta` VALUES("3720", "150", "_WPMSGOPTION_SMSImage", "");
INSERT INTO `wp_postmeta` VALUES("3721", "150", "_WPMSGOPTION_EmailTo", "");
INSERT INTO `wp_postmeta` VALUES("3722", "150", "_WPMSGOPTION_EmailCallToAction", "");
INSERT INTO `wp_postmeta` VALUES("3723", "150", "_WPMSGOPTION_EmailSubjectText", "");
INSERT INTO `wp_postmeta` VALUES("3724", "150", "_WPMSGOPTION_EmailMessageText", "");
INSERT INTO `wp_postmeta` VALUES("3725", "150", "_WPMSGOPTION_HideEmailIcon", "");
INSERT INTO `wp_postmeta` VALUES("3726", "150", "_WPMSGOPTION_EmailIconImage", "");
INSERT INTO `wp_postmeta` VALUES("3727", "150", "_WPMSGOPTION_EmailImage", "");
INSERT INTO `wp_postmeta` VALUES("3728", "150", "_WPMSGOPTION_SkypeUsername", "");
INSERT INTO `wp_postmeta` VALUES("3729", "150", "_WPMSGOPTION_SkypeCallToAction", "");
INSERT INTO `wp_postmeta` VALUES("3730", "150", "_WPMSGOPTION_HideSkypeIcon", "");
INSERT INTO `wp_postmeta` VALUES("3731", "150", "_WPMSGOPTION_SkypeIconImage", "");
INSERT INTO `wp_postmeta` VALUES("3732", "150", "_WPMSGOPTION_SkypeImage", "");
INSERT INTO `wp_postmeta` VALUES("3733", "150", "_WPMSGOPTION_RedirectURL", "");
INSERT INTO `wp_postmeta` VALUES("3734", "150", "_WPMSGOPTION_DeactivatedURL", "");
INSERT INTO `wp_postmeta` VALUES("3735", "150", "_WPMSGOPTION_ExportDomain", "");
INSERT INTO `wp_postmeta` VALUES("3736", "150", "_WPMSGOPTION_CreateBitly", "");
INSERT INTO `wp_postmeta` VALUES("3737", "150", "_WPMSGOPTION_BitlyUsername", "");
INSERT INTO `wp_postmeta` VALUES("3738", "150", "_WPMSGOPTION_BitlyApiKey", "");
INSERT INTO `wp_postmeta` VALUES("3739", "150", "_WPMSGOPTION_BitlyLongUrl", "");
INSERT INTO `wp_postmeta` VALUES("3740", "150", "_WPMSGOPTION_BitlyShortUrl", "");
INSERT INTO `wp_postmeta` VALUES("3741", "150", "_WPMSGOPTION_MapLocation", "Westwood, NJ, USA");
INSERT INTO `wp_postmeta` VALUES("3742", "150", "_WPMSGOPTION_MapLongitude", "");
INSERT INTO `wp_postmeta` VALUES("3743", "150", "_WPMSGOPTION_MapLatitude", "");
INSERT INTO `wp_postmeta` VALUES("3744", "150", "_WPMSGOPTION_MapWidth", "");
INSERT INTO `wp_postmeta` VALUES("3745", "150", "_WPMSGOPTION_MapHeight", "");
INSERT INTO `wp_postmeta` VALUES("3746", "150", "_WPMSGOPTION_MapZoom", "");
INSERT INTO `wp_postmeta` VALUES("3747", "150", "_WPMSGOPTION_MapLanguage", "en");
INSERT INTO `wp_postmeta` VALUES("3748", "150", "_WPMSGOPTION_DisplayMapDirections", "Y");
INSERT INTO `wp_postmeta` VALUES("3749", "150", "_WPMSGOPTION_DirectionsPrompt", "");
INSERT INTO `wp_postmeta` VALUES("3750", "150", "_WPMSGOPTION_DirectionsButtonText", "");
INSERT INTO `wp_postmeta` VALUES("3751", "150", "_WPMSGOPTION_DisplayGPSDirectionsButton", "");
INSERT INTO `wp_postmeta` VALUES("3752", "150", "_WPMSGOPTION_GPSDirectionsButtonText", "");
INSERT INTO `wp_postmeta` VALUES("3753", "150", "_WPMSGOPTION_DirectionsPosition", "A");
INSERT INTO `wp_postmeta` VALUES("3754", "150", "_WPMSGOPTION_StreetLat", "40.9912087");
INSERT INTO `wp_postmeta` VALUES("3755", "150", "_WPMSGOPTION_StreetLong", "-74.0326395");
INSERT INTO `wp_postmeta` VALUES("3756", "150", "_WPMSGOPTION_OptinNamePrompt", "");
INSERT INTO `wp_postmeta` VALUES("3757", "150", "_WPMSGOPTION_OptinEmailPrompt", "");
INSERT INTO `wp_postmeta` VALUES("3758", "150", "_WPMSGOPTION_OptinSubmitPrompt", "");
INSERT INTO `wp_postmeta` VALUES("3759", "150", "_WPMSGOPTION_OptinCode", "");
INSERT INTO `wp_postmeta` VALUES("3760", "150", "_WPMSGOPTION_OptinRedirectPage", "0");
INSERT INTO `wp_postmeta` VALUES("3761", "150", "_WPMSGOPTION_ContactSendToEmail", "");
INSERT INTO `wp_postmeta` VALUES("3762", "150", "_WPMSGOPTION_ContactSendFromName", "");
INSERT INTO `wp_postmeta` VALUES("3763", "150", "_WPMSGOPTION_ContactSendFromEmail", "");
INSERT INTO `wp_postmeta` VALUES("3764", "150", "_WPMSGOPTION_ContactNamePrompt", "");
INSERT INTO `wp_postmeta` VALUES("3765", "150", "_WPMSGOPTION_ContactPhonePrompt", "");
INSERT INTO `wp_postmeta` VALUES("3766", "150", "_WPMSGOPTION_ContactEmailPrompt", "");
INSERT INTO `wp_postmeta` VALUES("3767", "150", "_WPMSGOPTION_ContactMessagePrompt", "");
INSERT INTO `wp_postmeta` VALUES("3768", "150", "_WPMSGOPTION_ContactSubmitPrompt", "");
INSERT INTO `wp_postmeta` VALUES("3769", "150", "_WPMSGOPTION_ContactShowAcknowledgement", "");
INSERT INTO `wp_postmeta` VALUES("3770", "150", "_WPMSGOPTION_ContactAcknowledgementDisplayMessage", "");
INSERT INTO `wp_postmeta` VALUES("3771", "150", "_WPMSGOPTION_ContactSendAcknowledgement", "");
INSERT INTO `wp_postmeta` VALUES("3772", "150", "_WPMSGOPTION_ContactAcknowledgementName", "");
INSERT INTO `wp_postmeta` VALUES("3773", "150", "_WPMSGOPTION_ContactAcknowledgementEmail", "");
INSERT INTO `wp_postmeta` VALUES("3774", "150", "_WPMSGOPTION_ContactAcknowledgementSubject", "");
INSERT INTO `wp_postmeta` VALUES("3775", "150", "_WPMSGOPTION_ContactAcknowledgementMessage", "");
INSERT INTO `wp_postmeta` VALUES("3776", "150", "_WPMSGOPTION_SiteID", "123");
INSERT INTO `wp_postmeta` VALUES("3777", "152", "_WPMREDOPTION_RedirectURL", "");
INSERT INTO `wp_postmeta` VALUES("3778", "152", "_WPMREDOPTION_RedirectNever", "");
INSERT INTO `wp_postmeta` VALUES("3779", "152", "_WPMSGOPTION_Initialised", "Y");
INSERT INTO `wp_postmeta` VALUES("3780", "152", "_WPMSGOPTION_Deactivated", "");
INSERT INTO `wp_postmeta` VALUES("3781", "152", "_WPMSGOPTION_PageSlug", "about-us");
INSERT INTO `wp_postmeta` VALUES("3782", "152", "_WPMSGOPTION_PageName", "About Us");
INSERT INTO `wp_postmeta` VALUES("3783", "152", "_WPMSGOPTION_TopbarPageName", "About Us");
INSERT INTO `wp_postmeta` VALUES("3784", "152", "_WPMSGOPTION_MenuDesc", "");
INSERT INTO `wp_postmeta` VALUES("3785", "152", "_WPMSGOPTION_ThemeType", "Site");
INSERT INTO `wp_postmeta` VALUES("3786", "152", "_WPMSGOPTION_PageTheme", "113");
INSERT INTO `wp_postmeta` VALUES("3787", "152", "_WPMSGOPTION_MenuStyle", "Vertical");
INSERT INTO `wp_postmeta` VALUES("3788", "152", "_WPMSGOPTION_MenuPosition", "T");
INSERT INTO `wp_postmeta` VALUES("3789", "152", "_WPMSGOPTION_ExcludePage", "");
INSERT INTO `wp_postmeta` VALUES("3790", "152", "_WPMSGOPTION_ExcludeFromSearch", "");
INSERT INTO `wp_postmeta` VALUES("3791", "152", "_WPMSGOPTION_BackgroundImage", "");
INSERT INTO `wp_postmeta` VALUES("3792", "152", "_WPMSGOPTION_BackgroundImageRepeat", "repeat");
INSERT INTO `wp_postmeta` VALUES("3793", "152", "_WPMSGOPTION_BackgroundImagePosition", "lefttop");
INSERT INTO `wp_postmeta` VALUES("3794", "152", "_WPMSGOPTION_PageMinimumHeight", "");
INSERT INTO `wp_postmeta` VALUES("3795", "152", "_WPMSGOPTION_DisplayLogo", "");
INSERT INTO `wp_postmeta` VALUES("3796", "152", "_WPMSGOPTION_LogoImage", "");
INSERT INTO `wp_postmeta` VALUES("3797", "152", "_WPMSGOPTION_LogoBackgroundColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("3798", "152", "_WPMSGOPTION_LogoUseBackgroundColor", "");
INSERT INTO `wp_postmeta` VALUES("3799", "152", "_WPMSGOPTION_FooterBackgroundColor", "");
INSERT INTO `wp_postmeta` VALUES("3800", "152", "_WPMSGOPTION_ThumbnailImage", "HappyFace");
INSERT INTO `wp_postmeta` VALUES("3801", "152", "_WPMSGOPTION_ThumbnailImageColor", "LightBlue");
INSERT INTO `wp_postmeta` VALUES("3802", "152", "_WPMSGOPTION_CustomThumbnailImage", "");
INSERT INTO `wp_postmeta` VALUES("3803", "152", "_WPMSGOPTION_DisplayPreview", "");
INSERT INTO `wp_postmeta` VALUES("3804", "152", "_WPMSGOPTION_DisplayTopBar", "Y");
INSERT INTO `wp_postmeta` VALUES("3805", "152", "_WPMSGOPTION_TopbarRightLinkText", "");
INSERT INTO `wp_postmeta` VALUES("3806", "152", "_WPMSGOPTION_TopbarRightLinkURL", "");
INSERT INTO `wp_postmeta` VALUES("3807", "152", "_WPMSGOPTION_TopbarRightLinkPage", "0");
INSERT INTO `wp_postmeta` VALUES("3808", "152", "_WPMSGOPTION_DisplayPhoneTopBar", "Y");
INSERT INTO `wp_postmeta` VALUES("3809", "152", "_WPMSGOPTION_FacebookURL", "");
INSERT INTO `wp_postmeta` VALUES("3810", "152", "_WPMSGOPTION_TwitterURL", "");
INSERT INTO `wp_postmeta` VALUES("3811", "152", "_WPMSGOPTION_GooglePlusURL", "");
INSERT INTO `wp_postmeta` VALUES("3812", "152", "_WPMSGOPTION_YouTubeURL", "");
INSERT INTO `wp_postmeta` VALUES("3813", "152", "_WPMSGOPTION_LinkedInURL", "");
INSERT INTO `wp_postmeta` VALUES("3814", "152", "_WPMSGOPTION_SocialMediaPage1URL", "");
INSERT INTO `wp_postmeta` VALUES("3815", "152", "_WPMSGOPTION_SocialMediaIcon1URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/facebook.png");
INSERT INTO `wp_postmeta` VALUES("3816", "152", "_WPMSGOPTION_SocialMediaPage2URL", "");
INSERT INTO `wp_postmeta` VALUES("3817", "152", "_WPMSGOPTION_SocialMediaIcon2URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/twitter.png");
INSERT INTO `wp_postmeta` VALUES("3818", "152", "_WPMSGOPTION_SocialMediaPage3URL", "");
INSERT INTO `wp_postmeta` VALUES("3819", "152", "_WPMSGOPTION_SocialMediaIcon3URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/googleplus.png");
INSERT INTO `wp_postmeta` VALUES("3820", "152", "_WPMSGOPTION_SocialMediaPage4URL", "");
INSERT INTO `wp_postmeta` VALUES("3821", "152", "_WPMSGOPTION_SocialMediaIcon4URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/youtube.png");
INSERT INTO `wp_postmeta` VALUES("3822", "152", "_WPMSGOPTION_SocialMediaPage5URL", "");
INSERT INTO `wp_postmeta` VALUES("3823", "152", "_WPMSGOPTION_SocialMediaIcon5URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/linkedin.png");
INSERT INTO `wp_postmeta` VALUES("3824", "152", "_WPMSGOPTION_SocialMediaPage6URL", "");
INSERT INTO `wp_postmeta` VALUES("3825", "152", "_WPMSGOPTION_SocialMediaIcon6URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/pinterest.png");
INSERT INTO `wp_postmeta` VALUES("3826", "152", "_WPMSGOPTION_SocialMediaPage7URL", "");
INSERT INTO `wp_postmeta` VALUES("3827", "152", "_WPMSGOPTION_SocialMediaIcon7URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/flickr.png");
INSERT INTO `wp_postmeta` VALUES("3828", "152", "_WPMSGOPTION_SocialMediaPage8URL", "");
INSERT INTO `wp_postmeta` VALUES("3829", "152", "_WPMSGOPTION_SocialMediaIcon8URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/yelp.png");
INSERT INTO `wp_postmeta` VALUES("3830", "152", "_WPMSGOPTION_SocialMediaPage9URL", "");
INSERT INTO `wp_postmeta` VALUES("3831", "152", "_WPMSGOPTION_SocialMediaIcon9URL", "");
INSERT INTO `wp_postmeta` VALUES("3832", "152", "_WPMSGOPTION_FBLikeURL", "");
INSERT INTO `wp_postmeta` VALUES("3833", "152", "_WPMSGOPTION_FBLikeWidth", "");
INSERT INTO `wp_postmeta` VALUES("3834", "152", "_WPMSGOPTION_FBLikeSendButton", "Y");
INSERT INTO `wp_postmeta` VALUES("3835", "152", "_WPMSGOPTION_FBLikeFaces", "Y");
INSERT INTO `wp_postmeta` VALUES("3836", "152", "_WPMSGOPTION_FBLikeLayoutStyle", "");
INSERT INTO `wp_postmeta` VALUES("3837", "152", "_WPMSGOPTION_FBLikeVerb", "");
INSERT INTO `wp_postmeta` VALUES("3838", "152", "_WPMSGOPTION_FBLikeColorScheme", "");
INSERT INTO `wp_postmeta` VALUES("3839", "152", "_WPMSGOPTION_FBCommentsURL", "");
INSERT INTO `wp_postmeta` VALUES("3840", "152", "_WPMSGOPTION_FBCommentsPosts", "");
INSERT INTO `wp_postmeta` VALUES("3841", "152", "_WPMSGOPTION_FBCommentsColorScheme", "");
INSERT INTO `wp_postmeta` VALUES("3842", "152", "_WPMSGOPTION_SearchPrompt", "");
INSERT INTO `wp_postmeta` VALUES("3843", "152", "_WPMSGOPTION_SearchSubmitPrompt", "");
INSERT INTO `wp_postmeta` VALUES("3844", "152", "_WPMSGOPTION_RSSFeedURL", "");
INSERT INTO `wp_postmeta` VALUES("3845", "152", "_WPMSGOPTION_RSSFeedMax", "");
INSERT INTO `wp_postmeta` VALUES("3846", "152", "_WPMSGOPTION_RSSFeedStyle", "TitleOnly");
INSERT INTO `wp_postmeta` VALUES("3847", "152", "_WPMSGOPTION_MetaTitle", "");
INSERT INTO `wp_postmeta` VALUES("3848", "152", "_WPMSGOPTION_MetaDescription", "");
INSERT INTO `wp_postmeta` VALUES("3849", "152", "_WPMSGOPTION_MetaKeywords", "");
INSERT INTO `wp_postmeta` VALUES("3850", "152", "_WPMSGOPTION_AnalyticsCode", "");
INSERT INTO `wp_postmeta` VALUES("3851", "152", "_WPMSGOPTION_CouponTitle", "");
INSERT INTO `wp_postmeta` VALUES("3852", "152", "_WPMSGOPTION_CouponCodeText", "");
INSERT INTO `wp_postmeta` VALUES("3853", "152", "_WPMSGOPTION_CouponStartText", "");
INSERT INTO `wp_postmeta` VALUES("3854", "152", "_WPMSGOPTION_CouponExpiryText", "");
INSERT INTO `wp_postmeta` VALUES("3855", "152", "_WPMSGOPTION_CouponCode", "");
INSERT INTO `wp_postmeta` VALUES("3856", "152", "_WPMSGOPTION_CouponCodeExpired", "");
INSERT INTO `wp_postmeta` VALUES("3857", "152", "_WPMSGOPTION_CouponStart", "");
INSERT INTO `wp_postmeta` VALUES("3858", "152", "_WPMSGOPTION_CouponExpiry", "");
INSERT INTO `wp_postmeta` VALUES("3859", "152", "_WPMSGOPTION_CouponDateFormat", "Y-m-d");
INSERT INTO `wp_postmeta` VALUES("3860", "152", "_WPMSGOPTION_CouponValidText", "");
INSERT INTO `wp_postmeta` VALUES("3861", "152", "_WPMSGOPTION_CouponExpiredText", "");
INSERT INTO `wp_postmeta` VALUES("3862", "152", "_WPMSGOPTION_CouponImage", "");
INSERT INTO `wp_postmeta` VALUES("3863", "152", "_WPMSGOPTION_TelephoneNumber", "");
INSERT INTO `wp_postmeta` VALUES("3864", "152", "_WPMSGOPTION_TelephoneCallToAction", "");
INSERT INTO `wp_postmeta` VALUES("3865", "152", "_WPMSGOPTION_ClickToCallType", "Call");
INSERT INTO `wp_postmeta` VALUES("3866", "152", "_WPMSGOPTION_SMSMessage", "");
INSERT INTO `wp_postmeta` VALUES("3867", "152", "_WPMSGOPTION_HidePhoneIcon", "");
INSERT INTO `wp_postmeta` VALUES("3868", "152", "_WPMSGOPTION_HidePhoneNumber", "");
INSERT INTO `wp_postmeta` VALUES("3869", "152", "_WPMSGOPTION_TelephoneIconImage", "");
INSERT INTO `wp_postmeta` VALUES("3870", "152", "_WPMSGOPTION_TelephoneImage", "");
INSERT INTO `wp_postmeta` VALUES("3871", "152", "_WPMSGOPTION_SMSNumber", "");
INSERT INTO `wp_postmeta` VALUES("3872", "152", "_WPMSGOPTION_SMSCallToAction", "");
INSERT INTO `wp_postmeta` VALUES("3873", "152", "_WPMSGOPTION_SMSMessageText", "");
INSERT INTO `wp_postmeta` VALUES("3874", "152", "_WPMSGOPTION_HideSMSIcon", "");
INSERT INTO `wp_postmeta` VALUES("3875", "152", "_WPMSGOPTION_HideSMSNumber", "");
INSERT INTO `wp_postmeta` VALUES("3876", "152", "_WPMSGOPTION_SMSIconImage", "");
INSERT INTO `wp_postmeta` VALUES("3877", "152", "_WPMSGOPTION_SMSImage", "");
INSERT INTO `wp_postmeta` VALUES("3878", "152", "_WPMSGOPTION_EmailTo", "");
INSERT INTO `wp_postmeta` VALUES("3879", "152", "_WPMSGOPTION_EmailCallToAction", "");
INSERT INTO `wp_postmeta` VALUES("3880", "152", "_WPMSGOPTION_EmailSubjectText", "");
INSERT INTO `wp_postmeta` VALUES("3881", "152", "_WPMSGOPTION_EmailMessageText", "");
INSERT INTO `wp_postmeta` VALUES("3882", "152", "_WPMSGOPTION_HideEmailIcon", "");
INSERT INTO `wp_postmeta` VALUES("3883", "152", "_WPMSGOPTION_EmailIconImage", "");
INSERT INTO `wp_postmeta` VALUES("3884", "152", "_WPMSGOPTION_EmailImage", "");
INSERT INTO `wp_postmeta` VALUES("3885", "152", "_WPMSGOPTION_SkypeUsername", "");
INSERT INTO `wp_postmeta` VALUES("3886", "152", "_WPMSGOPTION_SkypeCallToAction", "");
INSERT INTO `wp_postmeta` VALUES("3887", "152", "_WPMSGOPTION_HideSkypeIcon", "");
INSERT INTO `wp_postmeta` VALUES("3888", "152", "_WPMSGOPTION_SkypeIconImage", "");
INSERT INTO `wp_postmeta` VALUES("3889", "152", "_WPMSGOPTION_SkypeImage", "");
INSERT INTO `wp_postmeta` VALUES("3890", "152", "_WPMSGOPTION_RedirectURL", "");
INSERT INTO `wp_postmeta` VALUES("3891", "152", "_WPMSGOPTION_DeactivatedURL", "");
INSERT INTO `wp_postmeta` VALUES("3892", "152", "_WPMSGOPTION_ExportDomain", "");
INSERT INTO `wp_postmeta` VALUES("3893", "152", "_WPMSGOPTION_CreateBitly", "");
INSERT INTO `wp_postmeta` VALUES("3894", "152", "_WPMSGOPTION_BitlyUsername", "");
INSERT INTO `wp_postmeta` VALUES("3895", "152", "_WPMSGOPTION_BitlyApiKey", "");
INSERT INTO `wp_postmeta` VALUES("3896", "152", "_WPMSGOPTION_BitlyLongUrl", "");
INSERT INTO `wp_postmeta` VALUES("3897", "152", "_WPMSGOPTION_BitlyShortUrl", "");
INSERT INTO `wp_postmeta` VALUES("3898", "152", "_WPMSGOPTION_MapLocation", "");
INSERT INTO `wp_postmeta` VALUES("3899", "152", "_WPMSGOPTION_MapLongitude", "");
INSERT INTO `wp_postmeta` VALUES("3900", "152", "_WPMSGOPTION_MapLatitude", "");
INSERT INTO `wp_postmeta` VALUES("3901", "152", "_WPMSGOPTION_MapWidth", "");
INSERT INTO `wp_postmeta` VALUES("3902", "152", "_WPMSGOPTION_MapHeight", "");
INSERT INTO `wp_postmeta` VALUES("3903", "152", "_WPMSGOPTION_MapZoom", "");
INSERT INTO `wp_postmeta` VALUES("3904", "152", "_WPMSGOPTION_MapLanguage", "en");
INSERT INTO `wp_postmeta` VALUES("3905", "152", "_WPMSGOPTION_DisplayMapDirections", "");
INSERT INTO `wp_postmeta` VALUES("3906", "152", "_WPMSGOPTION_DirectionsPrompt", "");
INSERT INTO `wp_postmeta` VALUES("3907", "152", "_WPMSGOPTION_DirectionsButtonText", "");
INSERT INTO `wp_postmeta` VALUES("3908", "152", "_WPMSGOPTION_DisplayGPSDirectionsButton", "");
INSERT INTO `wp_postmeta` VALUES("3909", "152", "_WPMSGOPTION_GPSDirectionsButtonText", "");
INSERT INTO `wp_postmeta` VALUES("3910", "152", "_WPMSGOPTION_DirectionsPosition", "A");
INSERT INTO `wp_postmeta` VALUES("3911", "152", "_WPMSGOPTION_OptinNamePrompt", "");
INSERT INTO `wp_postmeta` VALUES("3912", "152", "_WPMSGOPTION_OptinEmailPrompt", "");
INSERT INTO `wp_postmeta` VALUES("3913", "152", "_WPMSGOPTION_OptinSubmitPrompt", "");
INSERT INTO `wp_postmeta` VALUES("3914", "152", "_WPMSGOPTION_OptinCode", "");
INSERT INTO `wp_postmeta` VALUES("3915", "152", "_WPMSGOPTION_OptinRedirectPage", "0");
INSERT INTO `wp_postmeta` VALUES("3916", "152", "_WPMSGOPTION_ContactSendToEmail", "");
INSERT INTO `wp_postmeta` VALUES("3917", "152", "_WPMSGOPTION_ContactSendFromName", "");
INSERT INTO `wp_postmeta` VALUES("3918", "152", "_WPMSGOPTION_ContactSendFromEmail", "");
INSERT INTO `wp_postmeta` VALUES("3919", "152", "_WPMSGOPTION_ContactNamePrompt", "");
INSERT INTO `wp_postmeta` VALUES("3920", "152", "_WPMSGOPTION_ContactPhonePrompt", "");
INSERT INTO `wp_postmeta` VALUES("3921", "152", "_WPMSGOPTION_ContactEmailPrompt", "");
INSERT INTO `wp_postmeta` VALUES("3922", "152", "_WPMSGOPTION_ContactMessagePrompt", "");
INSERT INTO `wp_postmeta` VALUES("3923", "152", "_WPMSGOPTION_ContactSubmitPrompt", "");
INSERT INTO `wp_postmeta` VALUES("3924", "152", "_WPMSGOPTION_ContactShowAcknowledgement", "");
INSERT INTO `wp_postmeta` VALUES("3925", "152", "_WPMSGOPTION_ContactAcknowledgementDisplayMessage", "");
INSERT INTO `wp_postmeta` VALUES("3926", "152", "_WPMSGOPTION_ContactSendAcknowledgement", "");
INSERT INTO `wp_postmeta` VALUES("3927", "152", "_WPMSGOPTION_ContactAcknowledgementName", "");
INSERT INTO `wp_postmeta` VALUES("3928", "152", "_WPMSGOPTION_ContactAcknowledgementEmail", "");
INSERT INTO `wp_postmeta` VALUES("3929", "152", "_WPMSGOPTION_ContactAcknowledgementSubject", "");
INSERT INTO `wp_postmeta` VALUES("3930", "152", "_WPMSGOPTION_ContactAcknowledgementMessage", "");
INSERT INTO `wp_postmeta` VALUES("3931", "152", "_WPMSGOPTION_SiteID", "123");
INSERT INTO `wp_postmeta` VALUES("3932", "157", "_WPMREDOPTION_RedirectURL", "");
INSERT INTO `wp_postmeta` VALUES("3933", "157", "_WPMREDOPTION_RedirectNever", "");
INSERT INTO `wp_postmeta` VALUES("3934", "157", "_WPMSGOPTION_Initialised", "Y");
INSERT INTO `wp_postmeta` VALUES("3935", "157", "_WPMSGOPTION_Deactivated", "");
INSERT INTO `wp_postmeta` VALUES("3936", "157", "_WPMSGOPTION_PageSlug", "services");
INSERT INTO `wp_postmeta` VALUES("3937", "157", "_WPMSGOPTION_PageName", "Services");
INSERT INTO `wp_postmeta` VALUES("3938", "157", "_WPMSGOPTION_TopbarPageName", "Services");
INSERT INTO `wp_postmeta` VALUES("3939", "157", "_WPMSGOPTION_MenuDesc", "");
INSERT INTO `wp_postmeta` VALUES("3940", "157", "_WPMSGOPTION_ThemeType", "Site");
INSERT INTO `wp_postmeta` VALUES("3941", "157", "_WPMSGOPTION_PageTheme", "113");
INSERT INTO `wp_postmeta` VALUES("3942", "157", "_WPMSGOPTION_MenuStyle", "Vertical");
INSERT INTO `wp_postmeta` VALUES("3943", "157", "_WPMSGOPTION_MenuPosition", "T");
INSERT INTO `wp_postmeta` VALUES("3944", "157", "_WPMSGOPTION_ExcludePage", "");
INSERT INTO `wp_postmeta` VALUES("3945", "157", "_WPMSGOPTION_ExcludeFromSearch", "");
INSERT INTO `wp_postmeta` VALUES("3946", "157", "_WPMSGOPTION_BackgroundImage", "");
INSERT INTO `wp_postmeta` VALUES("3947", "157", "_WPMSGOPTION_BackgroundImageRepeat", "repeat");
INSERT INTO `wp_postmeta` VALUES("3948", "157", "_WPMSGOPTION_BackgroundImagePosition", "lefttop");
INSERT INTO `wp_postmeta` VALUES("3949", "157", "_WPMSGOPTION_PageMinimumHeight", "");
INSERT INTO `wp_postmeta` VALUES("3950", "157", "_WPMSGOPTION_DisplayLogo", "");
INSERT INTO `wp_postmeta` VALUES("3951", "157", "_WPMSGOPTION_LogoImage", "");
INSERT INTO `wp_postmeta` VALUES("3952", "157", "_WPMSGOPTION_LogoBackgroundColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("3953", "157", "_WPMSGOPTION_LogoUseBackgroundColor", "");
INSERT INTO `wp_postmeta` VALUES("3954", "157", "_WPMSGOPTION_FooterBackgroundColor", "");
INSERT INTO `wp_postmeta` VALUES("3955", "157", "_WPMSGOPTION_ThumbnailImage", "Info");
INSERT INTO `wp_postmeta` VALUES("3956", "157", "_WPMSGOPTION_ThumbnailImageColor", "LightBlue");
INSERT INTO `wp_postmeta` VALUES("3957", "157", "_WPMSGOPTION_CustomThumbnailImage", "");
INSERT INTO `wp_postmeta` VALUES("3958", "157", "_WPMSGOPTION_DisplayPreview", "");
INSERT INTO `wp_postmeta` VALUES("3959", "157", "_WPMSGOPTION_DisplayTopBar", "");
INSERT INTO `wp_postmeta` VALUES("3960", "157", "_WPMSGOPTION_TopbarRightLinkText", "");
INSERT INTO `wp_postmeta` VALUES("3961", "157", "_WPMSGOPTION_TopbarRightLinkURL", "");
INSERT INTO `wp_postmeta` VALUES("3962", "157", "_WPMSGOPTION_TopbarRightLinkPage", "0");
INSERT INTO `wp_postmeta` VALUES("3963", "157", "_WPMSGOPTION_DisplayPhoneTopBar", "");
INSERT INTO `wp_postmeta` VALUES("3964", "157", "_WPMSGOPTION_FacebookURL", "");
INSERT INTO `wp_postmeta` VALUES("3965", "157", "_WPMSGOPTION_TwitterURL", "");
INSERT INTO `wp_postmeta` VALUES("3966", "157", "_WPMSGOPTION_GooglePlusURL", "");
INSERT INTO `wp_postmeta` VALUES("3967", "157", "_WPMSGOPTION_YouTubeURL", "");
INSERT INTO `wp_postmeta` VALUES("3968", "157", "_WPMSGOPTION_LinkedInURL", "");
INSERT INTO `wp_postmeta` VALUES("3969", "157", "_WPMSGOPTION_SocialMediaPage1URL", "");
INSERT INTO `wp_postmeta` VALUES("3970", "157", "_WPMSGOPTION_SocialMediaIcon1URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/facebook.png");
INSERT INTO `wp_postmeta` VALUES("3971", "157", "_WPMSGOPTION_SocialMediaPage2URL", "");
INSERT INTO `wp_postmeta` VALUES("3972", "157", "_WPMSGOPTION_SocialMediaIcon2URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/twitter.png");
INSERT INTO `wp_postmeta` VALUES("3973", "157", "_WPMSGOPTION_SocialMediaPage3URL", "");
INSERT INTO `wp_postmeta` VALUES("3974", "157", "_WPMSGOPTION_SocialMediaIcon3URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/googleplus.png");
INSERT INTO `wp_postmeta` VALUES("3975", "157", "_WPMSGOPTION_SocialMediaPage4URL", "");
INSERT INTO `wp_postmeta` VALUES("3976", "157", "_WPMSGOPTION_SocialMediaIcon4URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/youtube.png");
INSERT INTO `wp_postmeta` VALUES("3977", "157", "_WPMSGOPTION_SocialMediaPage5URL", "");
INSERT INTO `wp_postmeta` VALUES("3978", "157", "_WPMSGOPTION_SocialMediaIcon5URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/linkedin.png");
INSERT INTO `wp_postmeta` VALUES("3979", "157", "_WPMSGOPTION_SocialMediaPage6URL", "");
INSERT INTO `wp_postmeta` VALUES("3980", "157", "_WPMSGOPTION_SocialMediaIcon6URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/pinterest.png");
INSERT INTO `wp_postmeta` VALUES("3981", "157", "_WPMSGOPTION_SocialMediaPage7URL", "");
INSERT INTO `wp_postmeta` VALUES("3982", "157", "_WPMSGOPTION_SocialMediaIcon7URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/flickr.png");
INSERT INTO `wp_postmeta` VALUES("3983", "157", "_WPMSGOPTION_SocialMediaPage8URL", "");
INSERT INTO `wp_postmeta` VALUES("3984", "157", "_WPMSGOPTION_SocialMediaIcon8URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/yelp.png");
INSERT INTO `wp_postmeta` VALUES("3985", "157", "_WPMSGOPTION_SocialMediaPage9URL", "");
INSERT INTO `wp_postmeta` VALUES("3986", "157", "_WPMSGOPTION_SocialMediaIcon9URL", "");
INSERT INTO `wp_postmeta` VALUES("3987", "157", "_WPMSGOPTION_FBLikeURL", "");
INSERT INTO `wp_postmeta` VALUES("3988", "157", "_WPMSGOPTION_FBLikeWidth", "");
INSERT INTO `wp_postmeta` VALUES("3989", "157", "_WPMSGOPTION_FBLikeSendButton", "Y");
INSERT INTO `wp_postmeta` VALUES("3990", "157", "_WPMSGOPTION_FBLikeFaces", "Y");
INSERT INTO `wp_postmeta` VALUES("3991", "157", "_WPMSGOPTION_FBLikeLayoutStyle", "");
INSERT INTO `wp_postmeta` VALUES("3992", "157", "_WPMSGOPTION_FBLikeVerb", "");
INSERT INTO `wp_postmeta` VALUES("3993", "157", "_WPMSGOPTION_FBLikeColorScheme", "");
INSERT INTO `wp_postmeta` VALUES("3994", "157", "_WPMSGOPTION_FBCommentsURL", "");
INSERT INTO `wp_postmeta` VALUES("3995", "157", "_WPMSGOPTION_FBCommentsPosts", "");
INSERT INTO `wp_postmeta` VALUES("3996", "157", "_WPMSGOPTION_FBCommentsColorScheme", "");
INSERT INTO `wp_postmeta` VALUES("3997", "157", "_WPMSGOPTION_SearchPrompt", "");
INSERT INTO `wp_postmeta` VALUES("3998", "157", "_WPMSGOPTION_SearchSubmitPrompt", "");
INSERT INTO `wp_postmeta` VALUES("3999", "157", "_WPMSGOPTION_RSSFeedURL", "");
INSERT INTO `wp_postmeta` VALUES("4000", "157", "_WPMSGOPTION_RSSFeedMax", "");
INSERT INTO `wp_postmeta` VALUES("4001", "157", "_WPMSGOPTION_RSSFeedStyle", "TitleOnly");
INSERT INTO `wp_postmeta` VALUES("4002", "157", "_WPMSGOPTION_MetaTitle", "");
INSERT INTO `wp_postmeta` VALUES("4003", "157", "_WPMSGOPTION_MetaDescription", "");
INSERT INTO `wp_postmeta` VALUES("4004", "157", "_WPMSGOPTION_MetaKeywords", "");
INSERT INTO `wp_postmeta` VALUES("4005", "157", "_WPMSGOPTION_AnalyticsCode", "");
INSERT INTO `wp_postmeta` VALUES("4006", "157", "_WPMSGOPTION_CouponTitle", "");
INSERT INTO `wp_postmeta` VALUES("4007", "157", "_WPMSGOPTION_CouponCodeText", "");
INSERT INTO `wp_postmeta` VALUES("4008", "157", "_WPMSGOPTION_CouponStartText", "");
INSERT INTO `wp_postmeta` VALUES("4009", "157", "_WPMSGOPTION_CouponExpiryText", "");
INSERT INTO `wp_postmeta` VALUES("4010", "157", "_WPMSGOPTION_CouponCode", "");
INSERT INTO `wp_postmeta` VALUES("4011", "157", "_WPMSGOPTION_CouponCodeExpired", "");
INSERT INTO `wp_postmeta` VALUES("4012", "157", "_WPMSGOPTION_CouponStart", "");
INSERT INTO `wp_postmeta` VALUES("4013", "157", "_WPMSGOPTION_CouponExpiry", "");
INSERT INTO `wp_postmeta` VALUES("4014", "157", "_WPMSGOPTION_CouponDateFormat", "Y-m-d");
INSERT INTO `wp_postmeta` VALUES("4015", "157", "_WPMSGOPTION_CouponValidText", "");
INSERT INTO `wp_postmeta` VALUES("4016", "157", "_WPMSGOPTION_CouponExpiredText", "");
INSERT INTO `wp_postmeta` VALUES("4017", "157", "_WPMSGOPTION_CouponImage", "");
INSERT INTO `wp_postmeta` VALUES("4018", "157", "_WPMSGOPTION_TelephoneNumber", "");
INSERT INTO `wp_postmeta` VALUES("4019", "157", "_WPMSGOPTION_TelephoneCallToAction", "");
INSERT INTO `wp_postmeta` VALUES("4020", "157", "_WPMSGOPTION_ClickToCallType", "Call");
INSERT INTO `wp_postmeta` VALUES("4021", "157", "_WPMSGOPTION_SMSMessage", "");
INSERT INTO `wp_postmeta` VALUES("4022", "157", "_WPMSGOPTION_HidePhoneIcon", "");
INSERT INTO `wp_postmeta` VALUES("4023", "157", "_WPMSGOPTION_HidePhoneNumber", "");
INSERT INTO `wp_postmeta` VALUES("4024", "157", "_WPMSGOPTION_TelephoneIconImage", "");
INSERT INTO `wp_postmeta` VALUES("4025", "157", "_WPMSGOPTION_TelephoneImage", "");
INSERT INTO `wp_postmeta` VALUES("4026", "157", "_WPMSGOPTION_SMSNumber", "");
INSERT INTO `wp_postmeta` VALUES("4027", "157", "_WPMSGOPTION_SMSCallToAction", "");
INSERT INTO `wp_postmeta` VALUES("4028", "157", "_WPMSGOPTION_SMSMessageText", "");
INSERT INTO `wp_postmeta` VALUES("4029", "157", "_WPMSGOPTION_HideSMSIcon", "");
INSERT INTO `wp_postmeta` VALUES("4030", "157", "_WPMSGOPTION_HideSMSNumber", "");
INSERT INTO `wp_postmeta` VALUES("4031", "157", "_WPMSGOPTION_SMSIconImage", "");
INSERT INTO `wp_postmeta` VALUES("4032", "157", "_WPMSGOPTION_SMSImage", "");
INSERT INTO `wp_postmeta` VALUES("4033", "157", "_WPMSGOPTION_EmailTo", "");
INSERT INTO `wp_postmeta` VALUES("4034", "157", "_WPMSGOPTION_EmailCallToAction", "");
INSERT INTO `wp_postmeta` VALUES("4035", "157", "_WPMSGOPTION_EmailSubjectText", "");
INSERT INTO `wp_postmeta` VALUES("4036", "157", "_WPMSGOPTION_EmailMessageText", "");
INSERT INTO `wp_postmeta` VALUES("4037", "157", "_WPMSGOPTION_HideEmailIcon", "");
INSERT INTO `wp_postmeta` VALUES("4038", "157", "_WPMSGOPTION_EmailIconImage", "");
INSERT INTO `wp_postmeta` VALUES("4039", "157", "_WPMSGOPTION_EmailImage", "");
INSERT INTO `wp_postmeta` VALUES("4040", "157", "_WPMSGOPTION_SkypeUsername", "");
INSERT INTO `wp_postmeta` VALUES("4041", "157", "_WPMSGOPTION_SkypeCallToAction", "");
INSERT INTO `wp_postmeta` VALUES("4042", "157", "_WPMSGOPTION_HideSkypeIcon", "");
INSERT INTO `wp_postmeta` VALUES("4043", "157", "_WPMSGOPTION_SkypeIconImage", "");
INSERT INTO `wp_postmeta` VALUES("4044", "157", "_WPMSGOPTION_SkypeImage", "");
INSERT INTO `wp_postmeta` VALUES("4045", "157", "_WPMSGOPTION_RedirectURL", "");
INSERT INTO `wp_postmeta` VALUES("4046", "157", "_WPMSGOPTION_DeactivatedURL", "");
INSERT INTO `wp_postmeta` VALUES("4047", "157", "_WPMSGOPTION_ExportDomain", "");
INSERT INTO `wp_postmeta` VALUES("4048", "157", "_WPMSGOPTION_CreateBitly", "");
INSERT INTO `wp_postmeta` VALUES("4049", "157", "_WPMSGOPTION_BitlyUsername", "");
INSERT INTO `wp_postmeta` VALUES("4050", "157", "_WPMSGOPTION_BitlyApiKey", "");
INSERT INTO `wp_postmeta` VALUES("4051", "157", "_WPMSGOPTION_BitlyLongUrl", "");
INSERT INTO `wp_postmeta` VALUES("4052", "157", "_WPMSGOPTION_BitlyShortUrl", "");
INSERT INTO `wp_postmeta` VALUES("4053", "157", "_WPMSGOPTION_MapLocation", "");
INSERT INTO `wp_postmeta` VALUES("4054", "157", "_WPMSGOPTION_MapLongitude", "");
INSERT INTO `wp_postmeta` VALUES("4055", "157", "_WPMSGOPTION_MapLatitude", "");
INSERT INTO `wp_postmeta` VALUES("4056", "157", "_WPMSGOPTION_MapWidth", "");
INSERT INTO `wp_postmeta` VALUES("4057", "157", "_WPMSGOPTION_MapHeight", "");
INSERT INTO `wp_postmeta` VALUES("4058", "157", "_WPMSGOPTION_MapZoom", "");
INSERT INTO `wp_postmeta` VALUES("4059", "157", "_WPMSGOPTION_MapLanguage", "en");
INSERT INTO `wp_postmeta` VALUES("4060", "157", "_WPMSGOPTION_DisplayMapDirections", "");
INSERT INTO `wp_postmeta` VALUES("4061", "157", "_WPMSGOPTION_DirectionsPrompt", "");
INSERT INTO `wp_postmeta` VALUES("4062", "157", "_WPMSGOPTION_DirectionsButtonText", "");
INSERT INTO `wp_postmeta` VALUES("4063", "157", "_WPMSGOPTION_DisplayGPSDirectionsButton", "");
INSERT INTO `wp_postmeta` VALUES("4064", "157", "_WPMSGOPTION_GPSDirectionsButtonText", "");
INSERT INTO `wp_postmeta` VALUES("4065", "157", "_WPMSGOPTION_DirectionsPosition", "A");
INSERT INTO `wp_postmeta` VALUES("4066", "157", "_WPMSGOPTION_OptinNamePrompt", "");
INSERT INTO `wp_postmeta` VALUES("4067", "157", "_WPMSGOPTION_OptinEmailPrompt", "");
INSERT INTO `wp_postmeta` VALUES("4068", "157", "_WPMSGOPTION_OptinSubmitPrompt", "");
INSERT INTO `wp_postmeta` VALUES("4069", "157", "_WPMSGOPTION_OptinCode", "");
INSERT INTO `wp_postmeta` VALUES("4070", "157", "_WPMSGOPTION_OptinRedirectPage", "0");
INSERT INTO `wp_postmeta` VALUES("4071", "157", "_WPMSGOPTION_ContactSendToEmail", "");
INSERT INTO `wp_postmeta` VALUES("4072", "157", "_WPMSGOPTION_ContactSendFromName", "");
INSERT INTO `wp_postmeta` VALUES("4073", "157", "_WPMSGOPTION_ContactSendFromEmail", "");
INSERT INTO `wp_postmeta` VALUES("4074", "157", "_WPMSGOPTION_ContactNamePrompt", "");
INSERT INTO `wp_postmeta` VALUES("4075", "157", "_WPMSGOPTION_ContactPhonePrompt", "");
INSERT INTO `wp_postmeta` VALUES("4076", "157", "_WPMSGOPTION_ContactEmailPrompt", "");
INSERT INTO `wp_postmeta` VALUES("4077", "157", "_WPMSGOPTION_ContactMessagePrompt", "");
INSERT INTO `wp_postmeta` VALUES("4078", "157", "_WPMSGOPTION_ContactSubmitPrompt", "");
INSERT INTO `wp_postmeta` VALUES("4079", "157", "_WPMSGOPTION_ContactShowAcknowledgement", "");
INSERT INTO `wp_postmeta` VALUES("4080", "157", "_WPMSGOPTION_ContactAcknowledgementDisplayMessage", "");
INSERT INTO `wp_postmeta` VALUES("4081", "157", "_WPMSGOPTION_ContactSendAcknowledgement", "");
INSERT INTO `wp_postmeta` VALUES("4082", "157", "_WPMSGOPTION_ContactAcknowledgementName", "");
INSERT INTO `wp_postmeta` VALUES("4083", "157", "_WPMSGOPTION_ContactAcknowledgementEmail", "");
INSERT INTO `wp_postmeta` VALUES("4084", "157", "_WPMSGOPTION_ContactAcknowledgementSubject", "");
INSERT INTO `wp_postmeta` VALUES("4085", "157", "_WPMSGOPTION_ContactAcknowledgementMessage", "");
INSERT INTO `wp_postmeta` VALUES("4086", "157", "_WPMSGOPTION_SiteID", "123");
INSERT INTO `wp_postmeta` VALUES("4087", "159", "_WPMREDOPTION_RedirectURL", "");
INSERT INTO `wp_postmeta` VALUES("4088", "159", "_WPMREDOPTION_RedirectNever", "");
INSERT INTO `wp_postmeta` VALUES("4089", "159", "_WPMSGOPTION_Initialised", "Y");
INSERT INTO `wp_postmeta` VALUES("4090", "159", "_WPMSGOPTION_Deactivated", "");
INSERT INTO `wp_postmeta` VALUES("4091", "159", "_WPMSGOPTION_PageSlug", "pricing-guidlines");
INSERT INTO `wp_postmeta` VALUES("4092", "159", "_WPMSGOPTION_PageName", "Basic Fee");
INSERT INTO `wp_postmeta` VALUES("4093", "159", "_WPMSGOPTION_TopbarPageName", "Basic Fee");
INSERT INTO `wp_postmeta` VALUES("4094", "159", "_WPMSGOPTION_MenuDesc", "");
INSERT INTO `wp_postmeta` VALUES("4095", "159", "_WPMSGOPTION_ThemeType", "Site");
INSERT INTO `wp_postmeta` VALUES("4096", "159", "_WPMSGOPTION_PageTheme", "113");
INSERT INTO `wp_postmeta` VALUES("4097", "159", "_WPMSGOPTION_MenuStyle", "Vertical");
INSERT INTO `wp_postmeta` VALUES("4098", "159", "_WPMSGOPTION_MenuPosition", "T");
INSERT INTO `wp_postmeta` VALUES("4099", "159", "_WPMSGOPTION_ExcludePage", "");
INSERT INTO `wp_postmeta` VALUES("4100", "159", "_WPMSGOPTION_ExcludeFromSearch", "");
INSERT INTO `wp_postmeta` VALUES("4101", "159", "_WPMSGOPTION_BackgroundImage", "");
INSERT INTO `wp_postmeta` VALUES("4102", "159", "_WPMSGOPTION_BackgroundImageRepeat", "repeat");
INSERT INTO `wp_postmeta` VALUES("4103", "159", "_WPMSGOPTION_BackgroundImagePosition", "lefttop");
INSERT INTO `wp_postmeta` VALUES("4104", "159", "_WPMSGOPTION_PageMinimumHeight", "");
INSERT INTO `wp_postmeta` VALUES("4105", "159", "_WPMSGOPTION_DisplayLogo", "");
INSERT INTO `wp_postmeta` VALUES("4106", "159", "_WPMSGOPTION_LogoImage", "");
INSERT INTO `wp_postmeta` VALUES("4107", "159", "_WPMSGOPTION_LogoBackgroundColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("4108", "159", "_WPMSGOPTION_LogoUseBackgroundColor", "");
INSERT INTO `wp_postmeta` VALUES("4109", "159", "_WPMSGOPTION_FooterBackgroundColor", "");
INSERT INTO `wp_postmeta` VALUES("4110", "159", "_WPMSGOPTION_ThumbnailImage", "Lock");
INSERT INTO `wp_postmeta` VALUES("4111", "159", "_WPMSGOPTION_ThumbnailImageColor", "LightBlue");
INSERT INTO `wp_postmeta` VALUES("4112", "159", "_WPMSGOPTION_CustomThumbnailImage", "");
INSERT INTO `wp_postmeta` VALUES("4113", "159", "_WPMSGOPTION_DisplayPreview", "");
INSERT INTO `wp_postmeta` VALUES("4114", "159", "_WPMSGOPTION_DisplayTopBar", "");
INSERT INTO `wp_postmeta` VALUES("4115", "159", "_WPMSGOPTION_TopbarRightLinkText", "");
INSERT INTO `wp_postmeta` VALUES("4116", "159", "_WPMSGOPTION_TopbarRightLinkURL", "");
INSERT INTO `wp_postmeta` VALUES("4117", "159", "_WPMSGOPTION_TopbarRightLinkPage", "0");
INSERT INTO `wp_postmeta` VALUES("4118", "159", "_WPMSGOPTION_DisplayPhoneTopBar", "");
INSERT INTO `wp_postmeta` VALUES("4119", "159", "_WPMSGOPTION_FacebookURL", "");
INSERT INTO `wp_postmeta` VALUES("4120", "159", "_WPMSGOPTION_TwitterURL", "");
INSERT INTO `wp_postmeta` VALUES("4121", "159", "_WPMSGOPTION_GooglePlusURL", "");
INSERT INTO `wp_postmeta` VALUES("4122", "159", "_WPMSGOPTION_YouTubeURL", "");
INSERT INTO `wp_postmeta` VALUES("4123", "159", "_WPMSGOPTION_LinkedInURL", "");
INSERT INTO `wp_postmeta` VALUES("4124", "159", "_WPMSGOPTION_SocialMediaPage1URL", "");
INSERT INTO `wp_postmeta` VALUES("4125", "159", "_WPMSGOPTION_SocialMediaIcon1URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/facebook.png");
INSERT INTO `wp_postmeta` VALUES("4126", "159", "_WPMSGOPTION_SocialMediaPage2URL", "");
INSERT INTO `wp_postmeta` VALUES("4127", "159", "_WPMSGOPTION_SocialMediaIcon2URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/twitter.png");
INSERT INTO `wp_postmeta` VALUES("4128", "159", "_WPMSGOPTION_SocialMediaPage3URL", "");
INSERT INTO `wp_postmeta` VALUES("4129", "159", "_WPMSGOPTION_SocialMediaIcon3URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/googleplus.png");
INSERT INTO `wp_postmeta` VALUES("4130", "159", "_WPMSGOPTION_SocialMediaPage4URL", "");
INSERT INTO `wp_postmeta` VALUES("4131", "159", "_WPMSGOPTION_SocialMediaIcon4URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/youtube.png");
INSERT INTO `wp_postmeta` VALUES("4132", "159", "_WPMSGOPTION_SocialMediaPage5URL", "");
INSERT INTO `wp_postmeta` VALUES("4133", "159", "_WPMSGOPTION_SocialMediaIcon5URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/linkedin.png");
INSERT INTO `wp_postmeta` VALUES("4134", "159", "_WPMSGOPTION_SocialMediaPage6URL", "");
INSERT INTO `wp_postmeta` VALUES("4135", "159", "_WPMSGOPTION_SocialMediaIcon6URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/pinterest.png");
INSERT INTO `wp_postmeta` VALUES("4136", "159", "_WPMSGOPTION_SocialMediaPage7URL", "");
INSERT INTO `wp_postmeta` VALUES("4137", "159", "_WPMSGOPTION_SocialMediaIcon7URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/flickr.png");
INSERT INTO `wp_postmeta` VALUES("4138", "159", "_WPMSGOPTION_SocialMediaPage8URL", "");
INSERT INTO `wp_postmeta` VALUES("4139", "159", "_WPMSGOPTION_SocialMediaIcon8URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/yelp.png");
INSERT INTO `wp_postmeta` VALUES("4140", "159", "_WPMSGOPTION_SocialMediaPage9URL", "");
INSERT INTO `wp_postmeta` VALUES("4141", "159", "_WPMSGOPTION_SocialMediaIcon9URL", "");
INSERT INTO `wp_postmeta` VALUES("4142", "159", "_WPMSGOPTION_FBLikeURL", "");
INSERT INTO `wp_postmeta` VALUES("4143", "159", "_WPMSGOPTION_FBLikeWidth", "");
INSERT INTO `wp_postmeta` VALUES("4144", "159", "_WPMSGOPTION_FBLikeSendButton", "Y");
INSERT INTO `wp_postmeta` VALUES("4145", "159", "_WPMSGOPTION_FBLikeFaces", "Y");
INSERT INTO `wp_postmeta` VALUES("4146", "159", "_WPMSGOPTION_FBLikeLayoutStyle", "");
INSERT INTO `wp_postmeta` VALUES("4147", "159", "_WPMSGOPTION_FBLikeVerb", "");
INSERT INTO `wp_postmeta` VALUES("4148", "159", "_WPMSGOPTION_FBLikeColorScheme", "");
INSERT INTO `wp_postmeta` VALUES("4149", "159", "_WPMSGOPTION_FBCommentsURL", "");
INSERT INTO `wp_postmeta` VALUES("4150", "159", "_WPMSGOPTION_FBCommentsPosts", "");
INSERT INTO `wp_postmeta` VALUES("4151", "159", "_WPMSGOPTION_FBCommentsColorScheme", "");
INSERT INTO `wp_postmeta` VALUES("4152", "159", "_WPMSGOPTION_SearchPrompt", "");
INSERT INTO `wp_postmeta` VALUES("4153", "159", "_WPMSGOPTION_SearchSubmitPrompt", "");
INSERT INTO `wp_postmeta` VALUES("4154", "159", "_WPMSGOPTION_RSSFeedURL", "");
INSERT INTO `wp_postmeta` VALUES("4155", "159", "_WPMSGOPTION_RSSFeedMax", "");
INSERT INTO `wp_postmeta` VALUES("4156", "159", "_WPMSGOPTION_RSSFeedStyle", "TitleOnly");
INSERT INTO `wp_postmeta` VALUES("4157", "159", "_WPMSGOPTION_MetaTitle", "");
INSERT INTO `wp_postmeta` VALUES("4158", "159", "_WPMSGOPTION_MetaDescription", "");
INSERT INTO `wp_postmeta` VALUES("4159", "159", "_WPMSGOPTION_MetaKeywords", "");
INSERT INTO `wp_postmeta` VALUES("4160", "159", "_WPMSGOPTION_AnalyticsCode", "");
INSERT INTO `wp_postmeta` VALUES("4161", "159", "_WPMSGOPTION_CouponTitle", "");
INSERT INTO `wp_postmeta` VALUES("4162", "159", "_WPMSGOPTION_CouponCodeText", "");
INSERT INTO `wp_postmeta` VALUES("4163", "159", "_WPMSGOPTION_CouponStartText", "");
INSERT INTO `wp_postmeta` VALUES("4164", "159", "_WPMSGOPTION_CouponExpiryText", "");
INSERT INTO `wp_postmeta` VALUES("4165", "159", "_WPMSGOPTION_CouponCode", "");
INSERT INTO `wp_postmeta` VALUES("4166", "159", "_WPMSGOPTION_CouponCodeExpired", "");
INSERT INTO `wp_postmeta` VALUES("4167", "159", "_WPMSGOPTION_CouponStart", "");
INSERT INTO `wp_postmeta` VALUES("4168", "159", "_WPMSGOPTION_CouponExpiry", "");
INSERT INTO `wp_postmeta` VALUES("4169", "159", "_WPMSGOPTION_CouponDateFormat", "Y-m-d");
INSERT INTO `wp_postmeta` VALUES("4170", "159", "_WPMSGOPTION_CouponValidText", "");
INSERT INTO `wp_postmeta` VALUES("4171", "159", "_WPMSGOPTION_CouponExpiredText", "");
INSERT INTO `wp_postmeta` VALUES("4172", "159", "_WPMSGOPTION_CouponImage", "");
INSERT INTO `wp_postmeta` VALUES("4173", "159", "_WPMSGOPTION_TelephoneNumber", "");
INSERT INTO `wp_postmeta` VALUES("4174", "159", "_WPMSGOPTION_TelephoneCallToAction", "");
INSERT INTO `wp_postmeta` VALUES("4175", "159", "_WPMSGOPTION_ClickToCallType", "Call");
INSERT INTO `wp_postmeta` VALUES("4176", "159", "_WPMSGOPTION_SMSMessage", "");
INSERT INTO `wp_postmeta` VALUES("4177", "159", "_WPMSGOPTION_HidePhoneIcon", "");
INSERT INTO `wp_postmeta` VALUES("4178", "159", "_WPMSGOPTION_HidePhoneNumber", "");
INSERT INTO `wp_postmeta` VALUES("4179", "159", "_WPMSGOPTION_TelephoneIconImage", "");
INSERT INTO `wp_postmeta` VALUES("4180", "159", "_WPMSGOPTION_TelephoneImage", "");
INSERT INTO `wp_postmeta` VALUES("4181", "159", "_WPMSGOPTION_SMSNumber", "");
INSERT INTO `wp_postmeta` VALUES("4182", "159", "_WPMSGOPTION_SMSCallToAction", "");
INSERT INTO `wp_postmeta` VALUES("4183", "159", "_WPMSGOPTION_SMSMessageText", "");
INSERT INTO `wp_postmeta` VALUES("4184", "159", "_WPMSGOPTION_HideSMSIcon", "");
INSERT INTO `wp_postmeta` VALUES("4185", "159", "_WPMSGOPTION_HideSMSNumber", "");
INSERT INTO `wp_postmeta` VALUES("4186", "159", "_WPMSGOPTION_SMSIconImage", "");
INSERT INTO `wp_postmeta` VALUES("4187", "159", "_WPMSGOPTION_SMSImage", "");
INSERT INTO `wp_postmeta` VALUES("4188", "159", "_WPMSGOPTION_EmailTo", "");
INSERT INTO `wp_postmeta` VALUES("4189", "159", "_WPMSGOPTION_EmailCallToAction", "");
INSERT INTO `wp_postmeta` VALUES("4190", "159", "_WPMSGOPTION_EmailSubjectText", "");
INSERT INTO `wp_postmeta` VALUES("4191", "159", "_WPMSGOPTION_EmailMessageText", "");
INSERT INTO `wp_postmeta` VALUES("4192", "159", "_WPMSGOPTION_HideEmailIcon", "");
INSERT INTO `wp_postmeta` VALUES("4193", "159", "_WPMSGOPTION_EmailIconImage", "");
INSERT INTO `wp_postmeta` VALUES("4194", "159", "_WPMSGOPTION_EmailImage", "");
INSERT INTO `wp_postmeta` VALUES("4195", "159", "_WPMSGOPTION_SkypeUsername", "");
INSERT INTO `wp_postmeta` VALUES("4196", "159", "_WPMSGOPTION_SkypeCallToAction", "");
INSERT INTO `wp_postmeta` VALUES("4197", "159", "_WPMSGOPTION_HideSkypeIcon", "");
INSERT INTO `wp_postmeta` VALUES("4198", "159", "_WPMSGOPTION_SkypeIconImage", "");
INSERT INTO `wp_postmeta` VALUES("4199", "159", "_WPMSGOPTION_SkypeImage", "");
INSERT INTO `wp_postmeta` VALUES("4200", "159", "_WPMSGOPTION_RedirectURL", "");
INSERT INTO `wp_postmeta` VALUES("4201", "159", "_WPMSGOPTION_DeactivatedURL", "");
INSERT INTO `wp_postmeta` VALUES("4202", "159", "_WPMSGOPTION_ExportDomain", "");
INSERT INTO `wp_postmeta` VALUES("4203", "159", "_WPMSGOPTION_CreateBitly", "");
INSERT INTO `wp_postmeta` VALUES("4204", "159", "_WPMSGOPTION_BitlyUsername", "");
INSERT INTO `wp_postmeta` VALUES("4205", "159", "_WPMSGOPTION_BitlyApiKey", "");
INSERT INTO `wp_postmeta` VALUES("4206", "159", "_WPMSGOPTION_BitlyLongUrl", "");
INSERT INTO `wp_postmeta` VALUES("4207", "159", "_WPMSGOPTION_BitlyShortUrl", "");
INSERT INTO `wp_postmeta` VALUES("4208", "159", "_WPMSGOPTION_MapLocation", "");
INSERT INTO `wp_postmeta` VALUES("4209", "159", "_WPMSGOPTION_MapLongitude", "");
INSERT INTO `wp_postmeta` VALUES("4210", "159", "_WPMSGOPTION_MapLatitude", "");
INSERT INTO `wp_postmeta` VALUES("4211", "159", "_WPMSGOPTION_MapWidth", "");
INSERT INTO `wp_postmeta` VALUES("4212", "159", "_WPMSGOPTION_MapHeight", "");
INSERT INTO `wp_postmeta` VALUES("4213", "159", "_WPMSGOPTION_MapZoom", "");
INSERT INTO `wp_postmeta` VALUES("4214", "159", "_WPMSGOPTION_MapLanguage", "en");
INSERT INTO `wp_postmeta` VALUES("4215", "159", "_WPMSGOPTION_DisplayMapDirections", "");
INSERT INTO `wp_postmeta` VALUES("4216", "159", "_WPMSGOPTION_DirectionsPrompt", "");
INSERT INTO `wp_postmeta` VALUES("4217", "159", "_WPMSGOPTION_DirectionsButtonText", "");
INSERT INTO `wp_postmeta` VALUES("4218", "159", "_WPMSGOPTION_DisplayGPSDirectionsButton", "");
INSERT INTO `wp_postmeta` VALUES("4219", "159", "_WPMSGOPTION_GPSDirectionsButtonText", "");
INSERT INTO `wp_postmeta` VALUES("4220", "159", "_WPMSGOPTION_DirectionsPosition", "A");
INSERT INTO `wp_postmeta` VALUES("4221", "159", "_WPMSGOPTION_OptinNamePrompt", "");
INSERT INTO `wp_postmeta` VALUES("4222", "159", "_WPMSGOPTION_OptinEmailPrompt", "");
INSERT INTO `wp_postmeta` VALUES("4223", "159", "_WPMSGOPTION_OptinSubmitPrompt", "");
INSERT INTO `wp_postmeta` VALUES("4224", "159", "_WPMSGOPTION_OptinCode", "");
INSERT INTO `wp_postmeta` VALUES("4225", "159", "_WPMSGOPTION_OptinRedirectPage", "0");
INSERT INTO `wp_postmeta` VALUES("4226", "159", "_WPMSGOPTION_ContactSendToEmail", "");
INSERT INTO `wp_postmeta` VALUES("4227", "159", "_WPMSGOPTION_ContactSendFromName", "");
INSERT INTO `wp_postmeta` VALUES("4228", "159", "_WPMSGOPTION_ContactSendFromEmail", "");
INSERT INTO `wp_postmeta` VALUES("4229", "159", "_WPMSGOPTION_ContactNamePrompt", "");
INSERT INTO `wp_postmeta` VALUES("4230", "159", "_WPMSGOPTION_ContactPhonePrompt", "");
INSERT INTO `wp_postmeta` VALUES("4231", "159", "_WPMSGOPTION_ContactEmailPrompt", "");
INSERT INTO `wp_postmeta` VALUES("4232", "159", "_WPMSGOPTION_ContactMessagePrompt", "");
INSERT INTO `wp_postmeta` VALUES("4233", "159", "_WPMSGOPTION_ContactSubmitPrompt", "");
INSERT INTO `wp_postmeta` VALUES("4234", "159", "_WPMSGOPTION_ContactShowAcknowledgement", "");
INSERT INTO `wp_postmeta` VALUES("4235", "159", "_WPMSGOPTION_ContactAcknowledgementDisplayMessage", "");
INSERT INTO `wp_postmeta` VALUES("4236", "159", "_WPMSGOPTION_ContactSendAcknowledgement", "");
INSERT INTO `wp_postmeta` VALUES("4237", "159", "_WPMSGOPTION_ContactAcknowledgementName", "");
INSERT INTO `wp_postmeta` VALUES("4238", "159", "_WPMSGOPTION_ContactAcknowledgementEmail", "");
INSERT INTO `wp_postmeta` VALUES("4239", "159", "_WPMSGOPTION_ContactAcknowledgementSubject", "");
INSERT INTO `wp_postmeta` VALUES("4240", "159", "_WPMSGOPTION_ContactAcknowledgementMessage", "");
INSERT INTO `wp_postmeta` VALUES("4241", "159", "_WPMSGOPTION_SiteID", "170");
INSERT INTO `wp_postmeta` VALUES("4242", "162", "_WPMREDOPTION_RedirectURL", "");
INSERT INTO `wp_postmeta` VALUES("4243", "162", "_WPMREDOPTION_RedirectNever", "");
INSERT INTO `wp_postmeta` VALUES("4244", "162", "_WPMSGOPTION_Initialised", "Y");
INSERT INTO `wp_postmeta` VALUES("4245", "162", "_WPMSGOPTION_Deactivated", "");
INSERT INTO `wp_postmeta` VALUES("4246", "162", "_WPMSGOPTION_PageSlug", "coupon");
INSERT INTO `wp_postmeta` VALUES("4247", "162", "_WPMSGOPTION_PageName", "Coupon");
INSERT INTO `wp_postmeta` VALUES("4248", "162", "_WPMSGOPTION_TopbarPageName", "Coupon");
INSERT INTO `wp_postmeta` VALUES("4249", "162", "_WPMSGOPTION_MenuDesc", "");
INSERT INTO `wp_postmeta` VALUES("4250", "162", "_WPMSGOPTION_ThemeType", "Site");
INSERT INTO `wp_postmeta` VALUES("4251", "162", "_WPMSGOPTION_PageTheme", "113");
INSERT INTO `wp_postmeta` VALUES("4252", "162", "_WPMSGOPTION_MenuStyle", "Vertical");
INSERT INTO `wp_postmeta` VALUES("4253", "162", "_WPMSGOPTION_MenuPosition", "T");
INSERT INTO `wp_postmeta` VALUES("4254", "162", "_WPMSGOPTION_ExcludePage", "");
INSERT INTO `wp_postmeta` VALUES("4255", "162", "_WPMSGOPTION_ExcludeFromSearch", "");
INSERT INTO `wp_postmeta` VALUES("4256", "162", "_WPMSGOPTION_BackgroundImage", "");
INSERT INTO `wp_postmeta` VALUES("4257", "162", "_WPMSGOPTION_BackgroundImageRepeat", "repeat");
INSERT INTO `wp_postmeta` VALUES("4258", "162", "_WPMSGOPTION_BackgroundImagePosition", "lefttop");
INSERT INTO `wp_postmeta` VALUES("4259", "162", "_WPMSGOPTION_PageMinimumHeight", "");
INSERT INTO `wp_postmeta` VALUES("4260", "162", "_WPMSGOPTION_DisplayLogo", "");
INSERT INTO `wp_postmeta` VALUES("4261", "162", "_WPMSGOPTION_LogoImage", "");
INSERT INTO `wp_postmeta` VALUES("4262", "162", "_WPMSGOPTION_LogoBackgroundColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("4263", "162", "_WPMSGOPTION_LogoUseBackgroundColor", "");
INSERT INTO `wp_postmeta` VALUES("4264", "162", "_WPMSGOPTION_FooterBackgroundColor", "");
INSERT INTO `wp_postmeta` VALUES("4265", "162", "_WPMSGOPTION_ThumbnailImage", "Coupon");
INSERT INTO `wp_postmeta` VALUES("4266", "162", "_WPMSGOPTION_ThumbnailImageColor", "LightBlue");
INSERT INTO `wp_postmeta` VALUES("4267", "162", "_WPMSGOPTION_CustomThumbnailImage", "");
INSERT INTO `wp_postmeta` VALUES("4268", "162", "_WPMSGOPTION_DisplayPreview", "");
INSERT INTO `wp_postmeta` VALUES("4269", "162", "_WPMSGOPTION_DisplayTopBar", "");
INSERT INTO `wp_postmeta` VALUES("4270", "162", "_WPMSGOPTION_TopbarRightLinkText", "");
INSERT INTO `wp_postmeta` VALUES("4271", "162", "_WPMSGOPTION_TopbarRightLinkURL", "");
INSERT INTO `wp_postmeta` VALUES("4272", "162", "_WPMSGOPTION_TopbarRightLinkPage", "0");
INSERT INTO `wp_postmeta` VALUES("4273", "162", "_WPMSGOPTION_DisplayPhoneTopBar", "");
INSERT INTO `wp_postmeta` VALUES("4274", "162", "_WPMSGOPTION_FacebookURL", "");
INSERT INTO `wp_postmeta` VALUES("4275", "162", "_WPMSGOPTION_TwitterURL", "");
INSERT INTO `wp_postmeta` VALUES("4276", "162", "_WPMSGOPTION_GooglePlusURL", "");
INSERT INTO `wp_postmeta` VALUES("4277", "162", "_WPMSGOPTION_YouTubeURL", "");
INSERT INTO `wp_postmeta` VALUES("4278", "162", "_WPMSGOPTION_LinkedInURL", "");
INSERT INTO `wp_postmeta` VALUES("4279", "162", "_WPMSGOPTION_SocialMediaPage1URL", "");
INSERT INTO `wp_postmeta` VALUES("4280", "162", "_WPMSGOPTION_SocialMediaIcon1URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/facebook.png");
INSERT INTO `wp_postmeta` VALUES("4281", "162", "_WPMSGOPTION_SocialMediaPage2URL", "");
INSERT INTO `wp_postmeta` VALUES("4282", "162", "_WPMSGOPTION_SocialMediaIcon2URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/twitter.png");
INSERT INTO `wp_postmeta` VALUES("4283", "162", "_WPMSGOPTION_SocialMediaPage3URL", "");
INSERT INTO `wp_postmeta` VALUES("4284", "162", "_WPMSGOPTION_SocialMediaIcon3URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/googleplus.png");
INSERT INTO `wp_postmeta` VALUES("4285", "162", "_WPMSGOPTION_SocialMediaPage4URL", "");
INSERT INTO `wp_postmeta` VALUES("4286", "162", "_WPMSGOPTION_SocialMediaIcon4URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/youtube.png");
INSERT INTO `wp_postmeta` VALUES("4287", "162", "_WPMSGOPTION_SocialMediaPage5URL", "");
INSERT INTO `wp_postmeta` VALUES("4288", "162", "_WPMSGOPTION_SocialMediaIcon5URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/linkedin.png");
INSERT INTO `wp_postmeta` VALUES("4289", "162", "_WPMSGOPTION_SocialMediaPage6URL", "");
INSERT INTO `wp_postmeta` VALUES("4290", "162", "_WPMSGOPTION_SocialMediaIcon6URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/pinterest.png");
INSERT INTO `wp_postmeta` VALUES("4291", "162", "_WPMSGOPTION_SocialMediaPage7URL", "");
INSERT INTO `wp_postmeta` VALUES("4292", "162", "_WPMSGOPTION_SocialMediaIcon7URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/flickr.png");
INSERT INTO `wp_postmeta` VALUES("4293", "162", "_WPMSGOPTION_SocialMediaPage8URL", "");
INSERT INTO `wp_postmeta` VALUES("4294", "162", "_WPMSGOPTION_SocialMediaIcon8URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/yelp.png");
INSERT INTO `wp_postmeta` VALUES("4295", "162", "_WPMSGOPTION_SocialMediaPage9URL", "");
INSERT INTO `wp_postmeta` VALUES("4296", "162", "_WPMSGOPTION_SocialMediaIcon9URL", "");
INSERT INTO `wp_postmeta` VALUES("4297", "162", "_WPMSGOPTION_FBLikeURL", "");
INSERT INTO `wp_postmeta` VALUES("4298", "162", "_WPMSGOPTION_FBLikeWidth", "");
INSERT INTO `wp_postmeta` VALUES("4299", "162", "_WPMSGOPTION_FBLikeSendButton", "Y");
INSERT INTO `wp_postmeta` VALUES("4300", "162", "_WPMSGOPTION_FBLikeFaces", "Y");
INSERT INTO `wp_postmeta` VALUES("4301", "162", "_WPMSGOPTION_FBLikeLayoutStyle", "");
INSERT INTO `wp_postmeta` VALUES("4302", "162", "_WPMSGOPTION_FBLikeVerb", "");
INSERT INTO `wp_postmeta` VALUES("4303", "162", "_WPMSGOPTION_FBLikeColorScheme", "");
INSERT INTO `wp_postmeta` VALUES("4304", "162", "_WPMSGOPTION_FBCommentsURL", "");
INSERT INTO `wp_postmeta` VALUES("4305", "162", "_WPMSGOPTION_FBCommentsPosts", "");
INSERT INTO `wp_postmeta` VALUES("4306", "162", "_WPMSGOPTION_FBCommentsColorScheme", "");
INSERT INTO `wp_postmeta` VALUES("4307", "162", "_WPMSGOPTION_SearchPrompt", "");
INSERT INTO `wp_postmeta` VALUES("4308", "162", "_WPMSGOPTION_SearchSubmitPrompt", "");
INSERT INTO `wp_postmeta` VALUES("4309", "162", "_WPMSGOPTION_RSSFeedURL", "");
INSERT INTO `wp_postmeta` VALUES("4310", "162", "_WPMSGOPTION_RSSFeedMax", "");
INSERT INTO `wp_postmeta` VALUES("4311", "162", "_WPMSGOPTION_RSSFeedStyle", "TitleOnly");
INSERT INTO `wp_postmeta` VALUES("4312", "162", "_WPMSGOPTION_MetaTitle", "");
INSERT INTO `wp_postmeta` VALUES("4313", "162", "_WPMSGOPTION_MetaDescription", "");
INSERT INTO `wp_postmeta` VALUES("4314", "162", "_WPMSGOPTION_MetaKeywords", "");
INSERT INTO `wp_postmeta` VALUES("4315", "162", "_WPMSGOPTION_AnalyticsCode", "");
INSERT INTO `wp_postmeta` VALUES("4316", "162", "_WPMSGOPTION_CouponTitle", "10% Instant Coupon");
INSERT INTO `wp_postmeta` VALUES("4317", "162", "_WPMSGOPTION_CouponCodeText", "");
INSERT INTO `wp_postmeta` VALUES("4318", "162", "_WPMSGOPTION_CouponStartText", "");
INSERT INTO `wp_postmeta` VALUES("4319", "162", "_WPMSGOPTION_CouponExpiryText", "");
INSERT INTO `wp_postmeta` VALUES("4320", "162", "_WPMSGOPTION_CouponCode", "");
INSERT INTO `wp_postmeta` VALUES("4321", "162", "_WPMSGOPTION_CouponCodeExpired", "");
INSERT INTO `wp_postmeta` VALUES("4322", "162", "_WPMSGOPTION_CouponStart", "");
INSERT INTO `wp_postmeta` VALUES("4323", "162", "_WPMSGOPTION_CouponExpiry", "");
INSERT INTO `wp_postmeta` VALUES("4324", "162", "_WPMSGOPTION_CouponDateFormat", "Y-m-d");
INSERT INTO `wp_postmeta` VALUES("4325", "162", "_WPMSGOPTION_CouponValidText", "Just Mention You Found Us On Our Mobile Device  ");
INSERT INTO `wp_postmeta` VALUES("4326", "162", "_WPMSGOPTION_CouponExpiredText", "");
INSERT INTO `wp_postmeta` VALUES("4327", "162", "_WPMSGOPTION_CouponImage", "");
INSERT INTO `wp_postmeta` VALUES("4328", "162", "_WPMSGOPTION_TelephoneNumber", "");
INSERT INTO `wp_postmeta` VALUES("4329", "162", "_WPMSGOPTION_TelephoneCallToAction", "");
INSERT INTO `wp_postmeta` VALUES("4330", "162", "_WPMSGOPTION_ClickToCallType", "Call");
INSERT INTO `wp_postmeta` VALUES("4331", "162", "_WPMSGOPTION_SMSMessage", "");
INSERT INTO `wp_postmeta` VALUES("4332", "162", "_WPMSGOPTION_HidePhoneIcon", "");
INSERT INTO `wp_postmeta` VALUES("4333", "162", "_WPMSGOPTION_HidePhoneNumber", "");
INSERT INTO `wp_postmeta` VALUES("4334", "162", "_WPMSGOPTION_TelephoneIconImage", "");
INSERT INTO `wp_postmeta` VALUES("4335", "162", "_WPMSGOPTION_TelephoneImage", "");
INSERT INTO `wp_postmeta` VALUES("4336", "162", "_WPMSGOPTION_SMSNumber", "");
INSERT INTO `wp_postmeta` VALUES("4337", "162", "_WPMSGOPTION_SMSCallToAction", "");
INSERT INTO `wp_postmeta` VALUES("4338", "162", "_WPMSGOPTION_SMSMessageText", "");
INSERT INTO `wp_postmeta` VALUES("4339", "162", "_WPMSGOPTION_HideSMSIcon", "");
INSERT INTO `wp_postmeta` VALUES("4340", "162", "_WPMSGOPTION_HideSMSNumber", "");
INSERT INTO `wp_postmeta` VALUES("4341", "162", "_WPMSGOPTION_SMSIconImage", "");
INSERT INTO `wp_postmeta` VALUES("4342", "162", "_WPMSGOPTION_SMSImage", "");
INSERT INTO `wp_postmeta` VALUES("4343", "162", "_WPMSGOPTION_EmailTo", "");
INSERT INTO `wp_postmeta` VALUES("4344", "162", "_WPMSGOPTION_EmailCallToAction", "");
INSERT INTO `wp_postmeta` VALUES("4345", "162", "_WPMSGOPTION_EmailSubjectText", "");
INSERT INTO `wp_postmeta` VALUES("4346", "162", "_WPMSGOPTION_EmailMessageText", "");
INSERT INTO `wp_postmeta` VALUES("4347", "162", "_WPMSGOPTION_HideEmailIcon", "");
INSERT INTO `wp_postmeta` VALUES("4348", "162", "_WPMSGOPTION_EmailIconImage", "");
INSERT INTO `wp_postmeta` VALUES("4349", "162", "_WPMSGOPTION_EmailImage", "");
INSERT INTO `wp_postmeta` VALUES("4350", "162", "_WPMSGOPTION_SkypeUsername", "");
INSERT INTO `wp_postmeta` VALUES("4351", "162", "_WPMSGOPTION_SkypeCallToAction", "");
INSERT INTO `wp_postmeta` VALUES("4352", "162", "_WPMSGOPTION_HideSkypeIcon", "");
INSERT INTO `wp_postmeta` VALUES("4353", "162", "_WPMSGOPTION_SkypeIconImage", "");
INSERT INTO `wp_postmeta` VALUES("4354", "162", "_WPMSGOPTION_SkypeImage", "");
INSERT INTO `wp_postmeta` VALUES("4355", "162", "_WPMSGOPTION_RedirectURL", "");
INSERT INTO `wp_postmeta` VALUES("4356", "162", "_WPMSGOPTION_DeactivatedURL", "");
INSERT INTO `wp_postmeta` VALUES("4357", "162", "_WPMSGOPTION_ExportDomain", "");
INSERT INTO `wp_postmeta` VALUES("4358", "162", "_WPMSGOPTION_CreateBitly", "");
INSERT INTO `wp_postmeta` VALUES("4359", "162", "_WPMSGOPTION_BitlyUsername", "");
INSERT INTO `wp_postmeta` VALUES("4360", "162", "_WPMSGOPTION_BitlyApiKey", "");
INSERT INTO `wp_postmeta` VALUES("4361", "162", "_WPMSGOPTION_BitlyLongUrl", "");
INSERT INTO `wp_postmeta` VALUES("4362", "162", "_WPMSGOPTION_BitlyShortUrl", "");
INSERT INTO `wp_postmeta` VALUES("4363", "162", "_WPMSGOPTION_MapLocation", "");
INSERT INTO `wp_postmeta` VALUES("4364", "162", "_WPMSGOPTION_MapLongitude", "");
INSERT INTO `wp_postmeta` VALUES("4365", "162", "_WPMSGOPTION_MapLatitude", "");
INSERT INTO `wp_postmeta` VALUES("4366", "162", "_WPMSGOPTION_MapWidth", "");
INSERT INTO `wp_postmeta` VALUES("4367", "162", "_WPMSGOPTION_MapHeight", "");
INSERT INTO `wp_postmeta` VALUES("4368", "162", "_WPMSGOPTION_MapZoom", "");
INSERT INTO `wp_postmeta` VALUES("4369", "162", "_WPMSGOPTION_MapLanguage", "en");
INSERT INTO `wp_postmeta` VALUES("4370", "162", "_WPMSGOPTION_DisplayMapDirections", "");
INSERT INTO `wp_postmeta` VALUES("4371", "162", "_WPMSGOPTION_DirectionsPrompt", "");
INSERT INTO `wp_postmeta` VALUES("4372", "162", "_WPMSGOPTION_DirectionsButtonText", "");
INSERT INTO `wp_postmeta` VALUES("4373", "162", "_WPMSGOPTION_DisplayGPSDirectionsButton", "");
INSERT INTO `wp_postmeta` VALUES("4374", "162", "_WPMSGOPTION_GPSDirectionsButtonText", "");
INSERT INTO `wp_postmeta` VALUES("4375", "162", "_WPMSGOPTION_DirectionsPosition", "A");
INSERT INTO `wp_postmeta` VALUES("4376", "162", "_WPMSGOPTION_OptinNamePrompt", "");
INSERT INTO `wp_postmeta` VALUES("4377", "162", "_WPMSGOPTION_OptinEmailPrompt", "");
INSERT INTO `wp_postmeta` VALUES("4378", "162", "_WPMSGOPTION_OptinSubmitPrompt", "");
INSERT INTO `wp_postmeta` VALUES("4379", "162", "_WPMSGOPTION_OptinCode", "");
INSERT INTO `wp_postmeta` VALUES("4380", "162", "_WPMSGOPTION_OptinRedirectPage", "0");
INSERT INTO `wp_postmeta` VALUES("4381", "162", "_WPMSGOPTION_ContactSendToEmail", "");
INSERT INTO `wp_postmeta` VALUES("4382", "162", "_WPMSGOPTION_ContactSendFromName", "");
INSERT INTO `wp_postmeta` VALUES("4383", "162", "_WPMSGOPTION_ContactSendFromEmail", "");
INSERT INTO `wp_postmeta` VALUES("4384", "162", "_WPMSGOPTION_ContactNamePrompt", "");
INSERT INTO `wp_postmeta` VALUES("4385", "162", "_WPMSGOPTION_ContactPhonePrompt", "");
INSERT INTO `wp_postmeta` VALUES("4386", "162", "_WPMSGOPTION_ContactEmailPrompt", "");
INSERT INTO `wp_postmeta` VALUES("4387", "162", "_WPMSGOPTION_ContactMessagePrompt", "");
INSERT INTO `wp_postmeta` VALUES("4388", "162", "_WPMSGOPTION_ContactSubmitPrompt", "");
INSERT INTO `wp_postmeta` VALUES("4389", "162", "_WPMSGOPTION_ContactShowAcknowledgement", "");
INSERT INTO `wp_postmeta` VALUES("4390", "162", "_WPMSGOPTION_ContactAcknowledgementDisplayMessage", "");
INSERT INTO `wp_postmeta` VALUES("4391", "162", "_WPMSGOPTION_ContactSendAcknowledgement", "");
INSERT INTO `wp_postmeta` VALUES("4392", "162", "_WPMSGOPTION_ContactAcknowledgementName", "");
INSERT INTO `wp_postmeta` VALUES("4393", "162", "_WPMSGOPTION_ContactAcknowledgementEmail", "");
INSERT INTO `wp_postmeta` VALUES("4394", "162", "_WPMSGOPTION_ContactAcknowledgementSubject", "");
INSERT INTO `wp_postmeta` VALUES("4395", "162", "_WPMSGOPTION_ContactAcknowledgementMessage", "");
INSERT INTO `wp_postmeta` VALUES("4396", "162", "_WPMSGOPTION_SiteID", "123");
INSERT INTO `wp_postmeta` VALUES("4397", "164", "_WPMREDOPTION_RedirectURL", "");
INSERT INTO `wp_postmeta` VALUES("4398", "164", "_WPMREDOPTION_RedirectNever", "");
INSERT INTO `wp_postmeta` VALUES("4399", "164", "_WPMSGOPTION_Initialised", "Y");
INSERT INTO `wp_postmeta` VALUES("4400", "164", "_WPMSGOPTION_Deactivated", "");
INSERT INTO `wp_postmeta` VALUES("4401", "164", "_WPMSGOPTION_PageSlug", "e-mail-us");
INSERT INTO `wp_postmeta` VALUES("4402", "164", "_WPMSGOPTION_PageName", "E-Mail Us");
INSERT INTO `wp_postmeta` VALUES("4403", "164", "_WPMSGOPTION_TopbarPageName", "E-Mail Us");
INSERT INTO `wp_postmeta` VALUES("4404", "164", "_WPMSGOPTION_MenuDesc", "");
INSERT INTO `wp_postmeta` VALUES("4405", "164", "_WPMSGOPTION_ThemeType", "Site");
INSERT INTO `wp_postmeta` VALUES("4406", "164", "_WPMSGOPTION_PageTheme", "170");
INSERT INTO `wp_postmeta` VALUES("4407", "164", "_WPMSGOPTION_MenuStyle", "Vertical");
INSERT INTO `wp_postmeta` VALUES("4408", "164", "_WPMSGOPTION_MenuPosition", "T");
INSERT INTO `wp_postmeta` VALUES("4409", "164", "_WPMSGOPTION_ExcludePage", "");
INSERT INTO `wp_postmeta` VALUES("4410", "164", "_WPMSGOPTION_ExcludeFromSearch", "");
INSERT INTO `wp_postmeta` VALUES("4411", "164", "_WPMSGOPTION_BackgroundImage", "");
INSERT INTO `wp_postmeta` VALUES("4412", "164", "_WPMSGOPTION_BackgroundImageRepeat", "repeat");
INSERT INTO `wp_postmeta` VALUES("4413", "164", "_WPMSGOPTION_BackgroundImagePosition", "lefttop");
INSERT INTO `wp_postmeta` VALUES("4414", "164", "_WPMSGOPTION_PageMinimumHeight", "");
INSERT INTO `wp_postmeta` VALUES("4415", "164", "_WPMSGOPTION_DisplayLogo", "");
INSERT INTO `wp_postmeta` VALUES("4416", "164", "_WPMSGOPTION_LogoImage", "");
INSERT INTO `wp_postmeta` VALUES("4417", "164", "_WPMSGOPTION_LogoBackgroundColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("4418", "164", "_WPMSGOPTION_LogoUseBackgroundColor", "");
INSERT INTO `wp_postmeta` VALUES("4419", "164", "_WPMSGOPTION_FooterBackgroundColor", "");
INSERT INTO `wp_postmeta` VALUES("4420", "164", "_WPMSGOPTION_ThumbnailImage", "Email2");
INSERT INTO `wp_postmeta` VALUES("4421", "164", "_WPMSGOPTION_ThumbnailImageColor", "LightBlue");
INSERT INTO `wp_postmeta` VALUES("4422", "164", "_WPMSGOPTION_CustomThumbnailImage", "");
INSERT INTO `wp_postmeta` VALUES("4423", "164", "_WPMSGOPTION_DisplayPreview", "");
INSERT INTO `wp_postmeta` VALUES("4424", "164", "_WPMSGOPTION_DisplayTopBar", "");
INSERT INTO `wp_postmeta` VALUES("4425", "164", "_WPMSGOPTION_TopbarRightLinkText", "");
INSERT INTO `wp_postmeta` VALUES("4426", "164", "_WPMSGOPTION_TopbarRightLinkURL", "");
INSERT INTO `wp_postmeta` VALUES("4427", "164", "_WPMSGOPTION_TopbarRightLinkPage", "0");
INSERT INTO `wp_postmeta` VALUES("4428", "164", "_WPMSGOPTION_DisplayPhoneTopBar", "");
INSERT INTO `wp_postmeta` VALUES("4429", "164", "_WPMSGOPTION_FacebookURL", "");
INSERT INTO `wp_postmeta` VALUES("4430", "164", "_WPMSGOPTION_TwitterURL", "");
INSERT INTO `wp_postmeta` VALUES("4431", "164", "_WPMSGOPTION_GooglePlusURL", "");
INSERT INTO `wp_postmeta` VALUES("4432", "164", "_WPMSGOPTION_YouTubeURL", "");
INSERT INTO `wp_postmeta` VALUES("4433", "164", "_WPMSGOPTION_LinkedInURL", "");
INSERT INTO `wp_postmeta` VALUES("4434", "164", "_WPMSGOPTION_SocialMediaPage1URL", "");
INSERT INTO `wp_postmeta` VALUES("4435", "164", "_WPMSGOPTION_SocialMediaIcon1URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/facebook.png");
INSERT INTO `wp_postmeta` VALUES("4436", "164", "_WPMSGOPTION_SocialMediaPage2URL", "");
INSERT INTO `wp_postmeta` VALUES("4437", "164", "_WPMSGOPTION_SocialMediaIcon2URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/twitter.png");
INSERT INTO `wp_postmeta` VALUES("4438", "164", "_WPMSGOPTION_SocialMediaPage3URL", "");
INSERT INTO `wp_postmeta` VALUES("4439", "164", "_WPMSGOPTION_SocialMediaIcon3URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/googleplus.png");
INSERT INTO `wp_postmeta` VALUES("4440", "164", "_WPMSGOPTION_SocialMediaPage4URL", "");
INSERT INTO `wp_postmeta` VALUES("4441", "164", "_WPMSGOPTION_SocialMediaIcon4URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/youtube.png");
INSERT INTO `wp_postmeta` VALUES("4442", "164", "_WPMSGOPTION_SocialMediaPage5URL", "");
INSERT INTO `wp_postmeta` VALUES("4443", "164", "_WPMSGOPTION_SocialMediaIcon5URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/linkedin.png");
INSERT INTO `wp_postmeta` VALUES("4444", "164", "_WPMSGOPTION_SocialMediaPage6URL", "");
INSERT INTO `wp_postmeta` VALUES("4445", "164", "_WPMSGOPTION_SocialMediaIcon6URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/pinterest.png");
INSERT INTO `wp_postmeta` VALUES("4446", "164", "_WPMSGOPTION_SocialMediaPage7URL", "");
INSERT INTO `wp_postmeta` VALUES("4447", "164", "_WPMSGOPTION_SocialMediaIcon7URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/flickr.png");
INSERT INTO `wp_postmeta` VALUES("4448", "164", "_WPMSGOPTION_SocialMediaPage8URL", "");
INSERT INTO `wp_postmeta` VALUES("4449", "164", "_WPMSGOPTION_SocialMediaIcon8URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/yelp.png");
INSERT INTO `wp_postmeta` VALUES("4450", "164", "_WPMSGOPTION_SocialMediaPage9URL", "");
INSERT INTO `wp_postmeta` VALUES("4451", "164", "_WPMSGOPTION_SocialMediaIcon9URL", "");
INSERT INTO `wp_postmeta` VALUES("4452", "164", "_WPMSGOPTION_FBLikeURL", "");
INSERT INTO `wp_postmeta` VALUES("4453", "164", "_WPMSGOPTION_FBLikeWidth", "");
INSERT INTO `wp_postmeta` VALUES("4454", "164", "_WPMSGOPTION_FBLikeSendButton", "Y");
INSERT INTO `wp_postmeta` VALUES("4455", "164", "_WPMSGOPTION_FBLikeFaces", "Y");
INSERT INTO `wp_postmeta` VALUES("4456", "164", "_WPMSGOPTION_FBLikeLayoutStyle", "");
INSERT INTO `wp_postmeta` VALUES("4457", "164", "_WPMSGOPTION_FBLikeVerb", "");
INSERT INTO `wp_postmeta` VALUES("4458", "164", "_WPMSGOPTION_FBLikeColorScheme", "");
INSERT INTO `wp_postmeta` VALUES("4459", "164", "_WPMSGOPTION_FBCommentsURL", "");
INSERT INTO `wp_postmeta` VALUES("4460", "164", "_WPMSGOPTION_FBCommentsPosts", "");
INSERT INTO `wp_postmeta` VALUES("4461", "164", "_WPMSGOPTION_FBCommentsColorScheme", "");
INSERT INTO `wp_postmeta` VALUES("4462", "164", "_WPMSGOPTION_SearchPrompt", "");
INSERT INTO `wp_postmeta` VALUES("4463", "164", "_WPMSGOPTION_SearchSubmitPrompt", "");
INSERT INTO `wp_postmeta` VALUES("4464", "164", "_WPMSGOPTION_RSSFeedURL", "");
INSERT INTO `wp_postmeta` VALUES("4465", "164", "_WPMSGOPTION_RSSFeedMax", "");
INSERT INTO `wp_postmeta` VALUES("4466", "164", "_WPMSGOPTION_RSSFeedStyle", "TitleOnly");
INSERT INTO `wp_postmeta` VALUES("4467", "164", "_WPMSGOPTION_MetaTitle", "");
INSERT INTO `wp_postmeta` VALUES("4468", "164", "_WPMSGOPTION_MetaDescription", "");
INSERT INTO `wp_postmeta` VALUES("4469", "164", "_WPMSGOPTION_MetaKeywords", "");
INSERT INTO `wp_postmeta` VALUES("4470", "164", "_WPMSGOPTION_AnalyticsCode", "");
INSERT INTO `wp_postmeta` VALUES("4471", "164", "_WPMSGOPTION_CouponTitle", "");
INSERT INTO `wp_postmeta` VALUES("4472", "164", "_WPMSGOPTION_CouponCodeText", "");
INSERT INTO `wp_postmeta` VALUES("4473", "164", "_WPMSGOPTION_CouponStartText", "");
INSERT INTO `wp_postmeta` VALUES("4474", "164", "_WPMSGOPTION_CouponExpiryText", "");
INSERT INTO `wp_postmeta` VALUES("4475", "164", "_WPMSGOPTION_CouponCode", "");
INSERT INTO `wp_postmeta` VALUES("4476", "164", "_WPMSGOPTION_CouponCodeExpired", "");
INSERT INTO `wp_postmeta` VALUES("4477", "164", "_WPMSGOPTION_CouponStart", "");
INSERT INTO `wp_postmeta` VALUES("4478", "164", "_WPMSGOPTION_CouponExpiry", "");
INSERT INTO `wp_postmeta` VALUES("4479", "164", "_WPMSGOPTION_CouponDateFormat", "Y-m-d");
INSERT INTO `wp_postmeta` VALUES("4480", "164", "_WPMSGOPTION_CouponValidText", "");
INSERT INTO `wp_postmeta` VALUES("4481", "164", "_WPMSGOPTION_CouponExpiredText", "");
INSERT INTO `wp_postmeta` VALUES("4482", "164", "_WPMSGOPTION_CouponImage", "");
INSERT INTO `wp_postmeta` VALUES("4483", "164", "_WPMSGOPTION_TelephoneNumber", "");
INSERT INTO `wp_postmeta` VALUES("4484", "164", "_WPMSGOPTION_TelephoneCallToAction", "");
INSERT INTO `wp_postmeta` VALUES("4485", "164", "_WPMSGOPTION_ClickToCallType", "Call");
INSERT INTO `wp_postmeta` VALUES("4486", "164", "_WPMSGOPTION_SMSMessage", "");
INSERT INTO `wp_postmeta` VALUES("4487", "164", "_WPMSGOPTION_HidePhoneIcon", "");
INSERT INTO `wp_postmeta` VALUES("4488", "164", "_WPMSGOPTION_HidePhoneNumber", "");
INSERT INTO `wp_postmeta` VALUES("4489", "164", "_WPMSGOPTION_TelephoneIconImage", "");
INSERT INTO `wp_postmeta` VALUES("4490", "164", "_WPMSGOPTION_TelephoneImage", "");
INSERT INTO `wp_postmeta` VALUES("4491", "164", "_WPMSGOPTION_SMSNumber", "");
INSERT INTO `wp_postmeta` VALUES("4492", "164", "_WPMSGOPTION_SMSCallToAction", "");
INSERT INTO `wp_postmeta` VALUES("4493", "164", "_WPMSGOPTION_SMSMessageText", "");
INSERT INTO `wp_postmeta` VALUES("4494", "164", "_WPMSGOPTION_HideSMSIcon", "");
INSERT INTO `wp_postmeta` VALUES("4495", "164", "_WPMSGOPTION_HideSMSNumber", "");
INSERT INTO `wp_postmeta` VALUES("4496", "164", "_WPMSGOPTION_SMSIconImage", "");
INSERT INTO `wp_postmeta` VALUES("4497", "164", "_WPMSGOPTION_SMSImage", "");
INSERT INTO `wp_postmeta` VALUES("4498", "164", "_WPMSGOPTION_EmailTo", "");
INSERT INTO `wp_postmeta` VALUES("4499", "164", "_WPMSGOPTION_EmailCallToAction", "");
INSERT INTO `wp_postmeta` VALUES("4500", "164", "_WPMSGOPTION_EmailSubjectText", "");
INSERT INTO `wp_postmeta` VALUES("4501", "164", "_WPMSGOPTION_EmailMessageText", "");
INSERT INTO `wp_postmeta` VALUES("4502", "164", "_WPMSGOPTION_HideEmailIcon", "");
INSERT INTO `wp_postmeta` VALUES("4503", "164", "_WPMSGOPTION_EmailIconImage", "");
INSERT INTO `wp_postmeta` VALUES("4504", "164", "_WPMSGOPTION_EmailImage", "");
INSERT INTO `wp_postmeta` VALUES("4505", "164", "_WPMSGOPTION_SkypeUsername", "");
INSERT INTO `wp_postmeta` VALUES("4506", "164", "_WPMSGOPTION_SkypeCallToAction", "");
INSERT INTO `wp_postmeta` VALUES("4507", "164", "_WPMSGOPTION_HideSkypeIcon", "");
INSERT INTO `wp_postmeta` VALUES("4508", "164", "_WPMSGOPTION_SkypeIconImage", "");
INSERT INTO `wp_postmeta` VALUES("4509", "164", "_WPMSGOPTION_SkypeImage", "");
INSERT INTO `wp_postmeta` VALUES("4510", "164", "_WPMSGOPTION_RedirectURL", "");
INSERT INTO `wp_postmeta` VALUES("4511", "164", "_WPMSGOPTION_DeactivatedURL", "");
INSERT INTO `wp_postmeta` VALUES("4512", "164", "_WPMSGOPTION_ExportDomain", "");
INSERT INTO `wp_postmeta` VALUES("4513", "164", "_WPMSGOPTION_CreateBitly", "");
INSERT INTO `wp_postmeta` VALUES("4514", "164", "_WPMSGOPTION_BitlyUsername", "");
INSERT INTO `wp_postmeta` VALUES("4515", "164", "_WPMSGOPTION_BitlyApiKey", "");
INSERT INTO `wp_postmeta` VALUES("4516", "164", "_WPMSGOPTION_BitlyLongUrl", "");
INSERT INTO `wp_postmeta` VALUES("4517", "164", "_WPMSGOPTION_BitlyShortUrl", "");
INSERT INTO `wp_postmeta` VALUES("4518", "164", "_WPMSGOPTION_MapLocation", "");
INSERT INTO `wp_postmeta` VALUES("4519", "164", "_WPMSGOPTION_MapLongitude", "");
INSERT INTO `wp_postmeta` VALUES("4520", "164", "_WPMSGOPTION_MapLatitude", "");
INSERT INTO `wp_postmeta` VALUES("4521", "164", "_WPMSGOPTION_MapWidth", "");
INSERT INTO `wp_postmeta` VALUES("4522", "164", "_WPMSGOPTION_MapHeight", "");
INSERT INTO `wp_postmeta` VALUES("4523", "164", "_WPMSGOPTION_MapZoom", "");
INSERT INTO `wp_postmeta` VALUES("4524", "164", "_WPMSGOPTION_MapLanguage", "en");
INSERT INTO `wp_postmeta` VALUES("4525", "164", "_WPMSGOPTION_DisplayMapDirections", "");
INSERT INTO `wp_postmeta` VALUES("4526", "164", "_WPMSGOPTION_DirectionsPrompt", "");
INSERT INTO `wp_postmeta` VALUES("4527", "164", "_WPMSGOPTION_DirectionsButtonText", "");
INSERT INTO `wp_postmeta` VALUES("4528", "164", "_WPMSGOPTION_DisplayGPSDirectionsButton", "");
INSERT INTO `wp_postmeta` VALUES("4529", "164", "_WPMSGOPTION_GPSDirectionsButtonText", "");
INSERT INTO `wp_postmeta` VALUES("4530", "164", "_WPMSGOPTION_DirectionsPosition", "A");
INSERT INTO `wp_postmeta` VALUES("4531", "164", "_WPMSGOPTION_OptinNamePrompt", "");
INSERT INTO `wp_postmeta` VALUES("4532", "164", "_WPMSGOPTION_OptinEmailPrompt", "");
INSERT INTO `wp_postmeta` VALUES("4533", "164", "_WPMSGOPTION_OptinSubmitPrompt", "");
INSERT INTO `wp_postmeta` VALUES("4534", "164", "_WPMSGOPTION_OptinCode", "");
INSERT INTO `wp_postmeta` VALUES("4535", "164", "_WPMSGOPTION_OptinRedirectPage", "0");
INSERT INTO `wp_postmeta` VALUES("4536", "164", "_WPMSGOPTION_ContactSendToEmail", "junior5011@optonline.net");
INSERT INTO `wp_postmeta` VALUES("4537", "164", "_WPMSGOPTION_ContactSendFromName", "");
INSERT INTO `wp_postmeta` VALUES("4538", "164", "_WPMSGOPTION_ContactSendFromEmail", "");
INSERT INTO `wp_postmeta` VALUES("4539", "164", "_WPMSGOPTION_ContactNamePrompt", "");
INSERT INTO `wp_postmeta` VALUES("4540", "164", "_WPMSGOPTION_ContactPhonePrompt", "");
INSERT INTO `wp_postmeta` VALUES("4541", "164", "_WPMSGOPTION_ContactEmailPrompt", "");
INSERT INTO `wp_postmeta` VALUES("4542", "164", "_WPMSGOPTION_ContactMessagePrompt", "");
INSERT INTO `wp_postmeta` VALUES("4543", "164", "_WPMSGOPTION_ContactSubmitPrompt", "");
INSERT INTO `wp_postmeta` VALUES("4544", "164", "_WPMSGOPTION_ContactShowAcknowledgement", "Y");
INSERT INTO `wp_postmeta` VALUES("4545", "164", "_WPMSGOPTION_ContactAcknowledgementDisplayMessage", "");
INSERT INTO `wp_postmeta` VALUES("4546", "164", "_WPMSGOPTION_ContactSendAcknowledgement", "");
INSERT INTO `wp_postmeta` VALUES("4547", "164", "_WPMSGOPTION_ContactAcknowledgementName", "");
INSERT INTO `wp_postmeta` VALUES("4548", "164", "_WPMSGOPTION_ContactAcknowledgementEmail", "");
INSERT INTO `wp_postmeta` VALUES("4549", "164", "_WPMSGOPTION_ContactAcknowledgementSubject", "");
INSERT INTO `wp_postmeta` VALUES("4550", "164", "_WPMSGOPTION_ContactAcknowledgementMessage", "");
INSERT INTO `wp_postmeta` VALUES("4551", "164", "_WPMSGOPTION_SiteID", "123");
INSERT INTO `wp_postmeta` VALUES("4552", "177", "_wp_attached_file", "2013/03/Graphic24-300x194.jpg");
INSERT INTO `wp_postmeta` VALUES("4553", "177", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"194\";s:14:\"hwstring_small\";s:23:\"height=\'82\' width=\'128\'\";s:4:\"file\";s:29:\"2013/03/Graphic24-300x194.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:29:\"Graphic24-300x194-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:15:\"ezgallery-thumb\";a:3:{s:4:\"file\";s:29:\"Graphic24-300x194-125x125.jpg\";s:5:\"width\";s:3:\"125\";s:6:\"height\";s:3:\"125\";}s:21:\"single-post-thumbnail\";a:3:{s:4:\"file\";s:27:\"Graphic24-300x194-75x48.jpg\";s:5:\"width\";s:2:\"75\";s:6:\"height\";s:2:\"48\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("5787", "181", "_wp_attached_file", "2013/03/lockout-services-westwood-nj-a-locksmith-callout.jpg");
INSERT INTO `wp_postmeta` VALUES("4556", "120", "_WPMSGOPTION_PageBackgroundColor", "ADDEFF");
INSERT INTO `wp_postmeta` VALUES("4557", "120", "_WPMSGOPTION_LogoBackgroundColor", "1994FF");
INSERT INTO `wp_postmeta` VALUES("4558", "120", "_WPMSGOPTION_FooterBackgroundColor", "1994FF");
INSERT INTO `wp_postmeta` VALUES("4559", "120", "_WPMSGOPTION_ParagraphTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("4560", "120", "_WPMSGOPTION_ParagraphTextSize", "");
INSERT INTO `wp_postmeta` VALUES("4561", "120", "_WPMSGOPTION_BackgroundImage", "");
INSERT INTO `wp_postmeta` VALUES("4562", "120", "_WPMSGOPTION_BackgroundImageRepeat", "");
INSERT INTO `wp_postmeta` VALUES("4563", "120", "_WPMSGOPTION_BackgroundImagePosition", "");
INSERT INTO `wp_postmeta` VALUES("4564", "120", "_WPMSGOPTION_TopbarStartColor", "202020");
INSERT INTO `wp_postmeta` VALUES("4565", "120", "_WPMSGOPTION_TopbarEndColor", "858585");
INSERT INTO `wp_postmeta` VALUES("4566", "120", "_WPMSGOPTION_TopbarTextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("4567", "120", "_WPMSGOPTION_TopbarButtonColor", "std");
INSERT INTO `wp_postmeta` VALUES("4568", "120", "_WPMSGOPTION_H1TextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("4569", "120", "_WPMSGOPTION_H1TextSize", "");
INSERT INTO `wp_postmeta` VALUES("4570", "120", "_WPMSGOPTION_H1TextShadow", "");
INSERT INTO `wp_postmeta` VALUES("4571", "120", "_WPMSGOPTION_H2TextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("4572", "120", "_WPMSGOPTION_H2TextSize", "");
INSERT INTO `wp_postmeta` VALUES("4573", "120", "_WPMSGOPTION_H2TextShadow", "");
INSERT INTO `wp_postmeta` VALUES("4574", "120", "_WPMSGOPTION_H3TextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("4575", "120", "_WPMSGOPTION_H3TextSize", "");
INSERT INTO `wp_postmeta` VALUES("4576", "120", "_WPMSGOPTION_H3TextShadow", "");
INSERT INTO `wp_postmeta` VALUES("4577", "120", "_WPMSGOPTION_H4TextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("4578", "120", "_WPMSGOPTION_H4TextSize", "");
INSERT INTO `wp_postmeta` VALUES("4579", "120", "_WPMSGOPTION_H4TextShadow", "");
INSERT INTO `wp_postmeta` VALUES("4580", "120", "_WPMSGOPTION_H5TextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("4581", "120", "_WPMSGOPTION_H5TextSize", "");
INSERT INTO `wp_postmeta` VALUES("4582", "120", "_WPMSGOPTION_H5TextShadow", "");
INSERT INTO `wp_postmeta` VALUES("4583", "120", "_WPMSGOPTION_H6TextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("4584", "120", "_WPMSGOPTION_H6TextSize", "");
INSERT INTO `wp_postmeta` VALUES("4585", "120", "_WPMSGOPTION_H6TextShadow", "");
INSERT INTO `wp_postmeta` VALUES("4586", "120", "_WPMSGOPTION_MenuBackgroundColor", "1994FF");
INSERT INTO `wp_postmeta` VALUES("4587", "120", "_WPMSGOPTION_IconTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("4588", "120", "_WPMSGOPTION_MenuTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("4589", "120", "_WPMSGOPTION_MenuTextSize", "");
INSERT INTO `wp_postmeta` VALUES("4590", "120", "_WPMSGOPTION_MenuBorderColor", "0505FF");
INSERT INTO `wp_postmeta` VALUES("4591", "120", "_WPMSGOPTION_MenuBorderWidth", "2");
INSERT INTO `wp_postmeta` VALUES("4592", "120", "_WPMSGOPTION_MenuBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("4593", "120", "_WPMSGOPTION_MenuOpacity", "1");
INSERT INTO `wp_postmeta` VALUES("4594", "120", "_WPMSGOPTION_MenuArrowImage", "LightBigArrow");
INSERT INTO `wp_postmeta` VALUES("4595", "120", "_WPMSGOPTION_MenuArrowColor", "Transparent");
INSERT INTO `wp_postmeta` VALUES("4596", "120", "_WPMSGOPTION_MenuSelectedBackgroundColor", "015FE6");
INSERT INTO `wp_postmeta` VALUES("4597", "120", "_WPMSGOPTION_MenuSelectedTextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("4598", "120", "_WPMSGOPTION_MenuSeparatorColor", "878787");
INSERT INTO `wp_postmeta` VALUES("4599", "120", "_WPMSGOPTION_BlockquoteBackgroundColor", "DEE9FF");
INSERT INTO `wp_postmeta` VALUES("4600", "120", "_WPMSGOPTION_BlockquoteTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("4601", "120", "_WPMSGOPTION_BlockquoteTextSize", "");
INSERT INTO `wp_postmeta` VALUES("4602", "120", "_WPMSGOPTION_BlockquoteBorderColor", "1994FF");
INSERT INTO `wp_postmeta` VALUES("4603", "120", "_WPMSGOPTION_BlockquoteBorderWidth", "2");
INSERT INTO `wp_postmeta` VALUES("4604", "120", "_WPMSGOPTION_BlockquoteBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("4605", "120", "_WPMSGOPTION_TableBackgroundColor", "DEE9FF");
INSERT INTO `wp_postmeta` VALUES("4606", "120", "_WPMSGOPTION_TableTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("4607", "120", "_WPMSGOPTION_TableTextSize", "");
INSERT INTO `wp_postmeta` VALUES("4608", "120", "_WPMSGOPTION_TableBorderColor", "1994FF");
INSERT INTO `wp_postmeta` VALUES("4609", "120", "_WPMSGOPTION_TableBorderWidth", "1");
INSERT INTO `wp_postmeta` VALUES("4610", "120", "_WPMSGOPTION_TableBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("4611", "120", "_WPMSGOPTION_TableWidth", "95");
INSERT INTO `wp_postmeta` VALUES("4612", "120", "_WPMSGOPTION_TablePadding", "2");
INSERT INTO `wp_postmeta` VALUES("4613", "120", "_WPMSGOPTION_ClickToCallBackgroundColor", "04BF04");
INSERT INTO `wp_postmeta` VALUES("4614", "120", "_WPMSGOPTION_ClickToCallTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("4615", "120", "_WPMSGOPTION_ClickToCallTextSize", "");
INSERT INTO `wp_postmeta` VALUES("4616", "120", "_WPMSGOPTION_ClickToCallBorderColor", "04BF04");
INSERT INTO `wp_postmeta` VALUES("4617", "120", "_WPMSGOPTION_ClickToCallBorderWidth", "");
INSERT INTO `wp_postmeta` VALUES("4618", "120", "_WPMSGOPTION_ClickToCallBorderStyle", "None");
INSERT INTO `wp_postmeta` VALUES("4619", "120", "_WPMSGOPTION_OptinFormBackgroundColor", "DEE9FF");
INSERT INTO `wp_postmeta` VALUES("4620", "120", "_WPMSGOPTION_OptinFormInputBackgroundColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("4621", "120", "_WPMSGOPTION_OptinFormSubmitBackgroundColor", "1994FF");
INSERT INTO `wp_postmeta` VALUES("4622", "120", "_WPMSGOPTION_OptinFormSubmitTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("4623", "120", "_WPMSGOPTION_OptinFormTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("4624", "120", "_WPMSGOPTION_OptinFormTextSize", "");
INSERT INTO `wp_postmeta` VALUES("4625", "120", "_WPMSGOPTION_OptinFormBorderColor", "1994FF");
INSERT INTO `wp_postmeta` VALUES("4626", "120", "_WPMSGOPTION_OptinFormBorderWidth", "2");
INSERT INTO `wp_postmeta` VALUES("4627", "120", "_WPMSGOPTION_OptinFormBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("4628", "120", "_WPMSGOPTION_ContactFormBackgroundColor", "DEE9FF");
INSERT INTO `wp_postmeta` VALUES("4629", "120", "_WPMSGOPTION_ContactFormInputBackgroundColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("4630", "120", "_WPMSGOPTION_ContactFormSubmitBackgroundColor", "1994FF");
INSERT INTO `wp_postmeta` VALUES("4631", "120", "_WPMSGOPTION_ContactFormSubmitTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("4632", "120", "_WPMSGOPTION_ContactFormTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("4633", "120", "_WPMSGOPTION_ContactFormTextSize", "");
INSERT INTO `wp_postmeta` VALUES("4634", "120", "_WPMSGOPTION_ContactFormBorderColor", "1994FF");
INSERT INTO `wp_postmeta` VALUES("4635", "120", "_WPMSGOPTION_ContactFormBorderWidth", "2");
INSERT INTO `wp_postmeta` VALUES("4636", "120", "_WPMSGOPTION_ContactFormBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("4637", "120", "_WPMSGOPTION_DirectionsBackgroundColor", "DEE9FF");
INSERT INTO `wp_postmeta` VALUES("4638", "120", "_WPMSGOPTION_DirectionsInputBackgroundColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("4639", "120", "_WPMSGOPTION_DirectionsSubmitBackgroundColor", "1994FF");
INSERT INTO `wp_postmeta` VALUES("4640", "120", "_WPMSGOPTION_DirectionsSubmitTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("4641", "120", "_WPMSGOPTION_DirectionsTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("4642", "120", "_WPMSGOPTION_DirectionsTextSize", "");
INSERT INTO `wp_postmeta` VALUES("4643", "120", "_WPMSGOPTION_DirectionsBorderColor", "1994FF");
INSERT INTO `wp_postmeta` VALUES("4644", "120", "_WPMSGOPTION_DirectionsBorderWidth", "2");
INSERT INTO `wp_postmeta` VALUES("4645", "120", "_WPMSGOPTION_DirectionsBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("4646", "120", "_WPMSGOPTION_SlideshowBackgroundColor", "DEE9FF");
INSERT INTO `wp_postmeta` VALUES("4647", "120", "_WPMSGOPTION_SlideshowTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("4648", "120", "_WPMSGOPTION_SlideshowTextSize", "");
INSERT INTO `wp_postmeta` VALUES("4649", "120", "_WPMSGOPTION_SlideshowBorderColor", "1994FF");
INSERT INTO `wp_postmeta` VALUES("4650", "120", "_WPMSGOPTION_SlideshowBorderWidth", "");
INSERT INTO `wp_postmeta` VALUES("4651", "120", "_WPMSGOPTION_SlideshowBorderStyle", "None");
INSERT INTO `wp_postmeta` VALUES("4652", "120", "_WPMSGOPTION_AccordianTitleBackgroundColor", "1994FF");
INSERT INTO `wp_postmeta` VALUES("4653", "120", "_WPMSGOPTION_AccordianTitleTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("4654", "120", "_WPMSGOPTION_AccordianTitleTextSize", "");
INSERT INTO `wp_postmeta` VALUES("4655", "120", "_WPMSGOPTION_AccordianTitleSelectedBackgroundColor", "015FE6");
INSERT INTO `wp_postmeta` VALUES("4656", "120", "_WPMSGOPTION_AccordianTitleSelectedTextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("4657", "120", "_WPMSGOPTION_AccordianBackgroundColor", "DEE9FF");
INSERT INTO `wp_postmeta` VALUES("4658", "120", "_WPMSGOPTION_AccordianTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("4659", "120", "_WPMSGOPTION_AccordianTextSize", "");
INSERT INTO `wp_postmeta` VALUES("4660", "120", "_WPMSGOPTION_AccordianSeparatorColor", "878787");
INSERT INTO `wp_postmeta` VALUES("4661", "120", "_WPMSGOPTION_AccordianBorderColor", "0505FF");
INSERT INTO `wp_postmeta` VALUES("4662", "120", "_WPMSGOPTION_AccordianBorderWidth", "2");
INSERT INTO `wp_postmeta` VALUES("4663", "120", "_WPMSGOPTION_AccordianBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("4664", "120", "_WPMSGOPTION_AccordianArrowImage", "LightTriangle");
INSERT INTO `wp_postmeta` VALUES("4665", "120", "_WPMSGOPTION_AccordianArrowColor", "Transparent");
INSERT INTO `wp_postmeta` VALUES("4666", "120", "_WPMSGOPTION_CouponBackgroundColor", "DEE9FF");
INSERT INTO `wp_postmeta` VALUES("4667", "120", "_WPMSGOPTION_CouponTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("4668", "120", "_WPMSGOPTION_CouponTextSize", "");
INSERT INTO `wp_postmeta` VALUES("4669", "120", "_WPMSGOPTION_CouponBorderColor", "1994FF");
INSERT INTO `wp_postmeta` VALUES("4670", "120", "_WPMSGOPTION_CouponBorderWidth", "2");
INSERT INTO `wp_postmeta` VALUES("4671", "120", "_WPMSGOPTION_CouponBorderStyle", "Dashed");
INSERT INTO `wp_postmeta` VALUES("4672", "120", "_WPMSGOPTION_SearchBackgroundColor", "DEE9FF");
INSERT INTO `wp_postmeta` VALUES("4673", "120", "_WPMSGOPTION_SearchTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("4674", "120", "_WPMSGOPTION_SearchTextSize", "");
INSERT INTO `wp_postmeta` VALUES("4675", "120", "_WPMSGOPTION_SearchBorderColor", "1994FF");
INSERT INTO `wp_postmeta` VALUES("4676", "120", "_WPMSGOPTION_SearchBorderWidth", "2");
INSERT INTO `wp_postmeta` VALUES("4677", "120", "_WPMSGOPTION_SearchBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("4678", "120", "_WPMSGOPTION_SearchInputBackgroundColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("4679", "120", "_WPMSGOPTION_SearchSubmitBackgroundColor", "1994FF");
INSERT INTO `wp_postmeta` VALUES("4680", "120", "_WPMSGOPTION_SearchSubmitTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("4681", "120", "_WPMSGOPTION_SearchSelectedBackgroundColor", "015FE6");
INSERT INTO `wp_postmeta` VALUES("4682", "120", "_WPMSGOPTION_SearchSelectedTextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("4683", "120", "_WPMSGOPTION_SearchHighlightColor", "FFFF00");
INSERT INTO `wp_postmeta` VALUES("4684", "120", "_WPMSGOPTION_RssBackgroundColor", "DEE9FF");
INSERT INTO `wp_postmeta` VALUES("4685", "120", "_WPMSGOPTION_RssTextColor", "000000");
INSERT INTO `wp_postmeta` VALUES("4686", "120", "_WPMSGOPTION_RssTextSize", "");
INSERT INTO `wp_postmeta` VALUES("4687", "120", "_WPMSGOPTION_RssBorderColor", "1994FF");
INSERT INTO `wp_postmeta` VALUES("4688", "120", "_WPMSGOPTION_RssBorderWidth", "2");
INSERT INTO `wp_postmeta` VALUES("4689", "120", "_WPMSGOPTION_RssBorderStyle", "Solid");
INSERT INTO `wp_postmeta` VALUES("4690", "120", "_WPMSGOPTION_RssSelectedBackgroundColor", "015FE6");
INSERT INTO `wp_postmeta` VALUES("4691", "120", "_WPMSGOPTION_RssSelectedTextColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("4692", "120", "_WPMSGOPTION_ThemeStyleCSS", "<style  type=\"text/css\" >body{position:relative;-webkit-text-size-adjust:none;min-height:416px;{--wpmsgtknsinglepageminimumheight--}font-family:helvetica,sans-serif;-webkit-background-size:.438em 100%;Background:#ADDEFF;-webkit-touch-callout:none;margin:0;margin-right:auto; margin-left:auto;}img.alignright {float:right; max-width:100%; margin:0 0 1em 1em}img.alignleft {float:left; max-width:100%; margin:0 1em 1em 0}img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}a img.alignright {float:right; max-width:100%; margin:0 0 1em 1em}a img.alignleft {float:left; max-width:100%; margin:0 1em 1em 0}a img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}#accordion {background:#DEE9FF;border-color:#0505FF;border-width:2px;border-style:Solid;margin:5px 5px 5px 5px;border-radius:8px}#accordion H2 {padding-top: 5pxpadding-bottom: 5px; padding-left: 15px; padding-right: 15px; margin: 0px 0px 0px 0px; background:#1994FF;font-size:17px;color:#000000;cursor: pointer; height:43px;overflow:hidden;border-top:1px solid #878787;font-weight: bold; line-height: 40px;}#accordion H2:first-child{border-top:none;border-radius:8px}#accordion H2:last-child{border-bottom-left-radius:8px;border-bottom-right-radius:8px}#accordion H2.current {background-color:#015FE6; color:#FFFFFF; cursor: default}#accordion div.acchead {padding-top: 5pxpadding-bottom: 5px; padding-left: 15px; padding-right: 15px; margin: 0px 0px 0px 0px; font-weight:bold;font-size:17px;background:#1994FF;font-size:17px;color:#000000;cursor: pointer; height:43px;overflow:hidden;border-top:1px solid #878787;line-height: 40px;}#accordion div.acchead:first-child{border-top:none;border-top-left-radius:8px;border-top-right-radius:8px;}#accordion div.acchead.current {background-color:#015FE6; color:#FFFFFF; cursor: default}#accordion .pane {padding-top: 15pxpadding-bottom: 15px; padding-left: 15px; padding-right: 15px; display: none; color:#000000;border-bottom-left-radius:8px;border-bottom-right-radius:8px;}#accordion .acchead .accarrow {float: right;valign: center;width:24px!important;height:24px!important;right:10px;top:18px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/arrows/Down_LightTriangle_Transparent.png) 0 0 no-repeat;margin:0!important ;margin-top: 15px;padding-top: 15px;}.images {background:#DEE9FF;color:#000000;border-color:#1994FF;border-width:px;border-style:;{--wpmsgtknslideshowheight--}{--wpmsgtknslideshowwidth--}overflow:hidden;margin-left:auto;margin-right:auto;position:relative;cursor:pointer;-moz-border-radius:5px;-moz-box-shadow:0 0 25px #666;-webkit-border-radius:5px;-webkit-box-shadow:0 0 25px #666;border-radius:5px;box-shadow:0 0 25px #666;}.images div {display:none;position:absolute;top:0;left:0;width: 100%;}.images div p a img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}.images div p img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}.images div a img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}.images div img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}.images img.aligncenter {display: block; max-width:100%; margin-left: auto; margin-right: auto}.images h3 {font-size:22px;font-weight:normal;margin:0 0 20px 0;color:#456;}.slidetabs {clear:both;}.slidetabs a {width:8px;height:8px;float:left;margin:3px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navigator.png) 0 0 no-repeat;display:block;font-size:1px;}.slidetabs a:hover {background-position:0 -8px;}.slidetabs a.current {background-position:0 -16px; } .forward, .backward {float:left;background:#fff url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/hori_large.png) no-repeat;display:block;width:30px;height:30px;cursor:pointer;font-size:1px;text-indent:-9999em;}.forward { background-position: 0 -30px; clear:right; }.forward:hover { background-position:-30px -30px; }.forward:active{ background-position:-60px -30px; } .backward:hover{ background-position:-30px 0; }.backward:active{ background-position:-60px 0; }.disabled {visibility:hidden !important;}.gallery { list-style: none; padding: 0; margin: 0; }.gallery:after { clear: both; content: \".\"; display: block; height: 0; visibility: hidden; }.gallery li { float: left; width: 33.33333333%; }.gallery li a { display: block; margin: 5px; border: 1px solid #3c3c3c; }.gallery li img { display: block; width: 100%; height: auto; }.highlight { background:#FFFF00;}.highlight_important { background:#FFFF00;}.center{display:block;text-align:center!important;margin:auto}a:hover .arrow{background:0 -13px!important}#topbar.transparent{background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#202020), to(#858585));background-image: -webkit-linear-gradient(top, #202020, #858585);background-image:-moz-linear-gradient(top, #202020, #858585);background-image: -ms-linear-gradient(top, #202020, #858585);background-image:-o-linear-gradient(top, #202020, #858585);}#topbar{position:relative;left:0;top:0;width:auto;}#title{position:absolute;font-weight:bold;top:0;left:0;right:0;text-align:center;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;color:#FFF;color:#FFFFFF;text-shadow:rgba(0,0,0,0.6) 0 -1px 0;padding:0 10px;}#logo{Background:#ADDEFF;}#content{width:100%;position:relative;min-height:250px;{--wpmsgtknsinglepageminimumheight--}height:auto;z-index:0;overflow:hidden;{--wpmsgtknsinglepagebackgroundimage--}}p {padding:0 5px;color:#000000;}h1 {padding:0 5px;color:#000000;}h2 {padding:0 5px;color:#000000;}h3 {padding:0 5px;color:#000000;}h4 {padding:0 5px;color:#000000;}h5 {padding:0 5px;color:#000000;}h6 {padding:0 5px;color:#000000;}blockquote {background:#DEE9FF;color:#000000;border-color:#1994FF;border-width:2px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 6px 10px;padding:0 5px;border-radius:8px}blockquote p {background:#DEE9FF;color:#000000;}.ezmbfooter p {padding:0 5px;color:#000000;}.ezmbtable {width:95%;margin-left:auto;margin-right:auto;border-collapse:collapse;background:#DEE9FF;color:#000000;border-color:#1994FF;border-width:1px;border-style:Solid;}.ezmbtable td {background:#DEE9FF;color:#000000;border-color:#1994FF;border-width:1px;border-style:Solid;padding:2px;}.ezmbtable td p {background:#DEE9FF;color:#000000;}.ezmbiconlist {color:#000000;}.menulist {background:#1994FF;color:#000000;border-color:#0505FF;border-width:2px;border-style:Solid;opacity:1;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.menulist span.name{color:#000000;text-decoration:none}.menulist span.menudesc{color:#;text-decoration:none}.menulist td a{text-decoration:none}.menulist td a img{vertical-align:text-top;text-decoration:none}.menulist td{vertical-align:text-top;}.searchlist {background:#DEE9FF;color:#000000;border-color:#1994FF;border-width:2px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.searchform {background:#DEE9FF;color:#000000;border-color:#1994FF;border-width:2px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.searchform .button input {background:#1994FF;color:#000000;}.searchlist:hover,{background:-webkit-gradient(linear,0% 0%,0% 100%,from(#058cf5),to(#015fe6))}.searchlist a:hover {background-color:#CCF}.searchlist li a:hover{background:#015FE6;}.searchlist a{display:block;height:43px;width:auto;text-decoration:none}.searchlist a img{width:auto;height:32px;float:left;margin:5px 0 0 5px}.searchlist .name{width:auto;font-weight:bold;font-size:17px;color:#000000;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;float:left;margin:11px 0 0 7px}.searchlist a:hover .name{color:#FFFFFF;}.searchlistsnippet{padding-left:5px;padding-right:5px;}.rssfeedlist {background:#DEE9FF;color:#000000;border-color:#1994FF;border-width:2px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.rssfeedlist:hover{background:-webkit-gradient(linear,0% 0%,0% 100%,from(#058cf5),to(#015fe6))}.rssfeedlist a:hover {background-color:#CCF}.rssfeedlist li a:hover{background-color:#015fe6}.rssfeedlist a{display:block;min-height:43px;width:auto;text-decoration:none}.rssfeedlist a img{width:auto;height:32px;float:left;margin:5px 0 0 5px}.rssfeedlist .name{width:auto;font-weight:bold;font-size:17px;color:#000000;float:left;margin:11px 0 0 7px}.rssfeedlist a:hover .name{color:#FFFFFF;}.rssfeedlistsnippet{padding-left:5px;padding-right:5px;}.ezmbcouponwidget {background:#DEE9FF;color:#000000;border-color:#1994FF;border-width:2px;border-style:Dashed;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.optinform {background:#DEE9FF;color:#000000;border-color:#1994FF;border-width:2px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.optinform .button input {background:#1994FF;color:#000000;}.contactform {background:#DEE9FF;color:#000000;border-color:#1994FF;border-width:2px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.contactform .button input {background:#1994FF;color:#000000;}.customform {background:#DEE9FF;color:#000000;border-color:#1994FF;border-width:2px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.customform .button input {background:#1994FF;color:#000000;}li.customformrow{position:relative;list-style-type:none;display:block;height:43px;overflow:hidden;border-top:1px solid #878787;border-top:1px solid #878787;width:auto}li.customformrowbelow{position:relative;list-style-type:none;display:block;height:43px;overflow:hidden;width:auto}p.customformrow{-webkit-margin-before: 0px;border-top:1px solid #878787;width:auto}.customformrow .customformlabel, .customformrow .customformlabelfull, .customformtextbox .customformlabel, .customformradiorow .customformlabel{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;padding-left:5px;overflow:hidden}.customformrow .customformlabel{line-height:44px;}.customformrow .customformlabelfull{line-height:44px;width:100%;height:auto;}.customformrow input {width:50%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.customformrowbelow input {width:100%;min-width:95%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}input.customformrowrequired{background: #ff8080;}.customformrow input:not([type=\'checkbox\']) {-webkit-appearance:none;}.customformrow select{width:50%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.customformrow:first-child input{border-top-right-radius:8px}.customformrow:last-child input{border-bottom-right-radius:8px}.customformtextbox{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.customformtextbox img{max-width:100%}.customformtextbox p{margin-top:2px;color:#000;margin-bottom:2px;text-align:justify}.customformtextbox ul{list-style:circle!important;margin:3px 0}.customformtextbox li{margin:0!important}.customformtextbox textarea{margin-top:5px;font-size:medium;padding:0}.customformradiorow{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.customformrow input[type=\"checkbox\"]{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOff.png)no-repeat;-webkit-appearance:none;border:0;margin:4px 4px 0 0}.customformrow input[type=\"checkbox\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOn.png)no-repeat;}.customformradiorow input[type=\"radio\"]{-webkit-appearance:none;border:0;width:100%;height: 43px;z-index:2;position:absolute;left:50%;margin:0;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOff.png) no-repeat;-webkit-border-radius:0}.customformradiorow input[type=\"radio\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOn.png) no-repeat;}.customformradiorow .customformradiorowinput {height: 40px;}.customformradiorow label{position: absolute;margin-top: 6px;margin-left:60%;text-overflow: ellipsis;}.customformradiorowbelow{position:relative;overflow:hidden;padding:5px 9px}.customformradiorowbelowlabel{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.customformradiorowbelowlabel .customformlabel{left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;padding-left:5px;overflow:hidden}.customformradiorowbelow input[type=\"radio\"]{-webkit-appearance:none;border:0;width:100%;height: 43px;z-index:2;position:absolute;left:10px;margin:0;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOff.png) no-repeat;-webkit-border-radius:0}.customformradiorowbelow input[type=\"radio\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOn.png) no-repeat;}.customformradiorowbelow .customformradiorowinputbelow {height: 40px;}span.customformlabelfull{font-weight:bold;font-size:17px;}.customformradiorowbelow label{position: absolute;margin-top: 6px;margin-left:45px;text-overflow: ellipsis;}li.customformrowbelow select{width:100%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.customformrowcheckboxright{position:relative;overflow:hidden;border-top:1px solid #878787;height: 40px;padding:5px 9px}.customformrowcheckboxright .customformlabel {left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;line-height:44px;overflow:hidden}.customformrowcheckboxright input[type=\"checkbox\"]{position: absolute;height: 40px;width: 35px;right:0;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOff.png)no-repeat;-webkit-appearance:none;border:0;margin:4px 4px 0 0}.customformrowcheckboxright input[type=\"checkbox\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOn.png) no-repeat;}.customformrowcheckboxleft{position:relative;overflow:hidden;border-top:1px solid #878787;height: 40px;padding:5px 9px}.customformrowcheckboxleft .customformlabel {margin-left:40px;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;line-height:44px;overflow:hidden}.customformrowcheckboxleft input[type=\"checkbox\"]{position: absolute;height: 40px;width: 35px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOff.png)no-repeat;-webkit-appearance:none;border:0;margin:4px 4px 0 0}.customformrowcheckboxleft input[type=\"checkbox\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOn.png) no-repeat;} .directions {background:#DEE9FF;color:#000000;border-color:#1994FF;border-width:2px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.directions .button input {background:#1994FF;color:#000000;}.clear {clear: both;}.ezmbphone {margin-left: auto;margin-right: auto;text-align: center;}.ezmbphoneimg {margin-left: auto;margin-right: auto;text-align: center;}.phonebtnimg {margin-left: auto;margin-right: auto;text-align: center;}.phonebtn, .phonebtn:visited {background:#04BF04;color:#000000;border-color:#04BF04;border-width:px;border-style:None;-webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.6);text-shadow: 0 -1px 1px rgba(0,0,0,0.25);border-bottom: 1px solid rgba(0,0,0,0.25);display: inline-block; padding: 5px 10px 6px; text-decoration: none;border-radius: 10px;position: relative;cursor: pointer;font-weight:bold;}.ezmbfooter {Background:#1994FF;margin:0;}.ezmbfooter p {margin:0;}.textbox{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.searchbox{height:44px;background:-webkit-gradient(linear,0% 0%,0% 100%,from(#f1f3f4),color-stop(3%,#e0e4e7),color-stop(50%,#c7cfd4),color-stop(51%,#bec7cd),color-stop(97%,#b4bec6),to(#8999a5));width:100%;margin:-13px 0 13px}.searchbox form{height:24px;border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/searchfield.png) 4 14 1 24;display:block;position:relative;top:8px;border-width:4px 14px 1px 24px;margin:auto}fieldset{border:0;margin:0;padding:0}.searchbox input[type=\"text\"]{border:0;-webkit-appearance:none;height:18px;float:left;font-size:13px;position:relative;top:2px;left:2px;padding:0}.textbox img{max-width:100%}.textbox p{margin-top:2px;color:#000;margin-bottom:2px;text-align:justify}.textbox ul{list-style:circle!important;margin:3px 0}.textbox li{margin:0!important}.menulist li:first-child,.menulist li.form:first-child{border-top:0}.menu,.checkbox,.radiobutton,.select,li.button,li.bigfield,li.smallfield,li.searchsmallfield,li.optinsmallfield,li.contactsmallfield,li.mapsmallfield{position:relative;list-style-type:none;display:block;height:43px;overflow:hidden;border-top:1px solid #878787;border-top:1px solid #878787;width:auto}.menulist li:first-child:hover,.menulist li:first-child a,.radiobutton:first-child input,.select:first-child select,li.button:first-child input,.bigfield:first-child input{border-top-left-radius:8px;border-top-right-radius:8px}.menulist li:last-child:hover,.menulist li:last-child a,.radiobutton:last-child input,.select:last-child select,li.button:last-child input,.bigfield:last-child input{border-bottom-left-radius:8px;border-bottom-right-radius:8px}.menu:hover,.store:hover,.list #content li a:hover,.list .withimage:hover,.applist li:hover:nth-child(n),.ipodlist li:hover:nth-child(n){background:#015FE6;color:#FFFFFF;}.menu a:hover .comment{color:#FFFFFF;}.menu a{display:block;height:43px;width:auto;text-decoration:none}.menu a img{width:auto;height:32px;float:left;margin:5px 0 0 5px}.menu .name,.checkbox .name,.radiobutton .name{width:auto;font-weight:bold;font-size:17px;color:#000000;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;float:left;margin:11px 0 0 7px}.menu-item{position:relative;list-style-type:none;display:block;height:43px;overflow:hidden;border-top:1px solid #878787;border-top:1px solid #878787;width:auto}.menu-item a{display:block;height:43px;width:auto;text-decoration:none}.menu-item a img{width:auto;height:32px;float:left;margin:5px 0 0 5px}.menu-item .name,.checkbox .name,.radiobutton .name{width:auto;font-weight:bold;font-size:17px;color:#000000;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;float:left;margin:11px 0 0 7px}.menu-item:hover{background:#015FE6;color:#FFFFFF;}.menu-item a:hover .comment{color:#FFFFFF;}.menu-item .comment{width:auto;font-size:17px;text-overflow:ellipsis;overflow:hidden;max-width:75%;white-space:nowrap;float:right;color:#324f85;margin:11px 30px 0 0}.menu-item .arrow{position:absolute;width:24px!important;height:24px!important;right:10px;top:12px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/arrows/LightBigArrow_Transparent.png) 0 0 no-repeat;margin:0!important}.menu-item .arrowleft{float:left;width:24px!important;height:24px!important;left:10px;top:12px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/arrows/LightBigArrow_Transparent.png) 0 0 no-repeat;margin:0!important}.menu-item a:hover .name{color:#FFFFFF;}.menu .comment{width:auto;font-size:17px;text-overflow:ellipsis;overflow:hidden;max-width:75%;white-space:nowrap;float:right;color:#324f85;margin:11px 30px 0 0}.menu .arrow,.store .arrow,.musiclist .arrow,.list .arrow{position:absolute;width:24px!important;height:24px!important;right:10px;top:12px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/arrows/LightBigArrow_Transparent.png) 0 0 no-repeat;margin:0!important}.menu .arrowleft,.store .arrowleft,.musiclist .arrowleft,.list .arrowleft{float:left;width:24px!important;height:24px!important;left:10px;top:12px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/arrows/LightBigArrow_Transparent.png) 0 0 no-repeat;margin:0!important}#leftnav,#leftbutton{position:absolute;font-size:12px;left:9px;font-weight:bold}#leftnav,#leftbutton,#rightnav,#rightbutton{z-index:5000}#leftnav a,#rightnav a,#leftbutton a,#rightbutton a{display:block;color:#fff;text-shadow:rgba(0,0,0,0.6) 0 -1px 0;text-decoration:none}.black #leftnav a:first-child,.transparent #leftnav a:first-child{border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleftblack.png) 0 5 0 13-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleftblack.png) 0 5 0 13-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleftblack.png) 0 5 0 13-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleftblack.png) 0 5 0 13}.black #leftnav a,.transparent #leftnav a{border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleftblack.png) 0 5 0 13-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleftblack.png) 0 5 0 13-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleftblack.png) 0 5 0 13-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleftblack.png) 0 5 0 13}.black #rightnav a:first-child,.transparent #rightnav a:first-child{-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navrightblack.png) 0 13 0 5-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navrightblack.png) 0 13 0 5-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navrightblack.png) 0 13 0 5-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navrightblack.png) 0 13 0 5}.black #rightnav a,.transparent #rightnav a{-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkrightblack.png) 0 13 0 5-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkrightblack.png) 0 13 0 5-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkrightblack.png) 0 13 0 5-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkrightblack.png) 0 13 0 5}.black #leftbutton a,.black #rightbutton a,.transparent #leftbutton a,.transparent #rightbutton a{border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbuttonblack.png) 0 5 0 5-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbuttonblack.png) 0 5 0 5-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbuttonblack.png) 0 5 0 5-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbuttonblack.png) 0 5 0 5}#leftnav a:first-child{z-index:2;border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleft_std.png) 0 5 0 13;-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleft_std.png) 0 5 0 13;-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleft_std.png) 0 5 0 13;-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navleft_std.png) 0 5 0 13;width:auto;border-width:0 5px 0 13px;border-radius:16px 6px 6px 16px}#leftnav a{border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleft.png) 0 5 0 13;-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleft.png) 0 5 0 13;-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleft.png) 0 5 0 13;-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkleft.png) 0 5 0 13;z-index:3;margin-left:-4px;padding-right:4px;float:left;border-width:0 5px 0 13px;border-radius:16px 6px 6px 16px}#rightnav,#rightbutton{position:absolute;font-size:12px;right:9px;font-weight:bold}#rightnav a{border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkright.png) 0 13 0 5;-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkright.png) 0 13 0 5;-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkright.png) 0 13 0 5;-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navlinkright.png) 0 13 0 5;z-index:3;margin-right:-4px;padding-left:4px;float:right;border-width:0 13px 0 5px;border-radius:6px 16px 16px 6px}#rightnav a:first-child{z-index:2;border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navright_std.png) 0 13 0 5;-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navright_std.png) 0 13 0 5;-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navright_std.png) 0 13 0 5;-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navright_std.png) 0 13 0 5;border-width:0 13px 0 5px;border-radius:6px 16px 16px 6px}#leftbutton a,#rightbutton a{border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbutton_std.png) 0 5 0 5;-webkit-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbutton_std.png) 0 5 0 5;-moz-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbutton_std.png) 0 5 0 5;-o-border-image:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/navbutton_std.png) 0 5 0 5;border-width:0 5px;border-radius:6px}.gform_body ul { list-style-type: none; }.radiobutton .name{z-index:1}.select select{color:#000;font-weight:bold;font-size:17px;border-radius:0}.select option{max-width:90%}.select .arrow{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/arrow.png);width:8px;height:13px;display:block;-webkit-transform:rotate(90deg);position:absolute;right:10px;top:18px}.button input{width:100%;height:100%;-webkit-appearance:none;border:0;font-weight:bold;font-size:17px;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;background:none;border-radius:0}.textbox textarea{margin-top:5px;font-size:medium;padding:0}.bigfield input{-webkit-appearance:none;border:0;height:100%;background:transparent;font-weight:bold;font-size:17px;padding:0 0 0 5px;border-radius:0}.smallfield .name{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;line-height:44px;font-size:17px;padding-left:5px;overflow:hidden}.smallfield input{width:50%;position:absolute;right:0;height:44px;-webkit-appearance:none;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.smallfield:first-child input{border-top-right-radius:8px}.smallfield:last-child input{border-bottom-right-radius:8px}.searchsmallfield .name{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;line-height:44px;font-size:17px;padding-left:5px;overflow:hidden}.searchsmallfield input{width:50%;position:absolute;right:0;height:44px;-webkit-appearance:none;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.searchsmallfield:first-child input{border-top-right-radius:8px}.searchsmallfield:last-child input{border-bottom-right-radius:8px}.optinsmallfield .name{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;line-height:44px;font-size:17px;padding-left:5px;overflow:hidden}.optinsmallfield input{width:50%;position:absolute;right:0;height:44px;-webkit-appearance:none;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.optinsmallfield:first-child input{border-top-right-radius:8px}.optinsmallfield:last-child input{border-bottom-right-radius:8px}.contactsmallfield .name{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;line-height:44px;font-size:17px;padding-left:5px;overflow:hidden}.contactsmallfield input{width:50%;position:absolute;right:0;height:44px;-webkit-appearance:none;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.contactsmallfield:first-child input{border-top-right-radius:8px}.contactsmallfield:last-child input{border-bottom-right-radius:8px}.mapsmallfield .name{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;line-height:44px;font-size:17px;padding-left:5px;overflow:hidden}.mapsmallfield input{width:50%;position:absolute;right:0;height:44px;-webkit-appearance:none;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.mapsmallfield:first-child input{border-top-right-radius:8px}.mapsmallfield:last-child input{border-bottom-right-radius:8px}img,#duobutton a:last-child,#duoselectionbuttons a:first-child,.ipodlist li:hover:nth-child(n) .name,.ipodlist li:hover:nth-child(n) .time{border:0}#triselectionbuttons a:hover,#triselectionbuttons a#pressed,#duoselectionbuttons a:hover,#duoselectionbuttons a#pressed,li#doublead:hover{background:none}.menu a:hover .name,.store:hover .starcomment,.store:hover .name,.store:hover .comment,.list .withimage a:hover .comment,.list #content li a:hover{color:#FFFFFF;}@media screen and (max-width:320px) {#topbar{height:44px}#logo{max-width:320px;width:100%;}#title{line-height:44px;height:44px;font-size:16pt;}.searchbox form{width:272px}.searchbox input[type=\"text\"]{width:275px}.menu .name{max-width:77%}#leftnav a,#rightnav a,#leftbutton a,#rightbutton a{line-height:30px;height:30px}#leftnav img,#rightnav img{margin-top:4px}.textbox textarea{width:85%;}.customformtextbox textarea{width:85%;}.bigfield input{width:295px}.checkbox .name,.radiobutton .name{max-width:190px}#leftnav,#leftbutton,#rightnav,#rightbutton{top:7px}}@media screen and (min-width:321px) {#topbar{height:32px}#title{line-height:32px;height:32px;font-size:13pt}.menu .name{max-width:85%}#leftnav a,#rightnav a,#leftbutton a,#rightbutton a{line-height:24px;height:24px}#leftnav img,#rightnav img{margin-top:4px;height:70%}.textbox textarea{width:85%;}.customformtextbox textarea{width:85%;}#doublead{width:350px!important}.searchbox form{width:432px}.searchbox input[type=\"text\"]{width:435px}.bigfield input{width:455px}.checkbox .name,.radiobutton .name{max-width:75%}#leftnav,#leftbutton,#rightnav,#rightbutton{top:4px}}</style>");
INSERT INTO `wp_postmeta` VALUES("4693", "120", "_WPMSGOPTION_ThemeCustomFormStyleCSS", "<style  type=\"text/css\" >.customform {background:#DEE9FF;color:#000000;border-color:#1994FF;border-width:2px;border-style:Solid;overflow:hidden;position:relative;display:block;height:auto;width:auto;list-style:none;margin:3px 9px 17px;padding:0;border-radius:8px}.customform .button input {background:#1994FF;color:#000000;}li.customformrow{position:relative;list-style-type:none;display:block;height:43px;overflow:hidden;border-top:1px solid #878787;border-top:1px solid #878787;width:auto}li.customformrowbelow{position:relative;list-style-type:none;display:block;height:43px;overflow:hidden;width:auto}p.customformrow{-webkit-margin-before: 0px;border-top:1px solid #878787;width:auto}.customformrow .customformlabel, .customformrow .customformlabelfull, .customformtextbox .customformlabel, .customformradiorow .customformlabel{width:48%;position:absolute;left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;padding-left:5px;overflow:hidden}.customformrow .customformlabel{line-height:44px;}.customformrow .customformlabelfull{line-height:44px;width:100%;height:auto;}.customformrow input {width:50%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.customformrowbelow input {width:100%;min-width:95%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}input.customformrowrequired{background: #ff8080;}.customformrow input:not([type=\'checkbox\']) {-webkit-appearance:none;}.customformrow select{width:50%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.customformrow:first-child input{border-top-right-radius:8px}.customformrow:last-child input{border-bottom-right-radius:8px}.customformtextbox{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.customformtextbox img{max-width:100%}.customformtextbox p{margin-top:2px;color:#000;margin-bottom:2px;text-align:justify}.customformtextbox ul{list-style:circle!important;margin:3px 0}.customformtextbox li{margin:0!important}.customformtextbox textarea{margin-top:5px;font-size:medium;padding:0}.customformradiorow{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.customformrow input[type=\"checkbox\"]{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOff.png)no-repeat;-webkit-appearance:none;border:0;margin:4px 4px 0 0}.customformrow input[type=\"checkbox\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOn.png)no-repeat;}.customformradiorow input[type=\"radio\"]{-webkit-appearance:none;border:0;width:100%;height: 43px;z-index:2;position:absolute;left:50%;margin:0;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOff.png) no-repeat;-webkit-border-radius:0}.customformradiorow input[type=\"radio\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOn.png) no-repeat;}.customformradiorow .customformradiorowinput {height: 40px;}.customformradiorow label{position: absolute;margin-top: 6px;margin-left:60%;text-overflow: ellipsis;}.customformradiorowbelow{position:relative;overflow:hidden;padding:5px 9px}.customformradiorowbelowlabel{position:relative;overflow:hidden;border-top:1px solid #878787;padding:5px 9px}.customformradiorowbelowlabel .customformlabel{left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;padding-left:5px;overflow:hidden}.customformradiorowbelow input[type=\"radio\"]{-webkit-appearance:none;border:0;width:100%;height: 43px;z-index:2;position:absolute;left:10px;margin:0;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOff.png) no-repeat;-webkit-border-radius:0}.customformradiorowbelow input[type=\"radio\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzRadioButtonOn.png) no-repeat;}.customformradiorowbelow .customformradiorowinputbelow {height: 40px;}span.customformlabelfull{font-weight:bold;font-size:17px;}.customformradiorowbelow label{position: absolute;margin-top: 6px;margin-left:45px;text-overflow: ellipsis;}li.customformrowbelow select{width:100%;position:absolute;right:0;height:44px;border:none;background:#FFFFFF;font-weight:bold;font-size:17px;padding:0;border-radius:0}.customformrowcheckboxright{position:relative;overflow:hidden;border-top:1px solid #878787;height: 40px;padding:5px 9px}.customformrowcheckboxright .customformlabel {left:0;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;line-height:44px;overflow:hidden}.customformrowcheckboxright input[type=\"checkbox\"]{position: absolute;height: 40px;width: 35px;right:0;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOff.png)no-repeat;-webkit-appearance:none;border:0;margin:4px 4px 0 0}.customformrowcheckboxright input[type=\"checkbox\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOn.png) no-repeat;}.customformrowcheckboxleft{position:relative;overflow:hidden;border-top:1px solid #878787;height: 40px;padding:5px 9px}.customformrowcheckboxleft .customformlabel {margin-left:40px;text-overflow:ellipsis;white-space:nowrap;font-weight:bold;font-size:17px;line-height:44px;overflow:hidden}.customformrowcheckboxleft input[type=\"checkbox\"]{position: absolute;height: 40px;width: 35px;background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOff.png)no-repeat;-webkit-appearance:none;border:0;margin:4px 4px 0 0}.customformrowcheckboxleft input[type=\"checkbox\"]:checked{background:url(http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/EzCheckOn.png) no-repeat;}</style>");
INSERT INTO `wp_postmeta` VALUES("4694", "179", "_WPMREDOPTION_RedirectURL", "");
INSERT INTO `wp_postmeta` VALUES("4695", "179", "_WPMREDOPTION_RedirectNever", "");
INSERT INTO `wp_postmeta` VALUES("4696", "179", "_WPMSGOPTION_Initialised", "Y");
INSERT INTO `wp_postmeta` VALUES("4697", "179", "_WPMSGOPTION_Deactivated", "");
INSERT INTO `wp_postmeta` VALUES("4698", "179", "_WPMSGOPTION_PageSlug", "locksmith-tampa");
INSERT INTO `wp_postmeta` VALUES("4699", "179", "_WPMSGOPTION_PageName", "Best Locksmith in Tampa");
INSERT INTO `wp_postmeta` VALUES("4700", "179", "_WPMSGOPTION_TopbarPageName", "(813) 314-7840");
INSERT INTO `wp_postmeta` VALUES("4701", "179", "_WPMSGOPTION_MenuDesc", "");
INSERT INTO `wp_postmeta` VALUES("4702", "179", "_WPMSGOPTION_ThemeType", "Site");
INSERT INTO `wp_postmeta` VALUES("4703", "179", "_WPMSGOPTION_PageTheme", "120");
INSERT INTO `wp_postmeta` VALUES("4704", "179", "_WPMSGOPTION_MenuStyle", "Icon");
INSERT INTO `wp_postmeta` VALUES("4705", "179", "_WPMSGOPTION_MenuPosition", "C");
INSERT INTO `wp_postmeta` VALUES("4706", "179", "_WPMSGOPTION_ExcludePage", "");
INSERT INTO `wp_postmeta` VALUES("4707", "179", "_WPMSGOPTION_ExcludeFromSearch", "");
INSERT INTO `wp_postmeta` VALUES("4708", "179", "_WPMSGOPTION_BackgroundImage", "");
INSERT INTO `wp_postmeta` VALUES("4709", "179", "_WPMSGOPTION_BackgroundImageRepeat", "no-repeat");
INSERT INTO `wp_postmeta` VALUES("4710", "179", "_WPMSGOPTION_BackgroundImagePosition", "centerbottom");
INSERT INTO `wp_postmeta` VALUES("4711", "179", "_WPMSGOPTION_PageMinimumHeight", "");
INSERT INTO `wp_postmeta` VALUES("4712", "179", "_WPMSGOPTION_DisplayLogo", "Y");
INSERT INTO `wp_postmeta` VALUES("4713", "179", "_WPMSGOPTION_LogoImage", "http://tampa.keylocksmith.in/fl/wp-content/uploads/2013/03/Graphic24-300x1941.jpg");
INSERT INTO `wp_postmeta` VALUES("4714", "179", "_WPMSGOPTION_LogoBackgroundColor", "ADDEFF");
INSERT INTO `wp_postmeta` VALUES("4715", "179", "_WPMSGOPTION_LogoUseBackgroundColor", "Y");
INSERT INTO `wp_postmeta` VALUES("4716", "179", "_WPMSGOPTION_FooterBackgroundColor", "");
INSERT INTO `wp_postmeta` VALUES("4717", "179", "_WPMSGOPTION_ThumbnailImage", "__None__");
INSERT INTO `wp_postmeta` VALUES("4718", "179", "_WPMSGOPTION_ThumbnailImageColor", "LightBlue");
INSERT INTO `wp_postmeta` VALUES("4719", "179", "_WPMSGOPTION_CustomThumbnailImage", "");
INSERT INTO `wp_postmeta` VALUES("4720", "179", "_WPMSGOPTION_DisplayPreview", "");
INSERT INTO `wp_postmeta` VALUES("4721", "179", "_WPMSGOPTION_DisplayTopBar", "Y");
INSERT INTO `wp_postmeta` VALUES("4722", "179", "_WPMSGOPTION_TopbarRightLinkText", "");
INSERT INTO `wp_postmeta` VALUES("4723", "179", "_WPMSGOPTION_TopbarRightLinkURL", "");
INSERT INTO `wp_postmeta` VALUES("4724", "179", "_WPMSGOPTION_TopbarRightLinkPage", "123");
INSERT INTO `wp_postmeta` VALUES("4725", "179", "_WPMSGOPTION_DisplayPhoneTopBar", "Y");
INSERT INTO `wp_postmeta` VALUES("4726", "179", "_WPMSGOPTION_FacebookURL", "");
INSERT INTO `wp_postmeta` VALUES("4727", "179", "_WPMSGOPTION_TwitterURL", "");
INSERT INTO `wp_postmeta` VALUES("4728", "179", "_WPMSGOPTION_GooglePlusURL", "");
INSERT INTO `wp_postmeta` VALUES("4729", "179", "_WPMSGOPTION_YouTubeURL", "");
INSERT INTO `wp_postmeta` VALUES("4730", "179", "_WPMSGOPTION_LinkedInURL", "");
INSERT INTO `wp_postmeta` VALUES("4731", "179", "_WPMSGOPTION_SocialMediaPage1URL", "");
INSERT INTO `wp_postmeta` VALUES("4732", "179", "_WPMSGOPTION_SocialMediaIcon1URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/facebook.png");
INSERT INTO `wp_postmeta` VALUES("4733", "179", "_WPMSGOPTION_SocialMediaPage2URL", "");
INSERT INTO `wp_postmeta` VALUES("4734", "179", "_WPMSGOPTION_SocialMediaIcon2URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/twitter.png");
INSERT INTO `wp_postmeta` VALUES("4735", "179", "_WPMSGOPTION_SocialMediaPage3URL", "");
INSERT INTO `wp_postmeta` VALUES("4736", "179", "_WPMSGOPTION_SocialMediaIcon3URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/googleplus.png");
INSERT INTO `wp_postmeta` VALUES("4737", "179", "_WPMSGOPTION_SocialMediaPage4URL", "");
INSERT INTO `wp_postmeta` VALUES("4738", "179", "_WPMSGOPTION_SocialMediaIcon4URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/youtube.png");
INSERT INTO `wp_postmeta` VALUES("4739", "179", "_WPMSGOPTION_SocialMediaPage5URL", "");
INSERT INTO `wp_postmeta` VALUES("4740", "179", "_WPMSGOPTION_SocialMediaIcon5URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/linkedin.png");
INSERT INTO `wp_postmeta` VALUES("4741", "179", "_WPMSGOPTION_SocialMediaPage6URL", "");
INSERT INTO `wp_postmeta` VALUES("4742", "179", "_WPMSGOPTION_SocialMediaIcon6URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/pinterest.png");
INSERT INTO `wp_postmeta` VALUES("4743", "179", "_WPMSGOPTION_SocialMediaPage7URL", "");
INSERT INTO `wp_postmeta` VALUES("4744", "179", "_WPMSGOPTION_SocialMediaIcon7URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/flickr.png");
INSERT INTO `wp_postmeta` VALUES("4745", "179", "_WPMSGOPTION_SocialMediaPage8URL", "");
INSERT INTO `wp_postmeta` VALUES("4746", "179", "_WPMSGOPTION_SocialMediaIcon8URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/yelp.png");
INSERT INTO `wp_postmeta` VALUES("4747", "179", "_WPMSGOPTION_SocialMediaPage9URL", "");
INSERT INTO `wp_postmeta` VALUES("4748", "179", "_WPMSGOPTION_SocialMediaIcon9URL", "");
INSERT INTO `wp_postmeta` VALUES("4749", "179", "_WPMSGOPTION_FBLikeURL", "");
INSERT INTO `wp_postmeta` VALUES("4750", "179", "_WPMSGOPTION_FBLikeWidth", "");
INSERT INTO `wp_postmeta` VALUES("4751", "179", "_WPMSGOPTION_FBLikeSendButton", "Y");
INSERT INTO `wp_postmeta` VALUES("4752", "179", "_WPMSGOPTION_FBLikeFaces", "Y");
INSERT INTO `wp_postmeta` VALUES("4753", "179", "_WPMSGOPTION_FBLikeLayoutStyle", "");
INSERT INTO `wp_postmeta` VALUES("4754", "179", "_WPMSGOPTION_FBLikeVerb", "");
INSERT INTO `wp_postmeta` VALUES("4755", "179", "_WPMSGOPTION_FBLikeColorScheme", "");
INSERT INTO `wp_postmeta` VALUES("4756", "179", "_WPMSGOPTION_FBCommentsURL", "");
INSERT INTO `wp_postmeta` VALUES("4757", "179", "_WPMSGOPTION_FBCommentsPosts", "");
INSERT INTO `wp_postmeta` VALUES("4758", "179", "_WPMSGOPTION_FBCommentsColorScheme", "");
INSERT INTO `wp_postmeta` VALUES("4759", "179", "_WPMSGOPTION_SearchPrompt", "");
INSERT INTO `wp_postmeta` VALUES("4760", "179", "_WPMSGOPTION_SearchSubmitPrompt", "");
INSERT INTO `wp_postmeta` VALUES("4761", "179", "_WPMSGOPTION_RSSFeedURL", "");
INSERT INTO `wp_postmeta` VALUES("4762", "179", "_WPMSGOPTION_RSSFeedMax", "");
INSERT INTO `wp_postmeta` VALUES("4763", "179", "_WPMSGOPTION_RSSFeedStyle", "TitleOnly");
INSERT INTO `wp_postmeta` VALUES("4764", "179", "_WPMSGOPTION_MetaTitle", "");
INSERT INTO `wp_postmeta` VALUES("4765", "179", "_WPMSGOPTION_MetaDescription", "");
INSERT INTO `wp_postmeta` VALUES("4766", "179", "_WPMSGOPTION_MetaKeywords", "");
INSERT INTO `wp_postmeta` VALUES("4767", "179", "_WPMSGOPTION_AnalyticsCode", "");
INSERT INTO `wp_postmeta` VALUES("4768", "179", "_WPMSGOPTION_CouponTitle", "Save Now");
INSERT INTO `wp_postmeta` VALUES("4769", "179", "_WPMSGOPTION_CouponCodeText", "");
INSERT INTO `wp_postmeta` VALUES("4770", "179", "_WPMSGOPTION_CouponStartText", "");
INSERT INTO `wp_postmeta` VALUES("4771", "179", "_WPMSGOPTION_CouponExpiryText", "");
INSERT INTO `wp_postmeta` VALUES("4772", "179", "_WPMSGOPTION_CouponCode", "Mention Key Word");
INSERT INTO `wp_postmeta` VALUES("4773", "179", "_WPMSGOPTION_CouponCodeExpired", "");
INSERT INTO `wp_postmeta` VALUES("4774", "179", "_WPMSGOPTION_CouponStart", "");
INSERT INTO `wp_postmeta` VALUES("4775", "179", "_WPMSGOPTION_CouponExpiry", "");
INSERT INTO `wp_postmeta` VALUES("4776", "179", "_WPMSGOPTION_CouponDateFormat", "Y-m-d");
INSERT INTO `wp_postmeta` VALUES("4777", "179", "_WPMSGOPTION_CouponValidText", "Save Now key word = &quot;Best Locksmith&quot;");
INSERT INTO `wp_postmeta` VALUES("4778", "179", "_WPMSGOPTION_CouponExpiredText", "");
INSERT INTO `wp_postmeta` VALUES("4779", "179", "_WPMSGOPTION_CouponImage", "");
INSERT INTO `wp_postmeta` VALUES("4780", "179", "_WPMSGOPTION_TelephoneNumber", "(813) 314-7840");
INSERT INTO `wp_postmeta` VALUES("4781", "179", "_WPMSGOPTION_TelephoneCallToAction", "Tap To  Call  NOW");
INSERT INTO `wp_postmeta` VALUES("4782", "179", "_WPMSGOPTION_ClickToCallType", "Call");
INSERT INTO `wp_postmeta` VALUES("4783", "179", "_WPMSGOPTION_SMSMessage", "");
INSERT INTO `wp_postmeta` VALUES("4784", "179", "_WPMSGOPTION_HidePhoneIcon", "");
INSERT INTO `wp_postmeta` VALUES("4785", "179", "_WPMSGOPTION_HidePhoneNumber", "Y");
INSERT INTO `wp_postmeta` VALUES("4786", "179", "_WPMSGOPTION_TelephoneIconImage", "");
INSERT INTO `wp_postmeta` VALUES("4787", "179", "_WPMSGOPTION_TelephoneImage", "");
INSERT INTO `wp_postmeta` VALUES("4788", "179", "_WPMSGOPTION_SMSNumber", "");
INSERT INTO `wp_postmeta` VALUES("4789", "179", "_WPMSGOPTION_SMSCallToAction", "");
INSERT INTO `wp_postmeta` VALUES("4790", "179", "_WPMSGOPTION_SMSMessageText", "");
INSERT INTO `wp_postmeta` VALUES("4791", "179", "_WPMSGOPTION_HideSMSIcon", "");
INSERT INTO `wp_postmeta` VALUES("4792", "179", "_WPMSGOPTION_HideSMSNumber", "");
INSERT INTO `wp_postmeta` VALUES("4793", "179", "_WPMSGOPTION_SMSIconImage", "");
INSERT INTO `wp_postmeta` VALUES("4794", "179", "_WPMSGOPTION_SMSImage", "");
INSERT INTO `wp_postmeta` VALUES("4795", "179", "_WPMSGOPTION_EmailTo", "");
INSERT INTO `wp_postmeta` VALUES("4796", "179", "_WPMSGOPTION_EmailCallToAction", "");
INSERT INTO `wp_postmeta` VALUES("4797", "179", "_WPMSGOPTION_EmailSubjectText", "");
INSERT INTO `wp_postmeta` VALUES("4798", "179", "_WPMSGOPTION_EmailMessageText", "");
INSERT INTO `wp_postmeta` VALUES("4799", "179", "_WPMSGOPTION_HideEmailIcon", "");
INSERT INTO `wp_postmeta` VALUES("4800", "179", "_WPMSGOPTION_EmailIconImage", "");
INSERT INTO `wp_postmeta` VALUES("4801", "179", "_WPMSGOPTION_EmailImage", "");
INSERT INTO `wp_postmeta` VALUES("4802", "179", "_WPMSGOPTION_SkypeUsername", "");
INSERT INTO `wp_postmeta` VALUES("4803", "179", "_WPMSGOPTION_SkypeCallToAction", "");
INSERT INTO `wp_postmeta` VALUES("4804", "179", "_WPMSGOPTION_HideSkypeIcon", "");
INSERT INTO `wp_postmeta` VALUES("4805", "179", "_WPMSGOPTION_SkypeIconImage", "");
INSERT INTO `wp_postmeta` VALUES("4806", "179", "_WPMSGOPTION_SkypeImage", "");
INSERT INTO `wp_postmeta` VALUES("4807", "179", "_WPMSGOPTION_RedirectURL", "");
INSERT INTO `wp_postmeta` VALUES("4808", "179", "_WPMSGOPTION_DeactivatedURL", "");
INSERT INTO `wp_postmeta` VALUES("4809", "179", "_WPMSGOPTION_ExportDomain", "");
INSERT INTO `wp_postmeta` VALUES("4810", "179", "_WPMSGOPTION_CreateBitly", "");
INSERT INTO `wp_postmeta` VALUES("4811", "179", "_WPMSGOPTION_BitlyUsername", "");
INSERT INTO `wp_postmeta` VALUES("4812", "179", "_WPMSGOPTION_BitlyApiKey", "");
INSERT INTO `wp_postmeta` VALUES("4813", "179", "_WPMSGOPTION_BitlyLongUrl", "");
INSERT INTO `wp_postmeta` VALUES("4814", "179", "_WPMSGOPTION_BitlyShortUrl", "");
INSERT INTO `wp_postmeta` VALUES("4815", "179", "_WPMSGOPTION_MapLocation", "Tampa, FL, USA");
INSERT INTO `wp_postmeta` VALUES("4816", "179", "_WPMSGOPTION_MapLongitude", "");
INSERT INTO `wp_postmeta` VALUES("4817", "179", "_WPMSGOPTION_MapLatitude", "");
INSERT INTO `wp_postmeta` VALUES("4818", "179", "_WPMSGOPTION_MapWidth", "");
INSERT INTO `wp_postmeta` VALUES("4819", "179", "_WPMSGOPTION_MapHeight", "");
INSERT INTO `wp_postmeta` VALUES("4820", "179", "_WPMSGOPTION_MapZoom", "");
INSERT INTO `wp_postmeta` VALUES("4821", "179", "_WPMSGOPTION_MapLanguage", "en");
INSERT INTO `wp_postmeta` VALUES("4822", "179", "_WPMSGOPTION_DisplayMapDirections", "");
INSERT INTO `wp_postmeta` VALUES("4823", "179", "_WPMSGOPTION_DirectionsPrompt", "");
INSERT INTO `wp_postmeta` VALUES("4824", "179", "_WPMSGOPTION_DirectionsButtonText", "");
INSERT INTO `wp_postmeta` VALUES("4825", "179", "_WPMSGOPTION_DisplayGPSDirectionsButton", "");
INSERT INTO `wp_postmeta` VALUES("4826", "179", "_WPMSGOPTION_GPSDirectionsButtonText", "Locate ");
INSERT INTO `wp_postmeta` VALUES("4827", "179", "_WPMSGOPTION_DirectionsPosition", "A");
INSERT INTO `wp_postmeta` VALUES("4828", "179", "_WPMSGOPTION_OptinNamePrompt", "");
INSERT INTO `wp_postmeta` VALUES("4829", "179", "_WPMSGOPTION_OptinEmailPrompt", "");
INSERT INTO `wp_postmeta` VALUES("4830", "179", "_WPMSGOPTION_OptinSubmitPrompt", "");
INSERT INTO `wp_postmeta` VALUES("4831", "179", "_WPMSGOPTION_OptinCode", "");
INSERT INTO `wp_postmeta` VALUES("4832", "179", "_WPMSGOPTION_OptinRedirectPage", "0");
INSERT INTO `wp_postmeta` VALUES("4833", "179", "_WPMSGOPTION_ContactSendToEmail", "");
INSERT INTO `wp_postmeta` VALUES("4834", "179", "_WPMSGOPTION_ContactSendFromName", "");
INSERT INTO `wp_postmeta` VALUES("4835", "179", "_WPMSGOPTION_ContactSendFromEmail", "");
INSERT INTO `wp_postmeta` VALUES("4836", "179", "_WPMSGOPTION_ContactNamePrompt", "");
INSERT INTO `wp_postmeta` VALUES("4837", "179", "_WPMSGOPTION_ContactPhonePrompt", "");
INSERT INTO `wp_postmeta` VALUES("4838", "179", "_WPMSGOPTION_ContactEmailPrompt", "");
INSERT INTO `wp_postmeta` VALUES("4839", "179", "_WPMSGOPTION_ContactMessagePrompt", "");
INSERT INTO `wp_postmeta` VALUES("4840", "179", "_WPMSGOPTION_ContactSubmitPrompt", "");
INSERT INTO `wp_postmeta` VALUES("4841", "179", "_WPMSGOPTION_ContactShowAcknowledgement", "");
INSERT INTO `wp_postmeta` VALUES("4842", "179", "_WPMSGOPTION_ContactAcknowledgementDisplayMessage", "");
INSERT INTO `wp_postmeta` VALUES("4843", "179", "_WPMSGOPTION_ContactSendAcknowledgement", "");
INSERT INTO `wp_postmeta` VALUES("4844", "179", "_WPMSGOPTION_ContactAcknowledgementName", "");
INSERT INTO `wp_postmeta` VALUES("4845", "179", "_WPMSGOPTION_ContactAcknowledgementEmail", "");
INSERT INTO `wp_postmeta` VALUES("4846", "179", "_WPMSGOPTION_ContactAcknowledgementSubject", "");
INSERT INTO `wp_postmeta` VALUES("4847", "179", "_WPMSGOPTION_ContactAcknowledgementMessage", "");
INSERT INTO `wp_postmeta` VALUES("4848", "179", "_WPMSGOPTION_SiteID", "179");
INSERT INTO `wp_postmeta` VALUES("4849", "179", "_WPMSGOPTION_StreetLat", "27.950575");
INSERT INTO `wp_postmeta` VALUES("4850", "179", "_WPMSGOPTION_StreetLong", "-82.4571776");
INSERT INTO `wp_postmeta` VALUES("4851", "179", "_WPMREDOPTION_RedirectNever", "");
INSERT INTO `wp_postmeta` VALUES("4852", "179", "_WPMREDOPTION_RedirectURL", "");
INSERT INTO `wp_postmeta` VALUES("4853", "150", "_WPMREDOPTION_RedirectURL", "");
INSERT INTO `wp_postmeta` VALUES("4854", "150", "_WPMREDOPTION_RedirectNever", "");
INSERT INTO `wp_postmeta` VALUES("4855", "150", "_WPMSGOPTION_Initialised", "Y");
INSERT INTO `wp_postmeta` VALUES("4856", "150", "_WPMSGOPTION_Deactivated", "");
INSERT INTO `wp_postmeta` VALUES("4857", "150", "_WPMSGOPTION_PageSlug", "location-map");
INSERT INTO `wp_postmeta` VALUES("4858", "150", "_WPMSGOPTION_PageName", "Location Map");
INSERT INTO `wp_postmeta` VALUES("4859", "150", "_WPMSGOPTION_TopbarPageName", "Location Map");
INSERT INTO `wp_postmeta` VALUES("4860", "150", "_WPMSGOPTION_MenuDesc", "");
INSERT INTO `wp_postmeta` VALUES("4861", "150", "_WPMSGOPTION_ThemeType", "Site");
INSERT INTO `wp_postmeta` VALUES("4862", "150", "_WPMSGOPTION_PageTheme", "154");
INSERT INTO `wp_postmeta` VALUES("4863", "150", "_WPMSGOPTION_MenuStyle", "Vertical");
INSERT INTO `wp_postmeta` VALUES("4864", "150", "_WPMSGOPTION_MenuPosition", "T");
INSERT INTO `wp_postmeta` VALUES("4865", "150", "_WPMSGOPTION_ExcludePage", "");
INSERT INTO `wp_postmeta` VALUES("4866", "150", "_WPMSGOPTION_ExcludeFromSearch", "");
INSERT INTO `wp_postmeta` VALUES("4867", "150", "_WPMSGOPTION_BackgroundImage", "");
INSERT INTO `wp_postmeta` VALUES("4868", "150", "_WPMSGOPTION_BackgroundImageRepeat", "repeat");
INSERT INTO `wp_postmeta` VALUES("4869", "150", "_WPMSGOPTION_BackgroundImagePosition", "lefttop");
INSERT INTO `wp_postmeta` VALUES("4870", "150", "_WPMSGOPTION_PageMinimumHeight", "");
INSERT INTO `wp_postmeta` VALUES("4871", "150", "_WPMSGOPTION_DisplayLogo", "");
INSERT INTO `wp_postmeta` VALUES("4872", "150", "_WPMSGOPTION_LogoImage", "");
INSERT INTO `wp_postmeta` VALUES("4873", "150", "_WPMSGOPTION_LogoBackgroundColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("4874", "150", "_WPMSGOPTION_LogoUseBackgroundColor", "");
INSERT INTO `wp_postmeta` VALUES("4875", "150", "_WPMSGOPTION_FooterBackgroundColor", "");
INSERT INTO `wp_postmeta` VALUES("4876", "150", "_WPMSGOPTION_ThumbnailImage", "Map");
INSERT INTO `wp_postmeta` VALUES("4877", "150", "_WPMSGOPTION_ThumbnailImageColor", "LightBlue");
INSERT INTO `wp_postmeta` VALUES("4878", "150", "_WPMSGOPTION_CustomThumbnailImage", "");
INSERT INTO `wp_postmeta` VALUES("4879", "150", "_WPMSGOPTION_DisplayPreview", "");
INSERT INTO `wp_postmeta` VALUES("4880", "150", "_WPMSGOPTION_DisplayTopBar", "Y");
INSERT INTO `wp_postmeta` VALUES("4881", "150", "_WPMSGOPTION_TopbarRightLinkText", "");
INSERT INTO `wp_postmeta` VALUES("4882", "150", "_WPMSGOPTION_TopbarRightLinkURL", "");
INSERT INTO `wp_postmeta` VALUES("4883", "150", "_WPMSGOPTION_TopbarRightLinkPage", "0");
INSERT INTO `wp_postmeta` VALUES("4884", "150", "_WPMSGOPTION_DisplayPhoneTopBar", "Y");
INSERT INTO `wp_postmeta` VALUES("4885", "150", "_WPMSGOPTION_FacebookURL", "");
INSERT INTO `wp_postmeta` VALUES("4886", "150", "_WPMSGOPTION_TwitterURL", "");
INSERT INTO `wp_postmeta` VALUES("4887", "150", "_WPMSGOPTION_GooglePlusURL", "");
INSERT INTO `wp_postmeta` VALUES("4888", "150", "_WPMSGOPTION_YouTubeURL", "");
INSERT INTO `wp_postmeta` VALUES("4889", "150", "_WPMSGOPTION_LinkedInURL", "");
INSERT INTO `wp_postmeta` VALUES("4890", "150", "_WPMSGOPTION_SocialMediaPage1URL", "");
INSERT INTO `wp_postmeta` VALUES("4891", "150", "_WPMSGOPTION_SocialMediaIcon1URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/facebook.png");
INSERT INTO `wp_postmeta` VALUES("4892", "150", "_WPMSGOPTION_SocialMediaPage2URL", "");
INSERT INTO `wp_postmeta` VALUES("4893", "150", "_WPMSGOPTION_SocialMediaIcon2URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/twitter.png");
INSERT INTO `wp_postmeta` VALUES("4894", "150", "_WPMSGOPTION_SocialMediaPage3URL", "");
INSERT INTO `wp_postmeta` VALUES("4895", "150", "_WPMSGOPTION_SocialMediaIcon3URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/googleplus.png");
INSERT INTO `wp_postmeta` VALUES("4896", "150", "_WPMSGOPTION_SocialMediaPage4URL", "");
INSERT INTO `wp_postmeta` VALUES("4897", "150", "_WPMSGOPTION_SocialMediaIcon4URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/youtube.png");
INSERT INTO `wp_postmeta` VALUES("4898", "150", "_WPMSGOPTION_SocialMediaPage5URL", "");
INSERT INTO `wp_postmeta` VALUES("4899", "150", "_WPMSGOPTION_SocialMediaIcon5URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/linkedin.png");
INSERT INTO `wp_postmeta` VALUES("4900", "150", "_WPMSGOPTION_SocialMediaPage6URL", "");
INSERT INTO `wp_postmeta` VALUES("4901", "150", "_WPMSGOPTION_SocialMediaIcon6URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/pinterest.png");
INSERT INTO `wp_postmeta` VALUES("4902", "150", "_WPMSGOPTION_SocialMediaPage7URL", "");
INSERT INTO `wp_postmeta` VALUES("4903", "150", "_WPMSGOPTION_SocialMediaIcon7URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/flickr.png");
INSERT INTO `wp_postmeta` VALUES("4904", "150", "_WPMSGOPTION_SocialMediaPage8URL", "");
INSERT INTO `wp_postmeta` VALUES("4905", "150", "_WPMSGOPTION_SocialMediaIcon8URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/yelp.png");
INSERT INTO `wp_postmeta` VALUES("4906", "150", "_WPMSGOPTION_SocialMediaPage9URL", "");
INSERT INTO `wp_postmeta` VALUES("4907", "150", "_WPMSGOPTION_SocialMediaIcon9URL", "");
INSERT INTO `wp_postmeta` VALUES("4908", "150", "_WPMSGOPTION_FBLikeURL", "");
INSERT INTO `wp_postmeta` VALUES("4909", "150", "_WPMSGOPTION_FBLikeWidth", "");
INSERT INTO `wp_postmeta` VALUES("4910", "150", "_WPMSGOPTION_FBLikeSendButton", "Y");
INSERT INTO `wp_postmeta` VALUES("4911", "150", "_WPMSGOPTION_FBLikeFaces", "Y");
INSERT INTO `wp_postmeta` VALUES("4912", "150", "_WPMSGOPTION_FBLikeLayoutStyle", "");
INSERT INTO `wp_postmeta` VALUES("4913", "150", "_WPMSGOPTION_FBLikeVerb", "");
INSERT INTO `wp_postmeta` VALUES("4914", "150", "_WPMSGOPTION_FBLikeColorScheme", "");
INSERT INTO `wp_postmeta` VALUES("4915", "150", "_WPMSGOPTION_FBCommentsURL", "");
INSERT INTO `wp_postmeta` VALUES("4916", "150", "_WPMSGOPTION_FBCommentsPosts", "");
INSERT INTO `wp_postmeta` VALUES("4917", "150", "_WPMSGOPTION_FBCommentsColorScheme", "");
INSERT INTO `wp_postmeta` VALUES("4918", "150", "_WPMSGOPTION_SearchPrompt", "");
INSERT INTO `wp_postmeta` VALUES("4919", "150", "_WPMSGOPTION_SearchSubmitPrompt", "");
INSERT INTO `wp_postmeta` VALUES("4920", "150", "_WPMSGOPTION_RSSFeedURL", "");
INSERT INTO `wp_postmeta` VALUES("4921", "150", "_WPMSGOPTION_RSSFeedMax", "");
INSERT INTO `wp_postmeta` VALUES("4922", "150", "_WPMSGOPTION_RSSFeedStyle", "TitleOnly");
INSERT INTO `wp_postmeta` VALUES("4923", "150", "_WPMSGOPTION_MetaTitle", "");
INSERT INTO `wp_postmeta` VALUES("4924", "150", "_WPMSGOPTION_MetaDescription", "");
INSERT INTO `wp_postmeta` VALUES("4925", "150", "_WPMSGOPTION_MetaKeywords", "");
INSERT INTO `wp_postmeta` VALUES("4926", "150", "_WPMSGOPTION_AnalyticsCode", "");
INSERT INTO `wp_postmeta` VALUES("4927", "150", "_WPMSGOPTION_CouponTitle", "");
INSERT INTO `wp_postmeta` VALUES("4928", "150", "_WPMSGOPTION_CouponCodeText", "");
INSERT INTO `wp_postmeta` VALUES("4929", "150", "_WPMSGOPTION_CouponStartText", "");
INSERT INTO `wp_postmeta` VALUES("4930", "150", "_WPMSGOPTION_CouponExpiryText", "");
INSERT INTO `wp_postmeta` VALUES("4931", "150", "_WPMSGOPTION_CouponCode", "");
INSERT INTO `wp_postmeta` VALUES("4932", "150", "_WPMSGOPTION_CouponCodeExpired", "");
INSERT INTO `wp_postmeta` VALUES("4933", "150", "_WPMSGOPTION_CouponStart", "");
INSERT INTO `wp_postmeta` VALUES("4934", "150", "_WPMSGOPTION_CouponExpiry", "");
INSERT INTO `wp_postmeta` VALUES("4935", "150", "_WPMSGOPTION_CouponDateFormat", "Y-m-d");
INSERT INTO `wp_postmeta` VALUES("4936", "150", "_WPMSGOPTION_CouponValidText", "");
INSERT INTO `wp_postmeta` VALUES("4937", "150", "_WPMSGOPTION_CouponExpiredText", "");
INSERT INTO `wp_postmeta` VALUES("4938", "150", "_WPMSGOPTION_CouponImage", "");
INSERT INTO `wp_postmeta` VALUES("4939", "150", "_WPMSGOPTION_TelephoneNumber", "");
INSERT INTO `wp_postmeta` VALUES("4940", "150", "_WPMSGOPTION_TelephoneCallToAction", "");
INSERT INTO `wp_postmeta` VALUES("4941", "150", "_WPMSGOPTION_ClickToCallType", "Call");
INSERT INTO `wp_postmeta` VALUES("4942", "150", "_WPMSGOPTION_SMSMessage", "");
INSERT INTO `wp_postmeta` VALUES("4943", "150", "_WPMSGOPTION_HidePhoneIcon", "");
INSERT INTO `wp_postmeta` VALUES("4944", "150", "_WPMSGOPTION_HidePhoneNumber", "");
INSERT INTO `wp_postmeta` VALUES("4945", "150", "_WPMSGOPTION_TelephoneIconImage", "");
INSERT INTO `wp_postmeta` VALUES("4946", "150", "_WPMSGOPTION_TelephoneImage", "");
INSERT INTO `wp_postmeta` VALUES("4947", "150", "_WPMSGOPTION_SMSNumber", "");
INSERT INTO `wp_postmeta` VALUES("4948", "150", "_WPMSGOPTION_SMSCallToAction", "");
INSERT INTO `wp_postmeta` VALUES("4949", "150", "_WPMSGOPTION_SMSMessageText", "");
INSERT INTO `wp_postmeta` VALUES("4950", "150", "_WPMSGOPTION_HideSMSIcon", "");
INSERT INTO `wp_postmeta` VALUES("4951", "150", "_WPMSGOPTION_HideSMSNumber", "");
INSERT INTO `wp_postmeta` VALUES("4952", "150", "_WPMSGOPTION_SMSIconImage", "");
INSERT INTO `wp_postmeta` VALUES("4953", "150", "_WPMSGOPTION_SMSImage", "");
INSERT INTO `wp_postmeta` VALUES("4954", "150", "_WPMSGOPTION_EmailTo", "");
INSERT INTO `wp_postmeta` VALUES("4955", "150", "_WPMSGOPTION_EmailCallToAction", "");
INSERT INTO `wp_postmeta` VALUES("4956", "150", "_WPMSGOPTION_EmailSubjectText", "");
INSERT INTO `wp_postmeta` VALUES("4957", "150", "_WPMSGOPTION_EmailMessageText", "");
INSERT INTO `wp_postmeta` VALUES("4958", "150", "_WPMSGOPTION_HideEmailIcon", "");
INSERT INTO `wp_postmeta` VALUES("4959", "150", "_WPMSGOPTION_EmailIconImage", "");
INSERT INTO `wp_postmeta` VALUES("4960", "150", "_WPMSGOPTION_EmailImage", "");
INSERT INTO `wp_postmeta` VALUES("4961", "150", "_WPMSGOPTION_SkypeUsername", "");
INSERT INTO `wp_postmeta` VALUES("4962", "150", "_WPMSGOPTION_SkypeCallToAction", "");
INSERT INTO `wp_postmeta` VALUES("4963", "150", "_WPMSGOPTION_HideSkypeIcon", "");
INSERT INTO `wp_postmeta` VALUES("4964", "150", "_WPMSGOPTION_SkypeIconImage", "");
INSERT INTO `wp_postmeta` VALUES("4965", "150", "_WPMSGOPTION_SkypeImage", "");
INSERT INTO `wp_postmeta` VALUES("4966", "150", "_WPMSGOPTION_RedirectURL", "");
INSERT INTO `wp_postmeta` VALUES("4967", "150", "_WPMSGOPTION_DeactivatedURL", "");
INSERT INTO `wp_postmeta` VALUES("4968", "150", "_WPMSGOPTION_ExportDomain", "");
INSERT INTO `wp_postmeta` VALUES("4969", "150", "_WPMSGOPTION_CreateBitly", "");
INSERT INTO `wp_postmeta` VALUES("4970", "150", "_WPMSGOPTION_BitlyUsername", "");
INSERT INTO `wp_postmeta` VALUES("4971", "150", "_WPMSGOPTION_BitlyApiKey", "");
INSERT INTO `wp_postmeta` VALUES("4972", "150", "_WPMSGOPTION_BitlyLongUrl", "");
INSERT INTO `wp_postmeta` VALUES("4973", "150", "_WPMSGOPTION_BitlyShortUrl", "");
INSERT INTO `wp_postmeta` VALUES("4974", "150", "_WPMSGOPTION_MapLocation", "Westwood, NJ, USA");
INSERT INTO `wp_postmeta` VALUES("4975", "150", "_WPMSGOPTION_MapLongitude", "");
INSERT INTO `wp_postmeta` VALUES("4976", "150", "_WPMSGOPTION_MapLatitude", "");
INSERT INTO `wp_postmeta` VALUES("4977", "150", "_WPMSGOPTION_MapWidth", "");
INSERT INTO `wp_postmeta` VALUES("4978", "150", "_WPMSGOPTION_MapHeight", "");
INSERT INTO `wp_postmeta` VALUES("4979", "150", "_WPMSGOPTION_MapZoom", "");
INSERT INTO `wp_postmeta` VALUES("4980", "150", "_WPMSGOPTION_MapLanguage", "en");
INSERT INTO `wp_postmeta` VALUES("4981", "150", "_WPMSGOPTION_DisplayMapDirections", "Y");
INSERT INTO `wp_postmeta` VALUES("4982", "150", "_WPMSGOPTION_DirectionsPrompt", "");
INSERT INTO `wp_postmeta` VALUES("4983", "150", "_WPMSGOPTION_DirectionsButtonText", "");
INSERT INTO `wp_postmeta` VALUES("4984", "150", "_WPMSGOPTION_DisplayGPSDirectionsButton", "");
INSERT INTO `wp_postmeta` VALUES("4985", "150", "_WPMSGOPTION_GPSDirectionsButtonText", "");
INSERT INTO `wp_postmeta` VALUES("4986", "150", "_WPMSGOPTION_DirectionsPosition", "A");
INSERT INTO `wp_postmeta` VALUES("4987", "150", "_WPMSGOPTION_StreetLat", "40.9912087");
INSERT INTO `wp_postmeta` VALUES("4988", "150", "_WPMSGOPTION_StreetLong", "-74.0326395");
INSERT INTO `wp_postmeta` VALUES("4989", "150", "_WPMSGOPTION_OptinNamePrompt", "");
INSERT INTO `wp_postmeta` VALUES("4990", "150", "_WPMSGOPTION_OptinEmailPrompt", "");
INSERT INTO `wp_postmeta` VALUES("4991", "150", "_WPMSGOPTION_OptinSubmitPrompt", "");
INSERT INTO `wp_postmeta` VALUES("4992", "150", "_WPMSGOPTION_OptinCode", "");
INSERT INTO `wp_postmeta` VALUES("4993", "150", "_WPMSGOPTION_OptinRedirectPage", "0");
INSERT INTO `wp_postmeta` VALUES("4994", "150", "_WPMSGOPTION_ContactSendToEmail", "");
INSERT INTO `wp_postmeta` VALUES("4995", "150", "_WPMSGOPTION_ContactSendFromName", "");
INSERT INTO `wp_postmeta` VALUES("4996", "150", "_WPMSGOPTION_ContactSendFromEmail", "");
INSERT INTO `wp_postmeta` VALUES("4997", "150", "_WPMSGOPTION_ContactNamePrompt", "");
INSERT INTO `wp_postmeta` VALUES("4998", "150", "_WPMSGOPTION_ContactPhonePrompt", "");
INSERT INTO `wp_postmeta` VALUES("4999", "150", "_WPMSGOPTION_ContactEmailPrompt", "");
INSERT INTO `wp_postmeta` VALUES("5000", "150", "_WPMSGOPTION_ContactMessagePrompt", "");
INSERT INTO `wp_postmeta` VALUES("5001", "150", "_WPMSGOPTION_ContactSubmitPrompt", "");
INSERT INTO `wp_postmeta` VALUES("5002", "150", "_WPMSGOPTION_ContactShowAcknowledgement", "");
INSERT INTO `wp_postmeta` VALUES("5003", "150", "_WPMSGOPTION_ContactAcknowledgementDisplayMessage", "");
INSERT INTO `wp_postmeta` VALUES("5004", "150", "_WPMSGOPTION_ContactSendAcknowledgement", "");
INSERT INTO `wp_postmeta` VALUES("5005", "150", "_WPMSGOPTION_ContactAcknowledgementName", "");
INSERT INTO `wp_postmeta` VALUES("5006", "150", "_WPMSGOPTION_ContactAcknowledgementEmail", "");
INSERT INTO `wp_postmeta` VALUES("5007", "150", "_WPMSGOPTION_ContactAcknowledgementSubject", "");
INSERT INTO `wp_postmeta` VALUES("5008", "150", "_WPMSGOPTION_ContactAcknowledgementMessage", "");
INSERT INTO `wp_postmeta` VALUES("5009", "150", "_WPMSGOPTION_SiteID", "123");
INSERT INTO `wp_postmeta` VALUES("5010", "152", "_WPMREDOPTION_RedirectURL", "");
INSERT INTO `wp_postmeta` VALUES("5011", "152", "_WPMREDOPTION_RedirectNever", "");
INSERT INTO `wp_postmeta` VALUES("5012", "152", "_WPMSGOPTION_Initialised", "Y");
INSERT INTO `wp_postmeta` VALUES("5013", "152", "_WPMSGOPTION_Deactivated", "");
INSERT INTO `wp_postmeta` VALUES("5014", "152", "_WPMSGOPTION_PageSlug", "about-us");
INSERT INTO `wp_postmeta` VALUES("5015", "152", "_WPMSGOPTION_PageName", "About Us");
INSERT INTO `wp_postmeta` VALUES("5016", "152", "_WPMSGOPTION_TopbarPageName", "About Us");
INSERT INTO `wp_postmeta` VALUES("5017", "152", "_WPMSGOPTION_MenuDesc", "");
INSERT INTO `wp_postmeta` VALUES("5018", "152", "_WPMSGOPTION_ThemeType", "Site");
INSERT INTO `wp_postmeta` VALUES("5019", "152", "_WPMSGOPTION_PageTheme", "113");
INSERT INTO `wp_postmeta` VALUES("5020", "152", "_WPMSGOPTION_MenuStyle", "Vertical");
INSERT INTO `wp_postmeta` VALUES("5021", "152", "_WPMSGOPTION_MenuPosition", "T");
INSERT INTO `wp_postmeta` VALUES("5022", "152", "_WPMSGOPTION_ExcludePage", "");
INSERT INTO `wp_postmeta` VALUES("5023", "152", "_WPMSGOPTION_ExcludeFromSearch", "");
INSERT INTO `wp_postmeta` VALUES("5024", "152", "_WPMSGOPTION_BackgroundImage", "");
INSERT INTO `wp_postmeta` VALUES("5025", "152", "_WPMSGOPTION_BackgroundImageRepeat", "repeat");
INSERT INTO `wp_postmeta` VALUES("5026", "152", "_WPMSGOPTION_BackgroundImagePosition", "lefttop");
INSERT INTO `wp_postmeta` VALUES("5027", "152", "_WPMSGOPTION_PageMinimumHeight", "");
INSERT INTO `wp_postmeta` VALUES("5028", "152", "_WPMSGOPTION_DisplayLogo", "");
INSERT INTO `wp_postmeta` VALUES("5029", "152", "_WPMSGOPTION_LogoImage", "");
INSERT INTO `wp_postmeta` VALUES("5030", "152", "_WPMSGOPTION_LogoBackgroundColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("5031", "152", "_WPMSGOPTION_LogoUseBackgroundColor", "");
INSERT INTO `wp_postmeta` VALUES("5032", "152", "_WPMSGOPTION_FooterBackgroundColor", "");
INSERT INTO `wp_postmeta` VALUES("5033", "152", "_WPMSGOPTION_ThumbnailImage", "HappyFace");
INSERT INTO `wp_postmeta` VALUES("5034", "152", "_WPMSGOPTION_ThumbnailImageColor", "LightBlue");
INSERT INTO `wp_postmeta` VALUES("5035", "152", "_WPMSGOPTION_CustomThumbnailImage", "");
INSERT INTO `wp_postmeta` VALUES("5036", "152", "_WPMSGOPTION_DisplayPreview", "");
INSERT INTO `wp_postmeta` VALUES("5037", "152", "_WPMSGOPTION_DisplayTopBar", "Y");
INSERT INTO `wp_postmeta` VALUES("5038", "152", "_WPMSGOPTION_TopbarRightLinkText", "");
INSERT INTO `wp_postmeta` VALUES("5039", "152", "_WPMSGOPTION_TopbarRightLinkURL", "");
INSERT INTO `wp_postmeta` VALUES("5040", "152", "_WPMSGOPTION_TopbarRightLinkPage", "0");
INSERT INTO `wp_postmeta` VALUES("5041", "152", "_WPMSGOPTION_DisplayPhoneTopBar", "Y");
INSERT INTO `wp_postmeta` VALUES("5042", "152", "_WPMSGOPTION_FacebookURL", "");
INSERT INTO `wp_postmeta` VALUES("5043", "152", "_WPMSGOPTION_TwitterURL", "");
INSERT INTO `wp_postmeta` VALUES("5044", "152", "_WPMSGOPTION_GooglePlusURL", "");
INSERT INTO `wp_postmeta` VALUES("5045", "152", "_WPMSGOPTION_YouTubeURL", "");
INSERT INTO `wp_postmeta` VALUES("5046", "152", "_WPMSGOPTION_LinkedInURL", "");
INSERT INTO `wp_postmeta` VALUES("5047", "152", "_WPMSGOPTION_SocialMediaPage1URL", "");
INSERT INTO `wp_postmeta` VALUES("5048", "152", "_WPMSGOPTION_SocialMediaIcon1URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/facebook.png");
INSERT INTO `wp_postmeta` VALUES("5049", "152", "_WPMSGOPTION_SocialMediaPage2URL", "");
INSERT INTO `wp_postmeta` VALUES("5050", "152", "_WPMSGOPTION_SocialMediaIcon2URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/twitter.png");
INSERT INTO `wp_postmeta` VALUES("5051", "152", "_WPMSGOPTION_SocialMediaPage3URL", "");
INSERT INTO `wp_postmeta` VALUES("5052", "152", "_WPMSGOPTION_SocialMediaIcon3URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/googleplus.png");
INSERT INTO `wp_postmeta` VALUES("5053", "152", "_WPMSGOPTION_SocialMediaPage4URL", "");
INSERT INTO `wp_postmeta` VALUES("5054", "152", "_WPMSGOPTION_SocialMediaIcon4URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/youtube.png");
INSERT INTO `wp_postmeta` VALUES("5055", "152", "_WPMSGOPTION_SocialMediaPage5URL", "");
INSERT INTO `wp_postmeta` VALUES("5056", "152", "_WPMSGOPTION_SocialMediaIcon5URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/linkedin.png");
INSERT INTO `wp_postmeta` VALUES("5057", "152", "_WPMSGOPTION_SocialMediaPage6URL", "");
INSERT INTO `wp_postmeta` VALUES("5058", "152", "_WPMSGOPTION_SocialMediaIcon6URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/pinterest.png");
INSERT INTO `wp_postmeta` VALUES("5059", "152", "_WPMSGOPTION_SocialMediaPage7URL", "");
INSERT INTO `wp_postmeta` VALUES("5060", "152", "_WPMSGOPTION_SocialMediaIcon7URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/flickr.png");
INSERT INTO `wp_postmeta` VALUES("5061", "152", "_WPMSGOPTION_SocialMediaPage8URL", "");
INSERT INTO `wp_postmeta` VALUES("5062", "152", "_WPMSGOPTION_SocialMediaIcon8URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/yelp.png");
INSERT INTO `wp_postmeta` VALUES("5063", "152", "_WPMSGOPTION_SocialMediaPage9URL", "");
INSERT INTO `wp_postmeta` VALUES("5064", "152", "_WPMSGOPTION_SocialMediaIcon9URL", "");
INSERT INTO `wp_postmeta` VALUES("5065", "152", "_WPMSGOPTION_FBLikeURL", "");
INSERT INTO `wp_postmeta` VALUES("5066", "152", "_WPMSGOPTION_FBLikeWidth", "");
INSERT INTO `wp_postmeta` VALUES("5067", "152", "_WPMSGOPTION_FBLikeSendButton", "Y");
INSERT INTO `wp_postmeta` VALUES("5068", "152", "_WPMSGOPTION_FBLikeFaces", "Y");
INSERT INTO `wp_postmeta` VALUES("5069", "152", "_WPMSGOPTION_FBLikeLayoutStyle", "");
INSERT INTO `wp_postmeta` VALUES("5070", "152", "_WPMSGOPTION_FBLikeVerb", "");
INSERT INTO `wp_postmeta` VALUES("5071", "152", "_WPMSGOPTION_FBLikeColorScheme", "");
INSERT INTO `wp_postmeta` VALUES("5072", "152", "_WPMSGOPTION_FBCommentsURL", "");
INSERT INTO `wp_postmeta` VALUES("5073", "152", "_WPMSGOPTION_FBCommentsPosts", "");
INSERT INTO `wp_postmeta` VALUES("5074", "152", "_WPMSGOPTION_FBCommentsColorScheme", "");
INSERT INTO `wp_postmeta` VALUES("5075", "152", "_WPMSGOPTION_SearchPrompt", "");
INSERT INTO `wp_postmeta` VALUES("5076", "152", "_WPMSGOPTION_SearchSubmitPrompt", "");
INSERT INTO `wp_postmeta` VALUES("5077", "152", "_WPMSGOPTION_RSSFeedURL", "");
INSERT INTO `wp_postmeta` VALUES("5078", "152", "_WPMSGOPTION_RSSFeedMax", "");
INSERT INTO `wp_postmeta` VALUES("5079", "152", "_WPMSGOPTION_RSSFeedStyle", "TitleOnly");
INSERT INTO `wp_postmeta` VALUES("5080", "152", "_WPMSGOPTION_MetaTitle", "");
INSERT INTO `wp_postmeta` VALUES("5081", "152", "_WPMSGOPTION_MetaDescription", "");
INSERT INTO `wp_postmeta` VALUES("5082", "152", "_WPMSGOPTION_MetaKeywords", "");
INSERT INTO `wp_postmeta` VALUES("5083", "152", "_WPMSGOPTION_AnalyticsCode", "");
INSERT INTO `wp_postmeta` VALUES("5084", "152", "_WPMSGOPTION_CouponTitle", "");
INSERT INTO `wp_postmeta` VALUES("5085", "152", "_WPMSGOPTION_CouponCodeText", "");
INSERT INTO `wp_postmeta` VALUES("5086", "152", "_WPMSGOPTION_CouponStartText", "");
INSERT INTO `wp_postmeta` VALUES("5087", "152", "_WPMSGOPTION_CouponExpiryText", "");
INSERT INTO `wp_postmeta` VALUES("5088", "152", "_WPMSGOPTION_CouponCode", "");
INSERT INTO `wp_postmeta` VALUES("5089", "152", "_WPMSGOPTION_CouponCodeExpired", "");
INSERT INTO `wp_postmeta` VALUES("5090", "152", "_WPMSGOPTION_CouponStart", "");
INSERT INTO `wp_postmeta` VALUES("5091", "152", "_WPMSGOPTION_CouponExpiry", "");
INSERT INTO `wp_postmeta` VALUES("5092", "152", "_WPMSGOPTION_CouponDateFormat", "Y-m-d");
INSERT INTO `wp_postmeta` VALUES("5093", "152", "_WPMSGOPTION_CouponValidText", "");
INSERT INTO `wp_postmeta` VALUES("5094", "152", "_WPMSGOPTION_CouponExpiredText", "");
INSERT INTO `wp_postmeta` VALUES("5095", "152", "_WPMSGOPTION_CouponImage", "");
INSERT INTO `wp_postmeta` VALUES("5096", "152", "_WPMSGOPTION_TelephoneNumber", "");
INSERT INTO `wp_postmeta` VALUES("5097", "152", "_WPMSGOPTION_TelephoneCallToAction", "");
INSERT INTO `wp_postmeta` VALUES("5098", "152", "_WPMSGOPTION_ClickToCallType", "Call");
INSERT INTO `wp_postmeta` VALUES("5099", "152", "_WPMSGOPTION_SMSMessage", "");
INSERT INTO `wp_postmeta` VALUES("5100", "152", "_WPMSGOPTION_HidePhoneIcon", "");
INSERT INTO `wp_postmeta` VALUES("5101", "152", "_WPMSGOPTION_HidePhoneNumber", "");
INSERT INTO `wp_postmeta` VALUES("5102", "152", "_WPMSGOPTION_TelephoneIconImage", "");
INSERT INTO `wp_postmeta` VALUES("5103", "152", "_WPMSGOPTION_TelephoneImage", "");
INSERT INTO `wp_postmeta` VALUES("5104", "152", "_WPMSGOPTION_SMSNumber", "");
INSERT INTO `wp_postmeta` VALUES("5105", "152", "_WPMSGOPTION_SMSCallToAction", "");
INSERT INTO `wp_postmeta` VALUES("5106", "152", "_WPMSGOPTION_SMSMessageText", "");
INSERT INTO `wp_postmeta` VALUES("5107", "152", "_WPMSGOPTION_HideSMSIcon", "");
INSERT INTO `wp_postmeta` VALUES("5108", "152", "_WPMSGOPTION_HideSMSNumber", "");
INSERT INTO `wp_postmeta` VALUES("5109", "152", "_WPMSGOPTION_SMSIconImage", "");
INSERT INTO `wp_postmeta` VALUES("5110", "152", "_WPMSGOPTION_SMSImage", "");
INSERT INTO `wp_postmeta` VALUES("5111", "152", "_WPMSGOPTION_EmailTo", "");
INSERT INTO `wp_postmeta` VALUES("5112", "152", "_WPMSGOPTION_EmailCallToAction", "");
INSERT INTO `wp_postmeta` VALUES("5113", "152", "_WPMSGOPTION_EmailSubjectText", "");
INSERT INTO `wp_postmeta` VALUES("5114", "152", "_WPMSGOPTION_EmailMessageText", "");
INSERT INTO `wp_postmeta` VALUES("5115", "152", "_WPMSGOPTION_HideEmailIcon", "");
INSERT INTO `wp_postmeta` VALUES("5116", "152", "_WPMSGOPTION_EmailIconImage", "");
INSERT INTO `wp_postmeta` VALUES("5117", "152", "_WPMSGOPTION_EmailImage", "");
INSERT INTO `wp_postmeta` VALUES("5118", "152", "_WPMSGOPTION_SkypeUsername", "");
INSERT INTO `wp_postmeta` VALUES("5119", "152", "_WPMSGOPTION_SkypeCallToAction", "");
INSERT INTO `wp_postmeta` VALUES("5120", "152", "_WPMSGOPTION_HideSkypeIcon", "");
INSERT INTO `wp_postmeta` VALUES("5121", "152", "_WPMSGOPTION_SkypeIconImage", "");
INSERT INTO `wp_postmeta` VALUES("5122", "152", "_WPMSGOPTION_SkypeImage", "");
INSERT INTO `wp_postmeta` VALUES("5123", "152", "_WPMSGOPTION_RedirectURL", "");
INSERT INTO `wp_postmeta` VALUES("5124", "152", "_WPMSGOPTION_DeactivatedURL", "");
INSERT INTO `wp_postmeta` VALUES("5125", "152", "_WPMSGOPTION_ExportDomain", "");
INSERT INTO `wp_postmeta` VALUES("5126", "152", "_WPMSGOPTION_CreateBitly", "");
INSERT INTO `wp_postmeta` VALUES("5127", "152", "_WPMSGOPTION_BitlyUsername", "");
INSERT INTO `wp_postmeta` VALUES("5128", "152", "_WPMSGOPTION_BitlyApiKey", "");
INSERT INTO `wp_postmeta` VALUES("5129", "152", "_WPMSGOPTION_BitlyLongUrl", "");
INSERT INTO `wp_postmeta` VALUES("5130", "152", "_WPMSGOPTION_BitlyShortUrl", "");
INSERT INTO `wp_postmeta` VALUES("5131", "152", "_WPMSGOPTION_MapLocation", "");
INSERT INTO `wp_postmeta` VALUES("5132", "152", "_WPMSGOPTION_MapLongitude", "");
INSERT INTO `wp_postmeta` VALUES("5133", "152", "_WPMSGOPTION_MapLatitude", "");
INSERT INTO `wp_postmeta` VALUES("5134", "152", "_WPMSGOPTION_MapWidth", "");
INSERT INTO `wp_postmeta` VALUES("5135", "152", "_WPMSGOPTION_MapHeight", "");
INSERT INTO `wp_postmeta` VALUES("5136", "152", "_WPMSGOPTION_MapZoom", "");
INSERT INTO `wp_postmeta` VALUES("5137", "152", "_WPMSGOPTION_MapLanguage", "en");
INSERT INTO `wp_postmeta` VALUES("5138", "152", "_WPMSGOPTION_DisplayMapDirections", "");
INSERT INTO `wp_postmeta` VALUES("5139", "152", "_WPMSGOPTION_DirectionsPrompt", "");
INSERT INTO `wp_postmeta` VALUES("5140", "152", "_WPMSGOPTION_DirectionsButtonText", "");
INSERT INTO `wp_postmeta` VALUES("5141", "152", "_WPMSGOPTION_DisplayGPSDirectionsButton", "");
INSERT INTO `wp_postmeta` VALUES("5142", "152", "_WPMSGOPTION_GPSDirectionsButtonText", "");
INSERT INTO `wp_postmeta` VALUES("5143", "152", "_WPMSGOPTION_DirectionsPosition", "A");
INSERT INTO `wp_postmeta` VALUES("5144", "152", "_WPMSGOPTION_OptinNamePrompt", "");
INSERT INTO `wp_postmeta` VALUES("5145", "152", "_WPMSGOPTION_OptinEmailPrompt", "");
INSERT INTO `wp_postmeta` VALUES("5146", "152", "_WPMSGOPTION_OptinSubmitPrompt", "");
INSERT INTO `wp_postmeta` VALUES("5147", "152", "_WPMSGOPTION_OptinCode", "");
INSERT INTO `wp_postmeta` VALUES("5148", "152", "_WPMSGOPTION_OptinRedirectPage", "0");
INSERT INTO `wp_postmeta` VALUES("5149", "152", "_WPMSGOPTION_ContactSendToEmail", "");
INSERT INTO `wp_postmeta` VALUES("5150", "152", "_WPMSGOPTION_ContactSendFromName", "");
INSERT INTO `wp_postmeta` VALUES("5151", "152", "_WPMSGOPTION_ContactSendFromEmail", "");
INSERT INTO `wp_postmeta` VALUES("5152", "152", "_WPMSGOPTION_ContactNamePrompt", "");
INSERT INTO `wp_postmeta` VALUES("5153", "152", "_WPMSGOPTION_ContactPhonePrompt", "");
INSERT INTO `wp_postmeta` VALUES("5154", "152", "_WPMSGOPTION_ContactEmailPrompt", "");
INSERT INTO `wp_postmeta` VALUES("5155", "152", "_WPMSGOPTION_ContactMessagePrompt", "");
INSERT INTO `wp_postmeta` VALUES("5156", "152", "_WPMSGOPTION_ContactSubmitPrompt", "");
INSERT INTO `wp_postmeta` VALUES("5157", "152", "_WPMSGOPTION_ContactShowAcknowledgement", "");
INSERT INTO `wp_postmeta` VALUES("5158", "152", "_WPMSGOPTION_ContactAcknowledgementDisplayMessage", "");
INSERT INTO `wp_postmeta` VALUES("5159", "152", "_WPMSGOPTION_ContactSendAcknowledgement", "");
INSERT INTO `wp_postmeta` VALUES("5160", "152", "_WPMSGOPTION_ContactAcknowledgementName", "");
INSERT INTO `wp_postmeta` VALUES("5161", "152", "_WPMSGOPTION_ContactAcknowledgementEmail", "");
INSERT INTO `wp_postmeta` VALUES("5162", "152", "_WPMSGOPTION_ContactAcknowledgementSubject", "");
INSERT INTO `wp_postmeta` VALUES("5163", "152", "_WPMSGOPTION_ContactAcknowledgementMessage", "");
INSERT INTO `wp_postmeta` VALUES("5164", "152", "_WPMSGOPTION_SiteID", "123");
INSERT INTO `wp_postmeta` VALUES("5165", "157", "_WPMREDOPTION_RedirectURL", "");
INSERT INTO `wp_postmeta` VALUES("5166", "157", "_WPMREDOPTION_RedirectNever", "");
INSERT INTO `wp_postmeta` VALUES("5167", "157", "_WPMSGOPTION_Initialised", "Y");
INSERT INTO `wp_postmeta` VALUES("5168", "157", "_WPMSGOPTION_Deactivated", "");
INSERT INTO `wp_postmeta` VALUES("5169", "157", "_WPMSGOPTION_PageSlug", "services");
INSERT INTO `wp_postmeta` VALUES("5170", "157", "_WPMSGOPTION_PageName", "Services");
INSERT INTO `wp_postmeta` VALUES("5171", "157", "_WPMSGOPTION_TopbarPageName", "Services");
INSERT INTO `wp_postmeta` VALUES("5172", "157", "_WPMSGOPTION_MenuDesc", "");
INSERT INTO `wp_postmeta` VALUES("5173", "157", "_WPMSGOPTION_ThemeType", "Site");
INSERT INTO `wp_postmeta` VALUES("5174", "157", "_WPMSGOPTION_PageTheme", "113");
INSERT INTO `wp_postmeta` VALUES("5175", "157", "_WPMSGOPTION_MenuStyle", "Vertical");
INSERT INTO `wp_postmeta` VALUES("5176", "157", "_WPMSGOPTION_MenuPosition", "T");
INSERT INTO `wp_postmeta` VALUES("5177", "157", "_WPMSGOPTION_ExcludePage", "");
INSERT INTO `wp_postmeta` VALUES("5178", "157", "_WPMSGOPTION_ExcludeFromSearch", "");
INSERT INTO `wp_postmeta` VALUES("5179", "157", "_WPMSGOPTION_BackgroundImage", "");
INSERT INTO `wp_postmeta` VALUES("5180", "157", "_WPMSGOPTION_BackgroundImageRepeat", "repeat");
INSERT INTO `wp_postmeta` VALUES("5181", "157", "_WPMSGOPTION_BackgroundImagePosition", "lefttop");
INSERT INTO `wp_postmeta` VALUES("5182", "157", "_WPMSGOPTION_PageMinimumHeight", "");
INSERT INTO `wp_postmeta` VALUES("5183", "157", "_WPMSGOPTION_DisplayLogo", "");
INSERT INTO `wp_postmeta` VALUES("5184", "157", "_WPMSGOPTION_LogoImage", "");
INSERT INTO `wp_postmeta` VALUES("5185", "157", "_WPMSGOPTION_LogoBackgroundColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("5186", "157", "_WPMSGOPTION_LogoUseBackgroundColor", "");
INSERT INTO `wp_postmeta` VALUES("5187", "157", "_WPMSGOPTION_FooterBackgroundColor", "");
INSERT INTO `wp_postmeta` VALUES("5188", "157", "_WPMSGOPTION_ThumbnailImage", "Info");
INSERT INTO `wp_postmeta` VALUES("5189", "157", "_WPMSGOPTION_ThumbnailImageColor", "LightBlue");
INSERT INTO `wp_postmeta` VALUES("5190", "157", "_WPMSGOPTION_CustomThumbnailImage", "");
INSERT INTO `wp_postmeta` VALUES("5191", "157", "_WPMSGOPTION_DisplayPreview", "");
INSERT INTO `wp_postmeta` VALUES("5192", "157", "_WPMSGOPTION_DisplayTopBar", "");
INSERT INTO `wp_postmeta` VALUES("5193", "157", "_WPMSGOPTION_TopbarRightLinkText", "");
INSERT INTO `wp_postmeta` VALUES("5194", "157", "_WPMSGOPTION_TopbarRightLinkURL", "");
INSERT INTO `wp_postmeta` VALUES("5195", "157", "_WPMSGOPTION_TopbarRightLinkPage", "0");
INSERT INTO `wp_postmeta` VALUES("5196", "157", "_WPMSGOPTION_DisplayPhoneTopBar", "");
INSERT INTO `wp_postmeta` VALUES("5197", "157", "_WPMSGOPTION_FacebookURL", "");
INSERT INTO `wp_postmeta` VALUES("5198", "157", "_WPMSGOPTION_TwitterURL", "");
INSERT INTO `wp_postmeta` VALUES("5199", "157", "_WPMSGOPTION_GooglePlusURL", "");
INSERT INTO `wp_postmeta` VALUES("5200", "157", "_WPMSGOPTION_YouTubeURL", "");
INSERT INTO `wp_postmeta` VALUES("5201", "157", "_WPMSGOPTION_LinkedInURL", "");
INSERT INTO `wp_postmeta` VALUES("5202", "157", "_WPMSGOPTION_SocialMediaPage1URL", "");
INSERT INTO `wp_postmeta` VALUES("5203", "157", "_WPMSGOPTION_SocialMediaIcon1URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/facebook.png");
INSERT INTO `wp_postmeta` VALUES("5204", "157", "_WPMSGOPTION_SocialMediaPage2URL", "");
INSERT INTO `wp_postmeta` VALUES("5205", "157", "_WPMSGOPTION_SocialMediaIcon2URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/twitter.png");
INSERT INTO `wp_postmeta` VALUES("5206", "157", "_WPMSGOPTION_SocialMediaPage3URL", "");
INSERT INTO `wp_postmeta` VALUES("5207", "157", "_WPMSGOPTION_SocialMediaIcon3URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/googleplus.png");
INSERT INTO `wp_postmeta` VALUES("5208", "157", "_WPMSGOPTION_SocialMediaPage4URL", "");
INSERT INTO `wp_postmeta` VALUES("5209", "157", "_WPMSGOPTION_SocialMediaIcon4URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/youtube.png");
INSERT INTO `wp_postmeta` VALUES("5210", "157", "_WPMSGOPTION_SocialMediaPage5URL", "");
INSERT INTO `wp_postmeta` VALUES("5211", "157", "_WPMSGOPTION_SocialMediaIcon5URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/linkedin.png");
INSERT INTO `wp_postmeta` VALUES("5212", "157", "_WPMSGOPTION_SocialMediaPage6URL", "");
INSERT INTO `wp_postmeta` VALUES("5213", "157", "_WPMSGOPTION_SocialMediaIcon6URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/pinterest.png");
INSERT INTO `wp_postmeta` VALUES("5214", "157", "_WPMSGOPTION_SocialMediaPage7URL", "");
INSERT INTO `wp_postmeta` VALUES("5215", "157", "_WPMSGOPTION_SocialMediaIcon7URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/flickr.png");
INSERT INTO `wp_postmeta` VALUES("5216", "157", "_WPMSGOPTION_SocialMediaPage8URL", "");
INSERT INTO `wp_postmeta` VALUES("5217", "157", "_WPMSGOPTION_SocialMediaIcon8URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/yelp.png");
INSERT INTO `wp_postmeta` VALUES("5218", "157", "_WPMSGOPTION_SocialMediaPage9URL", "");
INSERT INTO `wp_postmeta` VALUES("5219", "157", "_WPMSGOPTION_SocialMediaIcon9URL", "");
INSERT INTO `wp_postmeta` VALUES("5220", "157", "_WPMSGOPTION_FBLikeURL", "");
INSERT INTO `wp_postmeta` VALUES("5221", "157", "_WPMSGOPTION_FBLikeWidth", "");
INSERT INTO `wp_postmeta` VALUES("5222", "157", "_WPMSGOPTION_FBLikeSendButton", "Y");
INSERT INTO `wp_postmeta` VALUES("5223", "157", "_WPMSGOPTION_FBLikeFaces", "Y");
INSERT INTO `wp_postmeta` VALUES("5224", "157", "_WPMSGOPTION_FBLikeLayoutStyle", "");
INSERT INTO `wp_postmeta` VALUES("5225", "157", "_WPMSGOPTION_FBLikeVerb", "");
INSERT INTO `wp_postmeta` VALUES("5226", "157", "_WPMSGOPTION_FBLikeColorScheme", "");
INSERT INTO `wp_postmeta` VALUES("5227", "157", "_WPMSGOPTION_FBCommentsURL", "");
INSERT INTO `wp_postmeta` VALUES("5228", "157", "_WPMSGOPTION_FBCommentsPosts", "");
INSERT INTO `wp_postmeta` VALUES("5229", "157", "_WPMSGOPTION_FBCommentsColorScheme", "");
INSERT INTO `wp_postmeta` VALUES("5230", "157", "_WPMSGOPTION_SearchPrompt", "");
INSERT INTO `wp_postmeta` VALUES("5231", "157", "_WPMSGOPTION_SearchSubmitPrompt", "");
INSERT INTO `wp_postmeta` VALUES("5232", "157", "_WPMSGOPTION_RSSFeedURL", "");
INSERT INTO `wp_postmeta` VALUES("5233", "157", "_WPMSGOPTION_RSSFeedMax", "");
INSERT INTO `wp_postmeta` VALUES("5234", "157", "_WPMSGOPTION_RSSFeedStyle", "TitleOnly");
INSERT INTO `wp_postmeta` VALUES("5235", "157", "_WPMSGOPTION_MetaTitle", "");
INSERT INTO `wp_postmeta` VALUES("5236", "157", "_WPMSGOPTION_MetaDescription", "");
INSERT INTO `wp_postmeta` VALUES("5237", "157", "_WPMSGOPTION_MetaKeywords", "");
INSERT INTO `wp_postmeta` VALUES("5238", "157", "_WPMSGOPTION_AnalyticsCode", "");
INSERT INTO `wp_postmeta` VALUES("5239", "157", "_WPMSGOPTION_CouponTitle", "");
INSERT INTO `wp_postmeta` VALUES("5240", "157", "_WPMSGOPTION_CouponCodeText", "");
INSERT INTO `wp_postmeta` VALUES("5241", "157", "_WPMSGOPTION_CouponStartText", "");
INSERT INTO `wp_postmeta` VALUES("5242", "157", "_WPMSGOPTION_CouponExpiryText", "");
INSERT INTO `wp_postmeta` VALUES("5243", "157", "_WPMSGOPTION_CouponCode", "");
INSERT INTO `wp_postmeta` VALUES("5244", "157", "_WPMSGOPTION_CouponCodeExpired", "");
INSERT INTO `wp_postmeta` VALUES("5245", "157", "_WPMSGOPTION_CouponStart", "");
INSERT INTO `wp_postmeta` VALUES("5246", "157", "_WPMSGOPTION_CouponExpiry", "");
INSERT INTO `wp_postmeta` VALUES("5247", "157", "_WPMSGOPTION_CouponDateFormat", "Y-m-d");
INSERT INTO `wp_postmeta` VALUES("5248", "157", "_WPMSGOPTION_CouponValidText", "");
INSERT INTO `wp_postmeta` VALUES("5249", "157", "_WPMSGOPTION_CouponExpiredText", "");
INSERT INTO `wp_postmeta` VALUES("5250", "157", "_WPMSGOPTION_CouponImage", "");
INSERT INTO `wp_postmeta` VALUES("5251", "157", "_WPMSGOPTION_TelephoneNumber", "");
INSERT INTO `wp_postmeta` VALUES("5252", "157", "_WPMSGOPTION_TelephoneCallToAction", "");
INSERT INTO `wp_postmeta` VALUES("5253", "157", "_WPMSGOPTION_ClickToCallType", "Call");
INSERT INTO `wp_postmeta` VALUES("5254", "157", "_WPMSGOPTION_SMSMessage", "");
INSERT INTO `wp_postmeta` VALUES("5255", "157", "_WPMSGOPTION_HidePhoneIcon", "");
INSERT INTO `wp_postmeta` VALUES("5256", "157", "_WPMSGOPTION_HidePhoneNumber", "");
INSERT INTO `wp_postmeta` VALUES("5257", "157", "_WPMSGOPTION_TelephoneIconImage", "");
INSERT INTO `wp_postmeta` VALUES("5258", "157", "_WPMSGOPTION_TelephoneImage", "");
INSERT INTO `wp_postmeta` VALUES("5259", "157", "_WPMSGOPTION_SMSNumber", "");
INSERT INTO `wp_postmeta` VALUES("5260", "157", "_WPMSGOPTION_SMSCallToAction", "");
INSERT INTO `wp_postmeta` VALUES("5261", "157", "_WPMSGOPTION_SMSMessageText", "");
INSERT INTO `wp_postmeta` VALUES("5262", "157", "_WPMSGOPTION_HideSMSIcon", "");
INSERT INTO `wp_postmeta` VALUES("5263", "157", "_WPMSGOPTION_HideSMSNumber", "");
INSERT INTO `wp_postmeta` VALUES("5264", "157", "_WPMSGOPTION_SMSIconImage", "");
INSERT INTO `wp_postmeta` VALUES("5265", "157", "_WPMSGOPTION_SMSImage", "");
INSERT INTO `wp_postmeta` VALUES("5266", "157", "_WPMSGOPTION_EmailTo", "");
INSERT INTO `wp_postmeta` VALUES("5267", "157", "_WPMSGOPTION_EmailCallToAction", "");
INSERT INTO `wp_postmeta` VALUES("5268", "157", "_WPMSGOPTION_EmailSubjectText", "");
INSERT INTO `wp_postmeta` VALUES("5269", "157", "_WPMSGOPTION_EmailMessageText", "");
INSERT INTO `wp_postmeta` VALUES("5270", "157", "_WPMSGOPTION_HideEmailIcon", "");
INSERT INTO `wp_postmeta` VALUES("5271", "157", "_WPMSGOPTION_EmailIconImage", "");
INSERT INTO `wp_postmeta` VALUES("5272", "157", "_WPMSGOPTION_EmailImage", "");
INSERT INTO `wp_postmeta` VALUES("5273", "157", "_WPMSGOPTION_SkypeUsername", "");
INSERT INTO `wp_postmeta` VALUES("5274", "157", "_WPMSGOPTION_SkypeCallToAction", "");
INSERT INTO `wp_postmeta` VALUES("5275", "157", "_WPMSGOPTION_HideSkypeIcon", "");
INSERT INTO `wp_postmeta` VALUES("5276", "157", "_WPMSGOPTION_SkypeIconImage", "");
INSERT INTO `wp_postmeta` VALUES("5277", "157", "_WPMSGOPTION_SkypeImage", "");
INSERT INTO `wp_postmeta` VALUES("5278", "157", "_WPMSGOPTION_RedirectURL", "");
INSERT INTO `wp_postmeta` VALUES("5279", "157", "_WPMSGOPTION_DeactivatedURL", "");
INSERT INTO `wp_postmeta` VALUES("5280", "157", "_WPMSGOPTION_ExportDomain", "");
INSERT INTO `wp_postmeta` VALUES("5281", "157", "_WPMSGOPTION_CreateBitly", "");
INSERT INTO `wp_postmeta` VALUES("5282", "157", "_WPMSGOPTION_BitlyUsername", "");
INSERT INTO `wp_postmeta` VALUES("5283", "157", "_WPMSGOPTION_BitlyApiKey", "");
INSERT INTO `wp_postmeta` VALUES("5284", "157", "_WPMSGOPTION_BitlyLongUrl", "");
INSERT INTO `wp_postmeta` VALUES("5285", "157", "_WPMSGOPTION_BitlyShortUrl", "");
INSERT INTO `wp_postmeta` VALUES("5286", "157", "_WPMSGOPTION_MapLocation", "");
INSERT INTO `wp_postmeta` VALUES("5287", "157", "_WPMSGOPTION_MapLongitude", "");
INSERT INTO `wp_postmeta` VALUES("5288", "157", "_WPMSGOPTION_MapLatitude", "");
INSERT INTO `wp_postmeta` VALUES("5289", "157", "_WPMSGOPTION_MapWidth", "");
INSERT INTO `wp_postmeta` VALUES("5290", "157", "_WPMSGOPTION_MapHeight", "");
INSERT INTO `wp_postmeta` VALUES("5291", "157", "_WPMSGOPTION_MapZoom", "");
INSERT INTO `wp_postmeta` VALUES("5292", "157", "_WPMSGOPTION_MapLanguage", "en");
INSERT INTO `wp_postmeta` VALUES("5293", "157", "_WPMSGOPTION_DisplayMapDirections", "");
INSERT INTO `wp_postmeta` VALUES("5294", "157", "_WPMSGOPTION_DirectionsPrompt", "");
INSERT INTO `wp_postmeta` VALUES("5295", "157", "_WPMSGOPTION_DirectionsButtonText", "");
INSERT INTO `wp_postmeta` VALUES("5296", "157", "_WPMSGOPTION_DisplayGPSDirectionsButton", "");
INSERT INTO `wp_postmeta` VALUES("5297", "157", "_WPMSGOPTION_GPSDirectionsButtonText", "");
INSERT INTO `wp_postmeta` VALUES("5298", "157", "_WPMSGOPTION_DirectionsPosition", "A");
INSERT INTO `wp_postmeta` VALUES("5299", "157", "_WPMSGOPTION_OptinNamePrompt", "");
INSERT INTO `wp_postmeta` VALUES("5300", "157", "_WPMSGOPTION_OptinEmailPrompt", "");
INSERT INTO `wp_postmeta` VALUES("5301", "157", "_WPMSGOPTION_OptinSubmitPrompt", "");
INSERT INTO `wp_postmeta` VALUES("5302", "157", "_WPMSGOPTION_OptinCode", "");
INSERT INTO `wp_postmeta` VALUES("5303", "157", "_WPMSGOPTION_OptinRedirectPage", "0");
INSERT INTO `wp_postmeta` VALUES("5304", "157", "_WPMSGOPTION_ContactSendToEmail", "");
INSERT INTO `wp_postmeta` VALUES("5305", "157", "_WPMSGOPTION_ContactSendFromName", "");
INSERT INTO `wp_postmeta` VALUES("5306", "157", "_WPMSGOPTION_ContactSendFromEmail", "");
INSERT INTO `wp_postmeta` VALUES("5307", "157", "_WPMSGOPTION_ContactNamePrompt", "");
INSERT INTO `wp_postmeta` VALUES("5308", "157", "_WPMSGOPTION_ContactPhonePrompt", "");
INSERT INTO `wp_postmeta` VALUES("5309", "157", "_WPMSGOPTION_ContactEmailPrompt", "");
INSERT INTO `wp_postmeta` VALUES("5310", "157", "_WPMSGOPTION_ContactMessagePrompt", "");
INSERT INTO `wp_postmeta` VALUES("5311", "157", "_WPMSGOPTION_ContactSubmitPrompt", "");
INSERT INTO `wp_postmeta` VALUES("5312", "157", "_WPMSGOPTION_ContactShowAcknowledgement", "");
INSERT INTO `wp_postmeta` VALUES("5313", "157", "_WPMSGOPTION_ContactAcknowledgementDisplayMessage", "");
INSERT INTO `wp_postmeta` VALUES("5314", "157", "_WPMSGOPTION_ContactSendAcknowledgement", "");
INSERT INTO `wp_postmeta` VALUES("5315", "157", "_WPMSGOPTION_ContactAcknowledgementName", "");
INSERT INTO `wp_postmeta` VALUES("5316", "157", "_WPMSGOPTION_ContactAcknowledgementEmail", "");
INSERT INTO `wp_postmeta` VALUES("5317", "157", "_WPMSGOPTION_ContactAcknowledgementSubject", "");
INSERT INTO `wp_postmeta` VALUES("5318", "157", "_WPMSGOPTION_ContactAcknowledgementMessage", "");
INSERT INTO `wp_postmeta` VALUES("5319", "157", "_WPMSGOPTION_SiteID", "123");
INSERT INTO `wp_postmeta` VALUES("5320", "159", "_WPMREDOPTION_RedirectURL", "");
INSERT INTO `wp_postmeta` VALUES("5321", "159", "_WPMREDOPTION_RedirectNever", "");
INSERT INTO `wp_postmeta` VALUES("5322", "159", "_WPMSGOPTION_Initialised", "Y");
INSERT INTO `wp_postmeta` VALUES("5323", "159", "_WPMSGOPTION_Deactivated", "");
INSERT INTO `wp_postmeta` VALUES("5324", "159", "_WPMSGOPTION_PageSlug", "pricing-guidlines");
INSERT INTO `wp_postmeta` VALUES("5325", "159", "_WPMSGOPTION_PageName", "Basic Fee");
INSERT INTO `wp_postmeta` VALUES("5326", "159", "_WPMSGOPTION_TopbarPageName", "Basic Fee");
INSERT INTO `wp_postmeta` VALUES("5327", "159", "_WPMSGOPTION_MenuDesc", "");
INSERT INTO `wp_postmeta` VALUES("5328", "159", "_WPMSGOPTION_ThemeType", "Site");
INSERT INTO `wp_postmeta` VALUES("5329", "159", "_WPMSGOPTION_PageTheme", "113");
INSERT INTO `wp_postmeta` VALUES("5330", "159", "_WPMSGOPTION_MenuStyle", "Vertical");
INSERT INTO `wp_postmeta` VALUES("5331", "159", "_WPMSGOPTION_MenuPosition", "T");
INSERT INTO `wp_postmeta` VALUES("5332", "159", "_WPMSGOPTION_ExcludePage", "");
INSERT INTO `wp_postmeta` VALUES("5333", "159", "_WPMSGOPTION_ExcludeFromSearch", "");
INSERT INTO `wp_postmeta` VALUES("5334", "159", "_WPMSGOPTION_BackgroundImage", "");
INSERT INTO `wp_postmeta` VALUES("5335", "159", "_WPMSGOPTION_BackgroundImageRepeat", "repeat");
INSERT INTO `wp_postmeta` VALUES("5336", "159", "_WPMSGOPTION_BackgroundImagePosition", "lefttop");
INSERT INTO `wp_postmeta` VALUES("5337", "159", "_WPMSGOPTION_PageMinimumHeight", "");
INSERT INTO `wp_postmeta` VALUES("5338", "159", "_WPMSGOPTION_DisplayLogo", "");
INSERT INTO `wp_postmeta` VALUES("5339", "159", "_WPMSGOPTION_LogoImage", "");
INSERT INTO `wp_postmeta` VALUES("5340", "159", "_WPMSGOPTION_LogoBackgroundColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("5341", "159", "_WPMSGOPTION_LogoUseBackgroundColor", "");
INSERT INTO `wp_postmeta` VALUES("5342", "159", "_WPMSGOPTION_FooterBackgroundColor", "");
INSERT INTO `wp_postmeta` VALUES("5343", "159", "_WPMSGOPTION_ThumbnailImage", "Lock");
INSERT INTO `wp_postmeta` VALUES("5344", "159", "_WPMSGOPTION_ThumbnailImageColor", "LightBlue");
INSERT INTO `wp_postmeta` VALUES("5345", "159", "_WPMSGOPTION_CustomThumbnailImage", "");
INSERT INTO `wp_postmeta` VALUES("5346", "159", "_WPMSGOPTION_DisplayPreview", "");
INSERT INTO `wp_postmeta` VALUES("5347", "159", "_WPMSGOPTION_DisplayTopBar", "");
INSERT INTO `wp_postmeta` VALUES("5348", "159", "_WPMSGOPTION_TopbarRightLinkText", "");
INSERT INTO `wp_postmeta` VALUES("5349", "159", "_WPMSGOPTION_TopbarRightLinkURL", "");
INSERT INTO `wp_postmeta` VALUES("5350", "159", "_WPMSGOPTION_TopbarRightLinkPage", "0");
INSERT INTO `wp_postmeta` VALUES("5351", "159", "_WPMSGOPTION_DisplayPhoneTopBar", "");
INSERT INTO `wp_postmeta` VALUES("5352", "159", "_WPMSGOPTION_FacebookURL", "");
INSERT INTO `wp_postmeta` VALUES("5353", "159", "_WPMSGOPTION_TwitterURL", "");
INSERT INTO `wp_postmeta` VALUES("5354", "159", "_WPMSGOPTION_GooglePlusURL", "");
INSERT INTO `wp_postmeta` VALUES("5355", "159", "_WPMSGOPTION_YouTubeURL", "");
INSERT INTO `wp_postmeta` VALUES("5356", "159", "_WPMSGOPTION_LinkedInURL", "");
INSERT INTO `wp_postmeta` VALUES("5357", "159", "_WPMSGOPTION_SocialMediaPage1URL", "");
INSERT INTO `wp_postmeta` VALUES("5358", "159", "_WPMSGOPTION_SocialMediaIcon1URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/facebook.png");
INSERT INTO `wp_postmeta` VALUES("5359", "159", "_WPMSGOPTION_SocialMediaPage2URL", "");
INSERT INTO `wp_postmeta` VALUES("5360", "159", "_WPMSGOPTION_SocialMediaIcon2URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/twitter.png");
INSERT INTO `wp_postmeta` VALUES("5361", "159", "_WPMSGOPTION_SocialMediaPage3URL", "");
INSERT INTO `wp_postmeta` VALUES("5362", "159", "_WPMSGOPTION_SocialMediaIcon3URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/googleplus.png");
INSERT INTO `wp_postmeta` VALUES("5363", "159", "_WPMSGOPTION_SocialMediaPage4URL", "");
INSERT INTO `wp_postmeta` VALUES("5364", "159", "_WPMSGOPTION_SocialMediaIcon4URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/youtube.png");
INSERT INTO `wp_postmeta` VALUES("5365", "159", "_WPMSGOPTION_SocialMediaPage5URL", "");
INSERT INTO `wp_postmeta` VALUES("5366", "159", "_WPMSGOPTION_SocialMediaIcon5URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/linkedin.png");
INSERT INTO `wp_postmeta` VALUES("5367", "159", "_WPMSGOPTION_SocialMediaPage6URL", "");
INSERT INTO `wp_postmeta` VALUES("5368", "159", "_WPMSGOPTION_SocialMediaIcon6URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/pinterest.png");
INSERT INTO `wp_postmeta` VALUES("5369", "159", "_WPMSGOPTION_SocialMediaPage7URL", "");
INSERT INTO `wp_postmeta` VALUES("5370", "159", "_WPMSGOPTION_SocialMediaIcon7URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/flickr.png");
INSERT INTO `wp_postmeta` VALUES("5371", "159", "_WPMSGOPTION_SocialMediaPage8URL", "");
INSERT INTO `wp_postmeta` VALUES("5372", "159", "_WPMSGOPTION_SocialMediaIcon8URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/yelp.png");
INSERT INTO `wp_postmeta` VALUES("5373", "159", "_WPMSGOPTION_SocialMediaPage9URL", "");
INSERT INTO `wp_postmeta` VALUES("5374", "159", "_WPMSGOPTION_SocialMediaIcon9URL", "");
INSERT INTO `wp_postmeta` VALUES("5375", "159", "_WPMSGOPTION_FBLikeURL", "");
INSERT INTO `wp_postmeta` VALUES("5376", "159", "_WPMSGOPTION_FBLikeWidth", "");
INSERT INTO `wp_postmeta` VALUES("5377", "159", "_WPMSGOPTION_FBLikeSendButton", "Y");
INSERT INTO `wp_postmeta` VALUES("5378", "159", "_WPMSGOPTION_FBLikeFaces", "Y");
INSERT INTO `wp_postmeta` VALUES("5379", "159", "_WPMSGOPTION_FBLikeLayoutStyle", "");
INSERT INTO `wp_postmeta` VALUES("5380", "159", "_WPMSGOPTION_FBLikeVerb", "");
INSERT INTO `wp_postmeta` VALUES("5381", "159", "_WPMSGOPTION_FBLikeColorScheme", "");
INSERT INTO `wp_postmeta` VALUES("5382", "159", "_WPMSGOPTION_FBCommentsURL", "");
INSERT INTO `wp_postmeta` VALUES("5383", "159", "_WPMSGOPTION_FBCommentsPosts", "");
INSERT INTO `wp_postmeta` VALUES("5384", "159", "_WPMSGOPTION_FBCommentsColorScheme", "");
INSERT INTO `wp_postmeta` VALUES("5385", "159", "_WPMSGOPTION_SearchPrompt", "");
INSERT INTO `wp_postmeta` VALUES("5386", "159", "_WPMSGOPTION_SearchSubmitPrompt", "");
INSERT INTO `wp_postmeta` VALUES("5387", "159", "_WPMSGOPTION_RSSFeedURL", "");
INSERT INTO `wp_postmeta` VALUES("5388", "159", "_WPMSGOPTION_RSSFeedMax", "");
INSERT INTO `wp_postmeta` VALUES("5389", "159", "_WPMSGOPTION_RSSFeedStyle", "TitleOnly");
INSERT INTO `wp_postmeta` VALUES("5390", "159", "_WPMSGOPTION_MetaTitle", "");
INSERT INTO `wp_postmeta` VALUES("5391", "159", "_WPMSGOPTION_MetaDescription", "");
INSERT INTO `wp_postmeta` VALUES("5392", "159", "_WPMSGOPTION_MetaKeywords", "");
INSERT INTO `wp_postmeta` VALUES("5393", "159", "_WPMSGOPTION_AnalyticsCode", "");
INSERT INTO `wp_postmeta` VALUES("5394", "159", "_WPMSGOPTION_CouponTitle", "");
INSERT INTO `wp_postmeta` VALUES("5395", "159", "_WPMSGOPTION_CouponCodeText", "");
INSERT INTO `wp_postmeta` VALUES("5396", "159", "_WPMSGOPTION_CouponStartText", "");
INSERT INTO `wp_postmeta` VALUES("5397", "159", "_WPMSGOPTION_CouponExpiryText", "");
INSERT INTO `wp_postmeta` VALUES("5398", "159", "_WPMSGOPTION_CouponCode", "");
INSERT INTO `wp_postmeta` VALUES("5399", "159", "_WPMSGOPTION_CouponCodeExpired", "");
INSERT INTO `wp_postmeta` VALUES("5400", "159", "_WPMSGOPTION_CouponStart", "");
INSERT INTO `wp_postmeta` VALUES("5401", "159", "_WPMSGOPTION_CouponExpiry", "");
INSERT INTO `wp_postmeta` VALUES("5402", "159", "_WPMSGOPTION_CouponDateFormat", "Y-m-d");
INSERT INTO `wp_postmeta` VALUES("5403", "159", "_WPMSGOPTION_CouponValidText", "");
INSERT INTO `wp_postmeta` VALUES("5404", "159", "_WPMSGOPTION_CouponExpiredText", "");
INSERT INTO `wp_postmeta` VALUES("5405", "159", "_WPMSGOPTION_CouponImage", "");
INSERT INTO `wp_postmeta` VALUES("5406", "159", "_WPMSGOPTION_TelephoneNumber", "");
INSERT INTO `wp_postmeta` VALUES("5407", "159", "_WPMSGOPTION_TelephoneCallToAction", "");
INSERT INTO `wp_postmeta` VALUES("5408", "159", "_WPMSGOPTION_ClickToCallType", "Call");
INSERT INTO `wp_postmeta` VALUES("5409", "159", "_WPMSGOPTION_SMSMessage", "");
INSERT INTO `wp_postmeta` VALUES("5410", "159", "_WPMSGOPTION_HidePhoneIcon", "");
INSERT INTO `wp_postmeta` VALUES("5411", "159", "_WPMSGOPTION_HidePhoneNumber", "");
INSERT INTO `wp_postmeta` VALUES("5412", "159", "_WPMSGOPTION_TelephoneIconImage", "");
INSERT INTO `wp_postmeta` VALUES("5413", "159", "_WPMSGOPTION_TelephoneImage", "");
INSERT INTO `wp_postmeta` VALUES("5414", "159", "_WPMSGOPTION_SMSNumber", "");
INSERT INTO `wp_postmeta` VALUES("5415", "159", "_WPMSGOPTION_SMSCallToAction", "");
INSERT INTO `wp_postmeta` VALUES("5416", "159", "_WPMSGOPTION_SMSMessageText", "");
INSERT INTO `wp_postmeta` VALUES("5417", "159", "_WPMSGOPTION_HideSMSIcon", "");
INSERT INTO `wp_postmeta` VALUES("5418", "159", "_WPMSGOPTION_HideSMSNumber", "");
INSERT INTO `wp_postmeta` VALUES("5419", "159", "_WPMSGOPTION_SMSIconImage", "");
INSERT INTO `wp_postmeta` VALUES("5420", "159", "_WPMSGOPTION_SMSImage", "");
INSERT INTO `wp_postmeta` VALUES("5421", "159", "_WPMSGOPTION_EmailTo", "");
INSERT INTO `wp_postmeta` VALUES("5422", "159", "_WPMSGOPTION_EmailCallToAction", "");
INSERT INTO `wp_postmeta` VALUES("5423", "159", "_WPMSGOPTION_EmailSubjectText", "");
INSERT INTO `wp_postmeta` VALUES("5424", "159", "_WPMSGOPTION_EmailMessageText", "");
INSERT INTO `wp_postmeta` VALUES("5425", "159", "_WPMSGOPTION_HideEmailIcon", "");
INSERT INTO `wp_postmeta` VALUES("5426", "159", "_WPMSGOPTION_EmailIconImage", "");
INSERT INTO `wp_postmeta` VALUES("5427", "159", "_WPMSGOPTION_EmailImage", "");
INSERT INTO `wp_postmeta` VALUES("5428", "159", "_WPMSGOPTION_SkypeUsername", "");
INSERT INTO `wp_postmeta` VALUES("5429", "159", "_WPMSGOPTION_SkypeCallToAction", "");
INSERT INTO `wp_postmeta` VALUES("5430", "159", "_WPMSGOPTION_HideSkypeIcon", "");
INSERT INTO `wp_postmeta` VALUES("5431", "159", "_WPMSGOPTION_SkypeIconImage", "");
INSERT INTO `wp_postmeta` VALUES("5432", "159", "_WPMSGOPTION_SkypeImage", "");
INSERT INTO `wp_postmeta` VALUES("5433", "159", "_WPMSGOPTION_RedirectURL", "");
INSERT INTO `wp_postmeta` VALUES("5434", "159", "_WPMSGOPTION_DeactivatedURL", "");
INSERT INTO `wp_postmeta` VALUES("5435", "159", "_WPMSGOPTION_ExportDomain", "");
INSERT INTO `wp_postmeta` VALUES("5436", "159", "_WPMSGOPTION_CreateBitly", "");
INSERT INTO `wp_postmeta` VALUES("5437", "159", "_WPMSGOPTION_BitlyUsername", "");
INSERT INTO `wp_postmeta` VALUES("5438", "159", "_WPMSGOPTION_BitlyApiKey", "");
INSERT INTO `wp_postmeta` VALUES("5439", "159", "_WPMSGOPTION_BitlyLongUrl", "");
INSERT INTO `wp_postmeta` VALUES("5440", "159", "_WPMSGOPTION_BitlyShortUrl", "");
INSERT INTO `wp_postmeta` VALUES("5441", "159", "_WPMSGOPTION_MapLocation", "");
INSERT INTO `wp_postmeta` VALUES("5442", "159", "_WPMSGOPTION_MapLongitude", "");
INSERT INTO `wp_postmeta` VALUES("5443", "159", "_WPMSGOPTION_MapLatitude", "");
INSERT INTO `wp_postmeta` VALUES("5444", "159", "_WPMSGOPTION_MapWidth", "");
INSERT INTO `wp_postmeta` VALUES("5445", "159", "_WPMSGOPTION_MapHeight", "");
INSERT INTO `wp_postmeta` VALUES("5446", "159", "_WPMSGOPTION_MapZoom", "");
INSERT INTO `wp_postmeta` VALUES("5447", "159", "_WPMSGOPTION_MapLanguage", "en");
INSERT INTO `wp_postmeta` VALUES("5448", "159", "_WPMSGOPTION_DisplayMapDirections", "");
INSERT INTO `wp_postmeta` VALUES("5449", "159", "_WPMSGOPTION_DirectionsPrompt", "");
INSERT INTO `wp_postmeta` VALUES("5450", "159", "_WPMSGOPTION_DirectionsButtonText", "");
INSERT INTO `wp_postmeta` VALUES("5451", "159", "_WPMSGOPTION_DisplayGPSDirectionsButton", "");
INSERT INTO `wp_postmeta` VALUES("5452", "159", "_WPMSGOPTION_GPSDirectionsButtonText", "");
INSERT INTO `wp_postmeta` VALUES("5453", "159", "_WPMSGOPTION_DirectionsPosition", "A");
INSERT INTO `wp_postmeta` VALUES("5454", "159", "_WPMSGOPTION_OptinNamePrompt", "");
INSERT INTO `wp_postmeta` VALUES("5455", "159", "_WPMSGOPTION_OptinEmailPrompt", "");
INSERT INTO `wp_postmeta` VALUES("5456", "159", "_WPMSGOPTION_OptinSubmitPrompt", "");
INSERT INTO `wp_postmeta` VALUES("5457", "159", "_WPMSGOPTION_OptinCode", "");
INSERT INTO `wp_postmeta` VALUES("5458", "159", "_WPMSGOPTION_OptinRedirectPage", "0");
INSERT INTO `wp_postmeta` VALUES("5459", "159", "_WPMSGOPTION_ContactSendToEmail", "");
INSERT INTO `wp_postmeta` VALUES("5460", "159", "_WPMSGOPTION_ContactSendFromName", "");
INSERT INTO `wp_postmeta` VALUES("5461", "159", "_WPMSGOPTION_ContactSendFromEmail", "");
INSERT INTO `wp_postmeta` VALUES("5462", "159", "_WPMSGOPTION_ContactNamePrompt", "");
INSERT INTO `wp_postmeta` VALUES("5463", "159", "_WPMSGOPTION_ContactPhonePrompt", "");
INSERT INTO `wp_postmeta` VALUES("5464", "159", "_WPMSGOPTION_ContactEmailPrompt", "");
INSERT INTO `wp_postmeta` VALUES("5465", "159", "_WPMSGOPTION_ContactMessagePrompt", "");
INSERT INTO `wp_postmeta` VALUES("5466", "159", "_WPMSGOPTION_ContactSubmitPrompt", "");
INSERT INTO `wp_postmeta` VALUES("5467", "159", "_WPMSGOPTION_ContactShowAcknowledgement", "");
INSERT INTO `wp_postmeta` VALUES("5468", "159", "_WPMSGOPTION_ContactAcknowledgementDisplayMessage", "");
INSERT INTO `wp_postmeta` VALUES("5469", "159", "_WPMSGOPTION_ContactSendAcknowledgement", "");
INSERT INTO `wp_postmeta` VALUES("5470", "159", "_WPMSGOPTION_ContactAcknowledgementName", "");
INSERT INTO `wp_postmeta` VALUES("5471", "159", "_WPMSGOPTION_ContactAcknowledgementEmail", "");
INSERT INTO `wp_postmeta` VALUES("5472", "159", "_WPMSGOPTION_ContactAcknowledgementSubject", "");
INSERT INTO `wp_postmeta` VALUES("5473", "159", "_WPMSGOPTION_ContactAcknowledgementMessage", "");
INSERT INTO `wp_postmeta` VALUES("5474", "159", "_WPMSGOPTION_SiteID", "170");
INSERT INTO `wp_postmeta` VALUES("5475", "162", "_WPMREDOPTION_RedirectURL", "");
INSERT INTO `wp_postmeta` VALUES("5476", "162", "_WPMREDOPTION_RedirectNever", "");
INSERT INTO `wp_postmeta` VALUES("5477", "162", "_WPMSGOPTION_Initialised", "Y");
INSERT INTO `wp_postmeta` VALUES("5478", "162", "_WPMSGOPTION_Deactivated", "");
INSERT INTO `wp_postmeta` VALUES("5479", "162", "_WPMSGOPTION_PageSlug", "coupon");
INSERT INTO `wp_postmeta` VALUES("5480", "162", "_WPMSGOPTION_PageName", "Coupon");
INSERT INTO `wp_postmeta` VALUES("5481", "162", "_WPMSGOPTION_TopbarPageName", "Coupon");
INSERT INTO `wp_postmeta` VALUES("5482", "162", "_WPMSGOPTION_MenuDesc", "");
INSERT INTO `wp_postmeta` VALUES("5483", "162", "_WPMSGOPTION_ThemeType", "Site");
INSERT INTO `wp_postmeta` VALUES("5484", "162", "_WPMSGOPTION_PageTheme", "113");
INSERT INTO `wp_postmeta` VALUES("5485", "162", "_WPMSGOPTION_MenuStyle", "Vertical");
INSERT INTO `wp_postmeta` VALUES("5486", "162", "_WPMSGOPTION_MenuPosition", "T");
INSERT INTO `wp_postmeta` VALUES("5487", "162", "_WPMSGOPTION_ExcludePage", "");
INSERT INTO `wp_postmeta` VALUES("5488", "162", "_WPMSGOPTION_ExcludeFromSearch", "");
INSERT INTO `wp_postmeta` VALUES("5489", "162", "_WPMSGOPTION_BackgroundImage", "");
INSERT INTO `wp_postmeta` VALUES("5490", "162", "_WPMSGOPTION_BackgroundImageRepeat", "repeat");
INSERT INTO `wp_postmeta` VALUES("5491", "162", "_WPMSGOPTION_BackgroundImagePosition", "lefttop");
INSERT INTO `wp_postmeta` VALUES("5492", "162", "_WPMSGOPTION_PageMinimumHeight", "");
INSERT INTO `wp_postmeta` VALUES("5493", "162", "_WPMSGOPTION_DisplayLogo", "");
INSERT INTO `wp_postmeta` VALUES("5494", "162", "_WPMSGOPTION_LogoImage", "");
INSERT INTO `wp_postmeta` VALUES("5495", "162", "_WPMSGOPTION_LogoBackgroundColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("5496", "162", "_WPMSGOPTION_LogoUseBackgroundColor", "");
INSERT INTO `wp_postmeta` VALUES("5497", "162", "_WPMSGOPTION_FooterBackgroundColor", "");
INSERT INTO `wp_postmeta` VALUES("5498", "162", "_WPMSGOPTION_ThumbnailImage", "Coupon");
INSERT INTO `wp_postmeta` VALUES("5499", "162", "_WPMSGOPTION_ThumbnailImageColor", "LightBlue");
INSERT INTO `wp_postmeta` VALUES("5500", "162", "_WPMSGOPTION_CustomThumbnailImage", "");
INSERT INTO `wp_postmeta` VALUES("5501", "162", "_WPMSGOPTION_DisplayPreview", "");
INSERT INTO `wp_postmeta` VALUES("5502", "162", "_WPMSGOPTION_DisplayTopBar", "");
INSERT INTO `wp_postmeta` VALUES("5503", "162", "_WPMSGOPTION_TopbarRightLinkText", "");
INSERT INTO `wp_postmeta` VALUES("5504", "162", "_WPMSGOPTION_TopbarRightLinkURL", "");
INSERT INTO `wp_postmeta` VALUES("5505", "162", "_WPMSGOPTION_TopbarRightLinkPage", "0");
INSERT INTO `wp_postmeta` VALUES("5506", "162", "_WPMSGOPTION_DisplayPhoneTopBar", "");
INSERT INTO `wp_postmeta` VALUES("5507", "162", "_WPMSGOPTION_FacebookURL", "");
INSERT INTO `wp_postmeta` VALUES("5508", "162", "_WPMSGOPTION_TwitterURL", "");
INSERT INTO `wp_postmeta` VALUES("5509", "162", "_WPMSGOPTION_GooglePlusURL", "");
INSERT INTO `wp_postmeta` VALUES("5510", "162", "_WPMSGOPTION_YouTubeURL", "");
INSERT INTO `wp_postmeta` VALUES("5511", "162", "_WPMSGOPTION_LinkedInURL", "");
INSERT INTO `wp_postmeta` VALUES("5512", "162", "_WPMSGOPTION_SocialMediaPage1URL", "");
INSERT INTO `wp_postmeta` VALUES("5513", "162", "_WPMSGOPTION_SocialMediaIcon1URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/facebook.png");
INSERT INTO `wp_postmeta` VALUES("5514", "162", "_WPMSGOPTION_SocialMediaPage2URL", "");
INSERT INTO `wp_postmeta` VALUES("5515", "162", "_WPMSGOPTION_SocialMediaIcon2URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/twitter.png");
INSERT INTO `wp_postmeta` VALUES("5516", "162", "_WPMSGOPTION_SocialMediaPage3URL", "");
INSERT INTO `wp_postmeta` VALUES("5517", "162", "_WPMSGOPTION_SocialMediaIcon3URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/googleplus.png");
INSERT INTO `wp_postmeta` VALUES("5518", "162", "_WPMSGOPTION_SocialMediaPage4URL", "");
INSERT INTO `wp_postmeta` VALUES("5519", "162", "_WPMSGOPTION_SocialMediaIcon4URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/youtube.png");
INSERT INTO `wp_postmeta` VALUES("5520", "162", "_WPMSGOPTION_SocialMediaPage5URL", "");
INSERT INTO `wp_postmeta` VALUES("5521", "162", "_WPMSGOPTION_SocialMediaIcon5URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/linkedin.png");
INSERT INTO `wp_postmeta` VALUES("5522", "162", "_WPMSGOPTION_SocialMediaPage6URL", "");
INSERT INTO `wp_postmeta` VALUES("5523", "162", "_WPMSGOPTION_SocialMediaIcon6URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/pinterest.png");
INSERT INTO `wp_postmeta` VALUES("5524", "162", "_WPMSGOPTION_SocialMediaPage7URL", "");
INSERT INTO `wp_postmeta` VALUES("5525", "162", "_WPMSGOPTION_SocialMediaIcon7URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/flickr.png");
INSERT INTO `wp_postmeta` VALUES("5526", "162", "_WPMSGOPTION_SocialMediaPage8URL", "");
INSERT INTO `wp_postmeta` VALUES("5527", "162", "_WPMSGOPTION_SocialMediaIcon8URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/yelp.png");
INSERT INTO `wp_postmeta` VALUES("5528", "162", "_WPMSGOPTION_SocialMediaPage9URL", "");
INSERT INTO `wp_postmeta` VALUES("5529", "162", "_WPMSGOPTION_SocialMediaIcon9URL", "");
INSERT INTO `wp_postmeta` VALUES("5530", "162", "_WPMSGOPTION_FBLikeURL", "");
INSERT INTO `wp_postmeta` VALUES("5531", "162", "_WPMSGOPTION_FBLikeWidth", "");
INSERT INTO `wp_postmeta` VALUES("5532", "162", "_WPMSGOPTION_FBLikeSendButton", "Y");
INSERT INTO `wp_postmeta` VALUES("5533", "162", "_WPMSGOPTION_FBLikeFaces", "Y");
INSERT INTO `wp_postmeta` VALUES("5534", "162", "_WPMSGOPTION_FBLikeLayoutStyle", "");
INSERT INTO `wp_postmeta` VALUES("5535", "162", "_WPMSGOPTION_FBLikeVerb", "");
INSERT INTO `wp_postmeta` VALUES("5536", "162", "_WPMSGOPTION_FBLikeColorScheme", "");
INSERT INTO `wp_postmeta` VALUES("5537", "162", "_WPMSGOPTION_FBCommentsURL", "");
INSERT INTO `wp_postmeta` VALUES("5538", "162", "_WPMSGOPTION_FBCommentsPosts", "");
INSERT INTO `wp_postmeta` VALUES("5539", "162", "_WPMSGOPTION_FBCommentsColorScheme", "");
INSERT INTO `wp_postmeta` VALUES("5540", "162", "_WPMSGOPTION_SearchPrompt", "");
INSERT INTO `wp_postmeta` VALUES("5541", "162", "_WPMSGOPTION_SearchSubmitPrompt", "");
INSERT INTO `wp_postmeta` VALUES("5542", "162", "_WPMSGOPTION_RSSFeedURL", "");
INSERT INTO `wp_postmeta` VALUES("5543", "162", "_WPMSGOPTION_RSSFeedMax", "");
INSERT INTO `wp_postmeta` VALUES("5544", "162", "_WPMSGOPTION_RSSFeedStyle", "TitleOnly");
INSERT INTO `wp_postmeta` VALUES("5545", "162", "_WPMSGOPTION_MetaTitle", "");
INSERT INTO `wp_postmeta` VALUES("5546", "162", "_WPMSGOPTION_MetaDescription", "");
INSERT INTO `wp_postmeta` VALUES("5547", "162", "_WPMSGOPTION_MetaKeywords", "");
INSERT INTO `wp_postmeta` VALUES("5548", "162", "_WPMSGOPTION_AnalyticsCode", "");
INSERT INTO `wp_postmeta` VALUES("5549", "162", "_WPMSGOPTION_CouponTitle", "10% Instant Coupon");
INSERT INTO `wp_postmeta` VALUES("5550", "162", "_WPMSGOPTION_CouponCodeText", "");
INSERT INTO `wp_postmeta` VALUES("5551", "162", "_WPMSGOPTION_CouponStartText", "");
INSERT INTO `wp_postmeta` VALUES("5552", "162", "_WPMSGOPTION_CouponExpiryText", "");
INSERT INTO `wp_postmeta` VALUES("5553", "162", "_WPMSGOPTION_CouponCode", "");
INSERT INTO `wp_postmeta` VALUES("5554", "162", "_WPMSGOPTION_CouponCodeExpired", "");
INSERT INTO `wp_postmeta` VALUES("5555", "162", "_WPMSGOPTION_CouponStart", "");
INSERT INTO `wp_postmeta` VALUES("5556", "162", "_WPMSGOPTION_CouponExpiry", "");
INSERT INTO `wp_postmeta` VALUES("5557", "162", "_WPMSGOPTION_CouponDateFormat", "Y-m-d");
INSERT INTO `wp_postmeta` VALUES("5558", "162", "_WPMSGOPTION_CouponValidText", "Just Mention You Found Us On Our Mobile Device  ");
INSERT INTO `wp_postmeta` VALUES("5559", "162", "_WPMSGOPTION_CouponExpiredText", "");
INSERT INTO `wp_postmeta` VALUES("5560", "162", "_WPMSGOPTION_CouponImage", "");
INSERT INTO `wp_postmeta` VALUES("5561", "162", "_WPMSGOPTION_TelephoneNumber", "");
INSERT INTO `wp_postmeta` VALUES("5562", "162", "_WPMSGOPTION_TelephoneCallToAction", "");
INSERT INTO `wp_postmeta` VALUES("5563", "162", "_WPMSGOPTION_ClickToCallType", "Call");
INSERT INTO `wp_postmeta` VALUES("5564", "162", "_WPMSGOPTION_SMSMessage", "");
INSERT INTO `wp_postmeta` VALUES("5565", "162", "_WPMSGOPTION_HidePhoneIcon", "");
INSERT INTO `wp_postmeta` VALUES("5566", "162", "_WPMSGOPTION_HidePhoneNumber", "");
INSERT INTO `wp_postmeta` VALUES("5567", "162", "_WPMSGOPTION_TelephoneIconImage", "");
INSERT INTO `wp_postmeta` VALUES("5568", "162", "_WPMSGOPTION_TelephoneImage", "");
INSERT INTO `wp_postmeta` VALUES("5569", "162", "_WPMSGOPTION_SMSNumber", "");
INSERT INTO `wp_postmeta` VALUES("5570", "162", "_WPMSGOPTION_SMSCallToAction", "");
INSERT INTO `wp_postmeta` VALUES("5571", "162", "_WPMSGOPTION_SMSMessageText", "");
INSERT INTO `wp_postmeta` VALUES("5572", "162", "_WPMSGOPTION_HideSMSIcon", "");
INSERT INTO `wp_postmeta` VALUES("5573", "162", "_WPMSGOPTION_HideSMSNumber", "");
INSERT INTO `wp_postmeta` VALUES("5574", "162", "_WPMSGOPTION_SMSIconImage", "");
INSERT INTO `wp_postmeta` VALUES("5575", "162", "_WPMSGOPTION_SMSImage", "");
INSERT INTO `wp_postmeta` VALUES("5576", "162", "_WPMSGOPTION_EmailTo", "");
INSERT INTO `wp_postmeta` VALUES("5577", "162", "_WPMSGOPTION_EmailCallToAction", "");
INSERT INTO `wp_postmeta` VALUES("5578", "162", "_WPMSGOPTION_EmailSubjectText", "");
INSERT INTO `wp_postmeta` VALUES("5579", "162", "_WPMSGOPTION_EmailMessageText", "");
INSERT INTO `wp_postmeta` VALUES("5580", "162", "_WPMSGOPTION_HideEmailIcon", "");
INSERT INTO `wp_postmeta` VALUES("5581", "162", "_WPMSGOPTION_EmailIconImage", "");
INSERT INTO `wp_postmeta` VALUES("5582", "162", "_WPMSGOPTION_EmailImage", "");
INSERT INTO `wp_postmeta` VALUES("5583", "162", "_WPMSGOPTION_SkypeUsername", "");
INSERT INTO `wp_postmeta` VALUES("5584", "162", "_WPMSGOPTION_SkypeCallToAction", "");
INSERT INTO `wp_postmeta` VALUES("5585", "162", "_WPMSGOPTION_HideSkypeIcon", "");
INSERT INTO `wp_postmeta` VALUES("5586", "162", "_WPMSGOPTION_SkypeIconImage", "");
INSERT INTO `wp_postmeta` VALUES("5587", "162", "_WPMSGOPTION_SkypeImage", "");
INSERT INTO `wp_postmeta` VALUES("5588", "162", "_WPMSGOPTION_RedirectURL", "");
INSERT INTO `wp_postmeta` VALUES("5589", "162", "_WPMSGOPTION_DeactivatedURL", "");
INSERT INTO `wp_postmeta` VALUES("5590", "162", "_WPMSGOPTION_ExportDomain", "");
INSERT INTO `wp_postmeta` VALUES("5591", "162", "_WPMSGOPTION_CreateBitly", "");
INSERT INTO `wp_postmeta` VALUES("5592", "162", "_WPMSGOPTION_BitlyUsername", "");
INSERT INTO `wp_postmeta` VALUES("5593", "162", "_WPMSGOPTION_BitlyApiKey", "");
INSERT INTO `wp_postmeta` VALUES("5594", "162", "_WPMSGOPTION_BitlyLongUrl", "");
INSERT INTO `wp_postmeta` VALUES("5595", "162", "_WPMSGOPTION_BitlyShortUrl", "");
INSERT INTO `wp_postmeta` VALUES("5596", "162", "_WPMSGOPTION_MapLocation", "");
INSERT INTO `wp_postmeta` VALUES("5597", "162", "_WPMSGOPTION_MapLongitude", "");
INSERT INTO `wp_postmeta` VALUES("5598", "162", "_WPMSGOPTION_MapLatitude", "");
INSERT INTO `wp_postmeta` VALUES("5599", "162", "_WPMSGOPTION_MapWidth", "");
INSERT INTO `wp_postmeta` VALUES("5600", "162", "_WPMSGOPTION_MapHeight", "");
INSERT INTO `wp_postmeta` VALUES("5601", "162", "_WPMSGOPTION_MapZoom", "");
INSERT INTO `wp_postmeta` VALUES("5602", "162", "_WPMSGOPTION_MapLanguage", "en");
INSERT INTO `wp_postmeta` VALUES("5603", "162", "_WPMSGOPTION_DisplayMapDirections", "");
INSERT INTO `wp_postmeta` VALUES("5604", "162", "_WPMSGOPTION_DirectionsPrompt", "");
INSERT INTO `wp_postmeta` VALUES("5605", "162", "_WPMSGOPTION_DirectionsButtonText", "");
INSERT INTO `wp_postmeta` VALUES("5606", "162", "_WPMSGOPTION_DisplayGPSDirectionsButton", "");
INSERT INTO `wp_postmeta` VALUES("5607", "162", "_WPMSGOPTION_GPSDirectionsButtonText", "");
INSERT INTO `wp_postmeta` VALUES("5608", "162", "_WPMSGOPTION_DirectionsPosition", "A");
INSERT INTO `wp_postmeta` VALUES("5609", "162", "_WPMSGOPTION_OptinNamePrompt", "");
INSERT INTO `wp_postmeta` VALUES("5610", "162", "_WPMSGOPTION_OptinEmailPrompt", "");
INSERT INTO `wp_postmeta` VALUES("5611", "162", "_WPMSGOPTION_OptinSubmitPrompt", "");
INSERT INTO `wp_postmeta` VALUES("5612", "162", "_WPMSGOPTION_OptinCode", "");
INSERT INTO `wp_postmeta` VALUES("5613", "162", "_WPMSGOPTION_OptinRedirectPage", "0");
INSERT INTO `wp_postmeta` VALUES("5614", "162", "_WPMSGOPTION_ContactSendToEmail", "");
INSERT INTO `wp_postmeta` VALUES("5615", "162", "_WPMSGOPTION_ContactSendFromName", "");
INSERT INTO `wp_postmeta` VALUES("5616", "162", "_WPMSGOPTION_ContactSendFromEmail", "");
INSERT INTO `wp_postmeta` VALUES("5617", "162", "_WPMSGOPTION_ContactNamePrompt", "");
INSERT INTO `wp_postmeta` VALUES("5618", "162", "_WPMSGOPTION_ContactPhonePrompt", "");
INSERT INTO `wp_postmeta` VALUES("5619", "162", "_WPMSGOPTION_ContactEmailPrompt", "");
INSERT INTO `wp_postmeta` VALUES("5620", "162", "_WPMSGOPTION_ContactMessagePrompt", "");
INSERT INTO `wp_postmeta` VALUES("5621", "162", "_WPMSGOPTION_ContactSubmitPrompt", "");
INSERT INTO `wp_postmeta` VALUES("5622", "162", "_WPMSGOPTION_ContactShowAcknowledgement", "");
INSERT INTO `wp_postmeta` VALUES("5623", "162", "_WPMSGOPTION_ContactAcknowledgementDisplayMessage", "");
INSERT INTO `wp_postmeta` VALUES("5624", "162", "_WPMSGOPTION_ContactSendAcknowledgement", "");
INSERT INTO `wp_postmeta` VALUES("5625", "162", "_WPMSGOPTION_ContactAcknowledgementName", "");
INSERT INTO `wp_postmeta` VALUES("5626", "162", "_WPMSGOPTION_ContactAcknowledgementEmail", "");
INSERT INTO `wp_postmeta` VALUES("5627", "162", "_WPMSGOPTION_ContactAcknowledgementSubject", "");
INSERT INTO `wp_postmeta` VALUES("5628", "162", "_WPMSGOPTION_ContactAcknowledgementMessage", "");
INSERT INTO `wp_postmeta` VALUES("5629", "162", "_WPMSGOPTION_SiteID", "123");
INSERT INTO `wp_postmeta` VALUES("5630", "164", "_WPMREDOPTION_RedirectURL", "");
INSERT INTO `wp_postmeta` VALUES("5631", "164", "_WPMREDOPTION_RedirectNever", "");
INSERT INTO `wp_postmeta` VALUES("5632", "164", "_WPMSGOPTION_Initialised", "Y");
INSERT INTO `wp_postmeta` VALUES("5633", "164", "_WPMSGOPTION_Deactivated", "");
INSERT INTO `wp_postmeta` VALUES("5634", "164", "_WPMSGOPTION_PageSlug", "e-mail-us");
INSERT INTO `wp_postmeta` VALUES("5635", "164", "_WPMSGOPTION_PageName", "E-Mail Us");
INSERT INTO `wp_postmeta` VALUES("5636", "164", "_WPMSGOPTION_TopbarPageName", "E-Mail Us");
INSERT INTO `wp_postmeta` VALUES("5637", "164", "_WPMSGOPTION_MenuDesc", "");
INSERT INTO `wp_postmeta` VALUES("5638", "164", "_WPMSGOPTION_ThemeType", "Site");
INSERT INTO `wp_postmeta` VALUES("5639", "164", "_WPMSGOPTION_PageTheme", "170");
INSERT INTO `wp_postmeta` VALUES("5640", "164", "_WPMSGOPTION_MenuStyle", "Vertical");
INSERT INTO `wp_postmeta` VALUES("5641", "164", "_WPMSGOPTION_MenuPosition", "T");
INSERT INTO `wp_postmeta` VALUES("5642", "164", "_WPMSGOPTION_ExcludePage", "");
INSERT INTO `wp_postmeta` VALUES("5643", "164", "_WPMSGOPTION_ExcludeFromSearch", "");
INSERT INTO `wp_postmeta` VALUES("5644", "164", "_WPMSGOPTION_BackgroundImage", "");
INSERT INTO `wp_postmeta` VALUES("5645", "164", "_WPMSGOPTION_BackgroundImageRepeat", "repeat");
INSERT INTO `wp_postmeta` VALUES("5646", "164", "_WPMSGOPTION_BackgroundImagePosition", "lefttop");
INSERT INTO `wp_postmeta` VALUES("5647", "164", "_WPMSGOPTION_PageMinimumHeight", "");
INSERT INTO `wp_postmeta` VALUES("5648", "164", "_WPMSGOPTION_DisplayLogo", "");
INSERT INTO `wp_postmeta` VALUES("5649", "164", "_WPMSGOPTION_LogoImage", "");
INSERT INTO `wp_postmeta` VALUES("5650", "164", "_WPMSGOPTION_LogoBackgroundColor", "FFFFFF");
INSERT INTO `wp_postmeta` VALUES("5651", "164", "_WPMSGOPTION_LogoUseBackgroundColor", "");
INSERT INTO `wp_postmeta` VALUES("5652", "164", "_WPMSGOPTION_FooterBackgroundColor", "");
INSERT INTO `wp_postmeta` VALUES("5653", "164", "_WPMSGOPTION_ThumbnailImage", "Email2");
INSERT INTO `wp_postmeta` VALUES("5654", "164", "_WPMSGOPTION_ThumbnailImageColor", "LightBlue");
INSERT INTO `wp_postmeta` VALUES("5655", "164", "_WPMSGOPTION_CustomThumbnailImage", "");
INSERT INTO `wp_postmeta` VALUES("5656", "164", "_WPMSGOPTION_DisplayPreview", "");
INSERT INTO `wp_postmeta` VALUES("5657", "164", "_WPMSGOPTION_DisplayTopBar", "");
INSERT INTO `wp_postmeta` VALUES("5658", "164", "_WPMSGOPTION_TopbarRightLinkText", "");
INSERT INTO `wp_postmeta` VALUES("5659", "164", "_WPMSGOPTION_TopbarRightLinkURL", "");
INSERT INTO `wp_postmeta` VALUES("5660", "164", "_WPMSGOPTION_TopbarRightLinkPage", "0");
INSERT INTO `wp_postmeta` VALUES("5661", "164", "_WPMSGOPTION_DisplayPhoneTopBar", "");
INSERT INTO `wp_postmeta` VALUES("5662", "164", "_WPMSGOPTION_FacebookURL", "");
INSERT INTO `wp_postmeta` VALUES("5663", "164", "_WPMSGOPTION_TwitterURL", "");
INSERT INTO `wp_postmeta` VALUES("5664", "164", "_WPMSGOPTION_GooglePlusURL", "");
INSERT INTO `wp_postmeta` VALUES("5665", "164", "_WPMSGOPTION_YouTubeURL", "");
INSERT INTO `wp_postmeta` VALUES("5666", "164", "_WPMSGOPTION_LinkedInURL", "");
INSERT INTO `wp_postmeta` VALUES("5667", "164", "_WPMSGOPTION_SocialMediaPage1URL", "");
INSERT INTO `wp_postmeta` VALUES("5668", "164", "_WPMSGOPTION_SocialMediaIcon1URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/facebook.png");
INSERT INTO `wp_postmeta` VALUES("5669", "164", "_WPMSGOPTION_SocialMediaPage2URL", "");
INSERT INTO `wp_postmeta` VALUES("5670", "164", "_WPMSGOPTION_SocialMediaIcon2URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/twitter.png");
INSERT INTO `wp_postmeta` VALUES("5671", "164", "_WPMSGOPTION_SocialMediaPage3URL", "");
INSERT INTO `wp_postmeta` VALUES("5672", "164", "_WPMSGOPTION_SocialMediaIcon3URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/googleplus.png");
INSERT INTO `wp_postmeta` VALUES("5673", "164", "_WPMSGOPTION_SocialMediaPage4URL", "");
INSERT INTO `wp_postmeta` VALUES("5674", "164", "_WPMSGOPTION_SocialMediaIcon4URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/youtube.png");
INSERT INTO `wp_postmeta` VALUES("5675", "164", "_WPMSGOPTION_SocialMediaPage5URL", "");
INSERT INTO `wp_postmeta` VALUES("5676", "164", "_WPMSGOPTION_SocialMediaIcon5URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/linkedin.png");
INSERT INTO `wp_postmeta` VALUES("5677", "164", "_WPMSGOPTION_SocialMediaPage6URL", "");
INSERT INTO `wp_postmeta` VALUES("5678", "164", "_WPMSGOPTION_SocialMediaIcon6URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/pinterest.png");
INSERT INTO `wp_postmeta` VALUES("5679", "164", "_WPMSGOPTION_SocialMediaPage7URL", "");
INSERT INTO `wp_postmeta` VALUES("5680", "164", "_WPMSGOPTION_SocialMediaIcon7URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/flickr.png");
INSERT INTO `wp_postmeta` VALUES("5681", "164", "_WPMSGOPTION_SocialMediaPage8URL", "");
INSERT INTO `wp_postmeta` VALUES("5682", "164", "_WPMSGOPTION_SocialMediaIcon8URL", "http://tampa.keylocksmith.in/fl/wp-content/plugins/EzMobileSiteGenerator/images/yelp.png");
INSERT INTO `wp_postmeta` VALUES("5683", "164", "_WPMSGOPTION_SocialMediaPage9URL", "");
INSERT INTO `wp_postmeta` VALUES("5684", "164", "_WPMSGOPTION_SocialMediaIcon9URL", "");
INSERT INTO `wp_postmeta` VALUES("5685", "164", "_WPMSGOPTION_FBLikeURL", "");
INSERT INTO `wp_postmeta` VALUES("5686", "164", "_WPMSGOPTION_FBLikeWidth", "");
INSERT INTO `wp_postmeta` VALUES("5687", "164", "_WPMSGOPTION_FBLikeSendButton", "Y");
INSERT INTO `wp_postmeta` VALUES("5688", "164", "_WPMSGOPTION_FBLikeFaces", "Y");
INSERT INTO `wp_postmeta` VALUES("5689", "164", "_WPMSGOPTION_FBLikeLayoutStyle", "");
INSERT INTO `wp_postmeta` VALUES("5690", "164", "_WPMSGOPTION_FBLikeVerb", "");
INSERT INTO `wp_postmeta` VALUES("5691", "164", "_WPMSGOPTION_FBLikeColorScheme", "");
INSERT INTO `wp_postmeta` VALUES("5692", "164", "_WPMSGOPTION_FBCommentsURL", "");
INSERT INTO `wp_postmeta` VALUES("5693", "164", "_WPMSGOPTION_FBCommentsPosts", "");
INSERT INTO `wp_postmeta` VALUES("5694", "164", "_WPMSGOPTION_FBCommentsColorScheme", "");
INSERT INTO `wp_postmeta` VALUES("5695", "164", "_WPMSGOPTION_SearchPrompt", "");
INSERT INTO `wp_postmeta` VALUES("5696", "164", "_WPMSGOPTION_SearchSubmitPrompt", "");
INSERT INTO `wp_postmeta` VALUES("5697", "164", "_WPMSGOPTION_RSSFeedURL", "");
INSERT INTO `wp_postmeta` VALUES("5698", "164", "_WPMSGOPTION_RSSFeedMax", "");
INSERT INTO `wp_postmeta` VALUES("5699", "164", "_WPMSGOPTION_RSSFeedStyle", "TitleOnly");
INSERT INTO `wp_postmeta` VALUES("5700", "164", "_WPMSGOPTION_MetaTitle", "");
INSERT INTO `wp_postmeta` VALUES("5701", "164", "_WPMSGOPTION_MetaDescription", "");
INSERT INTO `wp_postmeta` VALUES("5702", "164", "_WPMSGOPTION_MetaKeywords", "");
INSERT INTO `wp_postmeta` VALUES("5703", "164", "_WPMSGOPTION_AnalyticsCode", "");
INSERT INTO `wp_postmeta` VALUES("5704", "164", "_WPMSGOPTION_CouponTitle", "");
INSERT INTO `wp_postmeta` VALUES("5705", "164", "_WPMSGOPTION_CouponCodeText", "");
INSERT INTO `wp_postmeta` VALUES("5706", "164", "_WPMSGOPTION_CouponStartText", "");
INSERT INTO `wp_postmeta` VALUES("5707", "164", "_WPMSGOPTION_CouponExpiryText", "");
INSERT INTO `wp_postmeta` VALUES("5708", "164", "_WPMSGOPTION_CouponCode", "");
INSERT INTO `wp_postmeta` VALUES("5709", "164", "_WPMSGOPTION_CouponCodeExpired", "");
INSERT INTO `wp_postmeta` VALUES("5710", "164", "_WPMSGOPTION_CouponStart", "");
INSERT INTO `wp_postmeta` VALUES("5711", "164", "_WPMSGOPTION_CouponExpiry", "");
INSERT INTO `wp_postmeta` VALUES("5712", "164", "_WPMSGOPTION_CouponDateFormat", "Y-m-d");
INSERT INTO `wp_postmeta` VALUES("5713", "164", "_WPMSGOPTION_CouponValidText", "");
INSERT INTO `wp_postmeta` VALUES("5714", "164", "_WPMSGOPTION_CouponExpiredText", "");
INSERT INTO `wp_postmeta` VALUES("5715", "164", "_WPMSGOPTION_CouponImage", "");
INSERT INTO `wp_postmeta` VALUES("5716", "164", "_WPMSGOPTION_TelephoneNumber", "");
INSERT INTO `wp_postmeta` VALUES("5717", "164", "_WPMSGOPTION_TelephoneCallToAction", "");
INSERT INTO `wp_postmeta` VALUES("5718", "164", "_WPMSGOPTION_ClickToCallType", "Call");
INSERT INTO `wp_postmeta` VALUES("5719", "164", "_WPMSGOPTION_SMSMessage", "");
INSERT INTO `wp_postmeta` VALUES("5720", "164", "_WPMSGOPTION_HidePhoneIcon", "");
INSERT INTO `wp_postmeta` VALUES("5721", "164", "_WPMSGOPTION_HidePhoneNumber", "");
INSERT INTO `wp_postmeta` VALUES("5722", "164", "_WPMSGOPTION_TelephoneIconImage", "");
INSERT INTO `wp_postmeta` VALUES("5723", "164", "_WPMSGOPTION_TelephoneImage", "");
INSERT INTO `wp_postmeta` VALUES("5724", "164", "_WPMSGOPTION_SMSNumber", "");
INSERT INTO `wp_postmeta` VALUES("5725", "164", "_WPMSGOPTION_SMSCallToAction", "");
INSERT INTO `wp_postmeta` VALUES("5726", "164", "_WPMSGOPTION_SMSMessageText", "");
INSERT INTO `wp_postmeta` VALUES("5727", "164", "_WPMSGOPTION_HideSMSIcon", "");
INSERT INTO `wp_postmeta` VALUES("5728", "164", "_WPMSGOPTION_HideSMSNumber", "");
INSERT INTO `wp_postmeta` VALUES("5729", "164", "_WPMSGOPTION_SMSIconImage", "");
INSERT INTO `wp_postmeta` VALUES("5730", "164", "_WPMSGOPTION_SMSImage", "");
INSERT INTO `wp_postmeta` VALUES("5731", "164", "_WPMSGOPTION_EmailTo", "");
INSERT INTO `wp_postmeta` VALUES("5732", "164", "_WPMSGOPTION_EmailCallToAction", "");
INSERT INTO `wp_postmeta` VALUES("5733", "164", "_WPMSGOPTION_EmailSubjectText", "");
INSERT INTO `wp_postmeta` VALUES("5734", "164", "_WPMSGOPTION_EmailMessageText", "");
INSERT INTO `wp_postmeta` VALUES("5735", "164", "_WPMSGOPTION_HideEmailIcon", "");
INSERT INTO `wp_postmeta` VALUES("5736", "164", "_WPMSGOPTION_EmailIconImage", "");
INSERT INTO `wp_postmeta` VALUES("5737", "164", "_WPMSGOPTION_EmailImage", "");
INSERT INTO `wp_postmeta` VALUES("5738", "164", "_WPMSGOPTION_SkypeUsername", "");
INSERT INTO `wp_postmeta` VALUES("5739", "164", "_WPMSGOPTION_SkypeCallToAction", "");
INSERT INTO `wp_postmeta` VALUES("5740", "164", "_WPMSGOPTION_HideSkypeIcon", "");
INSERT INTO `wp_postmeta` VALUES("5741", "164", "_WPMSGOPTION_SkypeIconImage", "");
INSERT INTO `wp_postmeta` VALUES("5742", "164", "_WPMSGOPTION_SkypeImage", "");
INSERT INTO `wp_postmeta` VALUES("5743", "164", "_WPMSGOPTION_RedirectURL", "");
INSERT INTO `wp_postmeta` VALUES("5744", "164", "_WPMSGOPTION_DeactivatedURL", "");
INSERT INTO `wp_postmeta` VALUES("5745", "164", "_WPMSGOPTION_ExportDomain", "");
INSERT INTO `wp_postmeta` VALUES("5746", "164", "_WPMSGOPTION_CreateBitly", "");
INSERT INTO `wp_postmeta` VALUES("5747", "164", "_WPMSGOPTION_BitlyUsername", "");
INSERT INTO `wp_postmeta` VALUES("5748", "164", "_WPMSGOPTION_BitlyApiKey", "");
INSERT INTO `wp_postmeta` VALUES("5749", "164", "_WPMSGOPTION_BitlyLongUrl", "");
INSERT INTO `wp_postmeta` VALUES("5750", "164", "_WPMSGOPTION_BitlyShortUrl", "");
INSERT INTO `wp_postmeta` VALUES("5751", "164", "_WPMSGOPTION_MapLocation", "");
INSERT INTO `wp_postmeta` VALUES("5752", "164", "_WPMSGOPTION_MapLongitude", "");
INSERT INTO `wp_postmeta` VALUES("5753", "164", "_WPMSGOPTION_MapLatitude", "");
INSERT INTO `wp_postmeta` VALUES("5754", "164", "_WPMSGOPTION_MapWidth", "");
INSERT INTO `wp_postmeta` VALUES("5755", "164", "_WPMSGOPTION_MapHeight", "");
INSERT INTO `wp_postmeta` VALUES("5756", "164", "_WPMSGOPTION_MapZoom", "");
INSERT INTO `wp_postmeta` VALUES("5757", "164", "_WPMSGOPTION_MapLanguage", "en");
INSERT INTO `wp_postmeta` VALUES("5758", "164", "_WPMSGOPTION_DisplayMapDirections", "");
INSERT INTO `wp_postmeta` VALUES("5759", "164", "_WPMSGOPTION_DirectionsPrompt", "");
INSERT INTO `wp_postmeta` VALUES("5760", "164", "_WPMSGOPTION_DirectionsButtonText", "");
INSERT INTO `wp_postmeta` VALUES("5761", "164", "_WPMSGOPTION_DisplayGPSDirectionsButton", "");
INSERT INTO `wp_postmeta` VALUES("5762", "164", "_WPMSGOPTION_GPSDirectionsButtonText", "");
INSERT INTO `wp_postmeta` VALUES("5763", "164", "_WPMSGOPTION_DirectionsPosition", "A");
INSERT INTO `wp_postmeta` VALUES("5764", "164", "_WPMSGOPTION_OptinNamePrompt", "");
INSERT INTO `wp_postmeta` VALUES("5765", "164", "_WPMSGOPTION_OptinEmailPrompt", "");
INSERT INTO `wp_postmeta` VALUES("5766", "164", "_WPMSGOPTION_OptinSubmitPrompt", "");
INSERT INTO `wp_postmeta` VALUES("5767", "164", "_WPMSGOPTION_OptinCode", "");
INSERT INTO `wp_postmeta` VALUES("5768", "164", "_WPMSGOPTION_OptinRedirectPage", "0");
INSERT INTO `wp_postmeta` VALUES("5769", "164", "_WPMSGOPTION_ContactSendToEmail", "junior5011@optonline.net");
INSERT INTO `wp_postmeta` VALUES("5770", "164", "_WPMSGOPTION_ContactSendFromName", "");
INSERT INTO `wp_postmeta` VALUES("5771", "164", "_WPMSGOPTION_ContactSendFromEmail", "");
INSERT INTO `wp_postmeta` VALUES("5772", "164", "_WPMSGOPTION_ContactNamePrompt", "");
INSERT INTO `wp_postmeta` VALUES("5773", "164", "_WPMSGOPTION_ContactPhonePrompt", "");
INSERT INTO `wp_postmeta` VALUES("5774", "164", "_WPMSGOPTION_ContactEmailPrompt", "");
INSERT INTO `wp_postmeta` VALUES("5775", "164", "_WPMSGOPTION_ContactMessagePrompt", "");
INSERT INTO `wp_postmeta` VALUES("5776", "164", "_WPMSGOPTION_ContactSubmitPrompt", "");
INSERT INTO `wp_postmeta` VALUES("5777", "164", "_WPMSGOPTION_ContactShowAcknowledgement", "Y");
INSERT INTO `wp_postmeta` VALUES("5778", "164", "_WPMSGOPTION_ContactAcknowledgementDisplayMessage", "");
INSERT INTO `wp_postmeta` VALUES("5779", "164", "_WPMSGOPTION_ContactSendAcknowledgement", "");
INSERT INTO `wp_postmeta` VALUES("5780", "164", "_WPMSGOPTION_ContactAcknowledgementName", "");
INSERT INTO `wp_postmeta` VALUES("5781", "164", "_WPMSGOPTION_ContactAcknowledgementEmail", "");
INSERT INTO `wp_postmeta` VALUES("5782", "164", "_WPMSGOPTION_ContactAcknowledgementSubject", "");
INSERT INTO `wp_postmeta` VALUES("5783", "164", "_WPMSGOPTION_ContactAcknowledgementMessage", "");
INSERT INTO `wp_postmeta` VALUES("5784", "164", "_WPMSGOPTION_SiteID", "123");
INSERT INTO `wp_postmeta` VALUES("5785", "180", "_wp_attached_file", "2013/03/Graphic24-300x1941.jpg");
INSERT INTO `wp_postmeta` VALUES("5786", "180", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"194\";s:14:\"hwstring_small\";s:23:\"height=\'82\' width=\'128\'\";s:4:\"file\";s:30:\"2013/03/Graphic24-300x1941.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:30:\"Graphic24-300x1941-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:15:\"ezgallery-thumb\";a:3:{s:4:\"file\";s:30:\"Graphic24-300x1941-125x125.jpg\";s:5:\"width\";s:3:\"125\";s:6:\"height\";s:3:\"125\";}s:21:\"single-post-thumbnail\";a:3:{s:4:\"file\";s:28:\"Graphic24-300x1941-75x48.jpg\";s:5:\"width\";s:2:\"75\";s:6:\"height\";s:2:\"48\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("5791", "183", "_wp_attached_file", "2013/03/Graphic1a.jpg");
INSERT INTO `wp_postmeta` VALUES("5789", "182", "_wp_attached_file", "2013/03/Graphic1.jpg");
INSERT INTO `wp_postmeta` VALUES("5790", "182", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"607\";s:6:\"height\";s:3:\"200\";s:14:\"hwstring_small\";s:23:\"height=\'42\' width=\'128\'\";s:4:\"file\";s:20:\"2013/03/Graphic1.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:20:\"Graphic1-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:19:\"Graphic1-300x98.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:2:\"98\";}s:15:\"ezgallery-thumb\";a:3:{s:4:\"file\";s:20:\"Graphic1-125x125.jpg\";s:5:\"width\";s:3:\"125\";s:6:\"height\";s:3:\"125\";}s:21:\"single-post-thumbnail\";a:3:{s:4:\"file\";s:18:\"Graphic1-75x24.jpg\";s:5:\"width\";s:2:\"75\";s:6:\"height\";s:2:\"24\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("5792", "183", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"833\";s:6:\"height\";s:3:\"200\";s:14:\"hwstring_small\";s:23:\"height=\'30\' width=\'128\'\";s:4:\"file\";s:21:\"2013/03/Graphic1a.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:21:\"Graphic1a-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:20:\"Graphic1a-300x72.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:2:\"72\";}s:15:\"ezgallery-thumb\";a:3:{s:4:\"file\";s:21:\"Graphic1a-125x125.jpg\";s:5:\"width\";s:3:\"125\";s:6:\"height\";s:3:\"125\";}s:21:\"single-post-thumbnail\";a:3:{s:4:\"file\";s:19:\"Graphic1a-75x18.jpg\";s:5:\"width\";s:2:\"75\";s:6:\"height\";s:2:\"18\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");

/* INSERT TABLE DATA: wp_posts */
INSERT INTO `wp_posts` VALUES("151", "1", "2013-03-03 15:16:16", "2013-03-03 15:16:16", "[ezmbmap id=150]", "Location Map", "", "inherit", "open", "open", "", "150-autosave", "", "", "2013-03-03 15:16:16", "2013-03-03 15:16:16", "", "150", "http://tampa.keylocksmith.in/fl/?p=151", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("11", "1", "2013-02-03 13:13:27", "2013-02-03 13:13:27", "", "Graphic2", "", "inherit", "open", "open", "", "graphic2-2", "", "", "2013-02-03 13:13:27", "2013-02-03 13:13:27", "", "0", "http://tampa.keylocksmith.in/fl/wp-content/uploads/2013/02/Graphic21.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("9", "1", "2013-02-03 11:51:54", "2013-02-03 11:51:54", "", "Graphic1", "", "inherit", "open", "open", "", "graphic1", "", "", "2013-02-03 11:51:54", "2013-02-03 11:51:54", "", "0", "http://tampa.keylocksmith.in/fl/wp-content/uploads/2013/02/Graphic1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("10", "1", "2013-02-03 13:11:16", "2013-02-03 13:11:16", "", "Graphic2", "", "inherit", "open", "open", "", "graphic2", "", "", "2013-02-03 13:11:16", "2013-02-03 13:11:16", "", "0", "http://tampa.keylocksmith.in/fl/wp-content/uploads/2013/02/Graphic2.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("8", "1", "2013-02-02 19:44:03", "2013-02-02 19:44:03", "", "header1", "", "inherit", "open", "open", "", "header1", "", "", "2013-02-02 19:44:03", "2013-02-02 19:44:03", "", "0", "http://tampa.keylocksmith.in/fl/wp-content/uploads/2013/02/header1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("12", "1", "2013-02-03 13:14:53", "2013-02-03 13:14:53", "", "Graphic2", "", "inherit", "open", "open", "", "graphic2-3", "", "", "2013-02-03 13:14:53", "2013-02-03 13:14:53", "", "0", "http://tampa.keylocksmith.in/fl/wp-content/uploads/2013/02/Graphic22.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("13", "1", "2013-02-03 13:16:05", "2013-02-03 13:16:05", "", "Graphic2", "", "inherit", "open", "open", "", "graphic2-4", "", "", "2013-02-03 13:16:05", "2013-02-03 13:16:05", "", "0", "http://tampa.keylocksmith.in/fl/wp-content/uploads/2013/02/Graphic23.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("14", "1", "2013-02-03 20:32:18", "2013-02-03 20:32:18", "", "KeyHeader1", "", "inherit", "open", "open", "", "keyheader1", "", "", "2013-02-03 20:32:18", "2013-02-03 20:32:18", "", "0", "http://tampa.keylocksmith.in/fl/wp-content/uploads/2013/02/KeyHeader1.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("15", "1", "2013-02-03 20:40:27", "2013-02-03 20:40:27", "", "KeyHeader2", "", "inherit", "open", "open", "", "keyheader2", "", "", "2013-02-03 20:40:27", "2013-02-03 20:40:27", "", "0", "http://tampa.keylocksmith.in/fl/wp-content/uploads/2013/02/KeyHeader2.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("16", "1", "2013-02-03 20:59:06", "2013-02-03 20:59:06", "", "KeyHeader3", "", "inherit", "open", "open", "", "keyheader3", "", "", "2013-02-03 20:59:06", "2013-02-03 20:59:06", "", "0", "http://tampa.keylocksmith.in/fl/wp-content/uploads/2013/02/KeyHeader3.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("17", "1", "2013-02-03 21:00:42", "2013-02-03 21:00:42", "", "KeyHeader3", "", "inherit", "open", "open", "", "keyheader3-2", "", "", "2013-02-03 21:00:42", "2013-02-03 21:00:42", "", "0", "http://tampa.keylocksmith.in/fl/wp-content/uploads/2013/02/KeyHeader31.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("18", "1", "2013-02-03 21:04:00", "2013-02-03 21:04:00", "", "KeyHeader3", "", "inherit", "open", "open", "", "keyheader3-3", "", "", "2013-02-03 21:04:00", "2013-02-03 21:04:00", "", "0", "http://tampa.keylocksmith.in/fl/wp-content/uploads/2013/02/KeyHeader32.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("19", "1", "2013-02-03 21:06:15", "2013-02-03 21:06:15", "", "KeyHeader3", "", "inherit", "open", "open", "", "keyheader3-4", "", "", "2013-02-03 21:06:15", "2013-02-03 21:06:15", "", "0", "http://tampa.keylocksmith.in/fl/wp-content/uploads/2013/02/KeyHeader33.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("20", "1", "2013-02-03 21:10:19", "2013-02-03 21:10:19", "", "KeyHeader3", "", "inherit", "open", "open", "", "keyheader3-5", "", "", "2013-02-03 21:10:19", "2013-02-03 21:10:19", "", "0", "http://tampa.keylocksmith.in/fl/wp-content/uploads/2013/02/KeyHeader34.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("21", "1", "2013-02-03 21:13:04", "2013-02-03 21:13:04", "", "KeyHeader3", "", "inherit", "open", "open", "", "keyheader3-6", "", "", "2013-02-03 21:13:04", "2013-02-03 21:13:04", "", "0", "http://tampa.keylocksmith.in/fl/wp-content/uploads/2013/02/KeyHeader35.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("22", "1", "2013-02-03 21:16:45", "2013-02-03 21:16:45", "", "KeyHeader3", "", "inherit", "open", "open", "", "keyheader3-7", "", "", "2013-02-03 21:16:45", "2013-02-03 21:16:45", "", "0", "http://tampa.keylocksmith.in/fl/wp-content/uploads/2013/02/KeyHeader36.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("23", "1", "2013-02-03 21:19:58", "2013-02-03 21:19:58", "", "KeyHeader3", "", "inherit", "open", "open", "", "keyheader3-8", "", "", "2013-02-03 21:19:58", "2013-02-03 21:19:58", "", "0", "http://tampa.keylocksmith.in/fl/wp-content/uploads/2013/02/KeyHeader37.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("24", "1", "2013-02-03 21:24:20", "2013-02-03 21:24:20", "", "KeyHeader3", "", "inherit", "open", "open", "", "keyheader3-9", "", "", "2013-02-03 21:24:20", "2013-02-03 21:24:20", "", "0", "http://tampa.keylocksmith.in/fl/wp-content/uploads/2013/02/KeyHeader38.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("25", "1", "2013-02-03 21:37:52", "2013-02-03 21:37:52", "", "KeyHeader3", "", "inherit", "open", "open", "", "keyheader3-10", "", "", "2013-02-03 21:37:52", "2013-02-03 21:37:52", "", "0", "http://tampa.keylocksmith.in/fl/wp-content/uploads/2013/02/KeyHeader39.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("26", "1", "2013-02-03 21:42:04", "2013-02-03 21:42:04", "", "KeyHeader3", "", "inherit", "open", "open", "", "keyheader3-11", "", "", "2013-02-03 21:42:04", "2013-02-03 21:42:04", "", "0", "http://tampa.keylocksmith.in/fl/wp-content/uploads/2013/02/KeyHeader310.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("27", "1", "2013-02-03 21:42:08", "2013-02-03 21:42:08", "", "KeyHeader3", "", "inherit", "open", "open", "", "keyheader3-12", "", "", "2013-02-03 21:42:08", "2013-02-03 21:42:08", "", "0", "http://tampa.keylocksmith.in/fl/wp-content/uploads/2013/02/KeyHeader311.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("28", "1", "2013-02-03 21:42:18", "2013-02-03 21:42:18", "", "KeyHeader3", "", "inherit", "open", "open", "", "keyheader3-13", "", "", "2013-02-03 21:42:18", "2013-02-03 21:42:18", "", "0", "http://tampa.keylocksmith.in/fl/wp-content/uploads/2013/02/KeyHeader312.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("29", "1", "2013-02-03 21:44:40", "2013-02-03 21:44:40", "", "KeyHeader3", "", "inherit", "open", "open", "", "keyheader3-14", "", "", "2013-02-03 21:44:40", "2013-02-03 21:44:40", "", "0", "http://tampa.keylocksmith.in/fl/wp-content/uploads/2013/02/KeyHeader313.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("30", "1", "2013-02-03 21:47:00", "2013-02-03 21:47:00", "", "KeyHeader3", "", "inherit", "open", "open", "", "keyheader3-15", "", "", "2013-02-03 21:47:00", "2013-02-03 21:47:00", "", "0", "http://tampa.keylocksmith.in/fl/wp-content/uploads/2013/02/KeyHeader314.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("31", "1", "2013-02-03 21:48:31", "2013-02-03 21:48:31", "", "KeyHeader3", "", "inherit", "open", "open", "", "keyheader3-16", "", "", "2013-02-03 21:48:31", "2013-02-03 21:48:31", "", "0", "http://tampa.keylocksmith.in/fl/wp-content/uploads/2013/02/KeyHeader315.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("32", "1", "2013-02-03 22:09:22", "2013-02-03 22:09:22", "", "KeyHeader3", "", "inherit", "open", "open", "", "keyheader3-17", "", "", "2013-02-03 22:09:22", "2013-02-03 22:09:22", "", "0", "http://tampa.keylocksmith.in/fl/wp-content/uploads/2013/02/KeyHeader316.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("33", "1", "2013-02-03 22:12:29", "2013-02-03 22:12:29", "", "KeyHeader3", "", "inherit", "open", "open", "", "keyheader3-18", "", "", "2013-02-03 22:12:29", "2013-02-03 22:12:29", "", "0", "http://tampa.keylocksmith.in/fl/wp-content/uploads/2013/02/KeyHeader317.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("34", "1", "2013-02-03 22:15:52", "2013-02-03 22:15:52", "", "KeyHeader3", "", "inherit", "open", "open", "", "keyheader3-19", "", "", "2013-02-03 22:15:52", "2013-02-03 22:15:52", "", "0", "http://tampa.keylocksmith.in/fl/wp-content/uploads/2013/02/KeyHeader318.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("35", "1", "2013-02-03 22:22:19", "2013-02-03 22:22:19", "", "KeyHeader3", "", "inherit", "open", "open", "", "keyheader3-20", "", "", "2013-02-03 22:22:19", "2013-02-03 22:22:19", "", "0", "http://tampa.keylocksmith.in/fl/wp-content/uploads/2013/02/KeyHeader319.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("36", "1", "2013-02-03 22:39:26", "2013-02-03 22:39:26", "", "KeyHeader3", "", "inherit", "open", "open", "", "keyheader3-21", "", "", "2013-02-03 22:39:26", "2013-02-03 22:39:26", "", "0", "http://tampa.keylocksmith.in/fl/wp-content/uploads/2013/02/KeyHeader320.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("37", "1", "2013-02-04 00:48:25", "2013-02-04 00:48:25", "", "KeyHeader3", "", "inherit", "open", "open", "", "keyheader3-22", "", "", "2013-02-04 00:48:25", "2013-02-04 00:48:25", "", "0", "http://tampa.keylocksmith.in/fl/wp-content/uploads/2013/02/KeyHeader3.jpeg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("38", "1", "2013-02-04 00:50:14", "2013-02-04 00:50:14", "", "3", "", "inherit", "open", "open", "", "3", "", "", "2013-02-04 00:50:14", "2013-02-04 00:50:14", "", "0", "http://tampa.keylocksmith.in/fl/wp-content/uploads/2013/02/3.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("39", "1", "2013-02-04 00:53:19", "2013-02-04 00:53:19", "", "3", "", "inherit", "open", "open", "", "3-2", "", "", "2013-02-04 00:53:19", "2013-02-04 00:53:19", "", "0", "http://tampa.keylocksmith.in/fl/wp-content/uploads/2013/02/31.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("40", "1", "2013-02-04 00:55:18", "2013-02-04 00:55:18", "", "3", "", "inherit", "open", "open", "", "3-3", "", "", "2013-02-04 00:55:18", "2013-02-04 00:55:18", "", "0", "http://tampa.keylocksmith.in/fl/wp-content/uploads/2013/02/32.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("41", "1", "2013-02-04 01:00:44", "2013-02-04 01:00:44", "", "3", "", "inherit", "open", "open", "", "3-4", "", "", "2013-02-04 01:00:44", "2013-02-04 01:00:44", "", "0", "http://tampa.keylocksmith.in/fl/wp-content/uploads/2013/02/33.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("42", "1", "2013-02-04 01:09:06", "2013-02-04 01:09:06", "", "4", "", "inherit", "open", "open", "", "4", "", "", "2013-02-04 01:09:06", "2013-02-04 01:09:06", "", "0", "http://tampa.keylocksmith.in/fl/wp-content/uploads/2013/02/4.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("43", "1", "2013-02-04 01:15:36", "2013-02-04 01:15:36", "", "KeyHeader6", "", "inherit", "open", "open", "", "keyheader6", "", "", "2013-02-04 01:15:36", "2013-02-04 01:15:36", "", "0", "http://tampa.keylocksmith.in/fl/wp-content/uploads/2013/02/KeyHeader6.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("44", "1", "2013-02-04 01:21:31", "2013-02-04 01:21:31", "", "KeyHeader6", "", "inherit", "open", "open", "", "keyheader6-2", "", "", "2013-02-04 01:21:31", "2013-02-04 01:21:31", "", "0", "http://tampa.keylocksmith.in/fl/wp-content/uploads/2013/02/KeyHeader61.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("50", "1", "2013-02-04 01:30:11", "2013-02-04 01:30:11", "<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td align=\"left\" valign=\"top\"><a name=\"top\"></a><strong><em><span style=\"color: #55aaff;\">Article</span><span style=\"color: #808080;\">Section</span></em></strong></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<span style=\"font-family: Tahoma;\">It seems safe to assume that there have been locksmiths around since the advent of locks.  After all, wherever there is a lock, there is an opportunity to get hopelessly locked out, right?  But when did the locksmith profession separate itself from basic lock picking, and how has it evolved over the years?  Here is a brief history of locksmiths:</span>\r\n\r\n<span style=\"font-family: Tahoma;\"><strong>Middle Ages.</strong>  Although locks and keys were around before the Middle Ages, locksmithing did not become an individually recognized specialty until this time period.  The term “locksmith” is actually a derivation of the word “blacksmith.”  During the Middle Ages, blacksmiths were the artisans who created metal battle gear for the knights and their horses.  However, it wasn’t unusual for blacksmiths to also forge locks and keys.  Those blacksmiths who branched out into specializing in the making of locks and keys came to be known as locksmiths. </span>\r\n\r\n<span style=\"font-family: Tahoma;\"><strong>Early 1900’s.</strong>  In response to growing security threats, locks began to change significantly after the turn of the century.  By the 1930’s, locksmithing was performed by a variety of related business owners, from clockmakers to gun repairers, and locksmithing was considered a craft – not a profession.  It was typically something that was passed down from generation to generation.  During this time, the Ilco Simplex key duplicating machine was invented. </span>\r\n\r\n<span style=\"font-family: Tahoma;\"><strong>World War I.</strong>  Because most locksmiths and lock manufacturers devoted their skills to the war effort during this time period, very little changed in the design of locks.  The Post Type cutter was invented for the manufacture of automobile keys, and the padlock was invented for cabinets, toward the end of the war. </span>\r\n\r\n<span style=\"font-family: Tahoma;\"><strong>Post-war.</strong>  The lock industry boomed following the war.  Schlage’s cylindrical lock became the standard, and the Ten Strike and Align-a-Lock were invented, forcing locksmithing into a recognized profession.  The first-ever locksmith school – Lockmasters – was founded in 1955, as well as the trade organization of The Associated Locksmiths of America. </span>\r\n\r\n<span style=\"font-family: Tahoma;\"><strong>Locksmithing today</strong>.  New technology, coupled with an increasing need for more secure locks (as well as commercial locks) moved the locksmith profession rapidly forward following the post-war innovations.  In the 1980’s, the government began regulating locksmithing, requiring licensing and certification in some states, and standardizing the profession.  The digital age ushered in the advent of electronic locks, and locksmithing continues to evolve to suit the modern times. </span>\r\n<p align=\"right\"><strong><em>by Tampa Bay Lock &amp; Safe</em></strong></p>\r\n<a href=\"http://tampa.keylocksmith.in/fl/\">Back to Top</a>\r\n<p align=\"center\"></p>", "A Brief History of Locksmiths", "", "publish", "open", "open", "", "a-brief-history-of-locksmiths", "", "", "2013-02-04 01:43:20", "2013-02-04 01:43:20", "", "0", "http://tampa.keylocksmith.in/fl/?page_id=50", "1", "page", "", "0");
INSERT INTO `wp_posts` VALUES("51", "1", "2013-02-04 01:30:08", "2013-02-04 01:30:08", "&nbsp;\n\n<span style=\"font-family: Tahoma;\">It seems safe to assume that there have been locksmiths around since the advent of locks.  After all, wherever there is a lock, there is an opportunity to get hopelessly locked out, right?  But when did the locksmith profession separate itself from basic lock picking, and how has it evolved over the years?  Here is a brief history of locksmiths:</span>\n\n<span style=\"font-family: Tahoma;\"><strong>Middle Ages.</strong>  Although locks and keys were around before the Middle Ages, locksmithing did not become an individually recognized specialty until this time period.  The term “locksmith” is actually a derivation of the word “blacksmith.”  During the Middle Ages, blacksmiths were the artisans who created metal battle gear for the knights and their horses.  However, it wasn’t unusual for blacksmiths to also forge locks and keys.  Those blacksmiths who branched out into specializing in the making of locks and keys came to be known as locksmiths. </span>\n\n<span style=\"font-family: Tahoma;\"><strong>Early 1900’s.</strong>  In response to growing security threats, locks began to change significantly after the turn of the century.  By the 1930’s, locksmithing was performed by a variety of related business owners, from clockmakers to gun repairers, and locksmithing was considered a craft – not a profession.  It was typically something that was passed down from generation to generation.  During this time, the Ilco Simplex key duplicating machine was invented. </span>\n\n<span style=\"font-family: Tahoma;\"><strong>World War I.</strong>  Because most locksmiths and lock manufacturers devoted their skills to the war effort during this time period, very little changed in the design of locks.  The Post Type cutter was invented for the manufacture of automobile keys, and the padlock was invented for cabinets, toward the end of the war. </span>\n\n<span style=\"font-family: Tahoma;\"><strong>Post-war.</strong>  The lock industry boomed following the war.  Schlage’s cylindrical lock became the standard, and the Ten Strike and Align-a-Lock were invented, forcing locksmithing into a recognized profession.  The first-ever locksmith school – Lockmasters – was founded in 1955, as well as the trade organization of The Associated Locksmiths of America. </span>\n\n<span style=\"font-family: Tahoma;\"><strong>Locksmithing today</strong>.  New technology, coupled with an increasing need for more secure locks (as well as commercial locks) moved the locksmith profession rapidly forward following the post-war innovations.  In the 1980’s, the government began regulating locksmithing, requiring licensing and certification in some states, and standardizing the profession.  The digital age ushered in the advent of electronic locks, and locksmithing continues to evolve to suit the modern times. </span>\n<p align=\"right\"><strong><em>by Tampa Bay Lock &amp; Safe\n\n</em></strong><a href=\"file:///C:/Documents%20and%20Settings/Keith%20Rossignol/Desktop/Tampa/HTLM/A-Brief-History-of-Locksmiths.html#top\">Back to Top</a></p>\n<p align=\"center\"></p>", "A Brief History of Locksmiths", "", "inherit", "open", "open", "", "50-revision", "", "", "2013-02-04 01:30:08", "2013-02-04 01:30:08", "", "50", "http://tampa.keylocksmith.in/fl/?p=51", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("61", "1", "2013-02-04 01:38:08", "2013-02-04 01:38:08", "<span style=\"font-family: Tahoma;\"><span style=\"color: black;\">Tampa Bay Lock &amp; Safe is a trusted locksmith in your local area.  We know how hard it is to find someone you can trust with all of your locksmith needs.  At Tampa Bay Lock &amp; Safe, we do our best to provide an affordable, trustworthy and fast experience. </span></span>\r\n\r\n<span style=\"font-family: Tahoma;\"><span style=\"color: #808080;\"><span style=\"color: black;\">We hope you enjoy our website and all the information we have provided.  If you would like to contact us to find out more, feel free to call (813) 232-5625, or email us at</span><span style=\"color: black;\">Support@keylocksmith/Tampa.</span>\r\n</span></span>\r\n<p align=\"center\"><span style=\"font-family: Tahoma;\"><span style=\"color: #808080;\"><span style=\"font-size: small;\"><span style=\"font-family: Tahoma;\"><span style=\"color: #0000ff;\"><span style=\"font-family: Impact;\">Contact Us Today</span>\r\n</span>\r\n</span></span><a href=\"mailto:Support@keylocksmith/Tampa\"><span style=\"font-size: small;\"><span style=\"font-family: Tahoma; font-size: small;\">Support@keylocksmith/Tampa</span></span></a></span></span></p>\r\n<p align=\"center\"><span style=\"color: black; font-family: Tahoma;\">(813) 232-5625</span></p>", "Contact Us", "", "publish", "open", "open", "", "contact-us", "", "", "2013-02-04 01:43:29", "2013-02-04 01:43:29", "", "0", "http://tampa.keylocksmith.in/fl/?page_id=61", "2", "page", "", "0");
INSERT INTO `wp_posts` VALUES("52", "1", "2013-02-04 01:31:20", "2013-02-04 01:31:20", "<strong> A Brief History of Locksmiths</strong>\r\n\r\n<span style=\"font-family: georgia, palatino;\">It seems safe to assume that there have been locksmiths around since the advent of locks.  After all, wherever there is a lock, there is an opportunity to get hopelessly locked out, right?  But when did the locksmith profession separate itself from basic lock picking, and how has it evolved over the years?  Here is a brief history of locksmiths:</span>\r\n\r\n<span style=\"font-family: Tahoma;\"><strong>Middle Ages.</strong>  <span style=\"font-family: georgia, palatino;\">Although locks and keys were around before the Middle Ages, locksmithing did not become an individually recognized specialty until this time period.  The term “locksmith” is actually a derivation of the word “blacksmith.”  During the Middle Ages, blacksmiths were the artisans who created metal battle gear for the knights and their horses.  However, it wasn’t unusual for blacksmiths to also forge locks and keys.  Those blacksmiths who branched out into specializing in the making of locks and keys came to be known as locksmiths. </span></span>\r\n\r\n<span style=\"font-family: Tahoma;\"><strong>Early 1900’s.</strong>  <span style=\"font-family: georgia, palatino;\">In response to growing security threats, locks began to change significantly after the turn of the century.  By the 1930’s, locksmithing was performed by a variety of related business owners, from clockmakers to gun repairers, and locksmithing was considered a craft – not a profession.  It was typically something that was passed down from generation to generation.  During this time, the Ilco Simplex key duplicating machine was invented. </span></span>\r\n\r\n<span style=\"font-family: Tahoma;\"><strong>World War I.</strong>  <span style=\"font-family: georgia, palatino;\">Because most locksmiths and lock manufacturers devoted their skills to the war effort during this time period, very little changed in the design of locks.  The Post Type cutter was invented for the manufacture of automobile keys, and the padlock was invented for cabinets, toward the end of the</span> war. </span>\r\n\r\n<span style=\"font-family: Tahoma;\"><strong>Post-war.</strong>  The lock industry boomed following the war.  Schlage’s cylindrical lock became the standard, and the Ten Strike and Align-a-Lock were invented, forcing locksmithing into a recognized profession.  The first-ever locksmith school – Lockmasters – was founded in 1955, as well as the trade organization of The Associated Locksmiths of America. </span>\r\n\r\n<span style=\"font-family: Tahoma;\"><strong>Locksmithing today</strong>.  <span style=\"font-family: georgia, palatino;\">New technology, coupled with an increasing need for more secure locks (as well as commercial locks) moved the locksmith profession rapidly forward following the post-war innovations.  In the 1980’s, the government began regulating locksmithing, requiring licensing and certification in some states, and standardizing the profession.  The digital age ushered in the advent of electronic locks, and locksmithing continues to evolve to suit the modern times. </span></span>\r\n<p align=\"right\"><span style=\"font-family: georgia, palatino;\"><strong><em> Tampa Bay Best Lock &amp; Safe</em></strong></span></p>\r\n&nbsp;\r\n<p align=\"center\"></p>", "A Brief History of Locksmiths", "", "publish", "open", "open", "", "a-brief-history-of-locksmiths", "", "", "2013-02-04 14:21:48", "2013-02-04 14:21:48", "", "0", "http://tampa.keylocksmith.in/fl/?p=52", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("53", "1", "2013-02-04 01:31:19", "2013-02-04 01:31:19", "&nbsp;\n\n<span style=\"font-family: Tahoma;\">It seems safe to assume that there have been locksmiths around since the advent of locks.  After all, wherever there is a lock, there is an opportunity to get hopelessly locked out, right?  But when did the locksmith profession separate itself from basic lock picking, and how has it evolved over the years?  Here is a brief history of locksmiths:</span>\n\n<span style=\"font-family: Tahoma;\"><strong>Middle Ages.</strong>  Although locks and keys were around before the Middle Ages, locksmithing did not become an individually recognized specialty until this time period.  The term “locksmith” is actually a derivation of the word “blacksmith.”  During the Middle Ages, blacksmiths were the artisans who created metal battle gear for the knights and their horses.  However, it wasn’t unusual for blacksmiths to also forge locks and keys.  Those blacksmiths who branched out into specializing in the making of locks and keys came to be known as locksmiths. </span>\n\n<span style=\"font-family: Tahoma;\"><strong>Early 1900’s.</strong>  In response to growing security threats, locks began to change significantly after the turn of the century.  By the 1930’s, locksmithing was performed by a variety of related business owners, from clockmakers to gun repairers, and locksmithing was considered a craft – not a profession.  It was typically something that was passed down from generation to generation.  During this time, the Ilco Simplex key duplicating machine was invented. </span>\n\n<span style=\"font-family: Tahoma;\"><strong>World War I.</strong>  Because most locksmiths and lock manufacturers devoted their skills to the war effort during this time period, very little changed in the design of locks.  The Post Type cutter was invented for the manufacture of automobile keys, and the padlock was invented for cabinets, toward the end of the war. </span>\n\n<span style=\"font-family: Tahoma;\"><strong>Post-war.</strong>  The lock industry boomed following the war.  Schlage’s cylindrical lock became the standard, and the Ten Strike and Align-a-Lock were invented, forcing locksmithing into a recognized profession.  The first-ever locksmith school – Lockmasters – was founded in 1955, as well as the trade organization of The Associated Locksmiths of America. </span>\n\n<span style=\"font-family: Tahoma;\"><strong>Locksmithing today</strong>.  New technology, coupled with an increasing need for more secure locks (as well as commercial locks) moved the locksmith profession rapidly forward following the post-war innovations.  In the 1980’s, the government began regulating locksmithing, requiring licensing and certification in some states, and standardizing the profession.  The digital age ushered in the advent of electronic locks, and locksmithing continues to evolve to suit the modern times. </span>\n<p align=\"right\"><strong><em>by Tampa Bay Lock &amp; Safe\n\n</em></strong><a href=\"file:///C:/Documents%20and%20Settings/Keith%20Rossignol/Desktop/Tampa/HTLM/A-Brief-History-of-Locksmiths.html#top\">Back to Top</a></p>\n<p align=\"center\"></p>", "A Brief History of Locksmiths", "", "inherit", "open", "open", "", "52-revision", "", "", "2013-02-04 01:31:19", "2013-02-04 01:31:19", "", "52", "http://tampa.keylocksmith.in/fl/?p=53", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("55", "1", "2013-02-04 01:31:20", "2013-02-04 01:31:20", "&nbsp;\r\n\r\n<span style=\"font-family: Tahoma;\">It seems safe to assume that there have been locksmiths around since the advent of locks.  After all, wherever there is a lock, there is an opportunity to get hopelessly locked out, right?  But when did the locksmith profession separate itself from basic lock picking, and how has it evolved over the years?  Here is a brief history of locksmiths:</span>\r\n\r\n<span style=\"font-family: Tahoma;\"><strong>Middle Ages.</strong>  Although locks and keys were around before the Middle Ages, locksmithing did not become an individually recognized specialty until this time period.  The term “locksmith” is actually a derivation of the word “blacksmith.”  During the Middle Ages, blacksmiths were the artisans who created metal battle gear for the knights and their horses.  However, it wasn’t unusual for blacksmiths to also forge locks and keys.  Those blacksmiths who branched out into specializing in the making of locks and keys came to be known as locksmiths. </span>\r\n\r\n<span style=\"font-family: Tahoma;\"><strong>Early 1900’s.</strong>  In response to growing security threats, locks began to change significantly after the turn of the century.  By the 1930’s, locksmithing was performed by a variety of related business owners, from clockmakers to gun repairers, and locksmithing was considered a craft – not a profession.  It was typically something that was passed down from generation to generation.  During this time, the Ilco Simplex key duplicating machine was invented. </span>\r\n\r\n<span style=\"font-family: Tahoma;\"><strong>World War I.</strong>  Because most locksmiths and lock manufacturers devoted their skills to the war effort during this time period, very little changed in the design of locks.  The Post Type cutter was invented for the manufacture of automobile keys, and the padlock was invented for cabinets, toward the end of the war. </span>\r\n\r\n<span style=\"font-family: Tahoma;\"><strong>Post-war.</strong>  The lock industry boomed following the war.  Schlage’s cylindrical lock became the standard, and the Ten Strike and Align-a-Lock were invented, forcing locksmithing into a recognized profession.  The first-ever locksmith school – Lockmasters – was founded in 1955, as well as the trade organization of The Associated Locksmiths of America. </span>\r\n\r\n<span style=\"font-family: Tahoma;\"><strong>Locksmithing today</strong>.  New technology, coupled with an increasing need for more secure locks (as well as commercial locks) moved the locksmith profession rapidly forward following the post-war innovations.  In the 1980’s, the government began regulating locksmithing, requiring licensing and certification in some states, and standardizing the profession.  The digital age ushered in the advent of electronic locks, and locksmithing continues to evolve to suit the modern times. </span>\r\n<p align=\"right\"><strong><em>by Tampa Bay Lock &amp; Safe\r\n\r\n</em></strong><a href=\"file:///C:/Documents%20and%20Settings/Keith%20Rossignol/Desktop/Tampa/HTLM/A-Brief-History-of-Locksmiths.html#top\">Back to Top</a></p>\r\n<p align=\"center\"></p>", "A Brief History of Locksmiths", "", "inherit", "open", "open", "", "52-revision-2", "", "", "2013-02-04 01:31:20", "2013-02-04 01:31:20", "", "52", "http://tampa.keylocksmith.in/fl/?p=55", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("57", "1", "2013-02-04 01:35:55", "2013-02-04 01:35:55", "<strong> A Brief History of Locksmiths</strong>\n\n<span style=\"font-family: Tahoma;\">It seems safe to assume that there have been locksmiths around since the advent of locks.  After all, wherever there is a lock, there is an opportunity to get hopelessly locked out, right?  But when did the locksmith profession separate itself from basic lock picking, and how has it evolved over the years?  Here is a brief history of locksmiths:</span>\n\n<span style=\"font-family: Tahoma;\"><strong>Middle Ages.</strong>  Although locks and keys were around before the Middle Ages, locksmithing did not become an individually recognized specialty until this time period.  The term “locksmith” is actually a derivation of the word “blacksmith.”  During the Middle Ages, blacksmiths were the artisans who created metal battle gear for the knights and their horses.  However, it wasn’t unusual for blacksmiths to also forge locks and keys.  Those blacksmiths who branched out into specializing in the making of locks and keys came to be known as locksmiths. </span>\n\n<span style=\"font-family: Tahoma;\"><strong>Early 1900’s.</strong>  In response to growing security threats, locks began to change significantly after the turn of the century.  By the 1930’s, locksmithing was performed by a variety of related business owners, from clockmakers to gun repairers, and locksmithing was considered a craft – not a profession.  It was typically something that was passed down from generation to generation.  During this time, the Ilco Simplex key duplicating machine was invented. </span>\n\n<span style=\"font-family: Tahoma;\"><strong>World War I.</strong>  Because most locksmiths and lock manufacturers devoted their skills to the war effort during this time period, very little changed in the design of locks.  The Post Type cutter was invented for the manufacture of automobile keys, and the padlock was invented for cabinets, toward the end of the war. </span>\n\n<span style=\"font-family: Tahoma;\"><strong>Post-war.</strong>  The lock industry boomed following the war.  Schlage’s cylindrical lock became the standard, and the Ten Strike and Align-a-Lock were invented, forcing locksmithing into a recognized profession.  The first-ever locksmith school – Lockmasters – was founded in 1955, as well as the trade organization of The Associated Locksmiths of America. </span>\n\n<span style=\"font-family: Tahoma;\"><strong>Locksmithing today</strong>.  New technology, coupled with an increasing need for more secure locks (as well as commercial locks) moved the locksmith profession rapidly forward following the post-war innovations.  In the 1980’s, the government began regulating locksmithing, requiring licensing and certification in some states, and standardizing the profession.  The digital age ushered in the advent of electronic locks, and locksmithing continues to evolve to suit the modern times. </span>\n<p align=\"right\"><strong><em> Tampa Bay Best Lock &amp; Safe</em></strong></p>\n&nbsp;\n<p align=\"center\"></p>", "", "", "inherit", "open", "open", "", "52-autosave", "", "", "2013-02-04 01:35:55", "2013-02-04 01:35:55", "", "52", "http://tampa.keylocksmith.in/fl/?p=57", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("56", "1", "2013-02-04 01:32:10", "2013-02-04 01:32:10", "<strong> A Brief History of Locksmiths</strong>\r\n\r\n<span style=\"font-family: Tahoma;\">It seems safe to assume that there have been locksmiths around since the advent of locks.  After all, wherever there is a lock, there is an opportunity to get hopelessly locked out, right?  But when did the locksmith profession separate itself from basic lock picking, and how has it evolved over the years?  Here is a brief history of locksmiths:</span>\r\n\r\n<span style=\"font-family: Tahoma;\"><strong>Middle Ages.</strong>  Although locks and keys were around before the Middle Ages, locksmithing did not become an individually recognized specialty until this time period.  The term “locksmith” is actually a derivation of the word “blacksmith.”  During the Middle Ages, blacksmiths were the artisans who created metal battle gear for the knights and their horses.  However, it wasn’t unusual for blacksmiths to also forge locks and keys.  Those blacksmiths who branched out into specializing in the making of locks and keys came to be known as locksmiths. </span>\r\n\r\n<span style=\"font-family: Tahoma;\"><strong>Early 1900’s.</strong>  In response to growing security threats, locks began to change significantly after the turn of the century.  By the 1930’s, locksmithing was performed by a variety of related business owners, from clockmakers to gun repairers, and locksmithing was considered a craft – not a profession.  It was typically something that was passed down from generation to generation.  During this time, the Ilco Simplex key duplicating machine was invented. </span>\r\n\r\n<span style=\"font-family: Tahoma;\"><strong>World War I.</strong>  Because most locksmiths and lock manufacturers devoted their skills to the war effort during this time period, very little changed in the design of locks.  The Post Type cutter was invented for the manufacture of automobile keys, and the padlock was invented for cabinets, toward the end of the war. </span>\r\n\r\n<span style=\"font-family: Tahoma;\"><strong>Post-war.</strong>  The lock industry boomed following the war.  Schlage’s cylindrical lock became the standard, and the Ten Strike and Align-a-Lock were invented, forcing locksmithing into a recognized profession.  The first-ever locksmith school – Lockmasters – was founded in 1955, as well as the trade organization of The Associated Locksmiths of America. </span>\r\n\r\n<span style=\"font-family: Tahoma;\"><strong>Locksmithing today</strong>.  New technology, coupled with an increasing need for more secure locks (as well as commercial locks) moved the locksmith profession rapidly forward following the post-war innovations.  In the 1980’s, the government began regulating locksmithing, requiring licensing and certification in some states, and standardizing the profession.  The digital age ushered in the advent of electronic locks, and locksmithing continues to evolve to suit the modern times. </span>\r\n<p align=\"right\"><strong><em>by Tampa Bay Lock &amp; Safe</em></strong></p>\r\n<a href=\"file:///C:/Documents%20and%20Settings/Keith%20Rossignol/Desktop/Tampa/HTLM/A-Brief-History-of-Locksmiths.html#top\">Back to Top</a>\r\n<p align=\"center\"></p>", "", "", "inherit", "open", "open", "", "52-revision-3", "", "", "2013-02-04 01:32:10", "2013-02-04 01:32:10", "", "52", "http://tampa.keylocksmith.in/fl/?p=56", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("58", "1", "2013-02-04 01:33:02", "2013-02-04 01:33:02", "<strong> A Brief History of Locksmiths</strong>\r\n\r\n<span style=\"font-family: Tahoma;\">It seems safe to assume that there have been locksmiths around since the advent of locks.  After all, wherever there is a lock, there is an opportunity to get hopelessly locked out, right?  But when did the locksmith profession separate itself from basic lock picking, and how has it evolved over the years?  Here is a brief history of locksmiths:</span>\r\n\r\n<span style=\"font-family: Tahoma;\"><strong>Middle Ages.</strong>  Although locks and keys were around before the Middle Ages, locksmithing did not become an individually recognized specialty until this time period.  The term “locksmith” is actually a derivation of the word “blacksmith.”  During the Middle Ages, blacksmiths were the artisans who created metal battle gear for the knights and their horses.  However, it wasn’t unusual for blacksmiths to also forge locks and keys.  Those blacksmiths who branched out into specializing in the making of locks and keys came to be known as locksmiths. </span>\r\n\r\n<span style=\"font-family: Tahoma;\"><strong>Early 1900’s.</strong>  In response to growing security threats, locks began to change significantly after the turn of the century.  By the 1930’s, locksmithing was performed by a variety of related business owners, from clockmakers to gun repairers, and locksmithing was considered a craft – not a profession.  It was typically something that was passed down from generation to generation.  During this time, the Ilco Simplex key duplicating machine was invented. </span>\r\n\r\n<span style=\"font-family: Tahoma;\"><strong>World War I.</strong>  Because most locksmiths and lock manufacturers devoted their skills to the war effort during this time period, very little changed in the design of locks.  The Post Type cutter was invented for the manufacture of automobile keys, and the padlock was invented for cabinets, toward the end of the war. </span>\r\n\r\n<span style=\"font-family: Tahoma;\"><strong>Post-war.</strong>  The lock industry boomed following the war.  Schlage’s cylindrical lock became the standard, and the Ten Strike and Align-a-Lock were invented, forcing locksmithing into a recognized profession.  The first-ever locksmith school – Lockmasters – was founded in 1955, as well as the trade organization of The Associated Locksmiths of America. </span>\r\n\r\n<span style=\"font-family: Tahoma;\"><strong>Locksmithing today</strong>.  New technology, coupled with an increasing need for more secure locks (as well as commercial locks) moved the locksmith profession rapidly forward following the post-war innovations.  In the 1980’s, the government began regulating locksmithing, requiring licensing and certification in some states, and standardizing the profession.  The digital age ushered in the advent of electronic locks, and locksmithing continues to evolve to suit the modern times. </span>\r\n<p align=\"right\"><strong><em> Tampa Bay Vest Lock &amp; Safe</em></strong></p>\r\n&nbsp;\r\n<p align=\"center\"></p>", "", "", "inherit", "open", "open", "", "52-revision-4", "", "", "2013-02-04 01:33:02", "2013-02-04 01:33:02", "", "52", "http://tampa.keylocksmith.in/fl/?p=58", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("59", "1", "2013-02-04 01:34:39", "2013-02-04 01:34:39", "<strong> A Brief History of Locksmiths</strong>\r\n\r\n<span style=\"font-family: Tahoma;\">It seems safe to assume that there have been locksmiths around since the advent of locks.  After all, wherever there is a lock, there is an opportunity to get hopelessly locked out, right?  But when did the locksmith profession separate itself from basic lock picking, and how has it evolved over the years?  Here is a brief history of locksmiths:</span>\r\n\r\n<span style=\"font-family: Tahoma;\"><strong>Middle Ages.</strong>  Although locks and keys were around before the Middle Ages, locksmithing did not become an individually recognized specialty until this time period.  The term “locksmith” is actually a derivation of the word “blacksmith.”  During the Middle Ages, blacksmiths were the artisans who created metal battle gear for the knights and their horses.  However, it wasn’t unusual for blacksmiths to also forge locks and keys.  Those blacksmiths who branched out into specializing in the making of locks and keys came to be known as locksmiths. </span>\r\n\r\n<span style=\"font-family: Tahoma;\"><strong>Early 1900’s.</strong>  In response to growing security threats, locks began to change significantly after the turn of the century.  By the 1930’s, locksmithing was performed by a variety of related business owners, from clockmakers to gun repairers, and locksmithing was considered a craft – not a profession.  It was typically something that was passed down from generation to generation.  During this time, the Ilco Simplex key duplicating machine was invented. </span>\r\n\r\n<span style=\"font-family: Tahoma;\"><strong>World War I.</strong>  Because most locksmiths and lock manufacturers devoted their skills to the war effort during this time period, very little changed in the design of locks.  The Post Type cutter was invented for the manufacture of automobile keys, and the padlock was invented for cabinets, toward the end of the war. </span>\r\n\r\n<span style=\"font-family: Tahoma;\"><strong>Post-war.</strong>  The lock industry boomed following the war.  Schlage’s cylindrical lock became the standard, and the Ten Strike and Align-a-Lock were invented, forcing locksmithing into a recognized profession.  The first-ever locksmith school – Lockmasters – was founded in 1955, as well as the trade organization of The Associated Locksmiths of America. </span>\r\n\r\n<span style=\"font-family: Tahoma;\"><strong>Locksmithing today</strong>.  New technology, coupled with an increasing need for more secure locks (as well as commercial locks) moved the locksmith profession rapidly forward following the post-war innovations.  In the 1980’s, the government began regulating locksmithing, requiring licensing and certification in some states, and standardizing the profession.  The digital age ushered in the advent of electronic locks, and locksmithing continues to evolve to suit the modern times. </span>\r\n<p align=\"right\"><strong><em> Tampa Bay Vest Lock &amp; Safe</em></strong></p>\r\n&nbsp;\r\n<p align=\"center\"></p>", "", "", "inherit", "open", "open", "", "52-revision-5", "", "", "2013-02-04 01:34:39", "2013-02-04 01:34:39", "", "52", "http://tampa.keylocksmith.in/fl/?p=59", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("60", "1", "2013-02-04 01:30:11", "2013-02-04 01:30:11", "<span style=\"font-family: Tahoma;\">It seems safe to assume that there have been locksmiths around since the advent of locks.  After all, wherever there is a lock, there is an opportunity to get hopelessly locked out, right?  But when did the locksmith profession separate itself from basic lock picking, and how has it evolved over the years?  Here is a brief history of locksmiths:</span>\r\n\r\n<span style=\"font-family: Tahoma;\"><strong>Middle Ages.</strong>  Although locks and keys were around before the Middle Ages, locksmithing did not become an individually recognized specialty until this time period.  The term “locksmith” is actually a derivation of the word “blacksmith.”  During the Middle Ages, blacksmiths were the artisans who created metal battle gear for the knights and their horses.  However, it wasn’t unusual for blacksmiths to also forge locks and keys.  Those blacksmiths who branched out into specializing in the making of locks and keys came to be known as locksmiths. </span>\r\n\r\n<span style=\"font-family: Tahoma;\"><strong>Early 1900’s.</strong>  In response to growing security threats, locks began to change significantly after the turn of the century.  By the 1930’s, locksmithing was performed by a variety of related business owners, from clockmakers to gun repairers, and locksmithing was considered a craft – not a profession.  It was typically something that was passed down from generation to generation.  During this time, the Ilco Simplex key duplicating machine was invented. </span>\r\n\r\n<span style=\"font-family: Tahoma;\"><strong>World War I.</strong>  Because most locksmiths and lock manufacturers devoted their skills to the war effort during this time period, very little changed in the design of locks.  The Post Type cutter was invented for the manufacture of automobile keys, and the padlock was invented for cabinets, toward the end of the war. </span>\r\n\r\n<span style=\"font-family: Tahoma;\"><strong>Post-war.</strong>  The lock industry boomed following the war.  Schlage’s cylindrical lock became the standard, and the Ten Strike and Align-a-Lock were invented, forcing locksmithing into a recognized profession.  The first-ever locksmith school – Lockmasters – was founded in 1955, as well as the trade organization of The Associated Locksmiths of America. </span>\r\n\r\n<span style=\"font-family: Tahoma;\"><strong>Locksmithing today</strong>.  New technology, coupled with an increasing need for more secure locks (as well as commercial locks) moved the locksmith profession rapidly forward following the post-war innovations.  In the 1980’s, the government began regulating locksmithing, requiring licensing and certification in some states, and standardizing the profession.  The digital age ushered in the advent of electronic locks, and locksmithing continues to evolve to suit the modern times. </span>\r\n<p align=\"right\"><strong><em>by Tampa Bay Lock &amp; Safe\r\n\r\n</em></strong><a href=\"file:///C:/Documents%20and%20Settings/Keith%20Rossignol/Desktop/Tampa/HTLM/A-Brief-History-of-Locksmiths.html#top\">Back to Top</a></p>\r\n<p align=\"center\"></p>", "A Brief History of Locksmiths", "", "inherit", "open", "open", "", "50-revision-2", "", "", "2013-02-04 01:30:11", "2013-02-04 01:30:11", "", "50", "http://tampa.keylocksmith.in/fl/?p=60", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("62", "1", "2013-02-04 01:37:58", "2013-02-04 01:37:58", "<span style=\"font-family: Tahoma;\"><span style=\"color: black;\">Tampa Bay Lock &amp; Safe is a trusted locksmith in your local area.  We know how hard it is to find someone you can trust with all of your locksmith needs.  At Tampa Bay Lock &amp; Safe, we do our best to provide an affordable, trustworthy and fast experience. </span></span>\n\n<span style=\"font-family: Tahoma;\"><span style=\"color: #808080;\"><span style=\"color: black;\">We hope you enjoy our website and all the information we have provided.  If you would like to contact us to find out more, feel free to call (813) 232-5625, or email us at</span><span style=\"color: black;\">Support@keylocksmith/Tampa.</span>\n</span></span>\n<p align=\"center\"><span style=\"font-family: Tahoma;\"><span style=\"color: #808080;\"><span style=\"font-size: small;\"><span style=\"font-family: Tahoma;\"><span style=\"color: #0000ff;\"><span style=\"font-family: Impact;\">Contact Us Today</span>\n</span>\n</span></span><a href=\"mailto:Support@keylocksmith/Tampa\"><span style=\"font-size: small;\"><span style=\"font-family: Tahoma; font-size: small;\">Support@keylocksmith/Tampa</span></span></a></span></span></p>\n<p align=\"center\"><span style=\"color: black; font-family: Tahoma;\">(813) 232-5625</span></p>", "Contact Us", "", "inherit", "open", "open", "", "61-revision", "", "", "2013-02-04 01:37:58", "2013-02-04 01:37:58", "", "61", "http://tampa.keylocksmith.in/fl/?p=62", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("63", "1", "2013-02-04 01:38:08", "2013-02-04 01:38:08", "<span style=\"font-family: Tahoma;\"><span style=\"color: black;\">Tampa Bay Lock &amp; Safe is a trusted locksmith in your local area.  We know how hard it is to find someone you can trust with all of your locksmith needs.  At Tampa Bay Lock &amp; Safe, we do our best to provide an affordable, trustworthy and fast experience. </span></span>\r\n\r\n<span style=\"font-family: Tahoma;\"><span style=\"color: #808080;\"><span style=\"color: black;\">We hope you enjoy our website and all the information we have provided.  If you would like to contact us to find out more, feel free to call (813) 232-5625, or email us at</span><span style=\"color: black;\">Support@keylocksmith/Tampa.</span>\r\n</span></span>\r\n<p align=\"center\"><span style=\"font-family: Tahoma;\"><span style=\"color: #808080;\"><span style=\"font-size: small;\"><span style=\"font-family: Tahoma;\"><span style=\"color: #0000ff;\"><span style=\"font-family: Impact;\">Contact Us Today</span>\r\n</span>\r\n</span></span><a href=\"mailto:Support@keylocksmith/Tampa\"><span style=\"font-size: small;\"><span style=\"font-family: Tahoma; font-size: small;\">Support@keylocksmith/Tampa</span></span></a></span></span></p>\r\n<p align=\"center\"><span style=\"color: black; font-family: Tahoma;\">(813) 232-5625</span></p>", "Contact Us", "", "inherit", "open", "open", "", "61-revision-2", "", "", "2013-02-04 01:38:08", "2013-02-04 01:38:08", "", "61", "http://tampa.keylocksmith.in/fl/?p=63", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("64", "1", "2013-02-04 01:40:01", "2013-02-04 01:40:01", "<strong><em><span style=\"color: #33cccc;\">Article</span>Section</em></strong>\r\n\r\n&nbsp;\r\n\r\n<strong><strong>  </strong>5 Ways a Good Locksmith Can Protect Your Home\r\n</strong>\r\n\r\n<span style=\"font-family: Tahoma;\">A locksmith does much more than just pick locks and retrieve jammed keys. As a matter of fact, when it comes to your home’s security, a locksmith is invaluable. If you are interested in ensuring the home safety of you and your family, then you need to know what kind of safety-related services a locksmith can provide for you. Here are five ways a good locksmith can protect your home:</span>\r\n\r\n<strong>High security locks.</strong> Your front door, as well as other external doors to your home, should be equipped with a high security dead bolt lock. Simpler locks, such as those found on your home’s internal doors, are much easier to get past, so it pays to know the difference and see to it that a qualified locksmith installs the proper locks where they count the most.\r\n\r\n<strong>Alarm systems.</strong> Did you know that your local locksmith may also be able to install a new security system in your home (or replace an old one)? That’s right - for everything from wiring the home to programming the keypad - a locksmith can get the job done.\r\n\r\n<strong>Customized locks.</strong> Perhaps it’s not your front door you want secured, but rather your smaller valuables and important belongings. For example, if you have a special filing cabinet where you store the deed to your house, savings bonds, and passports, then you will want to protect those documents from getting in to the hands of the wrong people. A locksmith can manufacture a custom locking system for any unit inside your home.\r\n\r\n<strong>Window locks.</strong> Many home intruders forego the high security, front door dead bolts in favor of coming in through a window. Fortunately, you can take the necessary measures to deter any unwanted guests by hiring a locksmith to install window locks.\r\n\r\n<strong>Outside areas.</strong> It goes without saying that you don’t want your home to be vulnerable to intruders . . . but have you considered the security needs of your outside areas? A qualified locksmith can help guide you through an outdoor safety plan that will cover security for your pool/hot tub area, dog house, shed, workshop, garden, grill space, and more.\r\n<p align=\"right\"><strong><em>Best Tampa Bay Lock &amp; Safe</em></strong></p>\r\n<a href=\"http://tampa.keylocksmith.in/fl/\">Back to Top</a>\r\n\r\n<hr />\r\n\r\n<span style=\"font-family: Tahoma;\">Tampa Bay Lock &amp; Safe is your local locksmith that is dedicated to helping you with your auto and home locksmith services. If you would like to schedule an appointment, you can call us at (813) 232-5625 or email us at Support@keylocksmith/Tampa and we will get back to you within 24 hours.</span>\r\n\r\n&nbsp;", "5 Ways a Good Locksmith Can Protect Your Home", "", "publish", "open", "open", "", "5-ways-a-good-locksmith-can-protect-your-home", "", "", "2013-02-10 15:21:26", "2013-02-10 15:21:26", "", "0", "http://tampa.keylocksmith.in/fl/?page_id=64", "3", "page", "", "0");
INSERT INTO `wp_posts` VALUES("135", "1", "2013-02-10 15:18:41", "2013-02-10 15:18:41", "&nbsp;\r\n\r\n<strong><strong>  </strong>5 Ways a Good Locksmith Can Protect Your Home\r\n</strong>\r\n\r\n<span style=\"font-family: Tahoma;\">A locksmith does much more than just pick locks and retrieve jammed keys. As a matter of fact, when it comes to your home’s security, a locksmith is invaluable. If you are interested in ensuring the home safety of you and your family, then you need to know what kind of safety-related services a locksmith can provide for you. Here are five ways a good locksmith can protect your home:</span>\r\n\r\n<strong>High security locks.</strong> Your front door, as well as other external doors to your home, should be equipped with a high security dead bolt lock. Simpler locks, such as those found on your home’s internal doors, are much easier to get past, so it pays to know the difference and see to it that a qualified locksmith installs the proper locks where they count the most.\r\n\r\n<strong>Alarm systems.</strong> Did you know that your local locksmith may also be able to install a new security system in your home (or replace an old one)? That’s right - for everything from wiring the home to programming the keypad - a locksmith can get the job done.\r\n\r\n<strong>Customized locks.</strong> Perhaps it’s not your front door you want secured, but rather your smaller valuables and important belongings. For example, if you have a special filing cabinet where you store the deed to your house, savings bonds, and passports, then you will want to protect those documents from getting in to the hands of the wrong people. A locksmith can manufacture a custom locking system for any unit inside your home.\r\n\r\n<strong>Window locks.</strong> Many home intruders forego the high security, front door dead bolts in favor of coming in through a window. Fortunately, you can take the necessary measures to deter any unwanted guests by hiring a locksmith to install window locks.\r\n\r\n<strong>Outside areas.</strong> It goes without saying that you don’t want your home to be vulnerable to intruders . . . but have you considered the security needs of your outside areas? A qualified locksmith can help guide you through an outdoor safety plan that will cover security for your pool/hot tub area, dog house, shed, workshop, garden, grill space, and more.\r\n<p align=\"right\"><strong><em>Best Tampa Bay Lock &amp; Safe</em></strong></p>\r\n<a href=\"http://tampa.keylocksmith.in/fl/\">Back to Top</a>\r\n\r\n<hr />\r\n\r\n<span style=\"font-family: Tahoma;\">Tampa Bay Lock &amp; Safe is your local locksmith that is dedicated to helping you with your auto and home locksmith services. If you would like to schedule an appointment, you can call us at (813) 232-5625 or email us at Support@keylocksmith/Tampa and we will get back to you within 24 hours.</span>\r\n\r\n&nbsp;", "5 Ways a Good Locksmith Can Protect Your Home", "", "inherit", "open", "open", "", "64-revision-7", "", "", "2013-02-10 15:18:41", "2013-02-10 15:18:41", "", "64", "http://tampa.keylocksmith.in/fl/?p=135", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("70", "1", "2013-02-04 01:36:27", "2013-02-04 01:36:27", "<span style=\"font-family: Tahoma;\">It seems safe to assume that there have been locksmiths around since the advent of locks.  After all, wherever there is a lock, there is an opportunity to get hopelessly locked out, right?  But when did the locksmith profession separate itself from basic lock picking, and how has it evolved over the years?  Here is a brief history of locksmiths:</span>\r\n\r\n<span style=\"font-family: Tahoma;\"><strong>Middle Ages.</strong>  Although locks and keys were around before the Middle Ages, locksmithing did not become an individually recognized specialty until this time period.  The term “locksmith” is actually a derivation of the word “blacksmith.”  During the Middle Ages, blacksmiths were the artisans who created metal battle gear for the knights and their horses.  However, it wasn’t unusual for blacksmiths to also forge locks and keys.  Those blacksmiths who branched out into specializing in the making of locks and keys came to be known as locksmiths. </span>\r\n\r\n<span style=\"font-family: Tahoma;\"><strong>Early 1900’s.</strong>  In response to growing security threats, locks began to change significantly after the turn of the century.  By the 1930’s, locksmithing was performed by a variety of related business owners, from clockmakers to gun repairers, and locksmithing was considered a craft – not a profession.  It was typically something that was passed down from generation to generation.  During this time, the Ilco Simplex key duplicating machine was invented. </span>\r\n\r\n<span style=\"font-family: Tahoma;\"><strong>World War I.</strong>  Because most locksmiths and lock manufacturers devoted their skills to the war effort during this time period, very little changed in the design of locks.  The Post Type cutter was invented for the manufacture of automobile keys, and the padlock was invented for cabinets, toward the end of the war. </span>\r\n\r\n<span style=\"font-family: Tahoma;\"><strong>Post-war.</strong>  The lock industry boomed following the war.  Schlage’s cylindrical lock became the standard, and the Ten Strike and Align-a-Lock were invented, forcing locksmithing into a recognized profession.  The first-ever locksmith school – Lockmasters – was founded in 1955, as well as the trade organization of The Associated Locksmiths of America. </span>\r\n\r\n<span style=\"font-family: Tahoma;\"><strong>Locksmithing today</strong>.  New technology, coupled with an increasing need for more secure locks (as well as commercial locks) moved the locksmith profession rapidly forward following the post-war innovations.  In the 1980’s, the government began regulating locksmithing, requiring licensing and certification in some states, and standardizing the profession.  The digital age ushered in the advent of electronic locks, and locksmithing continues to evolve to suit the modern times. </span>\r\n<p align=\"right\"><strong><em>by Tampa Bay Lock &amp; Safe</em></strong></p>\r\n<a href=\"http://tampa.keylocksmith.in/fl/\">Back to Top</a>\r\n<p align=\"center\"></p>", "A Brief History of Locksmiths", "", "inherit", "open", "open", "", "50-revision-3", "", "", "2013-02-04 01:36:27", "2013-02-04 01:36:27", "", "50", "http://tampa.keylocksmith.in/fl/?p=70", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("65", "1", "2013-02-04 01:39:58", "2013-02-04 01:39:58", "<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n<tbody>\n<tr>\n<td align=\"left\" valign=\"top\"><strong><em><span style=\"color: #55aaff;\">Article</span><span style=\"color: #808080;\">Section</span></em></strong></td>\n<td align=\"left\" valign=\"top\">\n<p align=\"right\"><img src=\"file:///C:/Documents%20and%20Settings/Keith%20Rossignol/Desktop/Tampa/HTLM/images/print04.gif\" alt=\"\" align=\"baseline\" border=\"0\" hspace=\"0\" />  <a>Print This Page</a>\n\n<img src=\"file:///C:/Documents%20and%20Settings/Keith%20Rossignol/Desktop/Tampa/HTLM/images/fav.gif\" alt=\"\" align=\"baseline\" border=\"0\" hspace=\"0\" /> <a>Add To Favorites</a></p>\n</td>\n</tr>\n</tbody>\n</table>\n<strong><strong>  </strong>\n5 Ways a Good Locksmith Can Protect Your Home\n</strong>\n\n<span style=\"font-family: Tahoma;\">A locksmith does much more than just pick locks and retrieve jammed keys. As a matter of fact, when it comes to your home’s security, a locksmith is invaluable. If you are interested in ensuring the home safety of you and your family, then you need to know what kind of safety-related services a locksmith can provide for you. Here are five ways a good locksmith can protect your home:\n\n<strong>High security locks.</strong> Your front door, as well as other external doors to your home, should be equipped with a high security dead bolt lock. Simpler locks, such as those found on your home’s internal doors, are much easier to get past, so it pays to know the difference and see to it that a qualified locksmith installs the proper locks where they count the most.\n\n<strong>Alarm systems.</strong> Did you know that your local locksmith may also be able to install a new security system in your home (or replace an old one)? That’s right - for everything from wiring the home to programming the keypad - a locksmith can get the job done.\n\n<strong>Customized locks.</strong> Perhaps it’s not your front door you want secured, but rather your smaller valuables and important belongings. For example, if you have a special filing cabinet where you store the deed to your house, savings bonds, and passports, then you will want to protect those documents from getting in to the hands of the wrong people. A locksmith can manufacture a custom locking system for any unit inside your home.\n\n<strong>Window locks.</strong> Many home intruders forego the high security, front door dead bolts in favor of coming in through a window. Fortunately, you can take the necessary measures to deter any unwanted guests by hiring a locksmith to install window locks.\n\n<strong>Outside areas.</strong> It goes without saying that you don’t want your home to be vulnerable to intruders . . . but have you considered the security needs of your outside areas? A qualified locksmith can help guide you through an outdoor safety plan that will cover security for your pool/hot tub area, dog house, shed, workshop, garden, grill space, and more.</span>\n<p align=\"right\"><strong><em>by Tampa Bay Lock &amp; Safe\n\n</em></strong><a href=\"file:///C:/Documents%20and%20Settings/Keith%20Rossignol/Desktop/Tampa/HTLM/5-Ways-a-Good-Locksmith-Can-Protect-Your-Home.html#top\">Back to Top</a></p>\n<p align=\"center\"></p>\n\n\n<hr />\n\n<span style=\"font-family: Tahoma;\">Tampa Bay Lock &amp; Safe is your local locksmith that is dedicated to helping you with your auto and home locksmith services. If you would like to schedule an appointment, you can call us at (813) 232-5625 or email us at Support@keylocksmith/Tampa and we will get back to you within 24 hours.</span>\n\n&nbsp;", "", "", "inherit", "open", "open", "", "64-revision", "", "", "2013-02-04 01:39:58", "2013-02-04 01:39:58", "", "64", "http://tampa.keylocksmith.in/fl/?p=65", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("68", "1", "2013-02-04 01:41:09", "2013-02-04 01:41:09", "<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td align=\"left\" valign=\"top\"><strong><em><span style=\"color: #55aaff;\">Article</span><span style=\"color: #808080;\">Section</span></em></strong></td>\r\n<td align=\"left\" valign=\"top\">\r\n<p align=\"right\"><img src=\"file:///C:/Documents%20and%20Settings/Keith%20Rossignol/Desktop/Tampa/HTLM/images/print04.gif\" alt=\"\" align=\"baseline\" border=\"0\" hspace=\"0\" /></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<strong><strong>  </strong>\r\n5 Ways a Good Locksmith Can Protect Your Home\r\n</strong>\r\n\r\n<span style=\"font-family: Tahoma;\">A locksmith does much more than just pick locks and retrieve jammed keys. As a matter of fact, when it comes to your home’s security, a locksmith is invaluable. If you are interested in ensuring the home safety of you and your family, then you need to know what kind of safety-related services a locksmith can provide for you. Here are five ways a good locksmith can protect your home:</span>\r\n\r\n<strong>High security locks.</strong> Your front door, as well as other external doors to your home, should be equipped with a high security dead bolt lock. Simpler locks, such as those found on your home’s internal doors, are much easier to get past, so it pays to know the difference and see to it that a qualified locksmith installs the proper locks where they count the most.\r\n\r\n<strong>Alarm systems.</strong> Did you know that your local locksmith may also be able to install a new security system in your home (or replace an old one)? That’s right - for everything from wiring the home to programming the keypad - a locksmith can get the job done.\r\n\r\n<strong>Customized locks.</strong> Perhaps it’s not your front door you want secured, but rather your smaller valuables and important belongings. For example, if you have a special filing cabinet where you store the deed to your house, savings bonds, and passports, then you will want to protect those documents from getting in to the hands of the wrong people. A locksmith can manufacture a custom locking system for any unit inside your home.\r\n\r\n<strong>Window locks.</strong> Many home intruders forego the high security, front door dead bolts in favor of coming in through a window. Fortunately, you can take the necessary measures to deter any unwanted guests by hiring a locksmith to install window locks.\r\n\r\n<strong>Outside areas.</strong> It goes without saying that you don’t want your home to be vulnerable to intruders . . . but have you considered the security needs of your outside areas? A qualified locksmith can help guide you through an outdoor safety plan that will cover security for your pool/hot tub area, dog house, shed, workshop, garden, grill space, and more.\r\n<p align=\"right\"><strong><em>Best Tampa Bay Lock &amp; Safe</em></strong></p>\r\n<a href=\"file:///C:/Documents%20and%20Settings/Keith%20Rossignol/Desktop/Tampa/HTLM/5-Ways-a-Good-Locksmith-Can-Protect-Your-Home.html#top\">Back to Top</a>\r\n\r\n<hr />\r\n\r\n<span style=\"font-family: Tahoma;\">Tampa Bay Lock &amp; Safe is your local locksmith that is dedicated to helping you with your auto and home locksmith services. If you would like to schedule an appointment, you can call us at (813) 232-5625 or email us at Support@keylocksmith/Tampa and we will get back to you within 24 hours.</span>\r\n\r\n&nbsp;", "5 Ways a Good Locksmith Can Protect Your Home", "", "inherit", "open", "open", "", "64-revision-3", "", "", "2013-02-04 01:41:09", "2013-02-04 01:41:09", "", "64", "http://tampa.keylocksmith.in/fl/?p=68", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("66", "1", "2013-02-04 01:41:02", "2013-02-04 01:41:02", "<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n<tbody>\n<tr>\n<td align=\"left\" valign=\"top\"><strong><em><span style=\"color: #55aaff;\">Article</span><span style=\"color: #808080;\">Section</span></em></strong></td>\n<td align=\"left\" valign=\"top\">\n<p align=\"right\"><img src=\"file:///C:/Documents%20and%20Settings/Keith%20Rossignol/Desktop/Tampa/HTLM/images/print04.gif\" alt=\"\" align=\"baseline\" border=\"0\" hspace=\"0\" /></p>\n</td>\n</tr>\n</tbody>\n</table>\n<strong><strong>  </strong>\n5 Ways a Good Locksmith Can Protect Your Home\n</strong>\n\n<span style=\"font-family: Tahoma;\">A locksmith does much more than just pick locks and retrieve jammed keys. As a matter of fact, when it comes to your home’s security, a locksmith is invaluable. If you are interested in ensuring the home safety of you and your family, then you need to know what kind of safety-related services a locksmith can provide for you. Here are five ways a good locksmith can protect your home:</span>\n\n<strong>High security locks.</strong> Your front door, as well as other external doors to your home, should be equipped with a high security dead bolt lock. Simpler locks, such as those found on your home’s internal doors, are much easier to get past, so it pays to know the difference and see to it that a qualified locksmith installs the proper locks where they count the most.\n\n<strong>Alarm systems.</strong> Did you know that your local locksmith may also be able to install a new security system in your home (or replace an old one)? That’s right - for everything from wiring the home to programming the keypad - a locksmith can get the job done.\n\n<strong>Customized locks.</strong> Perhaps it’s not your front door you want secured, but rather your smaller valuables and important belongings. For example, if you have a special filing cabinet where you store the deed to your house, savings bonds, and passports, then you will want to protect those documents from getting in to the hands of the wrong people. A locksmith can manufacture a custom locking system for any unit inside your home.\n\n<strong>Window locks.</strong> Many home intruders forego the high security, front door dead bolts in favor of coming in through a window. Fortunately, you can take the necessary measures to deter any unwanted guests by hiring a locksmith to install window locks.\n\n<strong>Outside areas.</strong> It goes without saying that you don’t want your home to be vulnerable to intruders . . . but have you considered the security needs of your outside areas? A qualified locksmith can help guide you through an outdoor safety plan that will cover security for your pool/hot tub area, dog house, shed, workshop, garden, grill space, and more.\n<p align=\"right\"><strong><em>Bestby Tampa Bay Lock &amp; Safe</em></strong></p>\n<a href=\"file:///C:/Documents%20and%20Settings/Keith%20Rossignol/Desktop/Tampa/HTLM/5-Ways-a-Good-Locksmith-Can-Protect-Your-Home.html#top\">Back to Top</a>\n\n<hr />\n\n<span style=\"font-family: Tahoma;\">Tampa Bay Lock &amp; Safe is your local locksmith that is dedicated to helping you with your auto and home locksmith services. If you would like to schedule an appointment, you can call us at (813) 232-5625 or email us at Support@keylocksmith/Tampa and we will get back to you within 24 hours.</span>\n\n&nbsp;", "5 Ways a Good Locksmith Can Protect Your Home", "", "inherit", "open", "open", "", "64-autosave", "", "", "2013-02-04 01:41:02", "2013-02-04 01:41:02", "", "64", "http://tampa.keylocksmith.in/fl/?p=66", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("67", "1", "2013-02-04 01:40:01", "2013-02-04 01:40:01", "<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td align=\"left\" valign=\"top\"><strong><em><span style=\"color: #55aaff;\">Article</span><span style=\"color: #808080;\">Section</span></em></strong></td>\r\n<td align=\"left\" valign=\"top\">\r\n<p align=\"right\"><img src=\"file:///C:/Documents%20and%20Settings/Keith%20Rossignol/Desktop/Tampa/HTLM/images/print04.gif\" alt=\"\" align=\"baseline\" border=\"0\" hspace=\"0\" />  <a>Print This Page</a>\r\n\r\n<img src=\"file:///C:/Documents%20and%20Settings/Keith%20Rossignol/Desktop/Tampa/HTLM/images/fav.gif\" alt=\"\" align=\"baseline\" border=\"0\" hspace=\"0\" /> <a>Add To Favorites</a></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<strong><strong>  </strong>\r\n5 Ways a Good Locksmith Can Protect Your Home\r\n</strong>\r\n\r\n<span style=\"font-family: Tahoma;\">A locksmith does much more than just pick locks and retrieve jammed keys. As a matter of fact, when it comes to your home’s security, a locksmith is invaluable. If you are interested in ensuring the home safety of you and your family, then you need to know what kind of safety-related services a locksmith can provide for you. Here are five ways a good locksmith can protect your home:\r\n\r\n<strong>High security locks.</strong> Your front door, as well as other external doors to your home, should be equipped with a high security dead bolt lock. Simpler locks, such as those found on your home’s internal doors, are much easier to get past, so it pays to know the difference and see to it that a qualified locksmith installs the proper locks where they count the most.\r\n\r\n<strong>Alarm systems.</strong> Did you know that your local locksmith may also be able to install a new security system in your home (or replace an old one)? That’s right - for everything from wiring the home to programming the keypad - a locksmith can get the job done.\r\n\r\n<strong>Customized locks.</strong> Perhaps it’s not your front door you want secured, but rather your smaller valuables and important belongings. For example, if you have a special filing cabinet where you store the deed to your house, savings bonds, and passports, then you will want to protect those documents from getting in to the hands of the wrong people. A locksmith can manufacture a custom locking system for any unit inside your home.\r\n\r\n<strong>Window locks.</strong> Many home intruders forego the high security, front door dead bolts in favor of coming in through a window. Fortunately, you can take the necessary measures to deter any unwanted guests by hiring a locksmith to install window locks.\r\n\r\n<strong>Outside areas.</strong> It goes without saying that you don’t want your home to be vulnerable to intruders . . . but have you considered the security needs of your outside areas? A qualified locksmith can help guide you through an outdoor safety plan that will cover security for your pool/hot tub area, dog house, shed, workshop, garden, grill space, and more.</span>\r\n<p align=\"right\"><strong><em>by Tampa Bay Lock &amp; Safe\r\n\r\n</em></strong><a href=\"file:///C:/Documents%20and%20Settings/Keith%20Rossignol/Desktop/Tampa/HTLM/5-Ways-a-Good-Locksmith-Can-Protect-Your-Home.html#top\">Back to Top</a></p>\r\n<p align=\"center\"></p>\r\n\r\n\r\n<hr />\r\n\r\n<span style=\"font-family: Tahoma;\">Tampa Bay Lock &amp; Safe is your local locksmith that is dedicated to helping you with your auto and home locksmith services. If you would like to schedule an appointment, you can call us at (813) 232-5625 or email us at Support@keylocksmith/Tampa and we will get back to you within 24 hours.</span>\r\n\r\n&nbsp;", "5 Ways a Good Locksmith Can Protect Your Home", "", "inherit", "open", "open", "", "64-revision-2", "", "", "2013-02-04 01:40:01", "2013-02-04 01:40:01", "", "64", "http://tampa.keylocksmith.in/fl/?p=67", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("69", "1", "2013-02-04 01:41:24", "2013-02-04 01:41:24", "<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td align=\"left\" valign=\"top\"><strong><em><span style=\"color: #55aaff;\">Article</span><span style=\"color: #808080;\">Section</span></em></strong></td>\r\n<td align=\"left\" valign=\"top\">\r\n<p align=\"right\"><img src=\"file:///C:/Documents%20and%20Settings/Keith%20Rossignol/Desktop/Tampa/HTLM/images/print04.gif\" alt=\"\" align=\"baseline\" border=\"0\" hspace=\"0\" /></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<strong><strong>  </strong>5 Ways a Good Locksmith Can Protect Your Home\r\n</strong>\r\n\r\n<span style=\"font-family: Tahoma;\">A locksmith does much more than just pick locks and retrieve jammed keys. As a matter of fact, when it comes to your home’s security, a locksmith is invaluable. If you are interested in ensuring the home safety of you and your family, then you need to know what kind of safety-related services a locksmith can provide for you. Here are five ways a good locksmith can protect your home:</span>\r\n\r\n<strong>High security locks.</strong> Your front door, as well as other external doors to your home, should be equipped with a high security dead bolt lock. Simpler locks, such as those found on your home’s internal doors, are much easier to get past, so it pays to know the difference and see to it that a qualified locksmith installs the proper locks where they count the most.\r\n\r\n<strong>Alarm systems.</strong> Did you know that your local locksmith may also be able to install a new security system in your home (or replace an old one)? That’s right - for everything from wiring the home to programming the keypad - a locksmith can get the job done.\r\n\r\n<strong>Customized locks.</strong> Perhaps it’s not your front door you want secured, but rather your smaller valuables and important belongings. For example, if you have a special filing cabinet where you store the deed to your house, savings bonds, and passports, then you will want to protect those documents from getting in to the hands of the wrong people. A locksmith can manufacture a custom locking system for any unit inside your home.\r\n\r\n<strong>Window locks.</strong> Many home intruders forego the high security, front door dead bolts in favor of coming in through a window. Fortunately, you can take the necessary measures to deter any unwanted guests by hiring a locksmith to install window locks.\r\n\r\n<strong>Outside areas.</strong> It goes without saying that you don’t want your home to be vulnerable to intruders . . . but have you considered the security needs of your outside areas? A qualified locksmith can help guide you through an outdoor safety plan that will cover security for your pool/hot tub area, dog house, shed, workshop, garden, grill space, and more.\r\n<p align=\"right\"><strong><em>Best Tampa Bay Lock &amp; Safe</em></strong></p>\r\n<a href=\"file:///C:/Documents%20and%20Settings/Keith%20Rossignol/Desktop/Tampa/HTLM/5-Ways-a-Good-Locksmith-Can-Protect-Your-Home.html#top\">Back to Top</a>\r\n\r\n<hr />\r\n\r\n<span style=\"font-family: Tahoma;\">Tampa Bay Lock &amp; Safe is your local locksmith that is dedicated to helping you with your auto and home locksmith services. If you would like to schedule an appointment, you can call us at (813) 232-5625 or email us at Support@keylocksmith/Tampa and we will get back to you within 24 hours.</span>\r\n\r\n&nbsp;", "5 Ways a Good Locksmith Can Protect Your Home", "", "inherit", "open", "open", "", "64-revision-4", "", "", "2013-02-04 01:41:24", "2013-02-04 01:41:24", "", "64", "http://tampa.keylocksmith.in/fl/?p=69", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("71", "1", "2013-02-04 01:42:52", "2013-02-04 01:42:52", "<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td align=\"left\" valign=\"top\"><a name=\"top\"></a><strong><em><span style=\"color: #55aaff;\">Article</span><span style=\"color: #808080;\">Section</span></em></strong></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<span style=\"font-family: Tahoma;\">It seems safe to assume that there have been locksmiths around since the advent of locks.  After all, wherever there is a lock, there is an opportunity to get hopelessly locked out, right?  But when did the locksmith profession separate itself from basic lock picking, and how has it evolved over the years?  Here is a brief history of locksmiths:</span>\r\n\r\n<span style=\"font-family: Tahoma;\"><strong>Middle Ages.</strong>  Although locks and keys were around before the Middle Ages, locksmithing did not become an individually recognized specialty until this time period.  The term “locksmith” is actually a derivation of the word “blacksmith.”  During the Middle Ages, blacksmiths were the artisans who created metal battle gear for the knights and their horses.  However, it wasn’t unusual for blacksmiths to also forge locks and keys.  Those blacksmiths who branched out into specializing in the making of locks and keys came to be known as locksmiths. </span>\r\n\r\n<span style=\"font-family: Tahoma;\"><strong>Early 1900’s.</strong>  In response to growing security threats, locks began to change significantly after the turn of the century.  By the 1930’s, locksmithing was performed by a variety of related business owners, from clockmakers to gun repairers, and locksmithing was considered a craft – not a profession.  It was typically something that was passed down from generation to generation.  During this time, the Ilco Simplex key duplicating machine was invented. </span>\r\n\r\n<span style=\"font-family: Tahoma;\"><strong>World War I.</strong>  Because most locksmiths and lock manufacturers devoted their skills to the war effort during this time period, very little changed in the design of locks.  The Post Type cutter was invented for the manufacture of automobile keys, and the padlock was invented for cabinets, toward the end of the war. </span>\r\n\r\n<span style=\"font-family: Tahoma;\"><strong>Post-war.</strong>  The lock industry boomed following the war.  Schlage’s cylindrical lock became the standard, and the Ten Strike and Align-a-Lock were invented, forcing locksmithing into a recognized profession.  The first-ever locksmith school – Lockmasters – was founded in 1955, as well as the trade organization of The Associated Locksmiths of America. </span>\r\n\r\n<span style=\"font-family: Tahoma;\"><strong>Locksmithing today</strong>.  New technology, coupled with an increasing need for more secure locks (as well as commercial locks) moved the locksmith profession rapidly forward following the post-war innovations.  In the 1980’s, the government began regulating locksmithing, requiring licensing and certification in some states, and standardizing the profession.  The digital age ushered in the advent of electronic locks, and locksmithing continues to evolve to suit the modern times. </span>\r\n<p align=\"right\"><strong><em>by Tampa Bay Lock &amp; Safe</em></strong></p>\r\n<a href=\"http://tampa.keylocksmith.in/fl/\">Back to Top</a>\r\n<p align=\"center\"></p>", "A Brief History of Locksmiths", "", "inherit", "open", "open", "", "50-revision-4", "", "", "2013-02-04 01:42:52", "2013-02-04 01:42:52", "", "50", "http://tampa.keylocksmith.in/fl/?p=71", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("72", "1", "2013-02-04 01:38:36", "2013-02-04 01:38:36", "<span style=\"font-family: Tahoma;\"><span style=\"color: black;\">Tampa Bay Lock &amp; Safe is a trusted locksmith in your local area.  We know how hard it is to find someone you can trust with all of your locksmith needs.  At Tampa Bay Lock &amp; Safe, we do our best to provide an affordable, trustworthy and fast experience. </span></span>\r\n\r\n<span style=\"font-family: Tahoma;\"><span style=\"color: #808080;\"><span style=\"color: black;\">We hope you enjoy our website and all the information we have provided.  If you would like to contact us to find out more, feel free to call (813) 232-5625, or email us at</span><span style=\"color: black;\">Support@keylocksmith/Tampa.</span>\r\n</span></span>\r\n<p align=\"center\"><span style=\"font-family: Tahoma;\"><span style=\"color: #808080;\"><span style=\"font-size: small;\"><span style=\"font-family: Tahoma;\"><span style=\"color: #0000ff;\"><span style=\"font-family: Impact;\">Contact Us Today</span>\r\n</span>\r\n</span></span><a href=\"mailto:Support@keylocksmith/Tampa\"><span style=\"font-size: small;\"><span style=\"font-family: Tahoma; font-size: small;\">Support@keylocksmith/Tampa</span></span></a></span></span></p>\r\n<p align=\"center\"><span style=\"color: black; font-family: Tahoma;\">(813) 232-5625</span></p>", "Contact Us", "", "inherit", "open", "open", "", "61-revision-3", "", "", "2013-02-04 01:38:36", "2013-02-04 01:38:36", "", "61", "http://tampa.keylocksmith.in/fl/?p=72", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("73", "1", "2013-02-04 01:42:07", "2013-02-04 01:42:07", "<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td align=\"left\" valign=\"top\"><strong><em><span style=\"color: #55aaff;\">Article</span><span style=\"color: #808080;\">Section</span></em></strong></td>\r\n<td align=\"left\" valign=\"top\">\r\n<p align=\"right\"><img src=\"file:///C:/Documents%20and%20Settings/Keith%20Rossignol/Desktop/Tampa/HTLM/images/print04.gif\" alt=\"\" align=\"baseline\" border=\"0\" hspace=\"0\" /></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<strong><strong>  </strong>5 Ways a Good Locksmith Can Protect Your Home\r\n</strong>\r\n\r\n<span style=\"font-family: Tahoma;\">A locksmith does much more than just pick locks and retrieve jammed keys. As a matter of fact, when it comes to your home’s security, a locksmith is invaluable. If you are interested in ensuring the home safety of you and your family, then you need to know what kind of safety-related services a locksmith can provide for you. Here are five ways a good locksmith can protect your home:</span>\r\n\r\n<strong>High security locks.</strong> Your front door, as well as other external doors to your home, should be equipped with a high security dead bolt lock. Simpler locks, such as those found on your home’s internal doors, are much easier to get past, so it pays to know the difference and see to it that a qualified locksmith installs the proper locks where they count the most.\r\n\r\n<strong>Alarm systems.</strong> Did you know that your local locksmith may also be able to install a new security system in your home (or replace an old one)? That’s right - for everything from wiring the home to programming the keypad - a locksmith can get the job done.\r\n\r\n<strong>Customized locks.</strong> Perhaps it’s not your front door you want secured, but rather your smaller valuables and important belongings. For example, if you have a special filing cabinet where you store the deed to your house, savings bonds, and passports, then you will want to protect those documents from getting in to the hands of the wrong people. A locksmith can manufacture a custom locking system for any unit inside your home.\r\n\r\n<strong>Window locks.</strong> Many home intruders forego the high security, front door dead bolts in favor of coming in through a window. Fortunately, you can take the necessary measures to deter any unwanted guests by hiring a locksmith to install window locks.\r\n\r\n<strong>Outside areas.</strong> It goes without saying that you don’t want your home to be vulnerable to intruders . . . but have you considered the security needs of your outside areas? A qualified locksmith can help guide you through an outdoor safety plan that will cover security for your pool/hot tub area, dog house, shed, workshop, garden, grill space, and more.\r\n<p align=\"right\"><strong><em>Best Tampa Bay Lock &amp; Safe</em></strong></p>\r\n<a href=\"http://tampa.keylocksmith.in/fl/\">Back to Top</a>\r\n\r\n<hr />\r\n\r\n<span style=\"font-family: Tahoma;\">Tampa Bay Lock &amp; Safe is your local locksmith that is dedicated to helping you with your auto and home locksmith services. If you would like to schedule an appointment, you can call us at (813) 232-5625 or email us at Support@keylocksmith/Tampa and we will get back to you within 24 hours.</span>\r\n\r\n&nbsp;", "5 Ways a Good Locksmith Can Protect Your Home", "", "inherit", "open", "open", "", "64-revision-5", "", "", "2013-02-04 01:42:07", "2013-02-04 01:42:07", "", "64", "http://tampa.keylocksmith.in/fl/?p=73", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("74", "1", "2013-02-04 01:34:54", "2013-02-04 01:34:54", "<strong> A Brief History of Locksmiths</strong>\r\n\r\n<span style=\"font-family: Tahoma;\">It seems safe to assume that there have been locksmiths around since the advent of locks.  After all, wherever there is a lock, there is an opportunity to get hopelessly locked out, right?  But when did the locksmith profession separate itself from basic lock picking, and how has it evolved over the years?  Here is a brief history of locksmiths:</span>\r\n\r\n<span style=\"font-family: Tahoma;\"><strong>Middle Ages.</strong>  Although locks and keys were around before the Middle Ages, locksmithing did not become an individually recognized specialty until this time period.  The term “locksmith” is actually a derivation of the word “blacksmith.”  During the Middle Ages, blacksmiths were the artisans who created metal battle gear for the knights and their horses.  However, it wasn’t unusual for blacksmiths to also forge locks and keys.  Those blacksmiths who branched out into specializing in the making of locks and keys came to be known as locksmiths. </span>\r\n\r\n<span style=\"font-family: Tahoma;\"><strong>Early 1900’s.</strong>  In response to growing security threats, locks began to change significantly after the turn of the century.  By the 1930’s, locksmithing was performed by a variety of related business owners, from clockmakers to gun repairers, and locksmithing was considered a craft – not a profession.  It was typically something that was passed down from generation to generation.  During this time, the Ilco Simplex key duplicating machine was invented. </span>\r\n\r\n<span style=\"font-family: Tahoma;\"><strong>World War I.</strong>  Because most locksmiths and lock manufacturers devoted their skills to the war effort during this time period, very little changed in the design of locks.  The Post Type cutter was invented for the manufacture of automobile keys, and the padlock was invented for cabinets, toward the end of the war. </span>\r\n\r\n<span style=\"font-family: Tahoma;\"><strong>Post-war.</strong>  The lock industry boomed following the war.  Schlage’s cylindrical lock became the standard, and the Ten Strike and Align-a-Lock were invented, forcing locksmithing into a recognized profession.  The first-ever locksmith school – Lockmasters – was founded in 1955, as well as the trade organization of The Associated Locksmiths of America. </span>\r\n\r\n<span style=\"font-family: Tahoma;\"><strong>Locksmithing today</strong>.  New technology, coupled with an increasing need for more secure locks (as well as commercial locks) moved the locksmith profession rapidly forward following the post-war innovations.  In the 1980’s, the government began regulating locksmithing, requiring licensing and certification in some states, and standardizing the profession.  The digital age ushered in the advent of electronic locks, and locksmithing continues to evolve to suit the modern times. </span>\r\n<p align=\"right\"><strong><em> Tampa Bay Best Lock &amp; Safe</em></strong></p>\r\n&nbsp;\r\n<p align=\"center\"></p>", "", "", "inherit", "open", "open", "", "52-revision-6", "", "", "2013-02-04 01:34:54", "2013-02-04 01:34:54", "", "52", "http://tampa.keylocksmith.in/fl/?p=74", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("75", "1", "2013-02-04 03:24:20", "2013-02-04 03:24:20", "", "KeyHeader4", "", "inherit", "open", "open", "", "keyheader4", "", "", "2013-02-04 03:24:20", "2013-02-04 03:24:20", "", "0", "http://tampa.keylocksmith.in/fl/wp-content/uploads/2013/02/KeyHeader4.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("76", "1", "2013-02-04 03:24:27", "2013-02-04 03:24:27", "", "KeyHeader4", "", "inherit", "open", "open", "", "keyheader4-2", "", "", "2013-02-04 03:24:27", "2013-02-04 03:24:27", "", "0", "http://tampa.keylocksmith.in/fl/wp-content/uploads/2013/02/KeyHeader41.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("77", "1", "2013-02-04 03:26:12", "2013-02-04 03:26:12", "", "KeyHeader4", "", "inherit", "open", "open", "", "keyheader4-3", "", "", "2013-02-04 03:26:12", "2013-02-04 03:26:12", "", "0", "http://tampa.keylocksmith.in/fl/wp-content/uploads/2013/02/KeyHeader42.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("78", "1", "2013-02-04 03:28:23", "2013-02-04 03:28:23", "", "KeyHeader4", "", "inherit", "open", "open", "", "keyheader4-4", "", "", "2013-02-04 03:28:23", "2013-02-04 03:28:23", "", "0", "http://tampa.keylocksmith.in/fl/wp-content/uploads/2013/02/KeyHeader43.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("79", "1", "2013-02-04 03:30:11", "2013-02-04 03:30:11", "", "KeyHeader4", "", "inherit", "open", "open", "", "keyheader4-5", "", "", "2013-02-04 03:30:11", "2013-02-04 03:30:11", "", "0", "http://tampa.keylocksmith.in/fl/wp-content/uploads/2013/02/KeyHeader44.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("80", "1", "2013-02-04 03:32:10", "2013-02-04 03:32:10", "", "KeyHeader4", "", "inherit", "open", "open", "", "keyheader4-6", "", "", "2013-02-04 03:32:10", "2013-02-04 03:32:10", "", "0", "http://tampa.keylocksmith.in/fl/wp-content/uploads/2013/02/KeyHeader45.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("81", "1", "2013-02-04 03:35:43", "2013-02-04 03:35:43", "", "KeyHeader4", "", "inherit", "open", "open", "", "keyheader4-7", "", "", "2013-02-04 03:35:43", "2013-02-04 03:35:43", "", "0", "http://tampa.keylocksmith.in/fl/wp-content/uploads/2013/02/KeyHeader46.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("82", "1", "2013-02-04 03:37:06", "2013-02-04 03:37:06", "", "KeyHeader4", "", "inherit", "open", "open", "", "keyheader4-8", "", "", "2013-02-04 03:37:06", "2013-02-04 03:37:06", "", "0", "http://tampa.keylocksmith.in/fl/wp-content/uploads/2013/02/KeyHeader47.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("83", "1", "2013-02-04 03:45:59", "2013-02-04 03:45:59", "", "KeyHeader4", "", "inherit", "open", "open", "", "keyheader4-9", "", "", "2013-02-04 03:45:59", "2013-02-04 03:45:59", "", "0", "http://tampa.keylocksmith.in/fl/wp-content/uploads/2013/02/KeyHeader48.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("84", "1", "2013-02-04 04:02:02", "2013-02-04 04:02:02", "", "KeyHeader4", "", "inherit", "open", "open", "", "keyheader4-10", "", "", "2013-02-04 04:02:02", "2013-02-04 04:02:02", "", "0", "http://tampa.keylocksmith.in/fl/wp-content/uploads/2013/02/KeyHeader49.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("85", "1", "2013-02-04 04:03:35", "2013-02-04 04:03:35", "", "KeyHeader4", "", "inherit", "open", "open", "", "keyheader4-11", "", "", "2013-02-04 04:03:35", "2013-02-04 04:03:35", "", "0", "http://tampa.keylocksmith.in/fl/wp-content/uploads/2013/02/KeyHeader410.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("86", "1", "2013-02-04 04:05:39", "2013-02-04 04:05:39", "", "KeyHeader4", "", "inherit", "open", "open", "", "keyheader4-12", "", "", "2013-02-04 04:05:39", "2013-02-04 04:05:39", "", "0", "http://tampa.keylocksmith.in/fl/wp-content/uploads/2013/02/KeyHeader411.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("87", "1", "2013-02-04 04:07:27", "2013-02-04 04:07:27", "", "KeyHeader4", "", "inherit", "open", "open", "", "keyheader4-13", "", "", "2013-02-04 04:07:27", "2013-02-04 04:07:27", "", "0", "http://tampa.keylocksmith.in/fl/wp-content/uploads/2013/02/KeyHeader412.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("88", "1", "2013-02-04 04:08:38", "2013-02-04 04:08:38", "", "KeyHeader4", "", "inherit", "open", "open", "", "keyheader4-14", "", "", "2013-02-04 04:08:38", "2013-02-04 04:08:38", "", "0", "http://tampa.keylocksmith.in/fl/wp-content/uploads/2013/02/KeyHeader413.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("89", "1", "2013-02-04 04:09:34", "2013-02-04 04:09:34", "", "KeyHeader4", "", "inherit", "open", "open", "", "keyheader4-15", "", "", "2013-02-04 04:09:34", "2013-02-04 04:09:34", "", "0", "http://tampa.keylocksmith.in/fl/wp-content/uploads/2013/02/KeyHeader414.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("90", "1", "2013-02-04 05:06:26", "2013-02-04 05:06:26", "", "KeyHeader7", "", "inherit", "open", "open", "", "keyheader7", "", "", "2013-02-04 05:06:26", "2013-02-04 05:06:26", "", "0", "http://tampa.keylocksmith.in/fl/wp-content/uploads/2013/02/KeyHeader7.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("91", "1", "2013-02-04 05:06:32", "2013-02-04 05:06:32", "", "KeyHeader7", "", "inherit", "open", "open", "", "keyheader7-2", "", "", "2013-02-04 05:06:32", "2013-02-04 05:06:32", "", "0", "http://tampa.keylocksmith.in/fl/wp-content/uploads/2013/02/KeyHeader71.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("92", "1", "2013-02-04 05:14:27", "2013-02-04 05:14:27", "", "KeyHeader3", "", "inherit", "open", "open", "", "keyheader3-23", "", "", "2013-02-04 05:14:27", "2013-02-04 05:14:27", "", "0", "http://tampa.keylocksmith.in/fl/wp-content/uploads/2013/02/KeyHeader321.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("93", "1", "2013-02-04 05:30:57", "2013-02-04 05:30:57", "", "KeyHeader7", "", "inherit", "open", "open", "", "keyheader7-3", "", "", "2013-02-04 05:30:57", "2013-02-04 05:30:57", "", "0", "http://tampa.keylocksmith.in/fl/wp-content/uploads/2013/02/KeyHeader72.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("94", "1", "2013-02-04 05:33:11", "2013-02-04 05:33:11", "", "KeyHeader7", "", "inherit", "open", "open", "", "keyheader7-4", "", "", "2013-02-04 05:33:11", "2013-02-04 05:33:11", "", "0", "http://tampa.keylocksmith.in/fl/wp-content/uploads/2013/02/KeyHeader73.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("95", "1", "2013-02-04 05:34:00", "2013-02-04 05:34:00", "", "KeyHeader7", "", "inherit", "open", "open", "", "keyheader7-5", "", "", "2013-02-04 05:34:00", "2013-02-04 05:34:00", "", "0", "http://tampa.keylocksmith.in/fl/wp-content/uploads/2013/02/KeyHeader74.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("96", "1", "2013-02-04 11:43:32", "2013-02-04 11:43:32", "", "KeyHeader7", "", "inherit", "open", "open", "", "keyheader7-6", "", "", "2013-02-04 11:43:32", "2013-02-04 11:43:32", "", "0", "http://tampa.keylocksmith.in/fl/wp-content/uploads/2013/02/KeyHeader75.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("97", "1", "2013-02-04 11:54:01", "2013-02-04 11:54:01", "", "KeyHeader7", "", "inherit", "open", "open", "", "keyheader7-7", "", "", "2013-02-04 11:54:01", "2013-02-04 11:54:01", "", "0", "http://tampa.keylocksmith.in/fl/wp-content/uploads/2013/02/KeyHeader76.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("98", "1", "2013-02-04 11:57:10", "2013-02-04 11:57:10", "", "KeyHeader7", "", "inherit", "open", "open", "", "keyheader7-8", "", "", "2013-02-04 11:57:10", "2013-02-04 11:57:10", "", "0", "http://tampa.keylocksmith.in/fl/wp-content/uploads/2013/02/KeyHeader77.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("99", "1", "2013-02-04 12:03:14", "2013-02-04 12:03:14", "", "KeyHeader7", "", "inherit", "open", "open", "", "keyheader7-9", "", "", "2013-02-04 12:03:14", "2013-02-04 12:03:14", "", "0", "http://tampa.keylocksmith.in/fl/wp-content/uploads/2013/02/KeyHeader78.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("100", "1", "2013-02-04 12:05:06", "2013-02-04 12:05:06", "", "KeyHeader7", "", "inherit", "open", "open", "", "keyheader7-10", "", "", "2013-02-04 12:05:06", "2013-02-04 12:05:06", "", "0", "http://tampa.keylocksmith.in/fl/wp-content/uploads/2013/02/KeyHeader79.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("101", "1", "2013-02-04 12:06:08", "2013-02-04 12:06:08", "", "KeyHeader7", "", "inherit", "open", "open", "", "keyheader7-11", "", "", "2013-02-04 12:06:08", "2013-02-04 12:06:08", "", "0", "http://tampa.keylocksmith.in/fl/wp-content/uploads/2013/02/KeyHeader710.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("102", "1", "2013-02-04 12:07:08", "2013-02-04 12:07:08", "", "KeyHeader7", "", "inherit", "open", "open", "", "keyheader7-12", "", "", "2013-02-04 12:07:08", "2013-02-04 12:07:08", "", "0", "http://tampa.keylocksmith.in/fl/wp-content/uploads/2013/02/KeyHeader711.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("103", "1", "2013-02-04 12:15:24", "2013-02-04 12:15:24", "", "KeyHeader7", "", "inherit", "open", "open", "", "keyheader7-13", "", "", "2013-02-04 12:15:24", "2013-02-04 12:15:24", "", "0", "http://tampa.keylocksmith.in/fl/wp-content/uploads/2013/02/KeyHeader712.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("104", "1", "2013-02-04 12:17:15", "2013-02-04 12:17:15", "", "KeyHeader7", "", "inherit", "open", "open", "", "keyheader7-14", "", "", "2013-02-04 12:17:15", "2013-02-04 12:17:15", "", "0", "http://tampa.keylocksmith.in/fl/wp-content/uploads/2013/02/KeyHeader713.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("105", "1", "2013-02-04 14:01:34", "2013-02-04 14:01:34", "", "KeyHeader7", "", "inherit", "open", "open", "", "keyheader7-15", "", "", "2013-02-04 14:01:34", "2013-02-04 14:01:34", "", "0", "http://tampa.keylocksmith.in/fl/wp-content/uploads/2013/02/KeyHeader714.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("106", "1", "2013-02-04 14:13:52", "2013-02-04 14:13:52", "", "KeyHeader8", "", "inherit", "open", "open", "", "keyheader8", "", "", "2013-02-04 14:13:52", "2013-02-04 14:13:52", "", "0", "http://tampa.keylocksmith.in/fl/wp-content/uploads/2013/02/KeyHeader8.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("108", "1", "2013-02-04 01:47:25", "2013-02-04 01:47:25", "<strong> A Brief History of Locksmiths</strong>\r\n\r\n<span style=\"font-family: Tahoma;\">It seems safe to assume that there have been locksmiths around since the advent of locks.  After all, wherever there is a lock, there is an opportunity to get hopelessly locked out, right?  But when did the locksmith profession separate itself from basic lock picking, and how has it evolved over the years?  Here is a brief history of locksmiths:</span>\r\n\r\n<span style=\"font-family: Tahoma;\"><strong>Middle Ages.</strong>  Although locks and keys were around before the Middle Ages, locksmithing did not become an individually recognized specialty until this time period.  The term “locksmith” is actually a derivation of the word “blacksmith.”  During the Middle Ages, blacksmiths were the artisans who created metal battle gear for the knights and their horses.  However, it wasn’t unusual for blacksmiths to also forge locks and keys.  Those blacksmiths who branched out into specializing in the making of locks and keys came to be known as locksmiths. </span>\r\n\r\n<span style=\"font-family: Tahoma;\"><strong>Early 1900’s.</strong>  In response to growing security threats, locks began to change significantly after the turn of the century.  By the 1930’s, locksmithing was performed by a variety of related business owners, from clockmakers to gun repairers, and locksmithing was considered a craft – not a profession.  It was typically something that was passed down from generation to generation.  During this time, the Ilco Simplex key duplicating machine was invented. </span>\r\n\r\n<span style=\"font-family: Tahoma;\"><strong>World War I.</strong>  Because most locksmiths and lock manufacturers devoted their skills to the war effort during this time period, very little changed in the design of locks.  The Post Type cutter was invented for the manufacture of automobile keys, and the padlock was invented for cabinets, toward the end of the war. </span>\r\n\r\n<span style=\"font-family: Tahoma;\"><strong>Post-war.</strong>  The lock industry boomed following the war.  Schlage’s cylindrical lock became the standard, and the Ten Strike and Align-a-Lock were invented, forcing locksmithing into a recognized profession.  The first-ever locksmith school – Lockmasters – was founded in 1955, as well as the trade organization of The Associated Locksmiths of America. </span>\r\n\r\n<span style=\"font-family: Tahoma;\"><strong>Locksmithing today</strong>.  New technology, coupled with an increasing need for more secure locks (as well as commercial locks) moved the locksmith profession rapidly forward following the post-war innovations.  In the 1980’s, the government began regulating locksmithing, requiring licensing and certification in some states, and standardizing the profession.  The digital age ushered in the advent of electronic locks, and locksmithing continues to evolve to suit the modern times. </span>\r\n<p align=\"right\"><strong><em> Tampa Bay Best Lock &amp; Safe</em></strong></p>\r\n&nbsp;\r\n<p align=\"center\"></p>", "A Brief History of Locksmiths", "", "inherit", "open", "open", "", "52-revision-7", "", "", "2013-02-04 01:47:25", "2013-02-04 01:47:25", "", "52", "http://tampa.keylocksmith.in/fl/?p=108", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("109", "1", "2013-02-04 14:20:51", "2013-02-04 14:20:51", "<strong> A Brief History of Locksmiths</strong>\r\n\r\n<span style=\"font-family: georgia, palatino;\">It seems safe to assume that there have been locksmiths around since the advent of locks.  After all, wherever there is a lock, there is an opportunity to get hopelessly locked out, right?  But when did the locksmith profession separate itself from basic lock picking, and how has it evolved over the years?  Here is a brief history of locksmiths:</span>\r\n\r\n<span style=\"font-family: Tahoma;\"><strong>Middle Ages.</strong>  Although locks and keys were around before the Middle Ages, locksmithing did not become an individually recognized specialty until this time period.  The term “locksmith” is actually a derivation of the word “blacksmith.”  During the Middle Ages, blacksmiths were the artisans who created metal battle gear for the knights and their horses.  However, it wasn’t unusual for blacksmiths to also forge locks and keys.  Those blacksmiths who branched out into specializing in the making of locks and keys came to be known as locksmiths. </span>\r\n\r\n<span style=\"font-family: Tahoma;\"><strong>Early 1900’s.</strong>  In response to growing security threats, locks began to change significantly after the turn of the century.  By the 1930’s, locksmithing was performed by a variety of related business owners, from clockmakers to gun repairers, and locksmithing was considered a craft – not a profession.  It was typically something that was passed down from generation to generation.  During this time, the Ilco Simplex key duplicating machine was invented. </span>\r\n\r\n<span style=\"font-family: Tahoma;\"><strong>World War I.</strong>  Because most locksmiths and lock manufacturers devoted their skills to the war effort during this time period, very little changed in the design of locks.  The Post Type cutter was invented for the manufacture of automobile keys, and the padlock was invented for cabinets, toward the end of the war. </span>\r\n\r\n<span style=\"font-family: Tahoma;\"><strong>Post-war.</strong>  The lock industry boomed following the war.  Schlage’s cylindrical lock became the standard, and the Ten Strike and Align-a-Lock were invented, forcing locksmithing into a recognized profession.  The first-ever locksmith school – Lockmasters – was founded in 1955, as well as the trade organization of The Associated Locksmiths of America. </span>\r\n\r\n<span style=\"font-family: Tahoma;\"><strong>Locksmithing today</strong>.  New technology, coupled with an increasing need for more secure locks (as well as commercial locks) moved the locksmith profession rapidly forward following the post-war innovations.  In the 1980’s, the government began regulating locksmithing, requiring licensing and certification in some states, and standardizing the profession.  The digital age ushered in the advent of electronic locks, and locksmithing continues to evolve to suit the modern times. </span>\r\n<p align=\"right\"><strong><em> Tampa Bay Best Lock &amp; Safe</em></strong></p>\r\n&nbsp;\r\n<p align=\"center\"></p>", "A Brief History of Locksmiths", "", "inherit", "open", "open", "", "52-revision-8", "", "", "2013-02-04 14:20:51", "2013-02-04 14:20:51", "", "52", "http://tampa.keylocksmith.in/fl/?p=109", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("111", "1", "2013-02-04 15:30:47", "2013-02-04 15:30:47", " ", "EzThemeOrangeOnWhite", "", "publish", "open", "open", "", "ezthemeorangeonwhite", "", "", "2013-02-04 15:30:47", "2013-02-04 15:30:47", "", "0", "http://tampa.keylocksmith.in/fl/?p=111", "0", "pbcezmobtheme", "", "0");
INSERT INTO `wp_posts` VALUES("112", "1", "2013-02-04 15:30:47", "2013-02-04 15:30:47", " ", "EzThemeRedOnCream", "", "publish", "open", "open", "", "ezthemeredoncream", "", "", "2013-02-04 15:30:47", "2013-02-04 15:30:47", "", "0", "http://tampa.keylocksmith.in/fl/?p=112", "0", "pbcezmobtheme", "", "0");
INSERT INTO `wp_posts` VALUES("113", "1", "2013-02-04 15:30:48", "2013-02-04 15:30:48", " ", "EzThemeBlackOnGrey", "", "publish", "open", "open", "", "ezthemeblackongrey", "", "", "2013-02-04 15:30:48", "2013-02-04 15:30:48", "", "0", "http://tampa.keylocksmith.in/fl/?p=113", "0", "pbcezmobtheme", "", "0");
INSERT INTO `wp_posts` VALUES("114", "1", "2013-02-04 15:30:48", "2013-02-04 15:30:48", " ", "EzThemeBlueOnWhite", "", "publish", "open", "open", "", "ezthemeblueonwhite", "", "", "2013-02-04 15:30:48", "2013-02-04 15:30:48", "", "0", "http://tampa.keylocksmith.in/fl/?p=114", "0", "pbcezmobtheme", "", "0");
INSERT INTO `wp_posts` VALUES("115", "1", "2013-02-04 15:30:49", "2013-02-04 15:30:49", " ", "EZThemeRedAndGreyOnWhite", "", "publish", "open", "open", "", "ezthemeredandgreyonwhite", "", "", "2013-02-04 15:30:49", "2013-02-04 15:30:49", "", "0", "http://tampa.keylocksmith.in/fl/?p=115", "0", "pbcezmobtheme", "", "0");
INSERT INTO `wp_posts` VALUES("116", "1", "2013-02-04 15:30:49", "2013-02-04 15:30:49", " ", "EzThemeGreyOnWhite", "", "publish", "open", "open", "", "ezthemegreyonwhite", "", "", "2013-02-04 15:30:49", "2013-02-04 15:30:49", "", "0", "http://tampa.keylocksmith.in/fl/?p=116", "0", "pbcezmobtheme", "", "0");
INSERT INTO `wp_posts` VALUES("117", "1", "2013-02-04 15:30:50", "2013-02-04 15:30:50", " ", "EzThemeGreenOnGreen", "", "publish", "open", "open", "", "ezthemegreenongreen", "", "", "2013-02-04 15:30:50", "2013-02-04 15:30:50", "", "0", "http://tampa.keylocksmith.in/fl/?p=117", "0", "pbcezmobtheme", "", "0");
INSERT INTO `wp_posts` VALUES("118", "1", "2013-02-04 15:30:50", "2013-02-04 15:30:50", " ", "EzThemeRedOnGreen", "", "publish", "open", "open", "", "ezthemeredongreen", "", "", "2013-02-04 15:30:50", "2013-02-04 15:30:50", "", "0", "http://tampa.keylocksmith.in/fl/?p=118", "0", "pbcezmobtheme", "", "0");
INSERT INTO `wp_posts` VALUES("119", "1", "2013-02-04 15:30:50", "2013-02-04 15:30:50", " ", "EzThemeRedOnBlack", "", "publish", "closed", "closed", "", "ezthemeredonblack", "", "", "2013-02-19 15:46:53", "2013-02-19 15:46:53", "", "0", "http://tampa.keylocksmith.in/fl/?p=119", "0", "pbcezmobtheme", "", "0");
INSERT INTO `wp_posts` VALUES("120", "1", "2013-02-04 15:30:50", "2013-02-04 15:30:50", " ", "EzThemeBlueOnBlue", "", "publish", "open", "open", "", "ezthemeblueonblue", "", "", "2013-02-04 15:30:50", "2013-02-04 15:30:50", "", "0", "http://tampa.keylocksmith.in/fl/?p=120", "0", "pbcezmobtheme", "", "0");
INSERT INTO `wp_posts` VALUES("121", "1", "2013-02-04 15:30:51", "2013-02-04 15:30:51", " ", "EzThemeBrownOnYellow", "", "publish", "open", "open", "", "ezthemebrownonyellow", "", "", "2013-02-04 15:30:51", "2013-02-04 15:30:51", "", "0", "http://tampa.keylocksmith.in/fl/?p=121", "0", "pbcezmobtheme", "", "0");
INSERT INTO `wp_posts` VALUES("122", "1", "2013-02-04 15:30:51", "2013-02-04 15:30:51", " ", "EzThemeWhiteOnCream", "", "publish", "open", "open", "", "ezthemewhiteoncream", "", "", "2013-02-04 15:30:51", "2013-02-04 15:30:51", "", "0", "http://tampa.keylocksmith.in/fl/?p=122", "0", "pbcezmobtheme", "", "0");
INSERT INTO `wp_posts` VALUES("123", "1", "2013-02-16 10:34:10", "2013-02-16 10:34:10", "<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">(201) 391-1177</span></h1>\r\n<p style=\"text-align: center;\">[ezmbtel id=123]</p>\r\n\r\n<h1 style=\"text-align: center;\"></h1>\r\n<a href=\"http://tampa.keylocksmith.in/fl/wp-content/uploads/2013/03/lockout-services-westwood-nj-a-locksmith-callout.jpg\"><img class=\"size-full wp-image-181 aligncenter\" title=\"lockout-services-westwood-nj-a-locksmith-callout\" src=\"http://tampa.keylocksmith.in/fl/wp-content/uploads/2013/03/lockout-services-westwood-nj-a-locksmith-callout.jpg\" alt=\"\" width=\"220\" height=\"200\" /></a>[ezmbmenu]\r\n<h1 style=\"text-align: center;\">(201) 391-1177</h1>", "A-1 Locksmith LLC", "", "publish", "closed", "closed", "", "locksmith-tampa", "", "", "2013-03-07 10:33:28", "2013-03-07 10:33:28", "", "0", "http://tampa.keylocksmith.in/fl/?post_type=pbcezmobsite&#038;p=123", "0", "pbcezmobsite", "", "0");
INSERT INTO `wp_posts` VALUES("124", "1", "2013-02-04 15:32:15", "2013-02-04 15:32:15", "", "KeyHeader2", "", "inherit", "open", "open", "", "keyheader2-2", "", "", "2013-02-04 15:32:15", "2013-02-04 15:32:15", "", "0", "http://tampa.keylocksmith.in/fl/wp-content/uploads/2013/02/KeyHeader21.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("125", "1", "2013-02-06 10:55:19", "2013-02-06 10:55:19", "", "KeyHeader4", "", "inherit", "open", "open", "", "keyheader4-16", "", "", "2013-02-06 10:55:19", "2013-02-06 10:55:19", "", "0", "http://tampa.keylocksmith.in/fl/wp-content/uploads/2013/02/KeyHeader415.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("126", "1", "2013-02-06 11:05:56", "2013-02-06 11:05:56", "", "KeyHeader3Mobial", "", "inherit", "open", "open", "", "keyheader3mobial", "", "", "2013-02-06 11:05:56", "2013-02-06 11:05:56", "", "0", "http://tampa.keylocksmith.in/fl/wp-content/uploads/2013/02/KeyHeader3Mobial.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("152", "1", "2013-02-19 17:43:06", "2013-02-19 17:43:06", "<strong><span style=\"font-size: medium; font-family: arial, helvetica, sans-serif;\">How We  Can Save You Time and Money</span></strong>\r\n\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">A mobile locksmith is a locksmithing professional that operates business from a vehicle.  Mobile locksmiths offer a wide array of services that can get you out of a bind – and quickly – and operate on a 24/7 basis, so you are sure to find a mobile locksmith whenever you might need one.  If you are interested in learning more about what this type of professional can do for you, then check out these ways in which mobile locksmiths can save you time and money:</span>\r\n\r\n<strong>Residential lockouts.</strong>  Have you ever locked yourself out of your house when you are in a big hurry?  If you’re like most people, the answer is yes.  Few things are as time-consuming as trying to find creative ways to gain entry in the case of a residential lockout, and taking a shortcut (like breaking a window) can wind up being a very costly mistake.  If you find yourself in this jam, your best bet is to call a mobile locksmith.\r\n\r\n<strong>Office lockouts.</strong>  It may not be that you’re locked out of your home, but that you are locked out of your place of business.  More specifically, you could even find that you cannot gain access to very important business documents because you cannot find the key to fit a filing cabinet or vault.  A qualified locksmith can help you obtain entry if you face any type of worksite lockout.  When it comes to work, time is money, so it’s without question that a locksmith is a valuable asset in these situations.\r\n\r\n<strong>Automobile lockouts.</strong>  If you are like most people, then you know all too well that sinking feeling that comes with locking your keys in your car.  Not only can this be a real nuisance, but it can also be dangerous, especially if it’s a hot day and your beloved pet is in the car.  Unfortunately, this type of situation is not unheard of.  In such emergencies, in which time is of the essence, you can rely on a mobile locksmith to do whatever it takes to get your car open, and as quickly as possible.\r\n\r\n<strong>Lock modification.</strong>  If you decide for any reason that you need to change your lock and key, you will find that you may be able to save a lot of money by having a mobile locksmith modify your existing lock system, as opposed to purchasing a new one altogether.\r\n\r\nA locksmith is responsible for some very important tasks – some in which your own safety is at stake.  Not all locksmiths are created equal.  You need a locksmith you can trust to be professional, reliable, and competent.  Tampa Locksmith Services is that company.  Reach us by phone, at -877-746-7166.", "About Us", "", "publish", "closed", "closed", "", "about-us", "", "", "2013-03-03 23:42:12", "2013-03-03 23:42:12", "", "123", "http://tampa.keylocksmith.in/fl/?post_type=pbcezmobsite&#038;p=152", "2", "pbcezmobsite", "", "0");
INSERT INTO `wp_posts` VALUES("153", "1", "2013-02-19 18:00:58", "0000-00-00 00:00:00", "", "Auto Draft", "", "auto-draft", "open", "open", "", "", "", "", "2013-02-19 18:00:58", "0000-00-00 00:00:00", "", "0", "http://tampa.keylocksmith.in/fl/?p=153", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("154", "1", "2013-02-04 15:30:50", "2013-02-04 15:30:50", "", "Theme Lock Smith", "", "publish", "closed", "closed", "", "ezthemeredonblack-2", "", "", "2013-03-03 15:27:31", "2013-03-03 15:27:31", "", "0", "http://tampa.keylocksmith.in/fl/?pbcezmobtheme=ezthemeredonblack-2", "0", "pbcezmobtheme", "", "0");
INSERT INTO `wp_posts` VALUES("155", "1", "2013-02-20 03:27:21", "2013-02-20 03:27:21", "", "RockStar-FB-Images", "", "inherit", "open", "open", "", "rockstar-fb-images", "", "", "2013-02-20 03:27:21", "2013-02-20 03:27:21", "", "0", "http://tampa.keylocksmith.in/fl/wp-content/uploads/2013/02/RockStar-FB-Images.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("156", "1", "2013-02-20 03:29:09", "2013-02-20 03:29:09", "", "Facebook Timeline_1", "", "inherit", "open", "open", "", "facebook-timeline_1", "", "", "2013-02-20 03:29:09", "2013-02-20 03:29:09", "", "0", "http://tampa.keylocksmith.in/fl/wp-content/uploads/2013/02/Facebook-Timeline_1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("157", "1", "2013-02-20 09:31:26", "2013-02-20 09:31:26", "<h1><span style=\"font-size: large;\">We Specialize In:</span></h1>\r\n<strong><span style=\"font-size: medium;\">· » Lockout</span></strong>\r\n<strong><span style=\"font-size: medium;\"> · » High security locks installations</span></strong>\r\n<strong><span style=\"font-size: medium;\"> · » Locks change </span></strong>\r\n<strong><span style=\"font-size: medium;\"> · » Automobile Entry</span></strong>\r\n<strong><span style=\"font-size: medium;\"> · » Lost keys:</span></strong>\r\n<strong><span style=\"font-size: medium;\">· »Commercial Lock Services</span></strong>\r\n<strong><span style=\"font-size: medium;\">· » Open  of safe</span></strong>\r\n<h2>We can cut you a new key for your existing lock without having your keys.</h2>", "Services!", "", "publish", "closed", "closed", "", "services", "", "", "2013-03-03 23:41:23", "2013-03-03 23:41:23", "", "123", "http://tampa.keylocksmith.in/fl/?post_type=pbcezmobsite&#038;p=157", "3", "pbcezmobsite", "", "0");
INSERT INTO `wp_posts` VALUES("158", "1", "2013-03-03 23:34:29", "2013-03-03 23:34:29", "<h1><span style=\"font-size: large;\">We Specialize In:</span></h1>\n<strong><span style=\"font-size: medium;\">· » Lockout</span></strong>\n<strong><span style=\"font-size: medium;\"> · » High security locks installations</span></strong>\n<strong><span style=\"font-size: medium;\"> · » Locks change </span></strong>\n<strong><span style=\"font-size: medium;\"> · » Automobile Entry</span></strong>\n<strong><span style=\"font-size: medium;\"> · » Lost keys:</span></strong>\n<strong><span style=\"font-size: medium;\">· »Commercial Lock Services</span></strong>\n<strong><span style=\"font-size: medium;\">· » Open  of safe</span></strong>\n<h2>We can cut you a new key for your existing lock without having your keys.</h2>", "Services!", "", "inherit", "open", "open", "", "157-autosave", "", "", "2013-03-03 23:34:29", "2013-03-03 23:34:29", "", "157", "http://tampa.keylocksmith.in/fl/?p=158", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("128", "1", "2013-02-08 01:43:15", "2013-02-08 01:43:15", "", "KeyHeader9", "", "inherit", "open", "open", "", "keyheader9", "", "", "2013-02-08 01:43:15", "2013-02-08 01:43:15", "", "0", "http://tampa.keylocksmith.in/fl/wp-content/uploads/2013/02/KeyHeader92.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("129", "1", "2013-02-08 01:44:12", "2013-02-08 01:44:12", "", "KeyHeader9", "", "inherit", "open", "open", "", "keyheader9-2", "", "", "2013-02-08 01:44:12", "2013-02-08 01:44:12", "", "0", "http://tampa.keylocksmith.in/fl/wp-content/uploads/2013/02/KeyHeader93.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("134", "1", "2013-02-04 01:43:40", "2013-02-04 01:43:40", "<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td align=\"left\" valign=\"top\"><strong><em><span style=\"color: #55aaff;\">Article</span><span style=\"color: #808080;\">Section</span></em></strong></td>\r\n<td align=\"left\" valign=\"top\">\r\n<p align=\"right\"><img src=\"file:///C:/Documents%20and%20Settings/Keith%20Rossignol/Desktop/Tampa/HTLM/images/print04.gif\" alt=\"\" align=\"baseline\" border=\"0\" hspace=\"0\" /></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<strong><strong>  </strong>5 Ways a Good Locksmith Can Protect Your Home\r\n</strong>\r\n\r\n<span style=\"font-family: Tahoma;\">A locksmith does much more than just pick locks and retrieve jammed keys. As a matter of fact, when it comes to your home’s security, a locksmith is invaluable. If you are interested in ensuring the home safety of you and your family, then you need to know what kind of safety-related services a locksmith can provide for you. Here are five ways a good locksmith can protect your home:</span>\r\n\r\n<strong>High security locks.</strong> Your front door, as well as other external doors to your home, should be equipped with a high security dead bolt lock. Simpler locks, such as those found on your home’s internal doors, are much easier to get past, so it pays to know the difference and see to it that a qualified locksmith installs the proper locks where they count the most.\r\n\r\n<strong>Alarm systems.</strong> Did you know that your local locksmith may also be able to install a new security system in your home (or replace an old one)? That’s right - for everything from wiring the home to programming the keypad - a locksmith can get the job done.\r\n\r\n<strong>Customized locks.</strong> Perhaps it’s not your front door you want secured, but rather your smaller valuables and important belongings. For example, if you have a special filing cabinet where you store the deed to your house, savings bonds, and passports, then you will want to protect those documents from getting in to the hands of the wrong people. A locksmith can manufacture a custom locking system for any unit inside your home.\r\n\r\n<strong>Window locks.</strong> Many home intruders forego the high security, front door dead bolts in favor of coming in through a window. Fortunately, you can take the necessary measures to deter any unwanted guests by hiring a locksmith to install window locks.\r\n\r\n<strong>Outside areas.</strong> It goes without saying that you don’t want your home to be vulnerable to intruders . . . but have you considered the security needs of your outside areas? A qualified locksmith can help guide you through an outdoor safety plan that will cover security for your pool/hot tub area, dog house, shed, workshop, garden, grill space, and more.\r\n<p align=\"right\"><strong><em>Best Tampa Bay Lock &amp; Safe</em></strong></p>\r\n<a href=\"http://tampa.keylocksmith.in/fl/\">Back to Top</a>\r\n\r\n<hr />\r\n\r\n<span style=\"font-family: Tahoma;\">Tampa Bay Lock &amp; Safe is your local locksmith that is dedicated to helping you with your auto and home locksmith services. If you would like to schedule an appointment, you can call us at (813) 232-5625 or email us at Support@keylocksmith/Tampa and we will get back to you within 24 hours.</span>\r\n\r\n&nbsp;", "5 Ways a Good Locksmith Can Protect Your Home", "", "inherit", "open", "open", "", "64-revision-6", "", "", "2013-02-04 01:43:40", "2013-02-04 01:43:40", "", "64", "http://tampa.keylocksmith.in/fl/?p=134", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("136", "1", "2013-02-10 15:19:44", "2013-02-10 15:19:44", "ArticleSection\r\n\r\n&nbsp;\r\n\r\n<strong><strong>  </strong>5 Ways a Good Locksmith Can Protect Your Home\r\n</strong>\r\n\r\n<span style=\"font-family: Tahoma;\">A locksmith does much more than just pick locks and retrieve jammed keys. As a matter of fact, when it comes to your home’s security, a locksmith is invaluable. If you are interested in ensuring the home safety of you and your family, then you need to know what kind of safety-related services a locksmith can provide for you. Here are five ways a good locksmith can protect your home:</span>\r\n\r\n<strong>High security locks.</strong> Your front door, as well as other external doors to your home, should be equipped with a high security dead bolt lock. Simpler locks, such as those found on your home’s internal doors, are much easier to get past, so it pays to know the difference and see to it that a qualified locksmith installs the proper locks where they count the most.\r\n\r\n<strong>Alarm systems.</strong> Did you know that your local locksmith may also be able to install a new security system in your home (or replace an old one)? That’s right - for everything from wiring the home to programming the keypad - a locksmith can get the job done.\r\n\r\n<strong>Customized locks.</strong> Perhaps it’s not your front door you want secured, but rather your smaller valuables and important belongings. For example, if you have a special filing cabinet where you store the deed to your house, savings bonds, and passports, then you will want to protect those documents from getting in to the hands of the wrong people. A locksmith can manufacture a custom locking system for any unit inside your home.\r\n\r\n<strong>Window locks.</strong> Many home intruders forego the high security, front door dead bolts in favor of coming in through a window. Fortunately, you can take the necessary measures to deter any unwanted guests by hiring a locksmith to install window locks.\r\n\r\n<strong>Outside areas.</strong> It goes without saying that you don’t want your home to be vulnerable to intruders . . . but have you considered the security needs of your outside areas? A qualified locksmith can help guide you through an outdoor safety plan that will cover security for your pool/hot tub area, dog house, shed, workshop, garden, grill space, and more.\r\n<p align=\"right\"><strong><em>Best Tampa Bay Lock &amp; Safe</em></strong></p>\r\n<a href=\"http://tampa.keylocksmith.in/fl/\">Back to Top</a>\r\n\r\n<hr />\r\n\r\n<span style=\"font-family: Tahoma;\">Tampa Bay Lock &amp; Safe is your local locksmith that is dedicated to helping you with your auto and home locksmith services. If you would like to schedule an appointment, you can call us at (813) 232-5625 or email us at Support@keylocksmith/Tampa and we will get back to you within 24 hours.</span>\r\n\r\n&nbsp;", "5 Ways a Good Locksmith Can Protect Your Home", "", "inherit", "open", "open", "", "64-revision-8", "", "", "2013-02-10 15:19:44", "2013-02-10 15:19:44", "", "64", "http://tampa.keylocksmith.in/fl/?p=136", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("137", "1", "2013-02-10 15:20:47", "2013-02-10 15:20:47", "<strong><em>ArticleSection</em></strong>\r\n\r\n&nbsp;\r\n\r\n<strong><strong>  </strong>5 Ways a Good Locksmith Can Protect Your Home\r\n</strong>\r\n\r\n<span style=\"font-family: Tahoma;\">A locksmith does much more than just pick locks and retrieve jammed keys. As a matter of fact, when it comes to your home’s security, a locksmith is invaluable. If you are interested in ensuring the home safety of you and your family, then you need to know what kind of safety-related services a locksmith can provide for you. Here are five ways a good locksmith can protect your home:</span>\r\n\r\n<strong>High security locks.</strong> Your front door, as well as other external doors to your home, should be equipped with a high security dead bolt lock. Simpler locks, such as those found on your home’s internal doors, are much easier to get past, so it pays to know the difference and see to it that a qualified locksmith installs the proper locks where they count the most.\r\n\r\n<strong>Alarm systems.</strong> Did you know that your local locksmith may also be able to install a new security system in your home (or replace an old one)? That’s right - for everything from wiring the home to programming the keypad - a locksmith can get the job done.\r\n\r\n<strong>Customized locks.</strong> Perhaps it’s not your front door you want secured, but rather your smaller valuables and important belongings. For example, if you have a special filing cabinet where you store the deed to your house, savings bonds, and passports, then you will want to protect those documents from getting in to the hands of the wrong people. A locksmith can manufacture a custom locking system for any unit inside your home.\r\n\r\n<strong>Window locks.</strong> Many home intruders forego the high security, front door dead bolts in favor of coming in through a window. Fortunately, you can take the necessary measures to deter any unwanted guests by hiring a locksmith to install window locks.\r\n\r\n<strong>Outside areas.</strong> It goes without saying that you don’t want your home to be vulnerable to intruders . . . but have you considered the security needs of your outside areas? A qualified locksmith can help guide you through an outdoor safety plan that will cover security for your pool/hot tub area, dog house, shed, workshop, garden, grill space, and more.\r\n<p align=\"right\"><strong><em>Best Tampa Bay Lock &amp; Safe</em></strong></p>\r\n<a href=\"http://tampa.keylocksmith.in/fl/\">Back to Top</a>\r\n\r\n<hr />\r\n\r\n<span style=\"font-family: Tahoma;\">Tampa Bay Lock &amp; Safe is your local locksmith that is dedicated to helping you with your auto and home locksmith services. If you would like to schedule an appointment, you can call us at (813) 232-5625 or email us at Support@keylocksmith/Tampa and we will get back to you within 24 hours.</span>\r\n\r\n&nbsp;", "5 Ways a Good Locksmith Can Protect Your Home", "", "inherit", "open", "open", "", "64-revision-9", "", "", "2013-02-10 15:20:47", "2013-02-10 15:20:47", "", "64", "http://tampa.keylocksmith.in/fl/?p=137", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("150", "1", "2013-02-19 17:26:04", "2013-02-19 17:26:04", "[ezmbmap id=150]", "Location Map", "", "publish", "closed", "closed", "", "location-map", "", "", "2013-03-03 15:17:21", "2013-03-03 15:17:21", "", "123", "http://tampa.keylocksmith.in/fl/?post_type=pbcezmobsite&#038;p=150", "2", "pbcezmobsite", "", "0");
INSERT INTO `wp_posts` VALUES("145", "1", "2013-02-16 10:29:31", "2013-02-16 10:29:31", "", "KeyHeader Mobial", "", "inherit", "open", "open", "", "keyheader-mobial", "", "", "2013-02-16 10:29:31", "2013-02-16 10:29:31", "", "0", "http://tampa.keylocksmith.in/fl/wp-content/uploads/2013/02/KeyHeader-Mobial.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("149", "1", "2013-03-07 10:34:36", "2013-03-07 10:34:36", "<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">(201) 391-1177</span></h1>\n<p style=\"text-align: center;\">[ezmbtel id=123]</p>\n\n<h1 style=\"text-align: center;\"></h1>\n<a href=\"http://tampa.keylocksmith.in/fl/wp-content/uploads/2013/03/lockout-services-westwood-nj-a-locksmith-callout.jpg\"><img class=\"size-full wp-image-181 aligncenter\" title=\"lockout-services-westwood-nj-a-locksmith-callout\" src=\"http://tampa.keylocksmith.in/fl/wp-content/uploads/2013/03/lockout-services-westwood-nj-a-locksmith-callout.jpg\" alt=\"\" width=\"220\" height=\"200\" /></a>[ezmbmenu]\n<h1 style=\"text-align: center;\">(201) 391-1177</h1>", "A-1 Locksmith LLC", "", "inherit", "open", "open", "", "123-autosave", "", "", "2013-03-07 10:34:36", "2013-03-07 10:34:36", "", "123", "http://tampa.keylocksmith.in/fl/?p=149", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("147", "1", "2013-02-16 10:51:02", "2013-02-16 10:51:02", "", "KeyHeader9", "", "inherit", "open", "open", "", "keyheader9-3", "", "", "2013-02-16 10:51:02", "2013-02-16 10:51:02", "", "0", "http://tampa.keylocksmith.in/fl/wp-content/uploads/2013/02/KeyHeader94.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("148", "1", "2013-02-16 10:51:12", "2013-02-16 10:51:12", "", "KeyHeader9", "", "inherit", "open", "open", "", "keyheader9-4", "", "", "2013-02-16 10:51:12", "2013-02-16 10:51:12", "", "0", "http://tampa.keylocksmith.in/fl/wp-content/uploads/2013/02/KeyHeader95.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("159", "1", "2013-02-20 09:47:08", "2013-02-20 09:47:08", "<h2>Pricing Guidlines are $29 Service fee</h2>\r\n<h2>plus labor and hardware</h2>\r\n<h2>Lockout Service: starts at $29*</h2>\r\n<h2>Re-Keying starts at $25*</h2>", "Basic Fee  ", "", "publish", "closed", "closed", "", "pricing-guidlines", "", "", "2013-02-20 10:06:50", "2013-02-20 10:06:50", "", "123", "http://tampa.keylocksmith.in/fl/?post_type=pbcezmobsite&#038;p=159", "4", "pbcezmobsite", "", "0");
INSERT INTO `wp_posts` VALUES("160", "1", "2013-02-20 10:06:35", "2013-02-20 10:06:35", "<h2>Pricing Guidlines are $29 Service fee</h2>\n<h2>plus labor and hardware</h2>\n<h2>Lockout Service: starts at $29*</h2>\n<h2>Re-Keying starts at $25*</h2>", "Basic Fee  ", "", "inherit", "open", "open", "", "159-autosave", "", "", "2013-02-20 10:06:35", "2013-02-20 10:06:35", "", "159", "http://tampa.keylocksmith.in/fl/?p=160", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("161", "1", "2013-02-20 16:13:19", "2013-02-20 16:13:19", "<span style=\"font-size: medium; font-family: arial,helvetica,sans-serif;\">How We  Can Save You Time and Money</span>\n\n<span style=\"font-family: arial,helvetica,sans-serif;\">A mobile locksmith is a locksmithing professional that operates business from a vehicle.  Mobile locksmiths offer a wide array of services that can get you out of a bind – and quickly – and operate on a 24/7 basis, so you are sure to find a mobile locksmith whenever you might need one.  If you are interested in learning more about what this type of professional can do for you, then check out these ways in which mobile locksmiths can save you time and money:</span>\n\n<strong>Residential lockouts.</strong>  Have you ever locked yourself out of your house when you are in a big hurry?  If you’re like most people, the answer is yes.  Few things are as time-consuming as trying to find creative ways to gain entry in the case of a residential lockout, and taking a shortcut (like breaking a window) can wind up being a very costly mistake.  If you find yourself in this jam, your best bet is to call a mobile locksmith.\n\n<strong>Office lockouts.</strong>  It may not be that you’re locked out of your home, but that you are locked out of your place of business.  More specifically, you could even find that you cannot gain access to very important business documents because you cannot find the key to fit a filing cabinet or vault.  A qualified locksmith can help you obtain entry if you face any type of worksite lockout.  When it comes to work, time is money, so it’s without question that a locksmith is a valuable asset in these situations.\n\n<strong>Automobile lockouts.</strong>  If you are like most people, then you know all too well that sinking feeling that comes with locking your keys in your car.  Not only can this be a real nuisance, but it can also be dangerous, especially if it’s a hot day and your beloved pet is in the car.  Unfortunately, this type of situation is not unheard of.  In such emergencies, in which time is of the essence, you can rely on a mobile locksmith to do whatever it takes to get your car open, and as quickly as possible.\n\n<strong>Lock modification.</strong>  If you decide for any reason that you need to change your lock and key, you will find that you may be able to save a lot of money by having a mobile locksmith modify your existing lock system, as opposed to purchasing a new one altogether.\n\nA locksmith is responsible for some very important tasks – some in which your own safety is at stake.  Not all locksmiths are created equal.  You need a locksmith you can trust to be professional, reliable, and competent.  Tampa Locksmith Services is that company.  Reach us by phone, at -877-746-7166.", "About Us", "", "inherit", "open", "open", "", "152-autosave", "", "", "2013-02-20 16:13:19", "2013-02-20 16:13:19", "", "152", "http://tampa.keylocksmith.in/fl/?p=161", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("162", "1", "2013-02-20 16:18:47", "2013-02-20 16:18:47", "[ezmbcoupon id=162]", "Coupon", "", "publish", "closed", "closed", "", "coupon", "", "", "2013-03-03 15:28:51", "2013-03-03 15:28:51", "", "123", "http://tampa.keylocksmith.in/fl/?post_type=pbcezmobsite&#038;p=162", "6", "pbcezmobsite", "", "0");
INSERT INTO `wp_posts` VALUES("163", "1", "2013-02-20 16:19:54", "2013-02-20 16:19:54", "[ezmbcoupon id=162]", "Coupon", "", "inherit", "open", "open", "", "162-autosave", "", "", "2013-02-20 16:19:54", "2013-02-20 16:19:54", "", "162", "http://tampa.keylocksmith.in/fl/?p=163", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("164", "1", "2013-02-20 16:25:18", "2013-02-20 16:25:18", "[ezmbcontact id=164]", "E-Mail Us", "", "publish", "closed", "closed", "", "e-mail-us", "", "", "2013-03-03 15:09:25", "2013-03-03 15:09:25", "", "123", "http://tampa.keylocksmith.in/fl/?post_type=pbcezmobsite&#038;p=164", "7", "pbcezmobsite", "", "0");
INSERT INTO `wp_posts` VALUES("165", "1", "2013-03-03 15:05:13", "2013-03-03 15:05:13", "[ezmbcontact id=164]", "E-Mail Us", "", "inherit", "open", "open", "", "164-autosave", "", "", "2013-03-03 15:05:13", "2013-03-03 15:05:13", "", "164", "http://tampa.keylocksmith.in/fl/?p=165", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("166", "1", "2013-02-21 13:45:27", "2013-02-21 13:45:27", "", "Facebook Timeline_4", "", "inherit", "open", "open", "", "facebook-timeline_4", "", "", "2013-02-21 13:45:27", "2013-02-21 13:45:27", "", "0", "http://tampa.keylocksmith.in/fl/wp-content/uploads/2013/02/Facebook-Timeline_4.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("167", "1", "2013-02-21 13:55:47", "2013-02-21 13:55:47", "", "untitled", "", "inherit", "open", "open", "", "untitled", "", "", "2013-02-21 13:55:47", "2013-02-21 13:55:47", "", "0", "http://tampa.keylocksmith.in/fl/wp-content/uploads/2013/02/untitled.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("168", "1", "2013-02-23 01:54:14", "2013-02-23 01:54:14", "", "Graphic2", "", "inherit", "open", "open", "", "graphic2-5", "", "", "2013-02-23 01:54:14", "2013-02-23 01:54:14", "", "0", "http://tampa.keylocksmith.in/fl/wp-content/uploads/2013/02/Graphic24.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("169", "1", "2013-02-23 02:09:23", "2013-02-23 02:09:23", "", "Theme Lock Smith", "", "inherit", "open", "open", "", "154-autosave", "", "", "2013-02-23 02:09:23", "2013-02-23 02:09:23", "", "154", "http://tampa.keylocksmith.in/fl/?p=169", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("170", "1", "2013-02-04 15:30:50", "2013-02-04 15:30:50", "", "Theme Locksmith 2", "", "publish", "closed", "closed", "", "ezthemeredonblack-2-2", "", "", "2013-02-23 02:57:15", "2013-02-23 02:57:15", "", "0", "http://tampa.keylocksmith.in/fl/?pbcezmobtheme=ezthemeredonblack-2-2", "0", "pbcezmobtheme", "", "0");
INSERT INTO `wp_posts` VALUES("171", "1", "2013-02-23 02:56:17", "2013-02-23 02:56:17", "", "Graphic10", "", "inherit", "open", "open", "", "graphic10", "", "", "2013-02-23 02:56:17", "2013-02-23 02:56:17", "", "0", "http://tampa.keylocksmith.in/fl/wp-content/uploads/2013/02/Graphic10.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("172", "1", "2013-02-27 12:41:13", "2013-02-27 12:41:13", "", "KeyHeader10", "", "inherit", "open", "open", "", "keyheader10", "", "", "2013-02-27 12:41:13", "2013-02-27 12:41:13", "", "0", "http://tampa.keylocksmith.in/fl/wp-content/uploads/2013/02/KeyHeader10.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("173", "1", "2013-02-27 12:49:40", "2013-02-27 12:49:40", "", "KeyHeader12", "", "inherit", "open", "open", "", "keyheader12", "", "", "2013-02-27 12:49:40", "2013-02-27 12:49:40", "", "0", "http://tampa.keylocksmith.in/fl/wp-content/uploads/2013/02/KeyHeader12.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("174", "1", "2013-02-27 12:51:23", "2013-02-27 12:51:23", "", "KeyHeader13", "", "inherit", "open", "open", "", "keyheader13", "", "", "2013-02-27 12:51:23", "2013-02-27 12:51:23", "", "0", "http://tampa.keylocksmith.in/fl/wp-content/uploads/2013/02/KeyHeader13.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("175", "1", "2013-02-27 12:52:31", "2013-02-27 12:52:31", "", "KeyHeader12", "", "inherit", "open", "open", "", "keyheader12-2", "", "", "2013-02-27 12:52:31", "2013-02-27 12:52:31", "", "0", "http://tampa.keylocksmith.in/fl/wp-content/uploads/2013/02/KeyHeader121.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("181", "1", "2013-03-03 09:49:55", "2013-03-03 09:49:55", "", "lockout-services-westwood-nj-a-locksmith-callout", "", "inherit", "open", "open", "", "lockout-services-westwood-nj-a-locksmith-callout", "", "", "2013-03-03 09:49:55", "2013-03-03 09:49:55", "", "123", "http://tampa.keylocksmith.in/fl/wp-content/uploads/2013/03/lockout-services-westwood-nj-a-locksmith-callout.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("177", "1", "2013-03-03 09:42:53", "2013-03-03 09:42:53", "", "Graphic24-300x194", "", "inherit", "open", "open", "", "graphic24-300x194", "", "", "2013-03-03 09:42:53", "2013-03-03 09:42:53", "", "0", "http://tampa.keylocksmith.in/fl/wp-content/uploads/2013/03/Graphic24-300x194.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("179", "1", "2013-02-16 10:34:10", "2013-02-16 10:34:10", "[ezmbtel id=179][ezmbmenu]\n<h1 style=\"text-align: center;\">(813) 314-7840</h1>", "Best Locksmith In Tampa", "", "publish", "closed", "closed", "", "locksmith-tampa-2", "", "", "2013-02-16 10:34:10", "2013-02-16 10:34:10", "", "0", "http://tampa.keylocksmith.in/fl/?post_type=pbcezmobsite&amp;p=123", "0", "pbcezmobsite", "", "0");
INSERT INTO `wp_posts` VALUES("180", "1", "2013-03-03 09:44:25", "2013-03-03 09:44:25", "", "Graphic24-300x1941", "", "inherit", "open", "open", "", "graphic24-300x1941", "", "", "2013-03-03 09:44:25", "2013-03-03 09:44:25", "", "0", "http://tampa.keylocksmith.in/fl/wp-content/uploads/2013/03/Graphic24-300x1941.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("182", "1", "2013-03-03 09:59:32", "2013-03-03 09:59:32", "", "Graphic1", "", "inherit", "open", "open", "", "graphic1-2", "", "", "2013-03-03 09:59:32", "2013-03-03 09:59:32", "", "0", "http://tampa.keylocksmith.in/fl/wp-content/uploads/2013/03/Graphic1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("183", "1", "2013-03-03 10:07:04", "2013-03-03 10:07:04", "", "Graphic1a", "", "inherit", "open", "open", "", "graphic1a", "", "", "2013-03-03 10:07:04", "2013-03-03 10:07:04", "", "0", "http://tampa.keylocksmith.in/fl/wp-content/uploads/2013/03/Graphic1a.jpg", "0", "attachment", "image/jpeg", "0");

/* INSERT TABLE DATA: wp_term_relationships */
INSERT INTO `wp_term_relationships` VALUES("1", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("2", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("3", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("4", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("5", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("6", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("7", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("52", "4", "0");
INSERT INTO `wp_term_relationships` VALUES("52", "3", "0");
INSERT INTO `wp_term_relationships` VALUES("52", "5", "0");
INSERT INTO `wp_term_relationships` VALUES("52", "6", "0");
INSERT INTO `wp_term_relationships` VALUES("52", "7", "0");
INSERT INTO `wp_term_relationships` VALUES("52", "8", "0");

/* INSERT TABLE DATA: wp_term_taxonomy */
INSERT INTO `wp_term_taxonomy` VALUES("1", "1", "category", "", "0", "0");
INSERT INTO `wp_term_taxonomy` VALUES("2", "2", "link_category", "", "0", "7");
INSERT INTO `wp_term_taxonomy` VALUES("3", "3", "category", "", "0", "1");
INSERT INTO `wp_term_taxonomy` VALUES("4", "4", "post_tag", "", "0", "1");
INSERT INTO `wp_term_taxonomy` VALUES("5", "5", "post_tag", "", "0", "1");
INSERT INTO `wp_term_taxonomy` VALUES("6", "6", "post_tag", "", "0", "1");
INSERT INTO `wp_term_taxonomy` VALUES("7", "7", "post_tag", "", "0", "1");
INSERT INTO `wp_term_taxonomy` VALUES("8", "8", "post_tag", "", "0", "1");

/* INSERT TABLE DATA: wp_terms */
INSERT INTO `wp_terms` VALUES("1", "Uncategorized", "uncategorized", "0");
INSERT INTO `wp_terms` VALUES("2", "Blogroll", "blogroll", "0");
INSERT INTO `wp_terms` VALUES("3", "Lock &amp; Key", "lock-key", "0");
INSERT INTO `wp_terms` VALUES("4", "Locksmith", "locksmith", "0");
INSERT INTO `wp_terms` VALUES("5", "Lock Smith", "lock-smith", "0");
INSERT INTO `wp_terms` VALUES("6", "Lost Keys", "lost-keys", "0");
INSERT INTO `wp_terms` VALUES("7", "24 Hour", "24-hour", "0");
INSERT INTO `wp_terms` VALUES("8", "House Keys", "house-keys", "0");

/* INSERT TABLE DATA: wp_usermeta */
INSERT INTO `wp_usermeta` VALUES("1", "1", "first_name", "");
INSERT INTO `wp_usermeta` VALUES("2", "1", "last_name", "");
INSERT INTO `wp_usermeta` VALUES("3", "1", "nickname", "admin");
INSERT INTO `wp_usermeta` VALUES("4", "1", "description", "");
INSERT INTO `wp_usermeta` VALUES("5", "1", "rich_editing", "true");
INSERT INTO `wp_usermeta` VALUES("6", "1", "comment_shortcuts", "false");
INSERT INTO `wp_usermeta` VALUES("7", "1", "admin_color", "fresh");
INSERT INTO `wp_usermeta` VALUES("8", "1", "use_ssl", "0");
INSERT INTO `wp_usermeta` VALUES("9", "1", "show_admin_bar_front", "true");
INSERT INTO `wp_usermeta` VALUES("10", "1", "wp_capabilities", "a:1:{s:13:\"administrator\";s:1:\"1\";}");
INSERT INTO `wp_usermeta` VALUES("11", "1", "wp_user_level", "10");
INSERT INTO `wp_usermeta` VALUES("13", "1", "show_welcome_panel", "0");
INSERT INTO `wp_usermeta` VALUES("14", "1", "wp_dashboard_quick_press_last_post_id", "153");
INSERT INTO `wp_usermeta` VALUES("15", "1", "dismissed_wp_pointers", "wp330_toolbar,wp330_saving_widgets,wp330_media_uploader");
INSERT INTO `wp_usermeta` VALUES("16", "1", "closedpostboxes_dashboard", "a:0:{}");
INSERT INTO `wp_usermeta` VALUES("17", "1", "metaboxhidden_dashboard", "a:1:{i:0;s:21:\"dashboard_browser_nag\";}");
INSERT INTO `wp_usermeta` VALUES("18", "1", "wp_user-settings", "imgsize=medium&editor=tinymce");
INSERT INTO `wp_usermeta` VALUES("19", "1", "wp_user-settings-time", "1362304833");
INSERT INTO `wp_usermeta` VALUES("20", "1", "closedpostboxes_pbcezmobsite", "a:0:{}");
INSERT INTO `wp_usermeta` VALUES("21", "1", "metaboxhidden_pbcezmobsite", "a:1:{i:0;s:7:\"slugdiv\";}");
INSERT INTO `wp_usermeta` VALUES("22", "1", "closedpostboxes_pbcezmobtheme", "a:0:{}");
INSERT INTO `wp_usermeta` VALUES("23", "1", "metaboxhidden_pbcezmobtheme", "a:1:{i:0;s:7:\"slugdiv\";}");
INSERT INTO `wp_usermeta` VALUES("24", "1", "meta-box-order_pbcezmobsite", "a:3:{s:4:\"side\";s:45:\"submitdiv,pageparentdiv,WPMSG_CurrentSite-div\";s:6:\"normal\";s:51:\"slugdiv,WPMSG_TabOrder-div,,,,,,,,,,,,,,,,,,,,,,,,,\";s:8:\"advanced\";s:0:\"\";}");
INSERT INTO `wp_usermeta` VALUES("25", "1", "screen_layout_pbcezmobsite", "2");
INSERT INTO `wp_usermeta` VALUES("26", "1", "aim", "");
INSERT INTO `wp_usermeta` VALUES("27", "1", "yim", "");
INSERT INTO `wp_usermeta` VALUES("28", "1", "jabber", "");

/* INSERT TABLE DATA: wp_users */
INSERT INTO `wp_users` VALUES("1", "admin", "$P$BGtZMWg9bgJPDi/A4xNPC0SbYeuHut0", "admin", "Keifersfl@aol.com", "", "2013-02-02 13:19:16", "", "0", "admin");

SET FOREIGN_KEY_CHECKS = 1;