/* DUPLICATOR MYSQL SCRIPT CREATED ON : 2017-03-10 08:32:09 */

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 utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`meta_id`),
  KEY `comment_id` (`comment_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_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 utf8mb4_unicode_ci NOT NULL,
  `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_author_IP` varchar(100) COLLATE utf8mb4_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 utf8mb4_unicode_ci NOT NULL,
  `comment_karma` int(11) NOT NULL DEFAULT '0',
  `comment_approved` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1',
  `comment_agent` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_type` varchar(20) COLLATE utf8mb4_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_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`),
  KEY `comment_author_email` (`comment_author_email`(10))
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `wp_duplicator_packages` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(250) NOT NULL,
  `hash` varchar(50) NOT NULL,
  `status` int(11) NOT NULL,
  `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `owner` varchar(60) NOT NULL,
  `package` mediumblob NOT NULL,
  PRIMARY KEY (`id`),
  KEY `hash` (`hash`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;

CREATE TABLE `wp_formmaker` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `title` varchar(127) NOT NULL,
  `mail` varchar(128) NOT NULL,
  `form_front` longtext NOT NULL,
  `theme` int(11) NOT NULL,
  `javascript` text NOT NULL,
  `submit_text` longtext NOT NULL,
  `url` varchar(200) NOT NULL,
  `submit_text_type` tinyint(4) NOT NULL,
  `script_mail` text NOT NULL,
  `script_mail_user` text NOT NULL,
  `counter` int(11) NOT NULL,
  `published` int(11) NOT NULL DEFAULT '1',
  `label_order` text NOT NULL,
  `label_order_current` text NOT NULL,
  `article_id` varchar(500) NOT NULL,
  `pagination` varchar(128) NOT NULL,
  `show_title` varchar(128) NOT NULL,
  `show_numbers` varchar(128) NOT NULL,
  `public_key` varchar(50) NOT NULL,
  `private_key` varchar(50) NOT NULL,
  `recaptcha_theme` varchar(20) NOT NULL,
  `paypal_mode` int(2) NOT NULL,
  `checkout_mode` varchar(20) NOT NULL,
  `paypal_email` varchar(50) NOT NULL,
  `payment_currency` varchar(20) NOT NULL,
  `tax` float NOT NULL,
  `form_fields` longtext NOT NULL,
  `savedb` tinyint(4) NOT NULL DEFAULT '1',
  `sendemail` tinyint(4) NOT NULL DEFAULT '1',
  `requiredmark` varchar(20) NOT NULL DEFAULT '*',
  `from_mail` varchar(128) NOT NULL,
  `from_name` varchar(128) NOT NULL,
  `reply_to` varchar(128) NOT NULL,
  `send_to` varchar(128) NOT NULL,
  `autogen_layout` tinyint(4) NOT NULL DEFAULT '1',
  `custom_front` longtext NOT NULL,
  `mail_from_user` varchar(128) NOT NULL,
  `mail_from_name_user` varchar(128) NOT NULL,
  `reply_to_user` varchar(128) NOT NULL,
  `condition` text NOT NULL,
  `mail_cc` varchar(128) NOT NULL,
  `mail_cc_user` varchar(128) NOT NULL,
  `mail_bcc` varchar(128) NOT NULL,
  `mail_bcc_user` varchar(128) NOT NULL,
  `mail_subject` varchar(128) NOT NULL,
  `mail_subject_user` varchar(128) NOT NULL,
  `mail_mode` tinyint(4) NOT NULL DEFAULT '1',
  `mail_mode_user` tinyint(4) NOT NULL DEFAULT '1',
  `mail_attachment` tinyint(4) NOT NULL DEFAULT '1',
  `mail_attachment_user` tinyint(4) NOT NULL DEFAULT '1',
  `user_id_wd` varchar(220) NOT NULL,
  `sortable` int(11) NOT NULL,
  `frontend_submit_fields` text NOT NULL,
  `frontend_submit_stat_fields` text NOT NULL,
  `mail_emptyfields` tinyint(4) NOT NULL DEFAULT '0',
  `mail_verify` tinyint(4) NOT NULL DEFAULT '0',
  `mail_verify_expiretime` float NOT NULL,
  `mail_verification_post_id` int(11) NOT NULL,
  `save_uploads` tinyint(4) NOT NULL DEFAULT '1',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8;

CREATE TABLE `wp_formmaker_backup` (
  `backup_id` int(11) NOT NULL AUTO_INCREMENT,
  `cur` int(1) NOT NULL,
  `id` int(11) NOT NULL,
  `title` varchar(127) NOT NULL,
  `mail` varchar(128) NOT NULL,
  `form_front` longtext NOT NULL,
  `theme` int(11) NOT NULL,
  `javascript` text NOT NULL,
  `submit_text` longtext NOT NULL,
  `url` varchar(200) NOT NULL,
  `submit_text_type` tinyint(4) NOT NULL,
  `script_mail` text NOT NULL,
  `script_mail_user` text NOT NULL,
  `counter` int(11) NOT NULL,
  `published` int(11) NOT NULL DEFAULT '1',
  `label_order` text NOT NULL,
  `label_order_current` text NOT NULL,
  `article_id` varchar(500) NOT NULL,
  `pagination` varchar(128) NOT NULL,
  `show_title` varchar(128) NOT NULL,
  `show_numbers` varchar(128) NOT NULL,
  `public_key` varchar(50) NOT NULL,
  `private_key` varchar(50) NOT NULL,
  `recaptcha_theme` varchar(20) NOT NULL,
  `paypal_mode` int(2) NOT NULL,
  `checkout_mode` varchar(20) NOT NULL,
  `paypal_email` varchar(50) NOT NULL,
  `payment_currency` varchar(20) NOT NULL,
  `tax` float NOT NULL,
  `form_fields` longtext NOT NULL,
  `savedb` tinyint(4) NOT NULL DEFAULT '1',
  `sendemail` tinyint(4) NOT NULL DEFAULT '1',
  `requiredmark` varchar(20) NOT NULL DEFAULT '*',
  `from_mail` varchar(128) NOT NULL,
  `from_name` varchar(128) NOT NULL,
  `reply_to` varchar(128) NOT NULL,
  `send_to` varchar(128) NOT NULL,
  `autogen_layout` tinyint(4) NOT NULL DEFAULT '1',
  `custom_front` longtext NOT NULL,
  `mail_from_user` varchar(128) NOT NULL,
  `mail_from_name_user` varchar(128) NOT NULL,
  `reply_to_user` varchar(128) NOT NULL,
  `condition` text NOT NULL,
  `mail_cc` varchar(128) NOT NULL,
  `mail_cc_user` varchar(128) NOT NULL,
  `mail_bcc` varchar(128) NOT NULL,
  `mail_bcc_user` varchar(128) NOT NULL,
  `mail_subject` varchar(128) NOT NULL,
  `mail_subject_user` varchar(128) NOT NULL,
  `mail_mode` tinyint(4) NOT NULL DEFAULT '1',
  `mail_mode_user` tinyint(4) NOT NULL DEFAULT '1',
  `mail_attachment` tinyint(4) NOT NULL DEFAULT '1',
  `mail_attachment_user` tinyint(4) NOT NULL DEFAULT '1',
  `user_id_wd` varchar(220) NOT NULL,
  `sortable` int(11) NOT NULL,
  `frontend_submit_fields` text NOT NULL,
  `frontend_submit_stat_fields` text NOT NULL,
  `mail_emptyfields` tinyint(4) NOT NULL DEFAULT '0',
  `mail_verify` tinyint(4) NOT NULL DEFAULT '0',
  `mail_verify_expiretime` float NOT NULL,
  `mail_verification_post_id` int(11) NOT NULL,
  `save_uploads` tinyint(4) NOT NULL DEFAULT '1',
  PRIMARY KEY (`backup_id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8;

CREATE TABLE `wp_formmaker_blocked` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `ip` varchar(128) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

CREATE TABLE `wp_formmaker_query` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `form_id` int(11) NOT NULL,
  `query` text NOT NULL,
  `details` text NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

CREATE TABLE `wp_formmaker_sessions` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `form_id` int(20) NOT NULL,
  `group_id` int(20) NOT NULL,
  `ip` varchar(20) NOT NULL,
  `ord_date` datetime NOT NULL,
  `ord_last_modified` datetime NOT NULL,
  `status` varchar(50) NOT NULL,
  `full_name` varchar(100) NOT NULL,
  `email` varchar(50) NOT NULL,
  `phone` varchar(50) NOT NULL,
  `mobile_phone` varchar(255) NOT NULL,
  `fax` varchar(255) NOT NULL,
  `address` varchar(300) NOT NULL,
  `paypal_info` text NOT NULL,
  `without_paypal_info` text NOT NULL,
  `ipn` varchar(20) NOT NULL,
  `checkout_method` varchar(20) NOT NULL,
  `tax` float NOT NULL,
  `shipping` float NOT NULL,
  `shipping_type` varchar(200) NOT NULL,
  `read` int(11) NOT NULL,
  `total` float NOT NULL,
  `currency` varchar(24) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

CREATE TABLE `wp_formmaker_submits` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `form_id` int(11) NOT NULL,
  `element_label` varchar(128) NOT NULL,
  `element_value` longtext NOT NULL,
  `group_id` int(11) NOT NULL,
  `date` datetime NOT NULL,
  `ip` varchar(128) NOT NULL,
  `user_id_wd` int(11) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

CREATE TABLE `wp_formmaker_themes` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `title` varchar(200) NOT NULL,
  `css` text NOT NULL,
  `default` tinyint(4) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=38 DEFAULT CHARSET=utf8;

CREATE TABLE `wp_formmaker_views` (
  `form_id` int(11) NOT NULL,
  `views` int(50) NOT NULL,
  PRIMARY KEY (`form_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

CREATE TABLE `wp_huge_it_reslider_sliders` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `title` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
  `type` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL,
  `params` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `time` datetime NOT NULL,
  `slide` longtext COLLATE utf8mb4_unicode_ci,
  `style` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `custom` text COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `wp_huge_it_reslider_slides` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `title` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `sliderid` int(11) NOT NULL,
  `published` tinyint(1) NOT NULL DEFAULT '1',
  `slide` longtext COLLATE utf8mb4_unicode_ci,
  `description` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `thumbnail` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `custom` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `ordering` int(11) NOT NULL,
  `type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `wp_huge_itslider_images` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `slider_id` varchar(200) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `description` text COLLATE utf8mb4_unicode_ci,
  `image_url` text COLLATE utf8mb4_unicode_ci,
  `sl_url` text COLLATE utf8mb4_unicode_ci,
  `sl_type` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `link_target` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `sl_stitle` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `sl_sdesc` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `sl_postlink` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `ordering` int(11) NOT NULL,
  `published` tinyint(4) unsigned DEFAULT NULL,
  `published_in_sl_width` tinyint(4) unsigned DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `wp_huge_itslider_params` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `title` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `description` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `value` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=133 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `wp_huge_itslider_sliders` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `sl_height` int(11) unsigned DEFAULT NULL,
  `sl_width` int(11) unsigned DEFAULT NULL,
  `pause_on_hover` text COLLATE utf8mb4_unicode_ci,
  `slider_list_effects_s` text COLLATE utf8mb4_unicode_ci,
  `description` text COLLATE utf8mb4_unicode_ci,
  `param` text COLLATE utf8mb4_unicode_ci,
  `sl_position` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `ordering` int(11) NOT NULL,
  `published` text COLLATE utf8mb4_unicode_ci,
  `sl_loading_icon` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `show_thumb` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'dotstop',
  `video_autoplay` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'off',
  `random_images` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'off',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `wp_links` (
  `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `link_url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_image` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_target` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_visible` varchar(20) COLLATE utf8mb4_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 utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_notes` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `link_rss` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`link_id`),
  KEY `link_visible` (`link_visible`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `wp_options` (
  `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `option_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `option_value` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `autoload` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'yes',
  PRIMARY KEY (`option_id`),
  UNIQUE KEY `option_name` (`option_name`)
) ENGINE=InnoDB AUTO_INCREMENT=840 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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 utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`meta_id`),
  KEY `post_id` (`post_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=657 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_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 utf8mb4_unicode_ci NOT NULL,
  `post_title` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_excerpt` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'publish',
  `comment_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open',
  `ping_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open',
  `post_password` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `post_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `to_ping` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `pinged` text COLLATE utf8mb4_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` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
  `guid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `menu_order` int(11) NOT NULL DEFAULT '0',
  `post_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'post',
  `post_mime_type` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_count` bigint(20) NOT NULL DEFAULT '0',
  PRIMARY KEY (`ID`),
  KEY `post_name` (`post_name`(191)),
  KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
  KEY `post_parent` (`post_parent`),
  KEY `post_author` (`post_author`)
) ENGINE=InnoDB AUTO_INCREMENT=311 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_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=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_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 utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `description` longtext COLLATE utf8mb4_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=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `wp_termmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `term_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`meta_id`),
  KEY `term_id` (`term_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `wp_terms` (
  `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `slug` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `term_group` bigint(10) NOT NULL DEFAULT '0',
  PRIMARY KEY (`term_id`),
  KEY `slug` (`slug`(191)),
  KEY `name` (`name`(191))
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_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 utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`umeta_id`),
  KEY `user_id` (`user_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=31 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

CREATE TABLE `wp_wdslayer` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `title` longtext NOT NULL,
  `slide_id` bigint(20) NOT NULL,
  `type` varchar(8) NOT NULL,
  `depth` bigint(20) NOT NULL,
  `text` mediumtext NOT NULL,
  `link` mediumtext NOT NULL,
  `left` int(4) NOT NULL,
  `top` int(4) NOT NULL,
  `start` bigint(20) NOT NULL,
  `end` bigint(20) NOT NULL,
  `published` tinyint(1) NOT NULL,
  `color` varchar(8) NOT NULL,
  `size` bigint(20) NOT NULL,
  `ffamily` varchar(32) NOT NULL,
  `fweight` varchar(8) NOT NULL,
  `padding` varchar(32) NOT NULL,
  `fbgcolor` varchar(8) NOT NULL,
  `transparent` int(4) NOT NULL,
  `border_width` int(4) NOT NULL,
  `border_style` varchar(16) NOT NULL,
  `border_color` varchar(8) NOT NULL,
  `border_radius` varchar(32) NOT NULL,
  `shadow` varchar(127) NOT NULL,
  `image_url` mediumtext NOT NULL,
  `image_width` int(4) NOT NULL,
  `image_height` int(4) NOT NULL,
  `image_scale` varchar(8) NOT NULL,
  `alt` varchar(127) NOT NULL,
  `imgtransparent` int(4) NOT NULL,
  `social_button` varchar(16) NOT NULL,
  `hover_color` varchar(8) NOT NULL,
  `layer_effect_in` varchar(32) DEFAULT NULL,
  `duration_eff_in` bigint(20) NOT NULL,
  `layer_effect_out` varchar(32) DEFAULT NULL,
  `duration_eff_out` bigint(20) NOT NULL,
  `target_attr_layer` tinyint(1) NOT NULL,
  `hotp_width` int(4) NOT NULL,
  `hotp_fbgcolor` varchar(8) NOT NULL,
  `hotp_border_width` int(4) NOT NULL,
  `hotp_border_style` varchar(16) NOT NULL,
  `hotp_border_color` varchar(8) NOT NULL,
  `hotp_border_radius` varchar(32) NOT NULL,
  `hotp_text_position` varchar(6) NOT NULL,
  `google_fonts` int(1) NOT NULL,
  `add_class` varchar(127) NOT NULL,
  `layer_video_loop` tinyint(1) NOT NULL,
  `youtube_rel_layer_video` tinyint(1) NOT NULL,
  `hotspot_animation` tinyint(1) NOT NULL,
  `layer_callback_list` varchar(32) NOT NULL,
  `hotspot_text_display` varchar(8) NOT NULL,
  `hover_color_text` varchar(8) NOT NULL,
  `text_alignment` varchar(8) NOT NULL,
  `link_to_slide` int(4) NOT NULL DEFAULT '0',
  `align_layer` tinyint(1) NOT NULL DEFAULT '0',
  `static_layer` tinyint(1) NOT NULL DEFAULT '0',
  `infinite_in` int(4) NOT NULL DEFAULT '1',
  `infinite_out` int(4) NOT NULL DEFAULT '1',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

CREATE TABLE `wp_wdsslide` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `slider_id` bigint(20) NOT NULL,
  `title` longtext NOT NULL,
  `type` varchar(128) NOT NULL,
  `image_url` mediumtext NOT NULL,
  `thumb_url` mediumtext NOT NULL,
  `published` tinyint(1) NOT NULL,
  `link` mediumtext NOT NULL,
  `order` bigint(20) NOT NULL,
  `target_attr_slide` tinyint(1) NOT NULL,
  `youtube_rel_video` tinyint(1) NOT NULL,
  `video_loop` tinyint(1) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;

CREATE TABLE `wp_wdsslider` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(127) NOT NULL,
  `published` tinyint(1) NOT NULL,
  `full_width` tinyint(1) NOT NULL,
  `width` int(4) NOT NULL,
  `height` int(4) NOT NULL,
  `bg_fit` varchar(16) NOT NULL,
  `align` varchar(8) NOT NULL,
  `effect` varchar(16) NOT NULL,
  `time_intervval` int(4) NOT NULL,
  `autoplay` tinyint(1) NOT NULL,
  `shuffle` tinyint(1) NOT NULL,
  `music` tinyint(1) NOT NULL,
  `music_url` mediumtext NOT NULL,
  `preload_images` tinyint(1) NOT NULL,
  `background_color` varchar(8) NOT NULL,
  `background_transparent` int(4) NOT NULL,
  `glb_border_width` int(4) NOT NULL,
  `glb_border_style` varchar(16) NOT NULL,
  `glb_border_color` varchar(8) NOT NULL,
  `glb_border_radius` varchar(32) NOT NULL,
  `glb_margin` int(4) NOT NULL,
  `glb_box_shadow` varchar(127) NOT NULL,
  `image_right_click` tinyint(1) NOT NULL,
  `layer_out_next` tinyint(1) NOT NULL,
  `prev_next_butt` tinyint(1) NOT NULL,
  `play_paus_butt` tinyint(1) NOT NULL,
  `navigation` varchar(16) NOT NULL,
  `rl_butt_style` varchar(16) NOT NULL,
  `rl_butt_size` int(4) NOT NULL,
  `pp_butt_size` int(4) NOT NULL,
  `butts_color` varchar(8) NOT NULL,
  `butts_transparent` int(4) NOT NULL,
  `hover_color` varchar(8) NOT NULL,
  `nav_border_width` int(4) NOT NULL,
  `nav_border_style` varchar(16) NOT NULL,
  `nav_border_color` varchar(8) NOT NULL,
  `nav_border_radius` varchar(32) NOT NULL,
  `nav_bg_color` varchar(8) NOT NULL,
  `bull_position` varchar(16) NOT NULL,
  `bull_style` varchar(20) NOT NULL,
  `bull_size` int(4) NOT NULL,
  `bull_color` varchar(8) NOT NULL,
  `bull_act_color` varchar(8) NOT NULL,
  `bull_margin` int(4) NOT NULL,
  `film_pos` varchar(16) NOT NULL,
  `film_thumb_width` int(4) NOT NULL,
  `film_thumb_height` int(4) NOT NULL,
  `film_bg_color` varchar(8) NOT NULL,
  `film_tmb_margin` int(4) NOT NULL,
  `film_act_border_width` int(4) NOT NULL,
  `film_act_border_style` varchar(16) NOT NULL,
  `film_act_border_color` varchar(8) NOT NULL,
  `film_dac_transparent` int(4) NOT NULL,
  `built_in_watermark_type` varchar(16) NOT NULL,
  `built_in_watermark_position` varchar(16) NOT NULL,
  `built_in_watermark_size` int(4) NOT NULL,
  `built_in_watermark_url` mediumtext NOT NULL,
  `built_in_watermark_text` mediumtext NOT NULL,
  `built_in_watermark_font_size` int(4) NOT NULL,
  `built_in_watermark_font` varchar(16) NOT NULL,
  `built_in_watermark_color` varchar(8) NOT NULL,
  `built_in_watermark_opacity` int(4) NOT NULL,
  `css` mediumtext NOT NULL,
  `timer_bar_type` varchar(16) NOT NULL,
  `timer_bar_size` int(4) NOT NULL,
  `timer_bar_color` varchar(8) NOT NULL,
  `timer_bar_transparent` int(4) NOT NULL,
  `spider_uploader` tinyint(1) NOT NULL,
  `stop_animation` tinyint(1) NOT NULL,
  `right_butt_url` varchar(255) NOT NULL,
  `left_butt_url` varchar(255) NOT NULL,
  `right_butt_hov_url` varchar(255) NOT NULL,
  `left_butt_hov_url` varchar(255) NOT NULL,
  `rl_butt_img_or_not` varchar(8) NOT NULL,
  `bullets_img_main_url` varchar(255) NOT NULL,
  `bullets_img_hov_url` varchar(255) NOT NULL,
  `bull_butt_img_or_not` varchar(8) NOT NULL,
  `play_paus_butt_img_or_not` varchar(8) NOT NULL,
  `play_butt_url` varchar(255) NOT NULL,
  `play_butt_hov_url` varchar(255) NOT NULL,
  `paus_butt_url` varchar(255) NOT NULL,
  `paus_butt_hov_url` varchar(255) NOT NULL,
  `start_slide_num` int(4) NOT NULL,
  `effect_duration` int(6) NOT NULL,
  `carousel` tinyint(1) NOT NULL,
  `carousel_image_counts` int(4) NOT NULL,
  `carousel_image_parameters` varchar(8) NOT NULL,
  `carousel_fit_containerWidth` tinyint(1) NOT NULL,
  `carousel_width` int(4) NOT NULL,
  `parallax_effect` tinyint(1) NOT NULL,
  `mouse_swipe_nav` tinyint(1) NOT NULL,
  `bull_hover` int(1) NOT NULL,
  `touch_swipe_nav` tinyint(1) NOT NULL,
  `mouse_wheel_nav` tinyint(1) NOT NULL,
  `keyboard_nav` tinyint(1) NOT NULL,
  `possib_add_ffamily` varchar(255) NOT NULL,
  `show_thumbnail` tinyint(1) NOT NULL,
  `thumb_size` varchar(8) NOT NULL,
  `fixed_bg` tinyint(1) NOT NULL,
  `smart_crop` tinyint(1) NOT NULL,
  `crop_image_position` varchar(16) NOT NULL,
  `javascript` text NOT NULL,
  `carousel_degree` int(4) NOT NULL,
  `carousel_grayscale` int(4) NOT NULL,
  `carousel_transparency` int(4) NOT NULL,
  `bull_back_act_color` varchar(8) NOT NULL,
  `bull_back_color` varchar(8) NOT NULL,
  `bull_radius` varchar(32) NOT NULL,
  `possib_add_google_fonts` tinyint(1) NOT NULL,
  `possib_add_ffamily_google` varchar(255) NOT NULL,
  `slider_loop` tinyint(1) NOT NULL,
  `hide_on_mobile` int(4) NOT NULL DEFAULT '0',
  `twoway_slideshow` tinyint(1) NOT NULL DEFAULT '0',
  `full_width_for_mobile` int(4) NOT NULL DEFAULT '0',
  `order_dir` varchar(4) NOT NULL DEFAULT 'asc',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;


/* INSERT TABLE DATA: wp_comments */
INSERT INTO `wp_comments` VALUES("1", "1", "Mr WordPress", "", "https://wordpress.org/", "", "2016-09-15 11:46:47", "2016-09-15 10:46:47", "Hi, this is a comment.\nTo delete a comment, just log in and view the post&#039;s comments. There you will have the option to edit or delete them.", "0", "1", "", "", "0", "0");

/* INSERT TABLE DATA: wp_duplicator_packages */
INSERT INTO `wp_duplicator_packages` VALUES("1", "20170310_redatechnology", "58c2647f98ce86302170310083159", "20", "2017-03-10 08:32:09", "admin", "O:11:\"DUP_Package\":23:{s:7:\"Created\";s:19:\"2017-03-10 08:31:59\";s:7:\"Version\";s:6:\"1.1.34\";s:9:\"VersionWP\";s:5:\"4.7.3\";s:9:\"VersionDB\";s:6:\"5.6.33\";s:10:\"VersionPHP\";s:6:\"5.6.29\";s:9:\"VersionOS\";s:5:\"Linux\";s:2:\"ID\";i:1;s:4:\"Name\";s:23:\"20170310_redatechnology\";s:4:\"Hash\";s:29:\"58c2647f98ce86302170310083159\";s:8:\"NameHash\";s:53:\"20170310_redatechnology_58c2647f98ce86302170310083159\";s:4:\"Type\";i:0;s:5:\"Notes\";s:0:\"\";s:9:\"StorePath\";s:47:\"/home/redahkco/reda.selfip.net/wp-snapshots/tmp\";s:8:\"StoreURL\";s:36:\"http://reda.selfip.net/wp-snapshots/\";s:8:\"ScanFile\";s:63:\"20170310_redatechnology_58c2647f98ce86302170310083159_scan.json\";s:7:\"Runtime\";N;s:7:\"ExeSize\";N;s:7:\"ZipSize\";N;s:6:\"Status\";N;s:6:\"WPUser\";s:5:\"admin\";s:7:\"Archive\";O:11:\"DUP_Archive\":13:{s:10:\"FilterDirs\";s:0:\"\";s:10:\"FilterExts\";s:0:\"\";s:13:\"FilterDirsAll\";a:0:{}s:13:\"FilterExtsAll\";a:0:{}s:8:\"FilterOn\";i:0;s:4:\"File\";s:65:\"20170310_redatechnology_58c2647f98ce86302170310083159_archive.zip\";s:6:\"Format\";s:3:\"ZIP\";s:7:\"PackDir\";s:30:\"/home/redahkco/reda.selfip.net\";s:4:\"Size\";i:0;s:4:\"Dirs\";a:0:{}s:5:\"Files\";a:0:{}s:10:\"FilterInfo\";O:23:\"DUP_Archive_Filter_Info\":6:{s:4:\"Dirs\";O:34:\"DUP_Archive_Filter_Scope_Directory\":4:{s:7:\"Warning\";a:0:{}s:10:\"Unreadable\";a:0:{}s:4:\"Core\";a:0:{}s:8:\"Instance\";a:0:{}}s:5:\"Files\";O:29:\"DUP_Archive_Filter_Scope_File\":5:{s:4:\"Size\";a:0:{}s:7:\"Warning\";a:0:{}s:10:\"Unreadable\";a:0:{}s:4:\"Core\";a:0:{}s:8:\"Instance\";a:0:{}}s:4:\"Exts\";O:29:\"DUP_Archive_Filter_Scope_Base\":2:{s:4:\"Core\";a:0:{}s:8:\"Instance\";a:0:{}}s:9:\"UDirCount\";i:0;s:10:\"UFileCount\";i:0;s:9:\"UExtCount\";i:0;}s:10:\"\0*\0Package\";O:11:\"DUP_Package\":23:{s:7:\"Created\";s:19:\"2017-03-10 08:31:59\";s:7:\"Version\";s:6:\"1.1.34\";s:9:\"VersionWP\";s:5:\"4.7.3\";s:9:\"VersionDB\";s:6:\"5.6.33\";s:10:\"VersionPHP\";s:6:\"5.6.29\";s:9:\"VersionOS\";s:5:\"Linux\";s:2:\"ID\";N;s:4:\"Name\";s:23:\"20170310_redatechnology\";s:4:\"Hash\";s:29:\"58c2647f98ce86302170310083159\";s:8:\"NameHash\";s:53:\"20170310_redatechnology_58c2647f98ce86302170310083159\";s:4:\"Type\";i:0;s:5:\"Notes\";s:0:\"\";s:9:\"StorePath\";s:47:\"/home/redahkco/reda.selfip.net/wp-snapshots/tmp\";s:8:\"StoreURL\";s:36:\"http://reda.selfip.net/wp-snapshots/\";s:8:\"ScanFile\";N;s:7:\"Runtime\";N;s:7:\"ExeSize\";N;s:7:\"ZipSize\";N;s:6:\"Status\";N;s:6:\"WPUser\";N;s:7:\"Archive\";r:22;s:9:\"Installer\";O:13:\"DUP_Installer\":12:{s:4:\"File\";s:67:\"20170310_redatechnology_58c2647f98ce86302170310083159_installer.php\";s:4:\"Size\";i:0;s:10:\"OptsDBHost\";s:0:\"\";s:10:\"OptsDBPort\";s:0:\"\";s:10:\"OptsDBName\";s:0:\"\";s:10:\"OptsDBUser\";s:0:\"\";s:12:\"OptsSSLAdmin\";i:0;s:12:\"OptsSSLLogin\";i:0;s:11:\"OptsCacheWP\";i:0;s:13:\"OptsCachePath\";i:0;s:10:\"OptsURLNew\";s:0:\"\";s:10:\"\0*\0Package\";r:52;}s:8:\"Database\";O:12:\"DUP_Database\":13:{s:4:\"Type\";s:5:\"MySQL\";s:4:\"Size\";N;s:4:\"File\";s:66:\"20170310_redatechnology_58c2647f98ce86302170310083159_database.sql\";s:4:\"Path\";N;s:12:\"FilterTables\";s:0:\"\";s:8:\"FilterOn\";i:0;s:4:\"Name\";N;s:10:\"Compatible\";s:0:\"\";s:8:\"Comments\";s:28:\"MySQL Community Server (GPL)\";s:10:\"\0*\0Package\";r:1;s:25:\"\0DUP_Database\0dbStorePath\";N;s:23:\"\0DUP_Database\0EOFMarker\";s:0:\"\";s:26:\"\0DUP_Database\0networkFlush\";b:0;}}}s:9:\"Installer\";r:74;s:8:\"Database\";r:87;}");

/* INSERT TABLE DATA: wp_formmaker */
INSERT INTO `wp_formmaker` VALUES("1", "Contact", "", "<div class=\"wdform-page-and-images\" style=\"display:table; border-top:0px solid black;\"><div id=\"form_id_tempform_view1\" class=\"wdform_page\" page_title=\"Untitled page\" next_title=\"Next\" next_type=\"text\" next_class=\"wdform-page-button\" next_checkable=\"false\" previous_title=\"Previous\" previous_type=\"text\" previous_class=\"wdform-page-button\" previous_checkable=\"false\"><div class=\"wdform_section\"><div class=\"wdform_column ui-sortable\"><div wdid=\"1\" class=\"wdform_row ui-sortable-handle\">%1 - Name:%</div><div wdid=\"2\" class=\"wdform_row ui-sortable-handle\">%2 - E-mail:%</div><div wdid=\"3\" class=\"wdform_row ui-sortable-handle\">%3 - Telephone%</div><div wdid=\"6\" class=\"wdform_row ui-sortable-handle\">%6 - Country:%</div><div wdid=\"4\" class=\"wdform_row ui-sortable-handle\">%4 - Message:%</div><div wdid=\"5\" class=\"wdform_row ui-sortable-handle\">%5 - type_submit_reset_5%</div></div></div><div valign=\"top\" class=\"wdform_footer\" style=\"width: 100%;\"><div style=\"width: 100%;\"><div style=\"width: 100%; display: table;\"><div style=\"display: table-row-group;\"><div id=\"form_id_temppage_nav1\" style=\"display: table-row;\"></div></div></div></div></div></div></div>", "1", "// Occurs before the form is loaded\r\nfunction before_load()\r\n{\r\n\r\n}\r\n\r\n// Occurs just before submitting  the form\r\nfunction before_submit()\r\n{\r\n// IMPORTANT! If you want to interrupt (stop) the submitting of the form, this function should return true. You don&#39;t need to return any value if you don&#39;t want to stop the submission.\r\n}\r\n\r\n// Occurs just before resetting the form\r\nfunction before_reset()\r\n{\r\n\r\n}", "", "", "0", "%all%", "%all%\r\n\r\nVerify your email address %Verification link%", "7", "1", "1#**id**#Name:#**label**#type_name#****#2#**id**#E-mail:#**label**#type_submitter_mail#****#3#**id**#Telephone#**label**#type_text#****#6#**id**#Country:#**label**#type_own_select#****#4#**id**#Message:#**label**#type_textarea#****#5#**id**#type_submit_reset_5#**label**#type_submit_reset#****#", "1#**id**#Name:#**label**#type_name#****#2#**id**#E-mail:#**label**#type_submitter_mail#****#3#**id**#Telephone#**label**#type_text#****#6#**id**#Country:#**label**#type_own_select#****#4#**id**#Message:#**label**#type_textarea#****#5#**id**#type_submit_reset_5#**label**#type_submit_reset#****#", "0", "none", "false", "true", "", "", "", "0", "", "", "USD", "0", "1*:*id*:*type_name*:*type*:*Name:*:*w_field_label*:*80*:*w_field_label_size*:*left*:*w_field_label_pos*:***********:*w_first_val*:***********:*w_title*:*Title***First***Last***Middle*:*w_mini_labels*:*100*:*w_size*:*normal*:*w_name_format*:*yes*:*w_required*:*no*:*w_unique*:**:*w_class*:*no***no*:*w_name_fields*:*no*:*w_autofill*:**:*new_field*:*2*:*id*:*type_submitter_mail*:*type*:*E-mail:*:*w_field_label*:*80*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*yes*:*w_required*:*no*:*w_unique*:**:*w_class*:*no*:*w_verification*:*E-mail confirmation:*:*w_verification_label*:**:*w_verification_placeholder*:*no*:*w_autofill*:**:*new_field*:*3*:*id*:*type_text*:*type*:*Telephone*:*w_field_label*:*80*:*w_field_label_size*:*left*:*w_field_label_pos*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*yes*:*w_required*:*yes*:*w_regExp_status*:*%5E%28%5C+%29%3F%5B0-9%5D+%28-%5B0-9%5D+%29%3F%28-%5B0-9%5D+%29%3F%28-%5B0-9%5D+%29%3F%24*:*w_regExp_value*:*2*:*w_regExp_common*:**:*w_regExp_arg*:*This is not a valid telephone number.*:*w_regExp_alert*:*no*:*w_unique*:**:*new_field*:*6*:*id*:*type_own_select*:*type*:*Country:*:*w_field_label*:*80*:*w_field_label_size*:*left*:*w_field_label_pos*:*200*:*w_size*:*select your country***Afghanistan***Albania***Algeria***Andorra***Angola***Antigua and Barbuda***Argentina***Armenia***Aruba***Australia***Austria***Azerbaijan***The Bahamas***Bahrain***Bangladesh***Barbados***Belarus***Belgium***Belize***Benin***Bhutan***Bolivia***Bosnia and Herzegovina***Botswana***Brazil***Brunei***Bulgaria***Burkina Faso***Burma***Burundi***Cambodia***Cameroon***Canada***Cabo Verde***Central African Republic***Chad***Chile***China***Colombia***Comoros***Democratic Republic of the Congo***Republic of the Congo***Costa Rica***Cote d\'Ivoire***Croatia***Cuba***Curacao***Cyprus***Czechia***Denmark***Djibouti***Dominica***Dominican Republic***Ecuador***Egypt***El Salvador***Equatorial Guinea***Eritrea***Estonia***Ethiopia***Fiji***Finland***France***Gabon***The Gambia***Georgia***Germany***Ghana***Greece***Grenada***Guatemala***Guinea***Guinea-Bissau***Guyana***Haiti***Holy See***Honduras***Hong Kong***Hungary***Iceland***India***Indonesia***Iran***Iraq***Ireland***Israel***Italy***Jamaica***Japan***Jordan***Kazakhstan***Kenya***Kiribati***North Korea***South Korea***Kosovo***Kuwait***Kyrgyzstan***Laos***Latvia***Lebanon***Lesotho***Liberia***Libya***Liechtenstein***Lithuania***Luxembourg***Macau***Macedonia***Madagascar***Malawi***Malaysia***Maldives***Mali***Malta***Marshall Islands***Mauritania***Mauritius***Mexico***Micronesia***Moldova***Monaco***Mongolia***Montenegro***Morocco***Mozambique***Namibia***Nauru***Nepal***Netherlands***New Zealand***Nicaragua***Niger***Nigeria***Norway***Oman***Pakistan***Palau***Palestinian Territories***Panama***Papua New Guinea***Paraguay***Peru***Philippines***Poland***Portugal***Qatar***Romania***Russia***Rwanda***Saint Kitts and Nevis***Saint Lucia***Saint Vincent and the Grenadines***Samoa***San Marino***Sao Tome and Principe***Saudi Arabia***Senegal***Serbia***Seychelles***Sierra Leone***Singapore***Sint Maarten***Slovakia***Slovenia***Solomon Islands***Somalia***South Africa***South Sudan***Spain***Sri Lanka***Sudan***Suriname***Swaziland***Sweden***Switzerland***Syria***Taiwan***Tajikistan***Tanzania***Thailand***Timor-Leste***Togo***Tonga***Trinidad and Tobago***Tunisia***Turkey***Turkmenistan***Tuvalu***Uganda***Ukraine***United Arab Emirates***United Kingdom***Uruguay***Uzbekistan***Vanuatu***Venezuela***Vietnam***Yemen***Zambia***Zimbabwe*:*w_choices*:*true***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false*:*w_choices_checked*:*true***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false*:*w_choices_disabled*:*yes*:*w_required*:*no*:*w_value_disabled*:****Afghanistan***Albania***Algeria***Andorra***Angola***Antigua and Barbuda***Argentina***Armenia***Aruba***Australia***Austria***Azerbaijan***The Bahamas***Bahrain***Bangladesh***Barbados***Belarus***Belgium***Belize***Benin***Bhutan***Bolivia***Bosnia and Herzegovina***Botswana***Brazil***Brunei***Bulgaria***Burkina Faso***Burma***Burundi***Cambodia***Cameroon***Canada***Cabo Verde***Central African Republic***Chad***Chile***China***Colombia***Comoros***Democratic Republic of the Congo***Republic of the Congo***Costa Rica***Cote d\'Ivoire***Croatia***Cuba***Curacao***Cyprus***Czechia***Denmark***Djibouti***Dominica***Dominican Republic***Ecuador***Egypt***El Salvador***Equatorial Guinea***Eritrea***Estonia***Ethiopia***Fiji***Finland***France***Gabon***The Gambia***Georgia***Germany***Ghana***Greece***Grenada***Guatemala***Guinea***Guinea-Bissau***Guyana***Haiti***Holy See***Honduras***Hong Kong***Hungary***Iceland***India***Indonesia***Iran***Iraq***Ireland***Israel***Italy***Jamaica***Japan***Jordan***Kazakhstan***Kenya***Kiribati***North Korea***South Korea***Kosovo***Kuwait***Kyrgyzstan***Laos***Latvia***Lebanon***Lesotho***Liberia***Libya***Liechtenstein***Lithuania***Luxembourg***Macau***Macedonia***Madagascar***Malawi***Malaysia***Maldives***Mali***Malta***Marshall Islands***Mauritania***Mauritius***Mexico***Micronesia***Moldova***Monaco***Mongolia***Montenegro***Morocco***Mozambique***Namibia***Nauru***Nepal***Netherlands***New Zealand***Nicaragua***Niger***Nigeria***Norway***Oman***Pakistan***Palau***Palestinian Territories***Panama***Papua New Guinea***Paraguay***Peru***Philippines***Poland***Portugal***Qatar***Romania***Russia***Rwanda***Saint Kitts and Nevis***Saint Lucia***Saint Vincent and the Grenadines***Samoa***San Marino***Sao Tome and Principe***Saudi Arabia***Senegal***Serbia***Seychelles***Sierra Leone***Singapore***Sint Maarten***Slovakia***Slovenia***Solomon Islands***Somalia***South Africa***South Sudan***Spain***Sri Lanka***Sudan***Suriname***Swaziland***Sweden***Switzerland***Syria***Taiwan***Tajikistan***Tanzania***Thailand***Timor-Leste***Togo***Tonga***Trinidad and Tobago***Tunisia***Turkey***Turkmenistan***Tuvalu***Uganda***Ukraine***United Arab Emirates***United Kingdom***Uruguay***Uzbekistan***Vanuatu***Venezuela***Vietnam***Yemen***Zambia***Zimbabwe*:*w_choices_value*:*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************:*w_choices_params*:*wdform_select*:*w_class*:**:*new_field*:*4*:*id*:*type_textarea*:*type*:*Message:*:*w_field_label*:*80*:*w_field_label_size*:*left*:*w_field_label_pos*:*200*:*w_size_w*:*100*:*w_size_h*:**:*w_first_val*:**:*w_title*:*yes*:*w_required*:*no*:*w_unique*:**:*w_class*:**:*new_field*:*5*:*id*:*type_submit_reset*:*type*:*type_submit_reset_5*:*w_field_label*:*Submit*:*w_submit_title*:*Reset*:*w_reset_title*:**:*w_class*:*true*:*w_act*:**:*new_field*:*", "1", "1", "*", "", "", "", "*2*", "1", "", "", "", "", "", "", "", "", "", "", "", "1", "1", "1", "1", "administrator,", "1", "", "", "0", "1", "1", "224", "1");
INSERT INTO `wp_formmaker` VALUES("2", "Fill Form To Get Admission", "", "<div class=\"wdform-page-and-images\" style=\"display:table; border-top:0px solid black;\"><div id=\"form_id_tempform_view1\" class=\"wdform_page\" page_title=\"Untitled page\" next_title=\"Next\" next_type=\"text\" next_class=\"wdform-page-button\" next_checkable=\"false\" previous_title=\"Previous\" previous_type=\"text\" previous_class=\"wdform-page-button\" previous_checkable=\"false\"><div class=\"wdform_section\"><div class=\"wdform_column ui-sortable\"><div wdid=\"1\" class=\"wdform_row ui-sortable-handle\">%1 - Name:%</div><div wdid=\"2\" class=\"wdform_row ui-sortable-handle\">%2 - E-mail:%</div><div wdid=\"4\" class=\"wdform_row ui-sortable-handle\">%4 - Phone Number:%</div><div wdid=\"5\" class=\"wdform_row ui-sortable-handle\">%5 - SELECT COLLEGE%</div><div wdid=\"6\" class=\"wdform_row ui-sortable-handle\">%6 - OTHER SPECIFY HERE%</div><div wdid=\"7\" class=\"wdform_row ui-sortable-handle\">%7 - Word Verification:%</div><div wdid=\"8\" class=\"wdform_row ui-sortable-handle\">%8 - type_submit_reset_8%</div></div></div><div valign=\"top\" class=\"wdform_footer\" style=\"width: 100%;\"><div style=\"width: 100%;\"><div style=\"width: 100%; display: table;\"><div style=\"display: table-row-group;\"><div id=\"form_id_temppage_nav1\" style=\"display: table-row;\"></div></div></div></div></div></div></div>", "8", "// Occurs before the form is loaded\r\nfunction before_load()\r\n{\r\n\r\n}\r\n\r\n// Occurs just before submitting  the form\r\nfunction before_submit()\r\n{\r\n// IMPORTANT! If you want to interrupt (stop) the submitting of the form, this function should return true. You don&#39;t need to return any value if you don&#39;t want to stop the submission.\r\n}\r\n\r\n// Occurs just before resetting the form\r\nfunction before_reset()\r\n{\r\n\r\n}", "", "", "0", "%all%", "%all%", "9", "1", "1#**id**#Name:#**label**#type_name#****#2#**id**#E-mail:#**label**#type_submitter_mail#****#4#**id**#Phone Number:#**label**#type_number#****#5#**id**#SELECT COLLEGE#**label**#type_own_select#****#6#**id**#OTHER SPECIFY HERE#**label**#type_text#****#7#**id**#Word Verification:#**label**#type_captcha#****#8#**id**#type_submit_reset_8#**label**#type_submit_reset#****#", "1#**id**#Name:#**label**#type_name#****#2#**id**#E-mail:#**label**#type_submitter_mail#****#4#**id**#Phone Number:#**label**#type_number#****#5#**id**#SELECT COLLEGE#**label**#type_own_select#****#6#**id**#OTHER SPECIFY HERE#**label**#type_text#****#7#**id**#Word Verification:#**label**#type_captcha#****#8#**id**#type_submit_reset_8#**label**#type_submit_reset#****#", "0", "none", "false", "true", "", "", "", "0", "", "", "USD", "0", "1*:*id*:*type_name*:*type*:*Name:*:*w_field_label*:*160*:*w_field_label_size*:*left*:*w_field_label_pos*:***********:*w_first_val*:***********:*w_title*:*Title***First***Last***Middle*:*w_mini_labels*:*100*:*w_size*:*normal*:*w_name_format*:*no*:*w_required*:*no*:*w_unique*:**:*w_class*:*yes***yes*:*w_name_fields*:**:*new_field*:*2*:*id*:*type_submitter_mail*:*type*:*E-mail:*:*w_field_label*:*160*:*w_field_label_size*:*left*:*w_field_label_pos*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*yes*:*w_required*:**:*w_unique*:**:*w_class*:**:*new_field*:*4*:*id*:*type_number*:*type*:*Phone Number:*:*w_field_label*:*160*:*w_field_label_size*:*left*:*w_field_label_pos*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*no*:*w_required*:*no*:*w_unique*:**:*w_class*:**:*new_field*:*5*:*id*:*type_own_select*:*type*:*SELECT COLLEGE*:*w_field_label*:*160*:*w_field_label_size*:*left*:*w_field_label_pos*:*200*:*w_size*:**** GGSCMT,KHARAR*** DOABA KHARAR *** CAMBRIDGE COLLEGE FATEHGARH *** INDOGLOBAL *** QUEST COLLEGE *** UNIVERSAL ,LALRU *** OTHER PLEASE SPECIFY BELOW *:*w_choices*:*true***false***false***false***false***false***false***false*:*w_choices_checked*:*true***false***false***false***false***false***false***false*:*w_choices_disabled*:*yes*:*w_required*:*no*:*w_value_disabled*:**** GGSCMT,KHARAR*** DOABA KHARAR *** CAMBRIDGE COLLEGE FATEHGARH *** INDOGLOBAL *** QUEST COLLEGE *** UNIVERSAL ,LALRU *** OTHER PLEASE SPECIFY BELOW *:*w_choices_value*:***********************:*w_choices_params*:*wdform_select*:*w_class*:**:*new_field*:*6*:*id*:*type_text*:*type*:*OTHER SPECIFY HERE*:*w_field_label*:*160*:*w_field_label_size*:*left*:*w_field_label_pos*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*no*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:**:*new_field*:*7*:*id*:*type_captcha*:*type*:*Word Verification:*:*w_field_label*:*160*:*w_field_label_size*:*left*:*w_field_label_pos*:*6*:*w_digit*:**:*w_class*:**:*new_field*:*8*:*id*:*type_submit_reset*:*type*:*type_submit_reset_8*:*w_field_label*:*Submit*:*w_submit_title*:*Reset*:*w_reset_title*:**:*w_class*:*true*:*w_act*:**:*new_field*:*", "1", "1", "*", "", "", "", "", "1", "", "", "", "", "", "", "", "", "", "", "", "1", "1", "1", "1", "administrator,", "1", "", "", "0", "0", "0", "0", "1");
INSERT INTO `wp_formmaker` VALUES("3", "Camp Registration Form", "", "<div class=\"wdform-page-and-images\" style=\"display:table; border-top:0px solid black;\"><div id=\"form_id_tempform_view1\" class=\"wdform_page\" page_title=\"Untitled page\" next_title=\"Next\" next_type=\"text\" next_class=\"wdform-page-button\" next_checkable=\"false\" previous_title=\"Previous\" previous_type=\"text\" previous_class=\"wdform-page-button\" previous_checkable=\"false\"><div class=\"wdform_section\"><div class=\"wdform_column ui-sortable\"><div wdid=\"1\" class=\"wdform_row ui-sortable-handle\">%1 - Camper Name:%</div><div wdid=\"2\" class=\"wdform_row ui-sortable-handle\">%2 - Camper Age Group:%</div><div wdid=\"3\" class=\"wdform_row ui-sortable-handle\">%3 - Desire Cabin:%</div><div wdid=\"4\" class=\"wdform_row ui-sortable-handle\">%4 - Does any one have allergies?%</div><div wdid=\"5\" class=\"wdform_row ui-sortable-handle\">%5 - Has the camper been camping before?%</div><div wdid=\"6\" class=\"wdform_row ui-sortable-handle\">%6 - Any questions or concern:%</div><div wdid=\"7\" class=\"wdform_row ui-sortable-handle\">%7 - type_submit_reset_7%</div></div></div><div valign=\"top\" class=\"wdform_footer\" style=\"width: 100%;\"><div style=\"width: 100%;\"><div style=\"width: 100%; display: table;\"><div style=\"display: table-row-group;\"><div id=\"form_id_temppage_nav1\" style=\"display: table-row;\"></div></div></div></div></div></div></div>", "15", "// Occurs before the form is loaded\r\nfunction before_load()\r\n{\r\n\r\n}\r\n\r\n// Occurs just before submitting  the form\r\nfunction before_submit()\r\n{\r\n// IMPORTANT! If you want to interrupt (stop) the submitting of the form, this function should return true. You don&#39;t need to return any value if you don&#39;t want to stop the submission.\r\n}\r\n\r\n// Occurs just before resetting the form\r\nfunction before_reset()\r\n{\r\n\r\n}", "", "", "0", "%all%", "%all%", "8", "1", "1#**id**#Camper Name:#**label**#type_name#****#2#**id**#Camper Age Group:#**label**#type_own_select#****#3#**id**#Desire Cabin:#**label**#type_radio#****#4#**id**#Does any one have allergies?#**label**#type_radio#****#5#**id**#Has the camper been camping before?#**label**#type_radio#****#6#**id**#Any questions or concern:#**label**#type_textarea#****#7#**id**#type_submit_reset_7#**label**#type_submit_reset#****#", "1#**id**#Camper Name:#**label**#type_name#****#2#**id**#Camper Age Group:#**label**#type_own_select#****#3#**id**#Desire Cabin:#**label**#type_radio#****#4#**id**#Does any one have allergies?#**label**#type_radio#****#5#**id**#Has the camper been camping before?#**label**#type_radio#****#6#**id**#Any questions or concern:#**label**#type_textarea#****#7#**id**#type_submit_reset_7#**label**#type_submit_reset#****#", "0", "none", "false", "true", "", "", "", "0", "", "", "USD", "0", "1*:*id*:*type_name*:*type*:*Camper Name:*:*w_field_label*:*250*:*w_field_label_size*:*left*:*w_field_label_pos*:***********:*w_first_val*:***********:*w_title*:*Title***First***Last***Middle*:*w_mini_labels*:*100*:*w_size*:*normal*:*w_name_format*:*no*:*w_required*:*no*:*w_unique*:**:*w_class*:*no***no*:*w_name_fields*:**:*new_field*:*2*:*id*:*type_own_select*:*type*:*Camper Age Group:*:*w_field_label*:*250*:*w_field_label_size*:*left*:*w_field_label_pos*:*200*:*w_size*:****6-8***8-12***12-15*:*w_choices*:*true***false***false***false*:*w_choices_checked*:*true***false***false***false*:*w_choices_disabled*:*no*:*w_required*:*no*:*w_value_disabled*:****6-8***8-12***12-15*:*w_choices_value*:***********:*w_choices_params*:*wdform_select*:*w_class*:**:*new_field*:*3*:*id*:*type_radio*:*type*:*Desire Cabin:*:*w_field_label*:*250*:*w_field_label_size*:*left*:*w_field_label_pos*:*left*:*w_field_option_pos*:*ver*:*w_flow*:*Cabin 1***Cabin 2***Cabin 3***Cabin 4***Cabin 5***Cabin 6***Cabin 7*:*w_choices*:*false***false***false***false***false***false***false*:*w_choices_checked*:*1*:*w_rowcol*:*no*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*Cabin 1***Cabin 2***Cabin 3***Cabin 4***Cabin 5***Cabin 6***Cabin 7*:*w_choices_value*:********************:*w_choices_params*:**:*w_class*:**:*new_field*:*4*:*id*:*type_radio*:*type*:*Does any one have allergies?*:*w_field_label*:*250*:*w_field_label_size*:*left*:*w_field_label_pos*:*left*:*w_field_option_pos*:*ver*:*w_flow*:*Yes***No*:*w_choices*:*false***false*:*w_choices_checked*:*1*:*w_rowcol*:*no*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*Yes***No*:*w_choices_value*:*****:*w_choices_params*:**:*w_class*:**:*new_field*:*5*:*id*:*type_radio*:*type*:*Has the camper been camping before?*:*w_field_label*:*250*:*w_field_label_size*:*left*:*w_field_label_pos*:*left*:*w_field_option_pos*:*ver*:*w_flow*:*Yes***No*:*w_choices*:*false***false*:*w_choices_checked*:*1*:*w_rowcol*:*no*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*Yes***No*:*w_choices_value*:*****:*w_choices_params*:**:*w_class*:**:*new_field*:*6*:*id*:*type_textarea*:*type*:*Any questions or concern:*:*w_field_label*:*250*:*w_field_label_size*:*left*:*w_field_label_pos*:*200*:*w_size_w*:*100*:*w_size_h*:**:*w_first_val*:**:*w_title*:*no*:*w_required*:*no*:*w_unique*:**:*w_class*:**:*new_field*:*7*:*id*:*type_submit_reset*:*type*:*type_submit_reset_7*:*w_field_label*:*Submit*:*w_submit_title*:*Reset*:*w_reset_title*:**:*w_class*:*false*:*w_act*:**:*new_field*:*", "1", "1", "*", "", "", "", "", "1", "", "", "", "", "", "", "", "", "", "", "", "1", "1", "1", "1", "administrator,", "1", "", "", "0", "0", "0", "0", "1");
INSERT INTO `wp_formmaker` VALUES("4", "Business Demographic Survey", "", "<div 	class=\"wdform-page-and-images\" style=\"display:table; border-top:0px solid black;\"><div id=\"form_id_tempform_view1\" class=\"wdform_page\" page_title=\"Untitled page\" next_title=\"Next\" next_type=\"text\" next_class=\"wdform-page-button\" next_checkable=\"false\" previous_title=\"Previous\" previous_type=\"text\" previous_class=\"wdform-page-button\" previous_checkable=\"false\"><div class=\"wdform_section\"><div class=\"wdform_column ui-sortable\"></div></div><div wdid=\"1\" type=\"type_section_break\" class=\"wdform_tr_section_break\">%1 - custom_1%</div><div class=\"wdform_section\"><div class=\"wdform_column ui-sortable\"><div wdid=\"2\" class=\"wdform_row ui-sortable-handle\">%2 - <b>What is your employment status?</b>%</div><div wdid=\"3\" class=\"wdform_row ui-sortable-handle\">%3 - <b>What is your level of education?</b>%</div><div wdid=\"4\" class=\"wdform_row ui-sortable-handle\">%4 - <b>In which industry do you work?</b>%</div><div wdid=\"5\" class=\"wdform_row ui-sortable-handle\">%5 - <b>What is the annual revenue of your company?</b>%</div><div wdid=\"6\" class=\"wdform_row ui-sortable-handle\">%6 - Word Verification:%</div><div wdid=\"7\" class=\"wdform_row ui-sortable-handle\">%7 - type_submit_reset_7%</div></div></div><div valign=\"top\" class=\"wdform_footer\" style=\"width: 100%;\"><div style=\"width: 100%;\"><div style=\"width: 100%; display: table;\"><div style=\"display: table-row-group;\"><div id=\"form_id_temppage_nav1\" style=\"display: table-row;\"></div></div></div></div></div></div></div>", "10", "// Occurs before the form is loaded\r\nfunction before_load()\r\n{\r\n\r\n}\r\n\r\n// Occurs just before submitting  the form\r\nfunction before_submit()\r\n{\r\n// IMPORTANT! If you want to interrupt (stop) the submitting of the form, this function should return true. You don&#39;t need to return any value if you don&#39;t want to stop the submission.\r\n}\r\n\r\n// Occurs just before resetting the form\r\nfunction before_reset()\r\n{\r\n\r\n}", "", "", "1", "<p>%all%</p>", "<p>%all%</p>", "8", "1", "2#**id**#What is your employment status?#**label**#type_radio#****#3#**id**#What is your level of education?#**label**#type_radio#****#4#**id**#In which industry do you work?#**label**#type_own_select#****#5#**id**#What is the annual revenue of your company?#**label**#type_radio#****#6#**id**#Word Verification:#**label**#type_captcha#****#7#**id**#type_submit_reset_7#**label**#type_submit_reset#****#", "2#**id**#What is your employment status?#**label**#type_radio#****#3#**id**#What is your level of education?#**label**#type_radio#****#4#**id**#In which industry do you work?#**label**#type_own_select#****#5#**id**#What is the annual revenue of your company?#**label**#type_radio#****#6#**id**#Word Verification:#**label**#type_captcha#****#7#**id**#type_submit_reset_7#**label**#type_submit_reset#****#", "0", "none", "false", "true", "", "", "", "0", "", "", "USD", "0", "1*:*id*:*type_section_break*:*type*:*custom_1*:*w_field_label*:*<h2 id=\"header_1\" style=\"font-size: 1.285714286rem; font-family: Helvetica, Arial, sans-serif; color: rgb(68, 68, 68); clear: both; line-height: 1.6; margin: 1.714285714rem 0px;\">Business Demographic Survey</h2><p style=\"line-height: 1.714285714; margin: 0px 0px 1.714285714rem; color: rgb(68, 68, 68); font-family: Helvetica, Arial, sans-serif; font-size: 14px;\"></p><div id=\"subHeader_1\" style=\"color: rgb(68, 68, 68); font-family: Helvetica, Arial, sans-serif; font-size: 14px; line-height: 14px;\">Thank you for joining our business demographic survey. Please give us your feedback by filling in the information bellow.</div><p><br></p>*:*w_editor*:**:*new_field*:*2*:*id*:*type_radio*:*type*:*<b>What is your employment status?</b>*:*w_field_label*:*600*:*w_field_label_size*:*top*:*w_field_label_pos*:*left*:*w_field_option_pos*:*ver*:*w_flow*:*Employed full time***Trade or Vocational degree***Not employed, but looking for work***Not employed and not looking for work***Retired***Student***Homemaker***Prefer not to answer*:*w_choices*:*false***false***false***false***false***false***false***false*:*w_choices_checked*:*1*:*w_rowcol*:*no*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*Employed full time***Trade or Vocational degree***Not employed, but looking for work***Not employed and not looking for work***Retired***Student***Homemaker***Prefer not to answer*:*w_choices_value*:***********************:*w_choices_params*:**:*w_class*:**:*new_field*:*3*:*id*:*type_radio*:*type*:*<b>What is your level of education?</b>*:*w_field_label*:*600*:*w_field_label_size*:*top*:*w_field_label_pos*:*left*:*w_field_option_pos*:*ver*:*w_flow*:*Some high school***High school graduate or equivalent***Trade or Vocational Degree***Some college***Associate degree***Bachelor&#39;s degree***Graduate or Professional degree***Prefer not to answer*:*w_choices*:*false***false***false***false***false***false***false***false*:*w_choices_checked*:*1*:*w_rowcol*:*no*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*Some high school***High school graduate or equivalent***Trade or Vocational Degree***Some college***Associate degree***Bachelor&#39;s degree***Graduate or Professional degree***Prefer not to answer*:*w_choices_value*:***********************:*w_choices_params*:**:*w_class*:**:*new_field*:*4*:*id*:*type_own_select*:*type*:*<b>In which industry do you work?</b>*:*w_field_label*:*500*:*w_field_label_size*:*top*:*w_field_label_pos*:*200*:*w_size*:****option 1***option 2***option 3*:*w_choices*:*true***false***false***false*:*w_choices_checked*:*true***false***false***false*:*w_choices_disabled*:*no*:*w_required*:*no*:*w_value_disabled*:****option 1***option 2***option 3*:*w_choices_value*:***********:*w_choices_params*:*wdform_select*:*w_class*:**:*new_field*:*5*:*id*:*type_radio*:*type*:*<b>What is the annual revenue of your company?</b>*:*w_field_label*:*600*:*w_field_label_size*:*top*:*w_field_label_pos*:*left*:*w_field_option_pos*:*ver*:*w_flow*:*Under $10,000***$10,001 to $50,000***$50,001 to $100,000***$100,001 to $500,000***$500,001 to $1 Million***$1 Million to $10 Million***$10 Million to $50 Million***$50 Million to $100 Million***Over $100 Million*:*w_choices*:*false***false***false***false***false***false***false***false***false*:*w_choices_checked*:*1*:*w_rowcol*:*no*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*Under $10,000***$10,001 to $50,000***$50,001 to $100,000***$100,001 to $500,000***$500,001 to $1 Million***$1 Million to $10 Million***$10 Million to $50 Million***$50 Million to $100 Million***Over $100 Million*:*w_choices_value*:**************************:*w_choices_params*:**:*w_class*:**:*new_field*:*6*:*id*:*type_captcha*:*type*:*Word Verification:*:*w_field_label*:*500*:*w_field_label_size*:*top*:*w_field_label_pos*:*6*:*w_digit*:**:*w_class*:**:*new_field*:*7*:*id*:*type_submit_reset*:*type*:*type_submit_reset_7*:*w_field_label*:*Submit*:*w_submit_title*:*Reset*:*w_reset_title*:**:*w_class*:*false*:*w_act*:**:*new_field*:*", "1", "1", "*", "", "", "", "", "1", "", "", "", "", "", "", "", "", "", "", "", "1", "1", "1", "1", "administrator,", "1", "", "", "0", "0", "0", "0", "1");
INSERT INTO `wp_formmaker` VALUES("5", "Register Your Business", "", "<div class=\"wdform-page-and-images\" style=\"display:table; border-top:0px solid black;\"><div id=\"form_id_tempform_view1\" class=\"wdform_page\" page_title=\"Untitled page\" next_title=\"Next\" next_type=\"text\" next_class=\"wdform-page-button\" next_checkable=\"false\" previous_title=\"Previous\" previous_type=\"text\" previous_class=\"wdform-page-button\" previous_checkable=\"false\"><div class=\"wdform_section\"><div class=\"wdform_column ui-sortable\"><div wdid=\"1\" class=\"wdform_row ui-sortable-handle\">%1 - Business Owner %</div><div wdid=\"2\" class=\"wdform_row ui-sortable-handle\">%2 - Business Name%</div><div wdid=\"3\" class=\"wdform_row ui-sortable-handle\">%3 - E-mail%</div><div wdid=\"4\" class=\"wdform_row ui-sortable-handle\">%4 - Address:%</div><div wdid=\"10\" class=\"wdform_row ui-sortable-handle\">%10 - Type of Business%</div><div wdid=\"11\" class=\"wdform_row ui-sortable-handle\">%11 - Message%</div><div wdid=\"12\" class=\"wdform_row ui-sortable-handle\">%12 - type_submit_reset_12%</div></div></div><div valign=\"top\" class=\"wdform_footer\" style=\"width: 100%;\"><div style=\"width: 100%;\"><div style=\"width: 100%; display: table;\"><div style=\"display: table-row-group;\"><div id=\"form_id_temppage_nav1\" style=\"display: table-row;\"></div></div></div></div></div></div></div>", "26", "// Occurs before the form is loaded\r\nfunction before_load()\r\n{\r\n\r\n}\r\n\r\n// Occurs just before submitting  the form\r\nfunction before_submit()\r\n{\r\n// IMPORTANT! If you want to interrupt (stop) the submitting of the form, this function should return true. You don&#39;t need to return any value if you don&#39;t want to stop the submission.\r\n}\r\n\r\n// Occurs just before resetting the form\r\nfunction before_reset()\r\n{\r\n\r\n}", "", "", "0", "%all%", "%all%", "13", "1", "1#**id**#Business Owner #**label**#type_name#****#2#**id**#Business Name#**label**#type_text#****#3#**id**#E-mail#**label**#type_submitter_mail#****#4#**id**#Street Address#**label**#type_address#****#5#**id**#Street Address Line 2#**label**#type_address#****#6#**id**#City#**label**#type_address#****#7#**id**#State / Province / Region#**label**#type_address#****#8#**id**#Postal / Zip Code#**label**#type_address#****#9#**id**#Country#**label**#type_address#****#10#**id**#Type of Business#**label**#type_own_select#****#11#**id**#Message#**label**#type_textarea#****#12#**id**#type_submit_reset_12#**label**#type_submit_reset#****#", "1#**id**#Business Owner #**label**#type_name#****#2#**id**#Business Name#**label**#type_text#****#3#**id**#E-mail#**label**#type_submitter_mail#****#4#**id**#Street Address#**label**#type_address#****#5#**id**#Street Address Line 2#**label**#type_address#****#6#**id**#City#**label**#type_address#****#7#**id**#State / Province / Region#**label**#type_address#****#8#**id**#Postal / Zip Code#**label**#type_address#****#9#**id**#Country#**label**#type_address#****#10#**id**#Type of Business#**label**#type_own_select#****#11#**id**#Message#**label**#type_textarea#****#12#**id**#type_submit_reset_12#**label**#type_submit_reset#****#", "0", "none", "false", "true", "", "", "", "0", "", "", "USD", "0", "1*:*id*:*type_name*:*type*:*Business Owner *:*w_field_label*:*150*:*w_field_label_size*:*left*:*w_field_label_pos*:***********:*w_first_val*:***********:*w_title*:*Title***First***Last***Middle*:*w_mini_labels*:*100*:*w_size*:*normal*:*w_name_format*:*yes*:*w_required*:*no*:*w_unique*:**:*w_class*:*no***no*:*w_name_fields*:**:*new_field*:*2*:*id*:*type_text*:*type*:*Business Name*:*w_field_label*:*150*:*w_field_label_size*:*left*:*w_field_label_pos*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*yes*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:**:*new_field*:*3*:*id*:*type_submitter_mail*:*type*:*E-mail*:*w_field_label*:*150*:*w_field_label_size*:*left*:*w_field_label_pos*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*yes*:*w_required*:**:*w_unique*:**:*w_class*:**:*new_field*:*4*:*id*:*type_address*:*type*:*Address:*:*w_field_label*:*150*:*w_field_label_size*:*left*:*w_field_label_pos*:*300*:*w_size*:*Street Address***Street Address Line 2***City***State / Province / Region***Postal / Zip Code***Country*:*w_mini_labels*:*no***no***no***no***no***no****:*w_disabled_fields*:*no*:*w_required*:*wdform_address*:*w_class*:**:*new_field*:*10*:*id*:*type_own_select*:*type*:*Type of Business*:*w_field_label*:*150*:*w_field_label_size*:*left*:*w_field_label_pos*:*200*:*w_size*:*Select value***option 1***option 2*:*w_choices*:*true***false***false*:*w_choices_checked*:*true***false***false*:*w_choices_disabled*:*yes*:*w_required*:*no*:*w_value_disabled*:****option 1***option 2*:*w_choices_value*:********:*w_choices_params*:*wdform_select*:*w_class*:**:*new_field*:*11*:*id*:*type_textarea*:*type*:*Message*:*w_field_label*:*150*:*w_field_label_size*:*left*:*w_field_label_pos*:*200*:*w_size_w*:*100*:*w_size_h*:**:*w_first_val*:**:*w_title*:*no*:*w_required*:*no*:*w_unique*:**:*w_class*:**:*new_field*:*12*:*id*:*type_submit_reset*:*type*:*type_submit_reset_12*:*w_field_label*:*Submit*:*w_submit_title*:*Reset*:*w_reset_title*:**:*w_class*:*false*:*w_act*:**:*new_field*:*", "1", "1", "*", "", "", "", "", "1", "", "", "", "", "", "", "", "", "", "", "", "1", "1", "1", "1", "administrator,", "1", "", "", "0", "0", "0", "0", "1");
INSERT INTO `wp_formmaker` VALUES("6", "Cupcake Order Form", "", "<div class=\"wdform-page-and-images\" style=\"display:table; border-top:0px solid black;\"><div id=\"form_id_tempform_view1\" class=\"wdform_page\" page_title=\"Untitled page\" next_title=\"Next\" next_type=\"text\" next_class=\"wdform-page-button\" next_checkable=\"false\" previous_title=\"Previous\" previous_type=\"text\" previous_class=\"wdform-page-button\" previous_checkable=\"false\"><div class=\"wdform_section\"><div class=\"wdform_column ui-sortable\"><div wdid=\"1\" class=\"wdform_row ui-sortable-handle\">%1 - Date%</div><div wdid=\"2\" class=\"wdform_row ui-sortable-handle\">%2 - Name%</div><div wdid=\"3\" class=\"wdform_row ui-sortable-handle\">%3 - E-mail:%</div><div wdid=\"4\" class=\"wdform_row ui-sortable-handle\">%4 - <b>Cupcakes <br> Flavors (1 doz. minimum)</b>%</div><div wdid=\"5\" class=\"wdform_row ui-sortable-handle\">%5 - Quantity%</div><div wdid=\"6\" class=\"wdform_row ui-sortable-handle\">%6 - Details (if any)%</div><div wdid=\"7\" class=\"wdform_row ui-sortable-handle\">%7 - type_submit_reset_7%</div></div></div><div valign=\"top\" class=\"wdform_footer\" style=\"width: 100%;\"><div style=\"width: 100%;\"><div style=\"width: 100%; display: table;\"><div style=\"display: table-row-group;\"><div id=\"form_id_temppage_nav1\" style=\"display: table-row;\"></div></div></div></div></div></div></div>", "6", "// Occurs before the form is loaded\r\nfunction before_load()\r\n{\r\n\r\n}\r\n\r\n// Occurs just before submitting  the form\r\nfunction before_submit()\r\n{\r\n// IMPORTANT! If you want to interrupt (stop) the submitting of the form, this function should return true. You don&#39;t need to return any value if you don&#39;t want to stop the submission.\r\n}\r\n\r\n// Occurs just before resetting the form\r\nfunction before_reset()\r\n{\r\n\r\n}", "", "", "0", "%all%", "%all%", "8", "1", "1#**id**#Date#**label**#type_date_new#****#2#**id**#Name#**label**#type_name#****#3#**id**#E-mail:#**label**#type_submitter_mail#****#4#**id**#Cupcakes  Flavors (1 doz. minimum)#**label**#type_checkbox#****#5#**id**#Quantity#**label**#type_own_select#****#6#**id**#Details (if any)#**label**#type_textarea#****#7#**id**#type_submit_reset_7#**label**#type_submit_reset#****#", "1#**id**#Date#**label**#type_date_new#****#2#**id**#Name#**label**#type_name#****#3#**id**#E-mail:#**label**#type_submitter_mail#****#4#**id**#Cupcakes  Flavors (1 doz. minimum)#**label**#type_checkbox#****#5#**id**#Quantity#**label**#type_own_select#****#6#**id**#Details (if any)#**label**#type_textarea#****#7#**id**#type_submit_reset_7#**label**#type_submit_reset#****#", "0", "none", "false", "true", "", "", "", "0", "", "", "USD", "0", "1*:*id*:*type_date_new*:*type*:*Date*:*w_field_label*:*150*:*w_field_label_size*:*left*:*w_field_label_pos*:*200*:*w_size*:**:*w_date*:*yes*:*w_required*:*no*:*w_show_image*:**:*w_class*:*mm/dd/yy*:*w_format*:*0*:*w_start_day*:**:*w_default_date*:**:*w_min_date*:**:*w_max_date*:**:*w_invalid_dates*:*yes***yes***yes***yes***yes***yes***yes*:*w_show_days*:*yes*:*w_hide_time*:*...*:*w_but_val*:*no*:*w_disable_past_days*:**:*new_field*:*2*:*id*:*type_name*:*type*:*Name*:*w_field_label*:*150*:*w_field_label_size*:*left*:*w_field_label_pos*:***********:*w_first_val*:***********:*w_title*:*Title***First***Last***Middle*:*w_mini_labels*:*100*:*w_size*:*normal*:*w_name_format*:*yes*:*w_required*:*no*:*w_unique*:**:*w_class*:*no***no*:*w_name_fields*:**:*new_field*:*3*:*id*:*type_submitter_mail*:*type*:*E-mail:*:*w_field_label*:*150*:*w_field_label_size*:*left*:*w_field_label_pos*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*yes*:*w_required*:**:*w_unique*:**:*w_class*:**:*new_field*:*4*:*id*:*type_checkbox*:*type*:*<b>Cupcakes <br> Flavors (1 doz. minimum)</b>*:*w_field_label*:*150*:*w_field_label_size*:*left*:*w_field_label_pos*:*left*:*w_field_option_pos*:*ver*:*w_flow*:*Red Velvet ($150.00 TTD)***Vanilla ($100.00 TTD)***Chocolate ($120.00 TTD)***Guinness ($150.00 TTD)***Coconut ($120.00 TTD)***Lemon ($100.00 TTD)***Chocolate Mint ($120.00 TTD)*:*w_choices*:*false***false***false***false***false***false***false*:*w_choices_checked*:*1*:*w_rowcol*:*no*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*Red Velvet ($150.00 TTD)***Vanilla ($100.00 TTD)***Chocolate ($120.00 TTD)***Guinness ($150.00 TTD)***Coconut ($120.00 TTD)***Lemon ($100.00 TTD)***Chocolate Mint ($120.00 TTD)*:*w_choices_value*:********************:*w_choices_params*:**:*w_class*:**:*new_field*:*5*:*id*:*type_own_select*:*type*:*Quantity*:*w_field_label*:*150*:*w_field_label_size*:*left*:*w_field_label_pos*:*50*:*w_size*:****1***2***3***4***5***6***7***8***9***10*:*w_choices*:*true***false***false***false***false***false***false***false***false***false***false*:*w_choices_checked*:*true***false***false***false***false***false***false***false***false***false***false*:*w_choices_disabled*:*no*:*w_required*:*no*:*w_value_disabled*:****1***2***3***4***5***6***7***8***9***10*:*w_choices_value*:********************************:*w_choices_params*:*wdform_select*:*w_class*:**:*new_field*:*6*:*id*:*type_textarea*:*type*:*Details (if any)*:*w_field_label*:*150*:*w_field_label_size*:*left*:*w_field_label_pos*:*200*:*w_size_w*:*100*:*w_size_h*:**:*w_first_val*:**:*w_title*:*no*:*w_required*:*no*:*w_unique*:**:*w_class*:**:*new_field*:*7*:*id*:*type_submit_reset*:*type*:*type_submit_reset_7*:*w_field_label*:*Submit*:*w_submit_title*:*Reset*:*w_reset_title*:**:*w_class*:*false*:*w_act*:**:*new_field*:*", "1", "1", "*", "", "", "", "", "1", "", "", "", "", "", "", "", "", "", "", "", "1", "1", "1", "1", "administrator,", "1", "", "", "0", "0", "0", "0", "1");
INSERT INTO `wp_formmaker` VALUES("7", "Seminar Evaluation Survey", "", "<div class=\"wdform-page-and-images\" style=\"display:table; border-top:0px solid black;\"><div id=\"form_id_tempform_view1\" class=\"wdform_page\" page_title=\"Untitled page\" next_title=\"Next\" next_type=\"text\" next_class=\"wdform-page-button\" next_checkable=\"false\" previous_title=\"Previous\" previous_type=\"text\" previous_class=\"wdform-page-button\" previous_checkable=\"false\"><div class=\"wdform_section\"><div class=\"wdform_column ui-sortable\"></div></div><div wdid=\"1\" type=\"type_section_break\" class=\"wdform_tr_section_break\">%1 - custom_1%</div><div class=\"wdform_section\"><div class=\"wdform_column ui-sortable\"><div wdid=\"2\" class=\"wdform_row ui-sortable-handle\">%2 - <b>Company</b>%</div><div wdid=\"3\" class=\"wdform_row ui-sortable-handle\">%3 - <b>Occupation</b>%</div><div wdid=\"4\" class=\"wdform_row ui-sortable-handle\">%4 - <b>Was it worth its money?</b>%</div><div wdid=\"5\" class=\"wdform_row ui-sortable-handle\">%5 - <b>On average how would you rate the seminar?</b>%</div><div wdid=\"6\" class=\"wdform_row ui-sortable-handle\">%6 - type_submit_reset_6%</div></div></div><div valign=\"top\" class=\"wdform_footer\" style=\"width: 100%;\"><div style=\"width: 100%;\"><div style=\"width: 100%; display: table;\"><div style=\"display: table-row-group;\"><div id=\"form_id_temppage_nav1\" style=\"display: table-row;\"></div></div></div></div></div></div></div>", "16", "// Occurs before the form is loaded\r\nfunction before_load()\r\n{\r\n\r\n}\r\n\r\n// Occurs just before submitting  the form\r\nfunction before_submit()\r\n{\r\n// IMPORTANT! If you want to interrupt (stop) the submitting of the form, this function should return true. You don&#39;t need to return any value if you don&#39;t want to stop the submission.\r\n}\r\n\r\n// Occurs just before resetting the form\r\nfunction before_reset()\r\n{\r\n\r\n}", "", "", "0", "%all%", "%all%", "7", "1", "2#**id**#Company#**label**#type_text#****#3#**id**#Occupation#**label**#type_text#****#4#**id**#Was it worth its money?#**label**#type_radio#****#5#**id**#On average how would you rate the seminar?#**label**#type_radio#****#6#**id**#type_submit_reset_6#**label**#type_submit_reset#****#", "2#**id**#Company#**label**#type_text#****#3#**id**#Occupation#**label**#type_text#****#4#**id**#Was it worth its money?#**label**#type_radio#****#5#**id**#On average how would you rate the seminar?#**label**#type_radio#****#6#**id**#type_submit_reset_6#**label**#type_submit_reset#****#", "0", "none", "false", "true", "", "", "", "0", "", "", "USD", "0", "1*:*id*:*type_section_break*:*type*:*custom_1*:*w_field_label*:*<h1 id=\"header_1\" style=\"font-size: 1.5rem; font-family: Helvetica, Arial, sans-serif; color: rgb(68, 68, 68); clear: both; line-height: 1.5; margin: 1.714285714rem 0px;\">Seminar Evaluation Survey</h1><div id=\"subHeader_1\" style=\"color: rgb(68, 68, 68); font-family: Helvetica, Arial, sans-serif; font-size: 14px; line-height: 14px;\">Please take a few minutes to complete this evaluation survey</div>*:*w_editor*:**:*new_field*:*2*:*id*:*type_text*:*type*:*<b>Company</b>*:*w_field_label*:*150*:*w_field_label_size*:*top*:*w_field_label_pos*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*no*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:**:*new_field*:*3*:*id*:*type_text*:*type*:*<b>Occupation</b>*:*w_field_label*:*150*:*w_field_label_size*:*top*:*w_field_label_pos*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*no*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:**:*new_field*:*4*:*id*:*type_radio*:*type*:*<b>Was it worth its money?</b>*:*w_field_label*:*200*:*w_field_label_size*:*top*:*w_field_label_pos*:*left*:*w_field_option_pos*:*ver*:*w_flow*:*Yes***No*:*w_choices*:*false***false*:*w_choices_checked*:*1*:*w_rowcol*:*no*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*Yes***No*:*w_choices_value*:*****:*w_choices_params*:**:*w_class*:**:*new_field*:*5*:*id*:*type_radio*:*type*:*<b>On average how would you rate the seminar?</b>*:*w_field_label*:*400*:*w_field_label_size*:*top*:*w_field_label_pos*:*left*:*w_field_option_pos*:*ver*:*w_flow*:*Very good***Good***Neutral***Bad***Very bad*:*w_choices*:*false***false***false***false***false*:*w_choices_checked*:*1*:*w_rowcol*:*no*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*Very good***Good***Neutral***Bad***Very bad*:*w_choices_value*:**************:*w_choices_params*:**:*w_class*:**:*new_field*:*6*:*id*:*type_submit_reset*:*type*:*type_submit_reset_6*:*w_field_label*:*Submit*:*w_submit_title*:*Reset*:*w_reset_title*:**:*w_class*:*false*:*w_act*:**:*new_field*:*", "1", "1", "*", "", "", "", "", "1", "", "", "", "", "", "", "", "", "", "", "", "1", "1", "1", "1", "administrator,", "1", "", "", "0", "0", "0", "0", "1");
INSERT INTO `wp_formmaker` VALUES("8", "Restaurant Evaluation Survey", "", "<div class=\"wdform-page-and-images\" style=\"display:table; border-top:0px solid black;\"><div id=\"form_id_tempform_view1\" class=\"wdform_page\" page_title=\"Untitled page\" next_title=\"Next\" next_type=\"text\" next_class=\"wdform-page-button\" next_checkable=\"false\" previous_title=\"Previous\" previous_type=\"text\" previous_class=\"wdform-page-button\" previous_checkable=\"false\"><div class=\"wdform_section\"><div class=\"wdform_column ui-sortable\"></div></div><div wdid=\"1\" type=\"type_section_break\" class=\"wdform_tr_section_break\">%1 - custom_1%</div><div class=\"wdform_section\"><div class=\"wdform_column ui-sortable\"><div wdid=\"2\" class=\"wdform_row ui-sortable-handle\">%2 - Day Visited:%</div><div wdid=\"3\" class=\"wdform_row ui-sortable-handle\">%3 - <b>Dine In / Take Out:</b>%</div><div wdid=\"4\" class=\"wdform_row ui-sortable-handle\">%4 - <b>Food Quality:</b>%</div><div wdid=\"5\" class=\"wdform_row ui-sortable-handle\">%5 - <b>Speed of Service:</b>%</div><div wdid=\"6\" class=\"wdform_row ui-sortable-handle\">%6 - <b>Any comments, questions or suggestions?</b>%</div><div wdid=\"7\" class=\"wdform_row ui-sortable-handle\">%7 - type_submit_reset_7%</div></div></div><div valign=\"top\" class=\"wdform_footer\" style=\"width: 100%;\"><div style=\"width: 100%;\"><div style=\"width: 100%; display: table;\"><div style=\"display: table-row-group;\"><div id=\"form_id_temppage_nav1\" style=\"display: table-row;\"></div></div></div></div></div></div></div>", "21", "// Occurs before the form is loaded\r\nfunction before_load()\r\n{\r\n\r\n}\r\n\r\n// Occurs just before submitting  the form\r\nfunction before_submit()\r\n{\r\n// IMPORTANT! If you want to interrupt (stop) the submitting of the form, this function should return true. You don&#39;t need to return any value if you don&#39;t want to stop the submission.\r\n}\r\n\r\n// Occurs just before resetting the form\r\nfunction before_reset()\r\n{\r\n\r\n}", "", "", "0", "%all%", "%all%", "8", "1", "2#**id**#Day Visited:#**label**#type_date_new#****#3#**id**#Dine In / Take Out:#**label**#type_radio#****#4#**id**#Food Quality:#**label**#type_radio#****#5#**id**#Speed of Service:#**label**#type_radio#****#6#**id**#Any comments, questions or suggestions?#**label**#type_textarea#****#7#**id**#type_submit_reset_7#**label**#type_submit_reset#****#", "2#**id**#Day Visited:#**label**#type_date_new#****#3#**id**#Dine In / Take Out:#**label**#type_radio#****#4#**id**#Food Quality:#**label**#type_radio#****#5#**id**#Speed of Service:#**label**#type_radio#****#6#**id**#Any comments, questions or suggestions?#**label**#type_textarea#****#7#**id**#type_submit_reset_7#**label**#type_submit_reset#****#", "0", "none", "false", "true", "", "", "", "0", "", "", "USD", "0", "1*:*id*:*type_section_break*:*type*:*custom_1*:*w_field_label*:*<h2 id=\"header_21\" style=\"font-size: 1.285714286rem; font-family: Helvetica, Arial, sans-serif; color: rgb(68, 68, 68); clear: both; line-height: 1.6; margin: 1.714285714rem 0px;\">Restaurant Evaluation Survey</h2><div id=\"subHeader_21\" style=\"color: rgb(68, 68, 68); font-family: Helvetica, Arial, sans-serif; font-size: 14px; line-height: 14px;\">Please let us know how was the food and service.</div><p><br></p>*:*w_editor*:**:*new_field*:*2*:*id*:*type_date_new*:*type*:*Day Visited:*:*w_field_label*:*150*:*w_field_label_size*:*left*:*w_field_label_pos*:*200*:*w_size*:**:*w_date*:*yes*:*w_required*:*no*:*w_show_image*:**:*w_class*:*mm/dd/yy*:*w_format*:*0*:*w_start_day*:**:*w_default_date*:**:*w_min_date*:**:*w_max_date*:**:*w_invalid_dates*:*yes***yes***yes***yes***yes***yes***yes*:*w_show_days*:*yes*:*w_hide_time*:*...*:*w_but_val*:*no*:*w_disable_past_days*:**:*new_field*:*3*:*id*:*type_radio*:*type*:*<b>Dine In / Take Out:</b>*:*w_field_label*:*150*:*w_field_label_size*:*left*:*w_field_label_pos*:*left*:*w_field_option_pos*:*ver*:*w_flow*:*Dine In***Dine Out*:*w_choices*:*false***false*:*w_choices_checked*:*1*:*w_rowcol*:*no*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*Dine In***Dine Out*:*w_choices_value*:*****:*w_choices_params*:**:*w_class*:**:*new_field*:*4*:*id*:*type_radio*:*type*:*<b>Food Quality:</b>*:*w_field_label*:*150*:*w_field_label_size*:*left*:*w_field_label_pos*:*left*:*w_field_option_pos*:*ver*:*w_flow*:*Excellent***Good***Average***Dissatisfied*:*w_choices*:*false***false***false***false*:*w_choices_checked*:*1*:*w_rowcol*:*no*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*Excellent***Good***Average***Dissatisfied*:*w_choices_value*:***********:*w_choices_params*:**:*w_class*:**:*new_field*:*5*:*id*:*type_radio*:*type*:*<b>Speed of Service:</b>*:*w_field_label*:*150*:*w_field_label_size*:*left*:*w_field_label_pos*:*left*:*w_field_option_pos*:*ver*:*w_flow*:*Excellent***Good***Average***Dissatisfied*:*w_choices*:*false***false***false***false*:*w_choices_checked*:*1*:*w_rowcol*:*no*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*Excellent***Good***Average***Dissatisfied*:*w_choices_value*:***********:*w_choices_params*:**:*w_class*:**:*new_field*:*6*:*id*:*type_textarea*:*type*:*<b>Any comments, questions or suggestions?</b>*:*w_field_label*:*300*:*w_field_label_size*:*top*:*w_field_label_pos*:*300*:*w_size_w*:*100*:*w_size_h*:**:*w_first_val*:**:*w_title*:*no*:*w_required*:*no*:*w_unique*:**:*w_class*:**:*new_field*:*7*:*id*:*type_submit_reset*:*type*:*type_submit_reset_7*:*w_field_label*:*Submit*:*w_submit_title*:*Reset*:*w_reset_title*:**:*w_class*:*false*:*w_act*:**:*new_field*:*", "1", "1", "*", "", "", "", "", "1", "", "", "", "", "", "", "", "", "", "", "", "1", "1", "1", "1", "administrator,", "1", "", "", "0", "0", "0", "0", "1");
INSERT INTO `wp_formmaker` VALUES("9", "Product Survey", "", "<div class=\"wdform-page-and-images\" style=\"display:table; border-top:0px solid black;\"><div id=\"form_id_tempform_view1\" class=\"wdform_page\" page_title=\"Untitled page\" next_title=\"Next\" next_type=\"text\" next_class=\"wdform-page-button\" next_checkable=\"false\" previous_title=\"Previous\" previous_type=\"text\" previous_class=\"wdform-page-button\" previous_checkable=\"false\"><div class=\"wdform_section\"><div class=\"wdform_column ui-sortable\"></div></div><div wdid=\"1\" type=\"type_section_break\" class=\"wdform_tr_section_break\">%1 - custom_1%</div><div class=\"wdform_section\"><div class=\"wdform_column ui-sortable\"><div wdid=\"2\" class=\"wdform_row ui-sortable-handle\">%2 - 1. Please indicate if you agree or disagree with the following statements%</div><div wdid=\"3\" class=\"wdform_row ui-sortable-handle\">%3 - 2. How likely are you to recommend [Product/Service] to a friend or co-worker?%</div><div wdid=\"4\" class=\"wdform_row ui-sortable-handle\">%4 - 3. What is the amount you would ever pay for a product like ours%</div><div wdid=\"5\" class=\"wdform_row ui-sortable-handle\">%5 - 4. Please rate the product %</div><div wdid=\"6\" class=\"wdform_row ui-sortable-handle\">%6 - type_submit_reset_6%</div></div></div><div valign=\"top\" class=\"wdform_footer\" style=\"width: 100%;\"><div style=\"width: 100%;\"><div style=\"width: 100%; display: table;\"><div style=\"display: table-row-group;\"><div id=\"form_id_temppage_nav1\" style=\"display: table-row;\"></div></div></div></div></div></div></div>", "29", "// Occurs before the form is loaded\r\nfunction before_load()\r\n{\r\n\r\n}\r\n\r\n// Occurs just before submitting  the form\r\nfunction before_submit()\r\n{\r\n// IMPORTANT! If you want to interrupt (stop) the submitting of the form, this function should return true. You don&#39;t need to return any value if you don&#39;t want to stop the submission.\r\n}\r\n\r\n// Occurs just before resetting the form\r\nfunction before_reset()\r\n{\r\n\r\n}", "", "", "0", "%all%", "%all%", "7", "1", "2#**id**#1. Please indicate if you agree or disagree with the following statements#**label**#type_matrix#****#3#**id**#2. How likely are you to recommend [Product/Service] to a friend or co-worker?#**label**#type_scale_rating#****#4#**id**#3. What is the amount you would ever pay for a product like ours#**label**#type_range#****#5#**id**#4. Please rate the product #**label**#type_star_rating#****#6#**id**#type_submit_reset_6#**label**#type_submit_reset#****#", "2#**id**#1. Please indicate if you agree or disagree with the following statements#**label**#type_matrix#****#3#**id**#2. How likely are you to recommend [Product/Service] to a friend or co-worker?#**label**#type_scale_rating#****#4#**id**#3. What is the amount you would ever pay for a product like ours#**label**#type_range#****#5#**id**#4. Please rate the product #**label**#type_star_rating#****#6#**id**#type_submit_reset_6#**label**#type_submit_reset#****#", "0", "none", "false", "true", "", "", "", "0", "", "", "USD", "0", "1*:*id*:*type_section_break*:*type*:*custom_1*:*w_field_label*:*<h1 class=\"sg-title\" data-mce-style=\"font-size: 2.2em; color: #fff; font-weight: normal; line-height: normal;\" style=\"font-size: 2.2em; font-weight: normal; color: rgb(255, 255, 255); line-height: normal;\">Product Survey</h1>*:*w_editor*:**:*new_field*:*2*:*id*:*type_matrix*:*type*:*1. Please indicate if you agree or disagree with the following statements*:*w_field_label*:*600*:*w_field_label_size*:*top*:*w_field_label_pos*:*radio*:*w_field_input_type*:****Product is affordable***Product is valuable***Product is better<br> than other products on<br> the market***Product is easy to use*:*w_rows*:****Strongly Disagree***Disagree***Neutral***Agree***Strongly Agree*:*w_columns*:*no*:*w_required*:*wdform_matrix*:*w_class*:**:*w_textbox_size*:**:*new_field*:*3*:*id*:*type_scale_rating*:*type*:*2. How likely are you to recommend [Product/Service] to a friend or co-worker?*:*w_field_label*:*600*:*w_field_label_size*:*top*:*w_field_label_pos*:*Will not recommend  ***  I will recommend*:*w_mini_labels*:*5*:*w_scale_amount*:*no*:*w_required*:*wdform_scale_rating*:*w_class*:**:*new_field*:*4*:*id*:*type_range*:*type*:*3. What is the amount you would ever pay for a product like ours*:*w_field_label*:*600*:*w_field_label_size*:*top*:*w_field_label_pos*:*40*:*w_field_range_width*:*1*:*w_field_range_step*:*null*:*w_field_value1*:*null*:*w_field_value2*:*From***To*:*w_mini_labels*:*no*:*w_required*:**:*w_class*:**:*new_field*:*5*:*id*:*type_star_rating*:*type*:*4. Please rate the product *:*w_field_label*:*150*:*w_field_label_size*:*top*:*w_field_label_pos*:*yellow*:*w_field_label_col*:*10*:*w_star_amount*:*no*:*w_required*:*wdform_star_rating*:*w_class*:**:*new_field*:*6*:*id*:*type_submit_reset*:*type*:*type_submit_reset_6*:*w_field_label*:*Submit*:*w_submit_title*:*Reset*:*w_reset_title*:**:*w_class*:*true*:*w_act*:**:*new_field*:*", "1", "1", "*", "", "", "", "", "1", "", "", "", "", "", "", "", "", "", "", "", "1", "1", "1", "1", "administrator,", "1", "", "", "0", "0", "0", "0", "1");

/* INSERT TABLE DATA: wp_formmaker_backup */
INSERT INTO `wp_formmaker_backup` VALUES("1", "0", "1", "Contact", "", "<div class=\"wdform-page-and-images\" style=\"display:table; border-top:0px solid black;\"><div id=\"form_id_tempform_view1\" class=\"wdform_page\" page_title=\"Untitled page\" next_title=\"Next\" next_type=\"text\" next_class=\"wdform-page-button\" next_checkable=\"false\" previous_title=\"Previous\" previous_type=\"text\" previous_class=\"wdform-page-button\" previous_checkable=\"false\"><div class=\"wdform_section\"><div class=\"wdform_column ui-sortable\"><div wdid=\"1\" class=\"wdform_row ui-sortable-handle\">%1 - Name:%</div><div wdid=\"2\" class=\"wdform_row ui-sortable-handle\">%2 - E-mail:%</div><div wdid=\"3\" class=\"wdform_row ui-sortable-handle\">%3 - Subject:%</div><div wdid=\"4\" class=\"wdform_row ui-sortable-handle\">%4 - Message:%</div><div wdid=\"5\" class=\"wdform_row ui-sortable-handle\">%5 - type_submit_reset_5%</div></div></div><div valign=\"top\" class=\"wdform_footer\" style=\"width: 100%;\"><div style=\"width: 100%;\"><div style=\"width: 100%; display: table;\"><div style=\"display: table-row-group;\"><div id=\"form_id_temppage_nav1\" style=\"display: table-row;\"></div></div></div></div></div></div></div>", "1", "// Occurs before the form is loaded\r\nfunction before_load()\r\n{\r\n\r\n}\r\n\r\n// Occurs just before submitting  the form\r\nfunction before_submit()\r\n{\r\n// IMPORTANT! If you want to interrupt (stop) the submitting of the form, this function should return true. You don&#39;t need to return any value if you don&#39;t want to stop the submission.\r\n}\r\n\r\n// Occurs just before resetting the form\r\nfunction before_reset()\r\n{\r\n\r\n}", "", "", "0", "%all%", "%all%\r\n\r\nVerify your email address %Verification link%", "6", "1", "1#**id**#Name:#**label**#type_name#****#2#**id**#E-mail:#**label**#type_submitter_mail#****#3#**id**#Subject:#**label**#type_text#****#4#**id**#Message:#**label**#type_textarea#****#5#**id**#type_submit_reset_5#**label**#type_submit_reset#****#", "1#**id**#Name:#**label**#type_name#****#2#**id**#E-mail:#**label**#type_submitter_mail#****#3#**id**#Subject:#**label**#type_text#****#4#**id**#Message:#**label**#type_textarea#****#5#**id**#type_submit_reset_5#**label**#type_submit_reset#****#", "0", "none", "false", "true", "", "", "", "0", "", "", "USD", "0", "1*:*id*:*type_name*:*type*:*Name:*:*w_field_label*:*70*:*w_field_label_size*:*left*:*w_field_label_pos*:***********:*w_first_val*:***********:*w_title*:*Title***First***Last***Middle*:*w_mini_labels*:*100*:*w_size*:*normal*:*w_name_format*:*yes*:*w_required*:*no*:*w_unique*:**:*w_class*:*no***no*:*w_name_fields*:**:*new_field*:*2*:*id*:*type_submitter_mail*:*type*:*E-mail:*:*w_field_label*:*70*:*w_field_label_size*:*left*:*w_field_label_pos*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*no*:*w_required*:**:*w_unique*:**:*w_class*:**:*new_field*:*3*:*id*:*type_text*:*type*:*Subject:*:*w_field_label*:*70*:*w_field_label_size*:*left*:*w_field_label_pos*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*no*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:**:*new_field*:*4*:*id*:*type_textarea*:*type*:*Message:*:*w_field_label*:*70*:*w_field_label_size*:*left*:*w_field_label_pos*:*200*:*w_size_w*:*100*:*w_size_h*:**:*w_first_val*:**:*w_title*:*no*:*w_required*:*no*:*w_unique*:**:*w_class*:**:*new_field*:*5*:*id*:*type_submit_reset*:*type*:*type_submit_reset_5*:*w_field_label*:*Submit*:*w_submit_title*:*Reset*:*w_reset_title*:**:*w_class*:*true*:*w_act*:**:*new_field*:*", "1", "1", "*", "", "", "", "*2*", "1", "", "", "", "", "", "", "", "", "", "", "", "1", "1", "1", "1", "administrator,", "1", "", "", "0", "1", "1", "224", "1");
INSERT INTO `wp_formmaker_backup` VALUES("2", "0", "1", "Contact", "", "<div class=\"wdform-page-and-images\" style=\"display:table; border-top:0px solid black;\"><div id=\"form_id_tempform_view1\" class=\"wdform_page\" page_title=\"Untitled page\" next_title=\"Next\" next_type=\"text\" next_class=\"wdform-page-button\" next_checkable=\"false\" previous_title=\"Previous\" previous_type=\"text\" previous_class=\"wdform-page-button\" previous_checkable=\"false\"><div class=\"wdform_section\"><div class=\"wdform_column ui-sortable\"><div wdid=\"1\" class=\"wdform_row ui-sortable-handle\">%1 - Name:%</div><div wdid=\"2\" class=\"wdform_row ui-sortable-handle\">%2 - E-mail:%</div><div wdid=\"3\" class=\"wdform_row ui-sortable-handle\">%3 - Subject:%</div><div wdid=\"4\" class=\"wdform_row ui-sortable-handle\">%4 - Message:%</div><div wdid=\"5\" class=\"wdform_row ui-sortable-handle\">%5 - type_submit_reset_5%</div></div></div><div valign=\"top\" class=\"wdform_footer\" style=\"width: 100%;\"><div style=\"width: 100%;\"><div style=\"width: 100%; display: table;\"><div style=\"display: table-row-group;\"><div id=\"form_id_temppage_nav1\" style=\"display: table-row;\"></div></div></div></div></div></div></div>", "1", "// Occurs before the form is loaded\r\nfunction before_load() {	\r\n}	\r\n// Occurs just before submitting  the form\r\nfunction before_submit() {\r\n	// IMPORTANT! If you want to interrupt (stop) the submitting of the form, this function should return true. You don\'t need to return any value if you don\'t want to stop the submission.\r\n}	\r\n// before form reset\r\nfunction before_reset() {	\r\n}", "", "", "0", "%all%", "%all%", "6", "1", "1#**id**#Name:#**label**#type_name#****#2#**id**#E-mail:#**label**#type_submitter_mail#****#3#**id**#Subject:#**label**#type_text#****#4#**id**#Message:#**label**#type_textarea#****#5#**id**#type_submit_reset_5#**label**#type_submit_reset#****#", "1#**id**#Name:#**label**#type_name#****#2#**id**#E-mail:#**label**#type_submitter_mail#****#3#**id**#Subject:#**label**#type_text#****#4#**id**#Message:#**label**#type_textarea#****#5#**id**#type_submit_reset_5#**label**#type_submit_reset#****#", "0", "none", "false", "true", "", "", "", "0", "testmode", "", "", "0", "1*:*id*:*type_name*:*type*:*Name:*:*w_field_label*:*70*:*w_field_label_size*:*left*:*w_field_label_pos*:***********:*w_first_val*:***********:*w_title*:*Title***First***Last***Middle*:*w_mini_labels*:*100*:*w_size*:*normal*:*w_name_format*:*yes*:*w_required*:*no*:*w_unique*:**:*w_class*:*no***no*:*w_name_fields*:*no*:*w_autofill*:**:*new_field*:*2*:*id*:*type_submitter_mail*:*type*:*E-mail:*:*w_field_label*:*70*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*no*:*w_required*:**:*w_unique*:**:*w_class*:*no*:*w_verification*:*E-mail confirmation:*:*w_verification_label*:**:*w_verification_placeholder*:*no*:*w_autofill*:**:*new_field*:*3*:*id*:*type_text*:*type*:*Subject:*:*w_field_label*:*70*:*w_field_label_size*:*left*:*w_field_label_pos*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*no*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:**:*new_field*:*4*:*id*:*type_textarea*:*type*:*Message:*:*w_field_label*:*70*:*w_field_label_size*:*left*:*w_field_label_pos*:*200*:*w_size_w*:*100*:*w_size_h*:**:*w_first_val*:**:*w_title*:*no*:*w_required*:*no*:*w_unique*:**:*w_class*:**:*new_field*:*5*:*id*:*type_submit_reset*:*type*:*type_submit_reset_5*:*w_field_label*:*Submit*:*w_submit_title*:*Reset*:*w_reset_title*:**:*w_class*:*true*:*w_act*:**:*new_field*:*", "1", "1", "*", "", "", "", "", "1", "", "", "", "", "", "", "", "", "", "", "", "1", "1", "1", "1", "administrator,", "1", "", "", "0", "0", "0", "0", "1");
INSERT INTO `wp_formmaker_backup` VALUES("3", "0", "1", "Contact", "", "<div class=\"wdform-page-and-images\" style=\"display:table; border-top:0px solid black;\"><div id=\"form_id_tempform_view1\" class=\"wdform_page\" page_title=\"Untitled page\" next_title=\"Next\" next_type=\"text\" next_class=\"wdform-page-button\" next_checkable=\"false\" previous_title=\"Previous\" previous_type=\"text\" previous_class=\"wdform-page-button\" previous_checkable=\"false\"><div class=\"wdform_section\"><div class=\"wdform_column ui-sortable\"><div wdid=\"1\" class=\"wdform_row ui-sortable-handle\">%1 - Name:%</div><div wdid=\"2\" class=\"wdform_row ui-sortable-handle\">%2 - E-mail:%</div><div wdid=\"3\" class=\"wdform_row ui-sortable-handle\">%3 - Telephone%</div><div wdid=\"6\" class=\"wdform_row ui-sortable-handle\">%6 - Country:%</div><div wdid=\"4\" class=\"wdform_row ui-sortable-handle\">%4 - Message:%</div><div wdid=\"5\" class=\"wdform_row ui-sortable-handle\">%5 - type_submit_reset_5%</div></div></div><div valign=\"top\" class=\"wdform_footer\" style=\"width: 100%;\"><div style=\"width: 100%;\"><div style=\"width: 100%; display: table;\"><div style=\"display: table-row-group;\"><div id=\"form_id_temppage_nav1\" style=\"display: table-row;\"></div></div></div></div></div></div></div>", "1", "// Occurs before the form is loaded\r\nfunction before_load() {	\r\n}	\r\n// Occurs just before submitting  the form\r\nfunction before_submit() {\r\n	// IMPORTANT! If you want to interrupt (stop) the submitting of the form, this function should return true. You don\'t need to return any value if you don\'t want to stop the submission.\r\n}	\r\n// before form reset\r\nfunction before_reset() {	\r\n}", "", "", "0", "%all%", "%all%", "7", "1", "1#**id**#Name:#**label**#type_name#****#2#**id**#E-mail:#**label**#type_submitter_mail#****#3#**id**#Telephone#**label**#type_text#****#6#**id**#Country:#**label**#type_own_select#****#4#**id**#Message:#**label**#type_textarea#****#5#**id**#type_submit_reset_5#**label**#type_submit_reset#****#", "1#**id**#Name:#**label**#type_name#****#2#**id**#E-mail:#**label**#type_submitter_mail#****#3#**id**#Telephone#**label**#type_text#****#6#**id**#Country:#**label**#type_own_select#****#4#**id**#Message:#**label**#type_textarea#****#5#**id**#type_submit_reset_5#**label**#type_submit_reset#****#", "0", "none", "false", "true", "", "", "", "0", "testmode", "", "", "0", "1*:*id*:*type_name*:*type*:*Name:*:*w_field_label*:*80*:*w_field_label_size*:*left*:*w_field_label_pos*:***********:*w_first_val*:***********:*w_title*:*Title***First***Last***Middle*:*w_mini_labels*:*100*:*w_size*:*normal*:*w_name_format*:*yes*:*w_required*:*no*:*w_unique*:**:*w_class*:*no***no*:*w_name_fields*:*no*:*w_autofill*:**:*new_field*:*2*:*id*:*type_submitter_mail*:*type*:*E-mail:*:*w_field_label*:*80*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*yes*:*w_required*:*no*:*w_unique*:**:*w_class*:*no*:*w_verification*:*E-mail confirmation:*:*w_verification_label*:**:*w_verification_placeholder*:*no*:*w_autofill*:**:*new_field*:*3*:*id*:*type_text*:*type*:*Telephone*:*w_field_label*:*80*:*w_field_label_size*:*left*:*w_field_label_pos*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*yes*:*w_required*:*yes*:*w_regExp_status*:*%5E%28%5C+%29%3F%5B0-9%5D+%28-%5B0-9%5D+%29%3F%28-%5B0-9%5D+%29%3F%28-%5B0-9%5D+%29%3F%24*:*w_regExp_value*:*2*:*w_regExp_common*:**:*w_regExp_arg*:*Please enter a telephone number.*:*w_regExp_alert*:*no*:*w_unique*:**:*new_field*:*6*:*id*:*type_own_select*:*type*:*Country:*:*w_field_label*:*80*:*w_field_label_size*:*left*:*w_field_label_pos*:*200*:*w_size*:*select your country***Afghanistan***Albania***Algeria***Andorra***Angola***Antigua and Barbuda***Argentina***Armenia***Aruba***Australia***Austria***Azerbaijan***The Bahamas***Bahrain***Bangladesh***Barbados***Belarus***Belgium***Belize***Benin***Bhutan***Bolivia***Bosnia and Herzegovina***Botswana***Brazil***Brunei***Bulgaria***Burkina Faso***Burma***Burundi***Cambodia***Cameroon***Canada***Cabo Verde***Central African Republic***Chad***Chile***China***Colombia***Comoros***Democratic Republic of the Congo***Republic of the Congo***Costa Rica***Cote d\'Ivoire***Croatia***Cuba***Curacao***Cyprus***Czechia***Denmark***Djibouti***Dominica***Dominican Republic***Ecuador***Egypt***El Salvador***Equatorial Guinea***Eritrea***Estonia***Ethiopia***Fiji***Finland***France***Gabon***The Gambia***Georgia***Germany***Ghana***Greece***Grenada***Guatemala***Guinea***Guinea-Bissau***Guyana***Haiti***Holy See***Honduras***Hong Kong***Hungary***Iceland***India***Indonesia***Iran***Iraq***Ireland***Israel***Italy***Jamaica***Japan***Jordan***Kazakhstan***Kenya***Kiribati***North Korea***South Korea***Kosovo***Kuwait***Kyrgyzstan***Laos***Latvia***Lebanon***Lesotho***Liberia***Libya***Liechtenstein***Lithuania***Luxembourg***Macau***Macedonia***Madagascar***Malawi***Malaysia***Maldives***Mali***Malta***Marshall Islands***Mauritania***Mauritius***Mexico***Micronesia***Moldova***Monaco***Mongolia***Montenegro***Morocco***Mozambique***Namibia***Nauru***Nepal***Netherlands***New Zealand***Nicaragua***Niger***Nigeria***Norway***Oman***Pakistan***Palau***Palestinian Territories***Panama***Papua New Guinea***Paraguay***Peru***Philippines***Poland***Portugal***Qatar***Romania***Russia***Rwanda***Saint Kitts and Nevis***Saint Lucia***Saint Vincent and the Grenadines***Samoa***San Marino***Sao Tome and Principe***Saudi Arabia***Senegal***Serbia***Seychelles***Sierra Leone***Singapore***Sint Maarten***Slovakia***Slovenia***Solomon Islands***Somalia***South Africa***South Sudan***Spain***Sri Lanka***Sudan***Suriname***Swaziland***Sweden***Switzerland***Syria***Taiwan***Tajikistan***Tanzania***Thailand***Timor-Leste***Togo***Tonga***Trinidad and Tobago***Tunisia***Turkey***Turkmenistan***Tuvalu***Uganda***Ukraine***United Arab Emirates***United Kingdom***Uruguay***Uzbekistan***Vanuatu***Venezuela***Vietnam***Yemen***Zambia***Zimbabwe*:*w_choices*:*true***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false*:*w_choices_checked*:*true***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false*:*w_choices_disabled*:*yes*:*w_required*:*no*:*w_value_disabled*:****Afghanistan***Albania***Algeria***Andorra***Angola***Antigua and Barbuda***Argentina***Armenia***Aruba***Australia***Austria***Azerbaijan***The Bahamas***Bahrain***Bangladesh***Barbados***Belarus***Belgium***Belize***Benin***Bhutan***Bolivia***Bosnia and Herzegovina***Botswana***Brazil***Brunei***Bulgaria***Burkina Faso***Burma***Burundi***Cambodia***Cameroon***Canada***Cabo Verde***Central African Republic***Chad***Chile***China***Colombia***Comoros***Democratic Republic of the Congo***Republic of the Congo***Costa Rica***Cote d\'Ivoire***Croatia***Cuba***Curacao***Cyprus***Czechia***Denmark***Djibouti***Dominica***Dominican Republic***Ecuador***Egypt***El Salvador***Equatorial Guinea***Eritrea***Estonia***Ethiopia***Fiji***Finland***France***Gabon***The Gambia***Georgia***Germany***Ghana***Greece***Grenada***Guatemala***Guinea***Guinea-Bissau***Guyana***Haiti***Holy See***Honduras***Hong Kong***Hungary***Iceland***India***Indonesia***Iran***Iraq***Ireland***Israel***Italy***Jamaica***Japan***Jordan***Kazakhstan***Kenya***Kiribati***North Korea***South Korea***Kosovo***Kuwait***Kyrgyzstan***Laos***Latvia***Lebanon***Lesotho***Liberia***Libya***Liechtenstein***Lithuania***Luxembourg***Macau***Macedonia***Madagascar***Malawi***Malaysia***Maldives***Mali***Malta***Marshall Islands***Mauritania***Mauritius***Mexico***Micronesia***Moldova***Monaco***Mongolia***Montenegro***Morocco***Mozambique***Namibia***Nauru***Nepal***Netherlands***New Zealand***Nicaragua***Niger***Nigeria***Norway***Oman***Pakistan***Palau***Palestinian Territories***Panama***Papua New Guinea***Paraguay***Peru***Philippines***Poland***Portugal***Qatar***Romania***Russia***Rwanda***Saint Kitts and Nevis***Saint Lucia***Saint Vincent and the Grenadines***Samoa***San Marino***Sao Tome and Principe***Saudi Arabia***Senegal***Serbia***Seychelles***Sierra Leone***Singapore***Sint Maarten***Slovakia***Slovenia***Solomon Islands***Somalia***South Africa***South Sudan***Spain***Sri Lanka***Sudan***Suriname***Swaziland***Sweden***Switzerland***Syria***Taiwan***Tajikistan***Tanzania***Thailand***Timor-Leste***Togo***Tonga***Trinidad and Tobago***Tunisia***Turkey***Turkmenistan***Tuvalu***Uganda***Ukraine***United Arab Emirates***United Kingdom***Uruguay***Uzbekistan***Vanuatu***Venezuela***Vietnam***Yemen***Zambia***Zimbabwe*:*w_choices_value*:*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************:*w_choices_params*:*wdform_select*:*w_class*:**:*new_field*:*4*:*id*:*type_textarea*:*type*:*Message:*:*w_field_label*:*80*:*w_field_label_size*:*left*:*w_field_label_pos*:*200*:*w_size_w*:*100*:*w_size_h*:**:*w_first_val*:**:*w_title*:*yes*:*w_required*:*no*:*w_unique*:**:*w_class*:**:*new_field*:*5*:*id*:*type_submit_reset*:*type*:*type_submit_reset_5*:*w_field_label*:*Submit*:*w_submit_title*:*Reset*:*w_reset_title*:**:*w_class*:*true*:*w_act*:**:*new_field*:*", "1", "1", "*", "", "", "", "", "1", "", "", "", "", "", "", "", "", "", "", "", "1", "1", "1", "1", "administrator,", "1", "", "", "0", "0", "0", "0", "1");
INSERT INTO `wp_formmaker_backup` VALUES("4", "1", "2", "Fill Form To Get Admission", "", "<div class=\"wdform-page-and-images\" style=\"display:table; border-top:0px solid black;\"><div id=\"form_id_tempform_view1\" class=\"wdform_page\" page_title=\"Untitled page\" next_title=\"Next\" next_type=\"text\" next_class=\"wdform-page-button\" next_checkable=\"false\" previous_title=\"Previous\" previous_type=\"text\" previous_class=\"wdform-page-button\" previous_checkable=\"false\"><div class=\"wdform_section\"><div class=\"wdform_column ui-sortable\"><div wdid=\"1\" class=\"wdform_row ui-sortable-handle\">%1 - Name:%</div><div wdid=\"2\" class=\"wdform_row ui-sortable-handle\">%2 - E-mail:%</div><div wdid=\"4\" class=\"wdform_row ui-sortable-handle\">%4 - Phone Number:%</div><div wdid=\"5\" class=\"wdform_row ui-sortable-handle\">%5 - SELECT COLLEGE%</div><div wdid=\"6\" class=\"wdform_row ui-sortable-handle\">%6 - OTHER SPECIFY HERE%</div><div wdid=\"7\" class=\"wdform_row ui-sortable-handle\">%7 - Word Verification:%</div><div wdid=\"8\" class=\"wdform_row ui-sortable-handle\">%8 - type_submit_reset_8%</div></div></div><div valign=\"top\" class=\"wdform_footer\" style=\"width: 100%;\"><div style=\"width: 100%;\"><div style=\"width: 100%; display: table;\"><div style=\"display: table-row-group;\"><div id=\"form_id_temppage_nav1\" style=\"display: table-row;\"></div></div></div></div></div></div></div>", "8", "// Occurs before the form is loaded\r\nfunction before_load()\r\n{\r\n\r\n}\r\n\r\n// Occurs just before submitting  the form\r\nfunction before_submit()\r\n{\r\n// IMPORTANT! If you want to interrupt (stop) the submitting of the form, this function should return true. You don&#39;t need to return any value if you don&#39;t want to stop the submission.\r\n}\r\n\r\n// Occurs just before resetting the form\r\nfunction before_reset()\r\n{\r\n\r\n}", "", "", "0", "%all%", "%all%", "9", "1", "1#**id**#Name:#**label**#type_name#****#2#**id**#E-mail:#**label**#type_submitter_mail#****#4#**id**#Phone Number:#**label**#type_number#****#5#**id**#SELECT COLLEGE#**label**#type_own_select#****#6#**id**#OTHER SPECIFY HERE#**label**#type_text#****#7#**id**#Word Verification:#**label**#type_captcha#****#8#**id**#type_submit_reset_8#**label**#type_submit_reset#****#", "1#**id**#Name:#**label**#type_name#****#2#**id**#E-mail:#**label**#type_submitter_mail#****#4#**id**#Phone Number:#**label**#type_number#****#5#**id**#SELECT COLLEGE#**label**#type_own_select#****#6#**id**#OTHER SPECIFY HERE#**label**#type_text#****#7#**id**#Word Verification:#**label**#type_captcha#****#8#**id**#type_submit_reset_8#**label**#type_submit_reset#****#", "0", "none", "false", "true", "", "", "", "0", "", "", "USD", "0", "1*:*id*:*type_name*:*type*:*Name:*:*w_field_label*:*160*:*w_field_label_size*:*left*:*w_field_label_pos*:***********:*w_first_val*:***********:*w_title*:*Title***First***Last***Middle*:*w_mini_labels*:*100*:*w_size*:*normal*:*w_name_format*:*no*:*w_required*:*no*:*w_unique*:**:*w_class*:*yes***yes*:*w_name_fields*:**:*new_field*:*2*:*id*:*type_submitter_mail*:*type*:*E-mail:*:*w_field_label*:*160*:*w_field_label_size*:*left*:*w_field_label_pos*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*yes*:*w_required*:**:*w_unique*:**:*w_class*:**:*new_field*:*4*:*id*:*type_number*:*type*:*Phone Number:*:*w_field_label*:*160*:*w_field_label_size*:*left*:*w_field_label_pos*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*no*:*w_required*:*no*:*w_unique*:**:*w_class*:**:*new_field*:*5*:*id*:*type_own_select*:*type*:*SELECT COLLEGE*:*w_field_label*:*160*:*w_field_label_size*:*left*:*w_field_label_pos*:*200*:*w_size*:**** GGSCMT,KHARAR*** DOABA KHARAR *** CAMBRIDGE COLLEGE FATEHGARH *** INDOGLOBAL *** QUEST COLLEGE *** UNIVERSAL ,LALRU *** OTHER PLEASE SPECIFY BELOW *:*w_choices*:*true***false***false***false***false***false***false***false*:*w_choices_checked*:*true***false***false***false***false***false***false***false*:*w_choices_disabled*:*yes*:*w_required*:*no*:*w_value_disabled*:**** GGSCMT,KHARAR*** DOABA KHARAR *** CAMBRIDGE COLLEGE FATEHGARH *** INDOGLOBAL *** QUEST COLLEGE *** UNIVERSAL ,LALRU *** OTHER PLEASE SPECIFY BELOW *:*w_choices_value*:***********************:*w_choices_params*:*wdform_select*:*w_class*:**:*new_field*:*6*:*id*:*type_text*:*type*:*OTHER SPECIFY HERE*:*w_field_label*:*160*:*w_field_label_size*:*left*:*w_field_label_pos*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*no*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:**:*new_field*:*7*:*id*:*type_captcha*:*type*:*Word Verification:*:*w_field_label*:*160*:*w_field_label_size*:*left*:*w_field_label_pos*:*6*:*w_digit*:**:*w_class*:**:*new_field*:*8*:*id*:*type_submit_reset*:*type*:*type_submit_reset_8*:*w_field_label*:*Submit*:*w_submit_title*:*Reset*:*w_reset_title*:**:*w_class*:*true*:*w_act*:**:*new_field*:*", "1", "1", "*", "", "", "", "", "1", "", "", "", "", "", "", "", "", "", "", "", "1", "1", "1", "1", "administrator,", "1", "", "", "0", "0", "0", "0", "1");
INSERT INTO `wp_formmaker_backup` VALUES("5", "1", "5", "Register Your Business", "", "<div class=\"wdform-page-and-images\" style=\"display:table; border-top:0px solid black;\"><div id=\"form_id_tempform_view1\" class=\"wdform_page\" page_title=\"Untitled page\" next_title=\"Next\" next_type=\"text\" next_class=\"wdform-page-button\" next_checkable=\"false\" previous_title=\"Previous\" previous_type=\"text\" previous_class=\"wdform-page-button\" previous_checkable=\"false\"><div class=\"wdform_section\"><div class=\"wdform_column ui-sortable\"><div wdid=\"1\" class=\"wdform_row ui-sortable-handle\">%1 - Business Owner %</div><div wdid=\"2\" class=\"wdform_row ui-sortable-handle\">%2 - Business Name%</div><div wdid=\"3\" class=\"wdform_row ui-sortable-handle\">%3 - E-mail%</div><div wdid=\"4\" class=\"wdform_row ui-sortable-handle\">%4 - Address:%</div><div wdid=\"10\" class=\"wdform_row ui-sortable-handle\">%10 - Type of Business%</div><div wdid=\"11\" class=\"wdform_row ui-sortable-handle\">%11 - Message%</div><div wdid=\"12\" class=\"wdform_row ui-sortable-handle\">%12 - type_submit_reset_12%</div></div></div><div valign=\"top\" class=\"wdform_footer\" style=\"width: 100%;\"><div style=\"width: 100%;\"><div style=\"width: 100%; display: table;\"><div style=\"display: table-row-group;\"><div id=\"form_id_temppage_nav1\" style=\"display: table-row;\"></div></div></div></div></div></div></div>", "26", "// Occurs before the form is loaded\r\nfunction before_load()\r\n{\r\n\r\n}\r\n\r\n// Occurs just before submitting  the form\r\nfunction before_submit()\r\n{\r\n// IMPORTANT! If you want to interrupt (stop) the submitting of the form, this function should return true. You don&#39;t need to return any value if you don&#39;t want to stop the submission.\r\n}\r\n\r\n// Occurs just before resetting the form\r\nfunction before_reset()\r\n{\r\n\r\n}", "", "", "0", "%all%", "%all%", "13", "1", "1#**id**#Business Owner #**label**#type_name#****#2#**id**#Business Name#**label**#type_text#****#3#**id**#E-mail#**label**#type_submitter_mail#****#4#**id**#Street Address#**label**#type_address#****#5#**id**#Street Address Line 2#**label**#type_address#****#6#**id**#City#**label**#type_address#****#7#**id**#State / Province / Region#**label**#type_address#****#8#**id**#Postal / Zip Code#**label**#type_address#****#9#**id**#Country#**label**#type_address#****#10#**id**#Type of Business#**label**#type_own_select#****#11#**id**#Message#**label**#type_textarea#****#12#**id**#type_submit_reset_12#**label**#type_submit_reset#****#", "1#**id**#Business Owner #**label**#type_name#****#2#**id**#Business Name#**label**#type_text#****#3#**id**#E-mail#**label**#type_submitter_mail#****#4#**id**#Street Address#**label**#type_address#****#5#**id**#Street Address Line 2#**label**#type_address#****#6#**id**#City#**label**#type_address#****#7#**id**#State / Province / Region#**label**#type_address#****#8#**id**#Postal / Zip Code#**label**#type_address#****#9#**id**#Country#**label**#type_address#****#10#**id**#Type of Business#**label**#type_own_select#****#11#**id**#Message#**label**#type_textarea#****#12#**id**#type_submit_reset_12#**label**#type_submit_reset#****#", "0", "none", "false", "true", "", "", "", "0", "", "", "USD", "0", "1*:*id*:*type_name*:*type*:*Business Owner *:*w_field_label*:*150*:*w_field_label_size*:*left*:*w_field_label_pos*:***********:*w_first_val*:***********:*w_title*:*Title***First***Last***Middle*:*w_mini_labels*:*100*:*w_size*:*normal*:*w_name_format*:*yes*:*w_required*:*no*:*w_unique*:**:*w_class*:*no***no*:*w_name_fields*:**:*new_field*:*2*:*id*:*type_text*:*type*:*Business Name*:*w_field_label*:*150*:*w_field_label_size*:*left*:*w_field_label_pos*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*yes*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:**:*new_field*:*3*:*id*:*type_submitter_mail*:*type*:*E-mail*:*w_field_label*:*150*:*w_field_label_size*:*left*:*w_field_label_pos*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*yes*:*w_required*:**:*w_unique*:**:*w_class*:**:*new_field*:*4*:*id*:*type_address*:*type*:*Address:*:*w_field_label*:*150*:*w_field_label_size*:*left*:*w_field_label_pos*:*300*:*w_size*:*Street Address***Street Address Line 2***City***State / Province / Region***Postal / Zip Code***Country*:*w_mini_labels*:*no***no***no***no***no***no****:*w_disabled_fields*:*no*:*w_required*:*wdform_address*:*w_class*:**:*new_field*:*10*:*id*:*type_own_select*:*type*:*Type of Business*:*w_field_label*:*150*:*w_field_label_size*:*left*:*w_field_label_pos*:*200*:*w_size*:*Select value***option 1***option 2*:*w_choices*:*true***false***false*:*w_choices_checked*:*true***false***false*:*w_choices_disabled*:*yes*:*w_required*:*no*:*w_value_disabled*:****option 1***option 2*:*w_choices_value*:********:*w_choices_params*:*wdform_select*:*w_class*:**:*new_field*:*11*:*id*:*type_textarea*:*type*:*Message*:*w_field_label*:*150*:*w_field_label_size*:*left*:*w_field_label_pos*:*200*:*w_size_w*:*100*:*w_size_h*:**:*w_first_val*:**:*w_title*:*no*:*w_required*:*no*:*w_unique*:**:*w_class*:**:*new_field*:*12*:*id*:*type_submit_reset*:*type*:*type_submit_reset_12*:*w_field_label*:*Submit*:*w_submit_title*:*Reset*:*w_reset_title*:**:*w_class*:*false*:*w_act*:**:*new_field*:*", "1", "1", "*", "", "", "", "", "1", "", "", "", "", "", "", "", "", "", "", "", "1", "1", "1", "1", "administrator,", "1", "", "", "0", "0", "0", "0", "1");
INSERT INTO `wp_formmaker_backup` VALUES("6", "1", "1", "Contact", "", "<div class=\"wdform-page-and-images\" style=\"display:table; border-top:0px solid black;\"><div id=\"form_id_tempform_view1\" class=\"wdform_page\" page_title=\"Untitled page\" next_title=\"Next\" next_type=\"text\" next_class=\"wdform-page-button\" next_checkable=\"false\" previous_title=\"Previous\" previous_type=\"text\" previous_class=\"wdform-page-button\" previous_checkable=\"false\"><div class=\"wdform_section\"><div class=\"wdform_column ui-sortable\"><div wdid=\"1\" class=\"wdform_row ui-sortable-handle\">%1 - Name:%</div><div wdid=\"2\" class=\"wdform_row ui-sortable-handle\">%2 - E-mail:%</div><div wdid=\"3\" class=\"wdform_row ui-sortable-handle\">%3 - Telephone%</div><div wdid=\"6\" class=\"wdform_row ui-sortable-handle\">%6 - Country:%</div><div wdid=\"4\" class=\"wdform_row ui-sortable-handle\">%4 - Message:%</div><div wdid=\"5\" class=\"wdform_row ui-sortable-handle\">%5 - type_submit_reset_5%</div></div></div><div valign=\"top\" class=\"wdform_footer\" style=\"width: 100%;\"><div style=\"width: 100%;\"><div style=\"width: 100%; display: table;\"><div style=\"display: table-row-group;\"><div id=\"form_id_temppage_nav1\" style=\"display: table-row;\"></div></div></div></div></div></div></div>", "1", "// Occurs before the form is loaded\r\nfunction before_load() {	\r\n}	\r\n// Occurs just before submitting  the form\r\nfunction before_submit() {\r\n	// IMPORTANT! If you want to interrupt (stop) the submitting of the form, this function should return true. You don\'t need to return any value if you don\'t want to stop the submission.\r\n}	\r\n// before form reset\r\nfunction before_reset() {	\r\n}", "", "", "0", "%all%", "%all%", "7", "1", "1#**id**#Name:#**label**#type_name#****#2#**id**#E-mail:#**label**#type_submitter_mail#****#3#**id**#Telephone#**label**#type_text#****#6#**id**#Country:#**label**#type_own_select#****#4#**id**#Message:#**label**#type_textarea#****#5#**id**#type_submit_reset_5#**label**#type_submit_reset#****#", "1#**id**#Name:#**label**#type_name#****#2#**id**#E-mail:#**label**#type_submitter_mail#****#3#**id**#Telephone#**label**#type_text#****#6#**id**#Country:#**label**#type_own_select#****#4#**id**#Message:#**label**#type_textarea#****#5#**id**#type_submit_reset_5#**label**#type_submit_reset#****#", "0", "none", "false", "true", "", "", "", "0", "testmode", "", "", "0", "1*:*id*:*type_name*:*type*:*Name:*:*w_field_label*:*80*:*w_field_label_size*:*left*:*w_field_label_pos*:***********:*w_first_val*:***********:*w_title*:*Title***First***Last***Middle*:*w_mini_labels*:*100*:*w_size*:*normal*:*w_name_format*:*yes*:*w_required*:*no*:*w_unique*:**:*w_class*:*no***no*:*w_name_fields*:*no*:*w_autofill*:**:*new_field*:*2*:*id*:*type_submitter_mail*:*type*:*E-mail:*:*w_field_label*:*80*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*yes*:*w_required*:*no*:*w_unique*:**:*w_class*:*no*:*w_verification*:*E-mail confirmation:*:*w_verification_label*:**:*w_verification_placeholder*:*no*:*w_autofill*:**:*new_field*:*3*:*id*:*type_text*:*type*:*Telephone*:*w_field_label*:*80*:*w_field_label_size*:*left*:*w_field_label_pos*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*yes*:*w_required*:*yes*:*w_regExp_status*:*%5E%28%5C+%29%3F%5B0-9%5D+%28-%5B0-9%5D+%29%3F%28-%5B0-9%5D+%29%3F%28-%5B0-9%5D+%29%3F%24*:*w_regExp_value*:*2*:*w_regExp_common*:**:*w_regExp_arg*:*This is not a valid telephone number.*:*w_regExp_alert*:*no*:*w_unique*:**:*new_field*:*6*:*id*:*type_own_select*:*type*:*Country:*:*w_field_label*:*80*:*w_field_label_size*:*left*:*w_field_label_pos*:*200*:*w_size*:*select your country***Afghanistan***Albania***Algeria***Andorra***Angola***Antigua and Barbuda***Argentina***Armenia***Aruba***Australia***Austria***Azerbaijan***The Bahamas***Bahrain***Bangladesh***Barbados***Belarus***Belgium***Belize***Benin***Bhutan***Bolivia***Bosnia and Herzegovina***Botswana***Brazil***Brunei***Bulgaria***Burkina Faso***Burma***Burundi***Cambodia***Cameroon***Canada***Cabo Verde***Central African Republic***Chad***Chile***China***Colombia***Comoros***Democratic Republic of the Congo***Republic of the Congo***Costa Rica***Cote d\'Ivoire***Croatia***Cuba***Curacao***Cyprus***Czechia***Denmark***Djibouti***Dominica***Dominican Republic***Ecuador***Egypt***El Salvador***Equatorial Guinea***Eritrea***Estonia***Ethiopia***Fiji***Finland***France***Gabon***The Gambia***Georgia***Germany***Ghana***Greece***Grenada***Guatemala***Guinea***Guinea-Bissau***Guyana***Haiti***Holy See***Honduras***Hong Kong***Hungary***Iceland***India***Indonesia***Iran***Iraq***Ireland***Israel***Italy***Jamaica***Japan***Jordan***Kazakhstan***Kenya***Kiribati***North Korea***South Korea***Kosovo***Kuwait***Kyrgyzstan***Laos***Latvia***Lebanon***Lesotho***Liberia***Libya***Liechtenstein***Lithuania***Luxembourg***Macau***Macedonia***Madagascar***Malawi***Malaysia***Maldives***Mali***Malta***Marshall Islands***Mauritania***Mauritius***Mexico***Micronesia***Moldova***Monaco***Mongolia***Montenegro***Morocco***Mozambique***Namibia***Nauru***Nepal***Netherlands***New Zealand***Nicaragua***Niger***Nigeria***Norway***Oman***Pakistan***Palau***Palestinian Territories***Panama***Papua New Guinea***Paraguay***Peru***Philippines***Poland***Portugal***Qatar***Romania***Russia***Rwanda***Saint Kitts and Nevis***Saint Lucia***Saint Vincent and the Grenadines***Samoa***San Marino***Sao Tome and Principe***Saudi Arabia***Senegal***Serbia***Seychelles***Sierra Leone***Singapore***Sint Maarten***Slovakia***Slovenia***Solomon Islands***Somalia***South Africa***South Sudan***Spain***Sri Lanka***Sudan***Suriname***Swaziland***Sweden***Switzerland***Syria***Taiwan***Tajikistan***Tanzania***Thailand***Timor-Leste***Togo***Tonga***Trinidad and Tobago***Tunisia***Turkey***Turkmenistan***Tuvalu***Uganda***Ukraine***United Arab Emirates***United Kingdom***Uruguay***Uzbekistan***Vanuatu***Venezuela***Vietnam***Yemen***Zambia***Zimbabwe*:*w_choices*:*true***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false*:*w_choices_checked*:*true***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false***false*:*w_choices_disabled*:*yes*:*w_required*:*no*:*w_value_disabled*:****Afghanistan***Albania***Algeria***Andorra***Angola***Antigua and Barbuda***Argentina***Armenia***Aruba***Australia***Austria***Azerbaijan***The Bahamas***Bahrain***Bangladesh***Barbados***Belarus***Belgium***Belize***Benin***Bhutan***Bolivia***Bosnia and Herzegovina***Botswana***Brazil***Brunei***Bulgaria***Burkina Faso***Burma***Burundi***Cambodia***Cameroon***Canada***Cabo Verde***Central African Republic***Chad***Chile***China***Colombia***Comoros***Democratic Republic of the Congo***Republic of the Congo***Costa Rica***Cote d\'Ivoire***Croatia***Cuba***Curacao***Cyprus***Czechia***Denmark***Djibouti***Dominica***Dominican Republic***Ecuador***Egypt***El Salvador***Equatorial Guinea***Eritrea***Estonia***Ethiopia***Fiji***Finland***France***Gabon***The Gambia***Georgia***Germany***Ghana***Greece***Grenada***Guatemala***Guinea***Guinea-Bissau***Guyana***Haiti***Holy See***Honduras***Hong Kong***Hungary***Iceland***India***Indonesia***Iran***Iraq***Ireland***Israel***Italy***Jamaica***Japan***Jordan***Kazakhstan***Kenya***Kiribati***North Korea***South Korea***Kosovo***Kuwait***Kyrgyzstan***Laos***Latvia***Lebanon***Lesotho***Liberia***Libya***Liechtenstein***Lithuania***Luxembourg***Macau***Macedonia***Madagascar***Malawi***Malaysia***Maldives***Mali***Malta***Marshall Islands***Mauritania***Mauritius***Mexico***Micronesia***Moldova***Monaco***Mongolia***Montenegro***Morocco***Mozambique***Namibia***Nauru***Nepal***Netherlands***New Zealand***Nicaragua***Niger***Nigeria***Norway***Oman***Pakistan***Palau***Palestinian Territories***Panama***Papua New Guinea***Paraguay***Peru***Philippines***Poland***Portugal***Qatar***Romania***Russia***Rwanda***Saint Kitts and Nevis***Saint Lucia***Saint Vincent and the Grenadines***Samoa***San Marino***Sao Tome and Principe***Saudi Arabia***Senegal***Serbia***Seychelles***Sierra Leone***Singapore***Sint Maarten***Slovakia***Slovenia***Solomon Islands***Somalia***South Africa***South Sudan***Spain***Sri Lanka***Sudan***Suriname***Swaziland***Sweden***Switzerland***Syria***Taiwan***Tajikistan***Tanzania***Thailand***Timor-Leste***Togo***Tonga***Trinidad and Tobago***Tunisia***Turkey***Turkmenistan***Tuvalu***Uganda***Ukraine***United Arab Emirates***United Kingdom***Uruguay***Uzbekistan***Vanuatu***Venezuela***Vietnam***Yemen***Zambia***Zimbabwe*:*w_choices_value*:*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************:*w_choices_params*:*wdform_select*:*w_class*:**:*new_field*:*4*:*id*:*type_textarea*:*type*:*Message:*:*w_field_label*:*80*:*w_field_label_size*:*left*:*w_field_label_pos*:*200*:*w_size_w*:*100*:*w_size_h*:**:*w_first_val*:**:*w_title*:*yes*:*w_required*:*no*:*w_unique*:**:*w_class*:**:*new_field*:*5*:*id*:*type_submit_reset*:*type*:*type_submit_reset_5*:*w_field_label*:*Submit*:*w_submit_title*:*Reset*:*w_reset_title*:**:*w_class*:*true*:*w_act*:**:*new_field*:*", "1", "1", "*", "", "", "", "", "1", "", "", "", "", "", "", "", "", "", "", "", "1", "1", "1", "1", "administrator,", "1", "", "", "0", "0", "0", "0", "1");

/* INSERT TABLE DATA: wp_formmaker_themes */
INSERT INTO `wp_formmaker_themes` VALUES("1", "Theme 01 blue", ".wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #F0EFEF;\r\nborder: 1px solid #013D7C;\r\nborder-radius: 5px;\r\ncolor: #013D7C;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\ninput[type=\"radio\"]\r\n{\r\nborder:none !important;\r\noutline:none !important;\r\n}\r\ninput[type=\"checkbox\"]\r\n{\r\nborder:none !important;\r\noutline:none !important;\r\n}\r\na.ui-spinner-button\r\n{\r\nborder-radius:0px !important;\r\nbackground: none!important;\r\n}\r\n\r\na.ui-slider-handle {\r\nwidth: 13px;\r\nheight: 13px;\r\ntop: -4px;\r\nborder: 0px;\r\nborder-radius: 13px;\r\nbackground: #FAFAFA;\r\nborder: 3px solid #B1B1B1;\r\noutline: none;\r\n}\r\n\r\n.ui-slider {\r\n	height: 6px;\r\n	background: #F5F5F5 !important;\r\n	margin: 7px 0px;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell input[type=\"text\"] {\r\n	width: 100px;\r\nfont-size: 14px !important;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\nfont-size: 14px !important;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #E9E9E9;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n	color: #000;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 0px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\n\r\n\r\n.ui-slider-range {\r\n	background: #8A8A8A !important;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #fff;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\n	border: 0px solid #000 !important;\r\npadding-left:10px;\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n\r\n.sel-imul {\r\n	display: none;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	border-radius: 0px;\r\n	padding: 0px 0px 0px 2px;\r\n	font-size: 13px;\r\n	height: 22px;\r\n	line-height: 22px;\r\n	overflow: hidden;\r\n	background: #F8F8F8;\r\n	border: 0px solid #D3D3D3;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 23px;\r\n	width: 30px;\r\n	background: url([SITE_ROOT]/images/09/01.png) 50% 50% no-repeat;\r\n	position: absolute;\r\n	top: 0px;\r\n	right: 0px;\r\n	padding: 0px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text]{\r\n	margin: 0px;\r\n}\r\ninput[type=password]{\r\n	margin: 0px;\r\n}\r\ninput[type=url]{\r\n	margin: 0px;\r\n}\r\ninput[type=email]{\r\n	margin: 0px;\r\n}\r\ninput.text{\r\n	margin: 0px;\r\n}\r\ninput.title{\r\n	margin: 0px;\r\n}\r\ntextarea{\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	position: absolute;\r\n	border-radius: 0px;\r\n	height: 23px;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	}\r\n.file-picker {\r\n	width: 41px;\r\n	height: 32px;\r\n	background: url([SITE_ROOT]/images/10/01/upload.png) no-repeat;\r\n	display: inline-block;\r\n}\r\n.next-page div.wdform-page-button {\r\ncolor: #FFF;\r\ncursor: pointer;\r\ndisplay: inline-block;\r\nheight: 38px;\r\nline-height: 35px;\r\nbackground:url([SITE_ROOT]/images/10/next.png) no-repeat right #013D7C;\r\npadding: 0px 36px 0 20px;\r\nvertical-align: middle;\r\nfont-size: 18px;\r\nborder-top-right-radius: 7px;\r\nborder-bottom-right-radius: 7px;\r\n}\r\n.previous-page div.wdform-page-button {\r\ncolor: #A2A2A2;\r\ncursor: pointer;\r\ndisplay: inline-block;\r\nheight: 37px;\r\nline-height: 35px;\r\nbackground:url([SITE_ROOT]/images/09/previous.png) no-repeat left #F1F1F1;\r\npadding: 0 20px 0 36px;\r\nvertical-align: middle;\r\nfont-size: 18px;\r\nborder-top-left-radius: 7px;\r\nborder-bottom-left-radius: 7px;\r\n}\r\n.button-submit {\r\n	color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	line-height: 35px;\r\n	background: #013D7C;\r\n	padding: 0px 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	min-width: 80px;\r\n	min-height: 35px;\r\n	font-family: Segoe UI;\r\n		border: 1px solid transparent;\r\n	margin: 5px;\r\n}\r\n.button-reset {\r\n	color: #787878;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	line-height: 35px;\r\n	background: #F0EFEF;\r\n	padding: 0px 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	min-width: 80px;\r\n	min-height: 35px;\r\n	font-family: Segoe UI;\r\n	float: right;\r\n	border: 1px solid transparent;\r\n	margin: 5px;\r\n}\r\n.wdform_page {\r\n	background: #FFFFFF;\r\n	padding-top: 15px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_column {\r\n	border-right: none !important;\r\n	padding-right: 50px !important;\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n}\r\n.wdform_section_break2 {\r\n	color: #013D7C;\r\n	display: inline-block;\r\n	text-align: left;\r\n	font-size: 23px;\r\nmargin: 16px 10px 40px 0px;\r\n}\r\n\r\n.wdform_section_break {\r\n	color: #013D7C;\r\n	font-size: 23px;\r\nmargin: 16px 0px;\r\n}\r\n\r\n.wdform_section {\r\n	display: inline-block;\r\n}\r\nselect {\r\n	padding: 2px;\r\n	height: 26px;\r\n	border: 1px solid #B7B7B7;\r\nbackground: #F8F8F8;\r\nfont-size: 14px !important;\r\n}\r\ninput[type=\"text\"]{\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F8F8F8;\r\nborder:1px solid #B7B7B7;\r\nfont-size: 14px !important;\r\n}\r\ninput[type=\"password\"]{\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F8F8F8;\r\nborder:1px solid #B7B7B7;\r\nfont-size: 14px !important;\r\n}\r\ntextarea {\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F8F8F8;\r\nborder:1px solid #B7B7B7;\r\nfont-size: 14px !important;\r\n}\r\ninput[type=\"text\"]:focus{\r\n	outline: none;\r\n}\r\ninput[type=\"password\"]:focus{\r\n	outline: none;\r\n}\r\ntextarea:focus{\r\n	outline: none;\r\n}\r\nselect {\r\n	outline: none;\r\n}\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 30px;\r\n	vertical-align: middle;\r\n}\r\n\r\n\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/03/date.png) no-repeat !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 22px;\r\n	height: 22px;\r\n	position: relative;\r\n	left: -22px;\r\n	vertical-align: top;\r\n	outline: none;\r\n}\r\n\r\n\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n\r\n.if-ie-div-label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #000;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	margin-top: 15px;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: \"Lucida Grande\", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #8A8A8A;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #000;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: red;\r\n	vertical-align: top;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n	border-radius: 0px;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\ncolor: #013E7D;\r\nbackground-color: #FFF;\r\ncursor: pointer;\r\ndisplay: inline-block;\r\nheight: 29px;\r\ntext-align: center;\r\nvertical-align: bottom;\r\npadding: 5px 25px 0px 25px;\r\nfont-size: 16px;\r\nfont-weight:bold;\r\n}\r\n.page_active {\r\ncolor: #FFF;\r\ncursor: pointer;\r\nbackground-color: #013E7D;\r\ndisplay: inline-block;\r\nvertical-align: bottom;\r\nheight: 29px;\r\ntext-align: center;\r\nfont-size: 20px;\r\npadding: 5px 25px 0px 25px;\r\nline-height: 26px;\r\nfont-weight:bold;\r\n}\r\n.page_percentage_active {\r\npadding: 0px;\r\nmargin: 0px;\r\nborder-spacing: 0px;\r\nheight: 16px;\r\nline-height: 16px;\r\nfont-size: 15px;\r\nfloat: left;\r\ntext-align: right !important;\r\nz-index: 1;\r\nposition: relative;\r\nvertical-align: middle;\r\nbackground: #013E7F;\r\ncolor: #fff;\r\nborder-top-left-radius: 5px;\r\nborder-bottom-left-radius: 5px;\r\n}\r\n.page_percentage_deactive {\r\nheight: 16px;\r\nline-height: 16px;\r\nbackground-color: #F1F1F1;\r\ntext-align: left !important;\r\nmargin-bottom: 1px;\r\nborder-radius: 5px;\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: right !important;\r\n}\r\n\r\n.wdform_percentage_text {\r\nmargin: 3px 5px 3px 9px;\r\ncolor: #FFF;\r\nfont-size: 12px;\r\n}\r\n.wdform_percentage_title {\r\n	color: #6E6E6E;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 27px;\r\n	height: 27px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_button button {\r\n	background: #4D792C;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 0px;\r\n	min-width: 80px;\r\n	min-height: 31px;\r\n	color: #fff;\r\n	border: 2px solid #68943B;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}", "0");
INSERT INTO `wp_formmaker_themes` VALUES("2", "Theme 01 purple", ".wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #F0EFEF;\r\nborder: 1px solid #6C005E;\r\nborder-radius: 5px;\r\ncolor: #6C005E;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\ninput[type=\"radio\"]\r\n{\r\nborder:none !important;\r\noutline:none !important;\r\n}\r\ninput[type=\"checkbox\"]\r\n{\r\nborder:none !important;\r\noutline:none !important;\r\n}\r\na.ui-spinner-button\r\n{\r\nborder-radius:0px !important;\r\nbackground: none!important;\r\n}\r\n\r\na.ui-slider-handle {\r\nwidth: 13px;\r\nheight: 13px;\r\ntop: -4px;\r\nborder: 0px;\r\nborder-radius: 13px;\r\nbackground: #FAFAFA;\r\nborder: 3px solid #B1B1B1;\r\noutline: none;\r\n}\r\n\r\n.ui-slider {\r\n	height: 6px;\r\n	background: #F5F5F5 !important;\r\n	margin: 7px 0px;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell input[type=\"text\"] {\r\n	width: 100px;\r\nfont-size: 14px !important;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\nfont-size: 14px !important;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #E9E9E9;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n	color: #000;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 0px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\n\r\n\r\n.ui-slider-range {\r\n	background: #8A8A8A !important;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #fff;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\n	border: 0px solid #000 !important;\r\npadding-left:10px;\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n\r\n.sel-imul {\r\n	display: none;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	border-radius: 0px;\r\n	padding: 0px 0px 0px 2px;\r\n	font-size: 13px;\r\n	height: 22px;\r\n	line-height: 22px;\r\n	overflow: hidden;\r\n	background: #F8F8F8;\r\n	border: 0px solid #D3D3D3;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 23px;\r\n	width: 30px;\r\n	background: url([SITE_ROOT]/images/09/01.png) 50% 50% no-repeat;\r\n	position: absolute;\r\n	top: 0px;\r\n	right: 0px;\r\n	padding: 0px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text]{\r\n	margin: 0px;\r\n}\r\ninput[type=password]{\r\n	margin: 0px;\r\n}\r\ninput[type=url]{\r\n	margin: 0px;\r\n}\r\ninput[type=email]{\r\n	margin: 0px;\r\n}\r\ninput.text{\r\n	margin: 0px;\r\n}\r\ninput.title{\r\n	margin: 0px;\r\n}\r\ntextarea{\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	position: absolute;\r\n	border-radius: 0px;\r\n	height: 23px;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	}\r\n.file-picker {\r\n	width: 41px;\r\n	height: 32px;\r\n	background: url([SITE_ROOT]/images/10/02/upload.png) no-repeat;\r\n	display: inline-block;\r\n}\r\n.next-page div.wdform-page-button {\r\ncolor: #FFF;\r\ncursor: pointer;\r\ndisplay: inline-block;\r\nheight: 38px;\r\nline-height: 35px;\r\nbackground:url([SITE_ROOT]/images/10/next.png) no-repeat right #6C005E;\r\npadding: 0px 36px 0 20px;\r\nvertical-align: middle;\r\nfont-size: 18px;\r\nborder-top-right-radius: 7px;\r\nborder-bottom-right-radius: 7px;\r\n}\r\n.previous-page div.wdform-page-button {\r\ncolor: #A2A2A2;\r\ncursor: pointer;\r\ndisplay: inline-block;\r\nheight: 37px;\r\nline-height: 35px;\r\nbackground:url([SITE_ROOT]/images/09/previous.png) no-repeat left #F1F1F1;\r\npadding: 0 20px 0 36px;\r\nvertical-align: middle;\r\nfont-size: 18px;\r\nborder-top-left-radius: 7px;\r\nborder-bottom-left-radius: 7px;\r\n}\r\n.button-submit {\r\n	color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	line-height: 35px;\r\n	background: #6C005E;\r\n	padding: 0px 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	min-width: 80px;\r\n	min-height: 35px;\r\n	font-family: Segoe UI;\r\n		border: 1px solid transparent;\r\n	margin: 5px;\r\n}\r\n.button-reset {\r\n	color: #787878;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	line-height: 35px;\r\n	background: #F0EFEF;\r\n	padding: 0px 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	min-width: 80px;\r\n	min-height: 35px;\r\n	font-family: Segoe UI;\r\n	float: right;\r\n	border: 1px solid transparent;\r\n	margin: 5px;\r\n}\r\n.wdform_page {\r\n	background: #FFFFFF;\r\n	padding-top: 15px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_column {\r\n	border-right: none !important;\r\n	padding-right: 50px !important;\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n}\r\n.wdform_section_break2 {\r\n	color: #6C005E;\r\n	display: inline-block;\r\n	text-align: left;\r\n	font-size: 23px;\r\nmargin: 16px 10px 40px 0px;\r\n}\r\n\r\n.wdform_section_break {\r\n	color: #6C005E;\r\n	font-size: 23px;\r\nmargin: 16px 0px;\r\n}\r\n\r\n.wdform_section {\r\n	display: inline-block;\r\n}\r\nselect {\r\n	padding: 2px;\r\n	height: 26px;\r\n	border: 1px solid #B7B7B7;\r\nbackground: #F8F8F8;\r\nfont-size: 14px !important;\r\n}\r\ninput[type=\"text\"]{\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F8F8F8;\r\nborder:1px solid #B7B7B7;\r\nfont-size: 14px !important;\r\n}\r\ninput[type=\"password\"]{\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F8F8F8;\r\nborder:1px solid #B7B7B7;\r\nfont-size: 14px !important;\r\n}\r\ntextarea {\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F8F8F8;\r\nborder:1px solid #B7B7B7;\r\nfont-size: 14px !important;\r\n}\r\ninput[type=\"text\"]:focus{\r\n	outline: none;\r\n}\r\ninput[type=\"password\"]:focus{\r\n	outline: none;\r\n}\r\ntextarea:focus{\r\n	outline: none;\r\n}\r\nselect {\r\n	outline: none;\r\n}\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 30px;\r\n	vertical-align: middle;\r\n}\r\n\r\n\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/03/date.png) no-repeat !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 22px;\r\n	height: 22px;\r\n	position: relative;\r\n	left: -22px;\r\n	vertical-align: top;\r\n	outline: none;\r\n}\r\n\r\n\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n\r\n.if-ie-div-label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #000;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	margin-top: 15px;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: \"Lucida Grande\", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #8A8A8A;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #000;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: red;\r\n	vertical-align: top;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n	border-radius: 0px;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\ncolor: #6C005E;\r\nbackground-color: #FFF;\r\ncursor: pointer;\r\ndisplay: inline-block;\r\nheight: 29px;\r\ntext-align: center;\r\nvertical-align: bottom;\r\npadding: 5px 25px 0px 25px;\r\nfont-size: 16px;\r\nfont-weight:bold;\r\n}\r\n.page_active {\r\ncolor: #FFF;\r\ncursor: pointer;\r\nbackground-color: #6C005E;\r\ndisplay: inline-block;\r\nvertical-align: bottom;\r\nheight: 29px;\r\ntext-align: center;\r\nfont-size: 20px;\r\npadding: 5px 25px 0px 25px;\r\nline-height: 26px;\r\nfont-weight:bold;\r\n}\r\n.page_percentage_active {\r\npadding: 0px;\r\nmargin: 0px;\r\nborder-spacing: 0px;\r\nheight: 16px;\r\nline-height: 16px;\r\nfont-size: 15px;\r\nfloat: left;\r\ntext-align: right !important;\r\nz-index: 1;\r\nposition: relative;\r\nvertical-align: middle;\r\nbackground: #6C005E;\r\ncolor: #fff;\r\nborder-top-left-radius: 5px;\r\nborder-bottom-left-radius: 5px;\r\n}\r\n.page_percentage_deactive {\r\nheight: 16px;\r\nline-height: 16px;\r\nbackground-color: #F1F1F1;\r\ntext-align: left !important;\r\nmargin-bottom: 1px;\r\nborder-radius: 5px;\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: right !important;\r\n}\r\n\r\n.wdform_percentage_text {\r\nmargin: 3px 5px 3px 9px;\r\ncolor: #FFF;\r\nfont-size: 12px;\r\n}\r\n.wdform_percentage_title {\r\n	color: #6E6E6E;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 27px;\r\n	height: 27px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_button button {\r\n	background: #4D792C;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 0px;\r\n	min-width: 80px;\r\n	min-height: 31px;\r\n	color: #fff;\r\n	border: 2px solid #68943B;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}", "0");
INSERT INTO `wp_formmaker_themes` VALUES("3", "Theme 01 black", ".wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #F0EFEF;\r\nborder: 1px solid #000000;\r\nborder-radius: 5px;\r\ncolor: #000000;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\ninput[type=\"radio\"]\r\n{\r\nborder:none !important;\r\noutline:none !important;\r\n}\r\ninput[type=\"checkbox\"]\r\n{\r\nborder:none !important;\r\noutline:none !important;\r\n}\r\na.ui-spinner-button\r\n{\r\nborder-radius:0px !important;\r\nbackground: none!important;\r\n}\r\n\r\na.ui-slider-handle {\r\nwidth: 13px;\r\nheight: 13px;\r\ntop: -4px;\r\nborder: 0px;\r\nborder-radius: 13px;\r\nbackground: #FAFAFA;\r\nborder: 3px solid #B1B1B1;\r\noutline: none;\r\n}\r\n\r\n.ui-slider {\r\n	height: 6px;\r\n	background: #F5F5F5 !important;\r\n	margin: 7px 0px;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell input[type=\"text\"] {\r\n	width: 100px;\r\nfont-size: 14px !important;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\nfont-size: 14px !important;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #E9E9E9;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n	color: #000;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 0px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\n\r\n\r\n.ui-slider-range {\r\n	background: #8A8A8A !important;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #fff;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\n	border: 0px solid #000 !important;\r\npadding-left:10px;\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n\r\n.sel-imul {\r\n	display: none;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	border-radius: 0px;\r\n	padding: 0px 0px 0px 2px;\r\n	font-size: 13px;\r\n	height: 22px;\r\n	line-height: 22px;\r\n	overflow: hidden;\r\n	background: #F8F8F8;\r\n	border: 0px solid #D3D3D3;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 23px;\r\n	width: 30px;\r\n	background: url([SITE_ROOT]/images/09/01.png) 50% 50% no-repeat;\r\n	position: absolute;\r\n	top: 0px;\r\n	right: 0px;\r\n	padding: 0px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text]{\r\n	margin: 0px;\r\n}\r\ninput[type=password]{\r\n	margin: 0px;\r\n}\r\ninput[type=url]{\r\n	margin: 0px;\r\n}\r\ninput[type=email]{\r\n	margin: 0px;\r\n}\r\ninput.text{\r\n	margin: 0px;\r\n}\r\ninput.title{\r\n	margin: 0px;\r\n}\r\ntextarea{\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	position: absolute;\r\n	border-radius: 0px;\r\n	height: 23px;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	}\r\n.file-picker {\r\n	width: 41px;\r\n	height: 32px;\r\n	background: url([SITE_ROOT]/images/10/02/upload.png) no-repeat;\r\n	display: inline-block;\r\n}\r\n.next-page div.wdform-page-button {\r\ncolor: #FFF;\r\ncursor: pointer;\r\ndisplay: inline-block;\r\nheight: 38px;\r\nline-height: 35px;\r\nbackground:url([SITE_ROOT]/images/10/next.png) no-repeat right #000;\r\npadding: 0px 36px 0 20px;\r\nvertical-align: middle;\r\nfont-size: 18px;\r\nborder-top-right-radius: 7px;\r\nborder-bottom-right-radius: 7px;\r\n}\r\n.previous-page div.wdform-page-button {\r\ncolor: #A2A2A2;\r\ncursor: pointer;\r\ndisplay: inline-block;\r\nheight: 37px;\r\nline-height: 35px;\r\nbackground:url([SITE_ROOT]/images/09/previous.png) no-repeat left #F1F1F1;\r\npadding: 0 20px 0 36px;\r\nvertical-align: middle;\r\nfont-size: 18px;\r\nborder-top-left-radius: 7px;\r\nborder-bottom-left-radius: 7px;\r\n}\r\n.button-submit {\r\n	color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	line-height: 35px;\r\n	background: #000;\r\n	padding: 0px 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	min-width: 80px;\r\n	min-height: 35px;\r\n	font-family: Segoe UI;\r\n		border: 1px solid transparent;\r\n	margin: 5px;\r\n}\r\n.button-reset {\r\n	color: #787878;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	line-height: 35px;\r\n	background: #F0EFEF;\r\n	padding: 0px 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	min-width: 80px;\r\n	min-height: 35px;\r\n	font-family: Segoe UI;\r\n	float: right;\r\n	border: 1px solid transparent;\r\n	margin: 5px;\r\n}\r\n.wdform_page {\r\n	background: #FFFFFF;\r\n	padding-top: 15px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_column {\r\n	border-right: none !important;\r\n	padding-right: 50px !important;\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n}\r\n.wdform_section_break2 {\r\n	color: #000;\r\n	display: inline-block;\r\n	text-align: left;\r\n	font-size: 23px;\r\nmargin: 16px 10px 40px 0px;\r\n}\r\n\r\n.wdform_section_break {\r\n	color: #000;\r\n	font-size: 23px;\r\nmargin: 16px 0px;\r\n}\r\n\r\n.wdform_section {\r\n	display: inline-block;\r\n}\r\nselect {\r\n	padding: 2px;\r\n	height: 26px;\r\n	border: 1px solid #B7B7B7;\r\nbackground: #F8F8F8;\r\nfont-size: 14px !important;\r\n}\r\ninput[type=\"text\"]{\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F8F8F8;\r\nborder:1px solid #B7B7B7;\r\nfont-size: 14px !important;\r\n}\r\ninput[type=\"password\"]{\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F8F8F8;\r\nborder:1px solid #B7B7B7;\r\nfont-size: 14px !important;\r\n}\r\ntextarea {\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F8F8F8;\r\nborder:1px solid #B7B7B7;\r\nfont-size: 14px !important;\r\n}\r\ninput[type=\"text\"]:focus{\r\n	outline: none;\r\n}\r\ninput[type=\"password\"]:focus{\r\n	outline: none;\r\n}\r\ntextarea:focus{\r\n	outline: none;\r\n}\r\nselect {\r\n	outline: none;\r\n}\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 30px;\r\n	vertical-align: middle;\r\n}\r\n\r\n\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/03/date.png) no-repeat !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 22px;\r\n	height: 22px;\r\n	position: relative;\r\n	left: -22px;\r\n	vertical-align: top;\r\n	outline: none;\r\n}\r\n\r\n\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n\r\n.if-ie-div-label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #000;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	margin-top: 15px;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: \"Lucida Grande\", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #8A8A8A;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #000;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: red;\r\n	vertical-align: top;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n	border-radius: 0px;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\ncolor: #000;\r\nbackground-color: #FFF;\r\ncursor: pointer;\r\ndisplay: inline-block;\r\nheight: 29px;\r\ntext-align: center;\r\nvertical-align: bottom;\r\npadding: 5px 25px 0px 25px;\r\nfont-size: 16px;\r\nfont-weight:bold;\r\n}\r\n.page_active {\r\ncolor: #FFF;\r\ncursor: pointer;\r\nbackground-color: #000;\r\ndisplay: inline-block;\r\nvertical-align: bottom;\r\nheight: 29px;\r\ntext-align: center;\r\nfont-size: 20px;\r\npadding: 5px 25px 0px 25px;\r\nline-height: 26px;\r\nfont-weight:bold;\r\n}\r\n.page_percentage_active {\r\npadding: 0px;\r\nmargin: 0px;\r\nborder-spacing: 0px;\r\nheight: 16px;\r\nline-height: 16px;\r\nfont-size: 15px;\r\nfloat: left;\r\ntext-align: right !important;\r\nz-index: 1;\r\nposition: relative;\r\nvertical-align: middle;\r\nbackground: #000;\r\ncolor: #fff;\r\nborder-top-left-radius: 5px;\r\nborder-bottom-left-radius: 5px;\r\n}\r\n.page_percentage_deactive {\r\nheight: 16px;\r\nline-height: 16px;\r\nbackground-color: #F1F1F1;\r\ntext-align: left !important;\r\nmargin-bottom: 1px;\r\nborder-radius: 5px;\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: right !important;\r\n}\r\n\r\n.wdform_percentage_text {\r\nmargin: 3px 5px 3px 9px;\r\ncolor: #FFF;\r\nfont-size: 12px;\r\n}\r\n.wdform_percentage_title {\r\n	color: #6E6E6E;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 27px;\r\n	height: 27px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_button button {\r\n	background: #4D792C;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 0px;\r\n	min-width: 80px;\r\n	min-height: 31px;\r\n	color: #fff;\r\n	border: 2px solid #68943B;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}", "1");
INSERT INTO `wp_formmaker_themes` VALUES("4", "Theme 01 transparent (black button)", ".wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #F0EFEF;\r\nborder: 1px solid #000000;\r\nborder-radius: 5px;\r\ncolor: #000000;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\ninput[type=\"radio\"]\r\n{\r\nborder:none !important;\r\noutline:none !important;\r\n}\r\ninput[type=\"checkbox\"]\r\n{\r\nborder:none !important;\r\noutline:none !important;\r\n}\r\na.ui-spinner-button\r\n{\r\nborder-radius:0px !important;\r\nbackground: none!important;\r\n}\r\n\r\na.ui-slider-handle {\r\nwidth: 13px;\r\nheight: 13px;\r\ntop: -4px;\r\nborder: 0px;\r\nborder-radius: 13px;\r\nbackground: #FAFAFA;\r\nborder: 3px solid #B1B1B1;\r\noutline: none;\r\n}\r\n\r\n.ui-slider {\r\n	height: 6px;\r\n	background: #F5F5F5 !important;\r\n	margin: 7px 0px;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell input[type=\"text\"] {\r\n	width: 100px;\r\nfont-size: 14px !important;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\nfont-size: 14px !important;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #E9E9E9;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n	color: #000;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 0px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\n\r\n\r\n.ui-slider-range {\r\n	background: #8A8A8A !important;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #fff;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\n	border: 0px solid #000 !important;\r\npadding-left:10px;\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n\r\n.sel-imul {\r\n	display: none;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	border-radius: 0px;\r\n	padding: 0px 0px 0px 2px;\r\n	font-size: 13px;\r\n	height: 22px;\r\n	line-height: 22px;\r\n	overflow: hidden;\r\n	background: #F8F8F8;\r\n	border: 0px solid #D3D3D3;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 23px;\r\n	width: 30px;\r\n	background: url([SITE_ROOT]/images/09/01.png) 50% 50% no-repeat;\r\n	position: absolute;\r\n	top: 0px;\r\n	right: 0px;\r\n	padding: 0px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text]{\r\n	margin: 0px;\r\n}\r\ninput[type=password]{\r\n	margin: 0px;\r\n}\r\ninput[type=url]{\r\n	margin: 0px;\r\n}\r\ninput[type=email]{\r\n	margin: 0px;\r\n}\r\ninput.text{\r\n	margin: 0px;\r\n}\r\ninput.title{\r\n	margin: 0px;\r\n}\r\ntextarea{\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	position: absolute;\r\n	border-radius: 0px;\r\n	height: 23px;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	}\r\n.file-picker {\r\n	width: 41px;\r\n	height: 32px;\r\n	background: url([SITE_ROOT]/images/10/02/upload.png) no-repeat;\r\n	display: inline-block;\r\n}\r\n.next-page div.wdform-page-button {\r\ncolor: #FFF;\r\ncursor: pointer;\r\ndisplay: inline-block;\r\nheight: 38px;\r\nline-height: 35px;\r\nbackground:url([SITE_ROOT]/images/10/next.png) no-repeat right #000;\r\npadding: 0px 36px 0 20px;\r\nvertical-align: middle;\r\nfont-size: 18px;\r\nborder-top-right-radius: 7px;\r\nborder-bottom-right-radius: 7px;\r\n}\r\n.previous-page div.wdform-page-button {\r\ncolor: #A2A2A2;\r\ncursor: pointer;\r\ndisplay: inline-block;\r\nheight: 37px;\r\nline-height: 35px;\r\nbackground:url([SITE_ROOT]/images/09/previous.png) no-repeat left #F1F1F1;\r\npadding: 0 20px 0 36px;\r\nvertical-align: middle;\r\nfont-size: 18px;\r\nborder-top-left-radius: 7px;\r\nborder-bottom-left-radius: 7px;\r\n}\r\n.button-submit {\r\n	color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	line-height: 35px;\r\n	background: #000;\r\n	padding: 0px 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	min-width: 80px;\r\n	min-height: 35px;\r\n	font-family: Segoe UI;\r\n		border: 1px solid transparent;\r\n	margin: 5px;\r\n}\r\n.button-reset {\r\n	color: #787878;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	line-height: 35px;\r\n	background: #F0EFEF;\r\n	padding: 0px 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	min-width: 80px;\r\n	min-height: 35px;\r\n	font-family: Segoe UI;\r\n	float: right;\r\n	border: 1px solid transparent;\r\n	margin: 5px;\r\n}\r\n.wdform_page {\r\n	background: transparent;\r\n	padding-top: 15px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_column {\r\n	border-right: none !important;\r\n	padding-right: 50px !important;\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n}\r\n.wdform_section_break2 {\r\n	color: #000;\r\n	display: inline-block;\r\n	text-align: left;\r\n	font-size: 23px;\r\nmargin: 16px 10px 40px 0px;\r\n}\r\n\r\n.wdform_section_break {\r\n	color: #000;\r\n	font-size: 23px;\r\nmargin: 16px 0px;\r\n}\r\n\r\n.wdform_section {\r\n	display: inline-block;\r\n}\r\nselect {\r\n	padding: 2px;\r\n	height: 26px;\r\n	border: 1px solid #B7B7B7;\r\nbackground: #F8F8F8;\r\nfont-size: 14px !important;\r\n}\r\ninput[type=\"text\"]{\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F8F8F8;\r\nborder:1px solid #B7B7B7;\r\nfont-size: 14px !important;\r\n}\r\ninput[type=\"password\"]{\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F8F8F8;\r\nborder:1px solid #B7B7B7;\r\nfont-size: 14px !important;\r\n}\r\ntextarea {\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F8F8F8;\r\nborder:1px solid #B7B7B7;\r\nfont-size: 14px !important;\r\n}\r\ninput[type=\"text\"]:focus{\r\n	outline: none;\r\n}\r\ninput[type=\"password\"]:focus{\r\n	outline: none;\r\n}\r\ntextarea:focus{\r\n	outline: none;\r\n}\r\nselect {\r\n	outline: none;\r\n}\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 30px;\r\n	vertical-align: middle;\r\n}\r\n\r\n\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/03/date.png) no-repeat !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 22px;\r\n	height: 22px;\r\n	position: relative;\r\n	left: -22px;\r\n	vertical-align: top;\r\n	outline: none;\r\n}\r\n\r\n\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n\r\n.if-ie-div-label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #000;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	margin-top: 15px;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: \"Lucida Grande\", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #8A8A8A;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #000;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: red;\r\n	vertical-align: top;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n	border-radius: 0px;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\ncolor: #000;\r\nbackground-color: #FFF;\r\ncursor: pointer;\r\ndisplay: inline-block;\r\nheight: 29px;\r\ntext-align: center;\r\nvertical-align: bottom;\r\npadding: 5px 25px 0px 25px;\r\nfont-size: 16px;\r\nfont-weight:bold;\r\n}\r\n.page_active {\r\ncolor: #FFF;\r\ncursor: pointer;\r\nbackground-color: #000;\r\ndisplay: inline-block;\r\nvertical-align: bottom;\r\nheight: 29px;\r\ntext-align: center;\r\nfont-size: 20px;\r\npadding: 5px 25px 0px 25px;\r\nline-height: 26px;\r\nfont-weight:bold;\r\n}\r\n.page_percentage_active {\r\npadding: 0px;\r\nmargin: 0px;\r\nborder-spacing: 0px;\r\nheight: 16px;\r\nline-height: 16px;\r\nfont-size: 15px;\r\nfloat: left;\r\ntext-align: right !important;\r\nz-index: 1;\r\nposition: relative;\r\nvertical-align: middle;\r\nbackground: #000;\r\ncolor: #fff;\r\nborder-top-left-radius: 5px;\r\nborder-bottom-left-radius: 5px;\r\n}\r\n.page_percentage_deactive {\r\nheight: 16px;\r\nline-height: 16px;\r\nbackground-color: #F1F1F1;\r\ntext-align: left !important;\r\nmargin-bottom: 1px;\r\nborder-radius: 5px;\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: right !important;\r\n}\r\n\r\n.wdform_percentage_text {\r\nmargin: 3px 5px 3px 9px;\r\ncolor: #FFF;\r\nfont-size: 12px;\r\n}\r\n.wdform_percentage_title {\r\n	color: #6E6E6E;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 27px;\r\n	height: 27px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_button button {\r\n	background: #4D792C;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 0px;\r\n	min-width: 80px;\r\n	min-height: 31px;\r\n	color: #fff;\r\n	border: 2px solid #68943B;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}", "0");
INSERT INTO `wp_formmaker_themes` VALUES("5", "Theme 02 blue", ".wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #F0EFEF;\r\nborder: 1px solid #ADC0DB;\r\nmargin-bottom: 10px;\r\ncolor: #ADC0DB;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.ui-slider {\r\n	height: 6px;\r\n	background: #fff !important;\r\n	margin: 7px 0px;\r\n}\r\na.ui-slider-handle {\r\n	border-radius: 10px;\r\n	border: 2px solid #fff;\r\n	background: #A4A4A4;\r\n}\r\n.ui-slider-range {\r\n	background: #A4A4A4 !important;\r\n}\r\n.ui-slider-horizontal .ui-slider-handle {\r\n	top: -8px !important;\r\n}\r\na.ui-slider-handle {\r\n	border-radius: 10px;\r\n	border: 2px solid #fff;\r\n	background: #A4A4A4;\r\n}\r\n.wdform-matrix-cell input[type=\"text\"] {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n	content: url([SITE_ROOT]/images/02/bg.png);\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #E9E9E9;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 3px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\na.ui-spinner-button:hover{\r\n	background: #285485!important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-spinner-button:active{\r\n	background: #285485!important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-spinner-button:focus{\r\n	background: #285485!important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-slider-handle:hover{\r\n	background: #285485!important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-slider-handle:active{\r\n	background: #285485!important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-slider-handle:focus{\r\n	background: #285485!important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\nui-state-hover {\r\n	background: #285485!important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\nui-slider {\r\n	background: #fff !important;\r\n}\r\n.ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-content .ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-header .ui-state-default {\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-slider-range {\r\n	background: #ccc !important;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #DCDCDC;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\n	border: 0px !important;\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n.sel-wrap select {\r\n	position: absolute;\r\n z-index:-1;\r\n width: 0px !important;\r\n}\r\n.sel-imul {\r\n	display: inline-block;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	border-radius: 4px;\r\n	padding: 2px 0px 2px 2px;\r\n	font-size: 13px;\r\n	height: 22px;\r\n	line-height: 22px;\r\n	overflow: hidden;\r\n	background: #fff;\r\n	border: 0px solid #ccc;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 22px;\r\n	width: 29px;\r\n	background: url([SITE_ROOT]/images/02/01.png) 50% 50% no-repeat;\r\n	position: absolute;\r\n	top: 0px;\r\n	right: 0px;\r\n	padding: 2px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text]{\r\n	margin: 0px;\r\n}\r\ninput[type=password]{\r\n	margin: 0px;\r\n}\r\ninput[type=url]{\r\n	margin: 0px;\r\n}\r\ninput[type=email]{\r\n	margin: 0px;\r\n}\r\ninput.text{\r\n	margin: 0px;\r\n}\r\ninput.title{\r\n	margin: 0px;\r\n}\r\ntextarea{\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	background: #fff;\r\n	position: absolute;\r\n	border-radius: 4px;\r\n	height: 24px;\r\n	border: 1px solid #ccc;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	direction: rtl;\r\n	padding-top: 3px;\r\n	margin-top: 2px;\r\n}\r\n.file-picker {\r\n	width: 41px;\r\n	height: 32px;\r\n	background: url([SITE_ROOT]/images/02/01/upload.png);\r\n	display: inline-block;\r\n}\r\n.next-page div.wdform-page-button {\r\n	color: #285485;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 36px;\r\n	line-height: 33px;\r\n	background: url([SITE_ROOT]/images/02/01/next.png) top right #708EB4;\r\n	padding: 0px 30px 0 15px;\r\n	vertical-align: middle;\r\n	font-weight: 600;\r\n	font-size: 16px;\r\n}\r\n .next-page div.wdform-page-button:hover {\r\n	background: url([SITE_ROOT]/images/02/01/next.png) top right #144077;\r\n}\r\n.previous-page div.wdform-page-button {\r\n	color: #285485;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 36px;\r\n	line-height: 36px;\r\n	background: url([SITE_ROOT]/images/02/01/previous.png) top left #708EB4;\r\n	padding: 0px 15px 0 30px;\r\n	vertical-align: middle;\r\n	font-weight: 600;\r\n	font-size: 16px;\r\n}\r\n .previous-page div.wdform-page-button:hover {\r\n	background: url([SITE_ROOT]/images/02/01/previous.png) top left #144077;\r\n}\r\n.button-submit {\r\n	background: url([SITE_ROOT]/images/02/bg.png) #708EB4;\r\n	cursor: pointer;\r\n	font-size: 16px;\r\n	border-radius: 0px;\r\n	min-width: 80px;\r\n	min-height: 34px;\r\n	color: #285485;\r\n	margin: 5px;\r\n	border: 0px;\r\n	font-family: Segoe UI;\r\n	font-weight: 600;\r\n}\r\n.button-reset {\r\n	background: transparent;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	min-width: 80px;\r\n	min-height: 34px;\r\n	color: #787878;\r\n	border: 0px;\r\n	margin: 5px;\r\n	font-family: Segoe UI;\r\n	text-decoration: underline;\r\n}\r\n.wdform_page {\r\n	background: #ADC0DB;\r\n	padding: 15px 15px 15px 50px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_column {\r\n	border-right: none !important;\r\n	padding-right: 30px !important;\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n}\r\n.wdform_column>div {\r\n	border-bottom: 1px solid #C5C5C5;\r\n}\r\n.wdform_column>.wdform_row:last-child {\r\n	border-bottom: 0px solid #E7E7E7;\r\n}\r\n.wdform-field-section-break {\r\n	text-align: center;\r\n}\r\n.wdform_section_break2 {\r\n	margin: 16px 10px 16px 0px;\r\n	display: inline-block;\r\n	background: url([SITE_ROOT]/images/02/bg.png) #708EB4;\r\n	text-align: left;\r\n	padding: 10px;\r\n	border-radius: 0px;\r\n	-moz-box-shadow: 7px -9px 20px -5px rgba(0, 0, 0, 0.23), -7px 9px 20px -5px rgba(0, 0, 0, 0.23);\r\n	-webkit-box-shadow: 7px -9px 20px -5px rgba(0, 0, 0, 0.23), -7px 9px 20px -5px rgba(0, 0, 0, 0.23);\r\n	box-shadow: 7px -9px 20px -5px rgba(0, 0, 0, 0.23), -7px 9px 20px -5px rgba(0, 0, 0, 0.23);\r\n	width: 466px;\r\n	text-align: center;\r\nfont-size:18px;\r\nfont-family: Segoe UI;\r\ncolor:#0E3F76;\r\n}\r\n\r\n.wdform_section_break\r\n{\r\nmargin: 16px 10px 16px 0px;\r\ntext-align: left;\r\nfont-size: 18px;\r\nfont-family: Segoe UI;\r\ncolor:#0E3F76;\r\n}\r\n.wdform_section {\r\n	display: table-row\r\n}\r\nselect {\r\n	border-radius: 4px;\r\n	height: 26px;\r\n	overflow: hidden;\r\n	border: 0px solid #ccc;\r\n	padding: 2px;\r\n	outline: none;\r\n}\r\ninput[type=\"text\"] {\r\n	border-radius: 4px;\r\n	height: 25px;\r\n	border: 0px solid #ccc;\r\n	padding:0 3px !important;\r\n}\r\ninput[type=\"password\"] {\r\n	border-radius: 4px;\r\n	height: 25px;\r\n	border: 0px solid #ccc;\r\n	padding:0 3px !important;\r\n}\r\ntextarea {\r\n	border-radius: 4px;\r\n	height: 25px;\r\n	border: 0px solid #ccc;\r\n	padding:0 3px !important;\r\n}\r\ninput[type=\"text\"]:focus{\r\n	border-color: #FFB471;\r\n	outline: none;\r\n}\r\ninput[type=\"password\"]:focus{\r\n	border-color: #FFB471;\r\n	outline: none;\r\n}\r\ntextarea:focus{\r\n	border-color: #FFB471;\r\n	outline: none;\r\n}\r\n\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 30px;\r\n	vertical-align: middle;\r\n}\r\n.checkbox-div input[type=checkbox] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.checkbox-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #A7A7A7;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n}\r\n.checkbox-div label {\r\n	cursor: pointer;\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)\";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: \"\";\r\n	position: absolute;\r\n	width: 16px;\r\n	height: 13px;\r\n	background: url([SITE_ROOT]/images/02/checkbox.png);\r\n	border-radius: 0px;\r\n	top: -3px;\r\n	left: 1px;\r\n}\r\n.checkbox-div label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .checkbox-div label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div input[type=checkbox]:checked + label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/02/01/date.png) no-repeat left 50% !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 22px;\r\n	height: 24px;\r\n	position: relative;\r\n	left: -22px;\r\n	vertical-align: top;\r\n} \r\n.wdform-calendar-button:focus {\r\n outline:none; \r\n}\r\n.radio-div input[type=radio] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n.radio-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #A7A7A7;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n	top: 2px;\r\n}\r\n.radio-div label {\r\n	cursor: pointer;\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)\";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: \"\";\r\n	position: absolute;\r\n	width: 11px;\r\n	height: 10px;\r\n	background: #A7A7A7;\r\n	border-radius: 0px;\r\n	top: 1px;\r\n	left: 1px;\r\n}\r\n.radio-div label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .radio-div label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div input[type=radio]:checked + label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.if-ie-div-label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #000;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	padding-top: 5px;\r\n	margin-top: 15px;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: \"Lucida Grande\", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #000;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #000;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: rgb(158, 0, 0);\r\n	vertical-align: top;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n	border-radius: 4px;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\n	font-size: 12px;\r\n	color: #2564A3;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 20px;\r\n	text-align: center;\r\n	vertical-align: bottom;\r\n	padding-top: 5px;\r\n	padding: 5px 30px 0px 30px;\r\n	font-weight: bold;\r\n}\r\n.page_deactive:nth-child(even) {\r\n	background-color: #DCDADB;\r\n}\r\n.page_deactive:nth-child(odd) {\r\n	background-color: #D1CDCE;\r\n}\r\n.page_active {\r\n	color: #fff;\r\n	cursor: pointer;\r\n	background-color: #0E3F77;\r\n	display: inline-block;\r\n	vertical-align: bottom;\r\n	height: 25px;\r\n	text-align: center;\r\n	font-size: 18px;\r\n	padding: 5px 30px 0px 30px;\r\n}\r\n.page_percentage_active {\r\n	padding: 0px;\r\n	margin: 0px;\r\n	border-spacing: 0px;\r\n	height: 17px;\r\n	line-height: 17px;\r\n	font-size: 15px;\r\n	float: left;\r\n	text-align: right !important;\r\n	z-index: 1;\r\n	position: relative;\r\n	background: #0e3f77; /* Old browsers */\r\n	background: -moz-linear-gradient(left, #0e3f77 0%, #0f437d 49%, #2f72b5 84%, #165ba9 99%); /* FF3.6+ */\r\n	background: -webkit-gradient(linear, left top, right top, color-stop(0%, #0e3f77), color-stop(49%, #0f437d), color-stop(84%, #2f72b5), color-stop(99%, #165ba9)); /* Chrome,Safari4+ */\r\n	background: -webkit-linear-gradient(left, #0e3f77 0%, #0f437d 49%, #2f72b5 84%, #165ba9 99%); /* Chrome10+,Safari5.1+ */\r\n	background: -o-linear-gradient(left, #0e3f77 0%, #0f437d 49%, #2f72b5 84%, #165ba9 99%); /* Opera 11.10+ */\r\n	background: -ms-linear-gradient(left, #0e3f77 0%, #0f437d 49%, #2f72b5 84%, #165ba9 99%); /* IE10+ */\r\n	background: linear-gradient(to right, #0e3f77 0%, #0f437d 49%, #2f72b5 84%, #165ba9 99%); /* W3C */\r\n	vertical-align: middle;\r\n}\r\n.page_percentage_deactive {\r\n	height: 17px;\r\n	line-height: 17px;\r\n	background-color: #CCCCCC;\r\n	text-align: left !important;\r\n	margin-bottom: 1px;\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: right !important;\r\n	margin-bottom: -2px;\r\n}\r\n.wdform_percentage_text {\r\n	margin: 3px 5px 3px 9px;\r\n	color: #FFFFFF;\r\n	font-weight: bold;\r\nfont-size: 13px;\r\n}\r\n.wdform_percentage_title {\r\n	color: #000000;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 17px;\r\n	height: 17px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_button button {\r\n	background: #0E4D92;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 4px;\r\n	min-width: 80px;\r\n	min-height: 27px;\r\n	color: #fff;\r\n	border: 2px solid #0E3F77;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_button button:active {\r\n	border: 2px solid #0B2D52;\r\n	background: #0E3F77;\r\n}", "0");
INSERT INTO `wp_formmaker_themes` VALUES("6", "Theme 02 yellow", ".wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #EADEB4;\r\nborder: 1px solid #E3E2E4;\r\nmargin-bottom: 10px;\r\ncolor: #E3E2E4;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.ui-slider {\r\n	height: 6px;\r\n	background: #fff !important;\r\n	margin: 7px 0px;\r\n}\r\na.ui-slider-handle {\r\n	border-radius: 10px;\r\n	border: 2px solid #fff;\r\n	background: #A4A4A4;\r\n}\r\n.ui-slider-range {\r\n	background: #A4A4A4 !important;\r\n}\r\n.ui-slider-horizontal .ui-slider-handle {\r\n	top: -8px !important;\r\n}\r\na.ui-slider-handle {\r\n	border-radius: 10px;\r\n	border: 2px solid #fff;\r\n	background: #A4A4A4;\r\n}\r\n.wdform-matrix-cell input[type=\"text\"] {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n	content: url([SITE_ROOT]/images/02/bg.png);\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #E9E9E9;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 3px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\na.ui-spinner-button:hover{\r\n	background: #ECBD00 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-spinner-button:active{\r\n	background: #ECBD00 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-spinner-button:focus{\r\n	background: #ECBD00 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-slider-handle:hover{\r\n	background: #ECBD00 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-slider-handle:active{\r\n	background: #ECBD00 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-slider-handle:focus{\r\n	background: #ECBD00 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\nui-state-hover {\r\n	background: #ECBD00 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\nui-slider {\r\n	background: #fff !important;\r\n}\r\n.ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-content .ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-header .ui-state-default {\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-slider-range {\r\n	background: #ccc !important;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #DCDCDC;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\n	border: 0px !important;\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n.sel-wrap select {\r\n	position: absolute;\r\n z-index:-1;\r\n width: 0px !important;\r\n}\r\n.sel-imul {\r\n	display: inline-block;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	border-radius: 4px;\r\n	padding: 2px 0px 2px 2px;\r\n	font-size: 13px;\r\n	height: 22px;\r\n	line-height: 22px;\r\n	overflow: hidden;\r\n	background: #fff;\r\n	border: 0px solid #ccc;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 22px;\r\n	width: 29px;\r\n	background: url([SITE_ROOT]/images/02/01.png) 50% 50% no-repeat;\r\n	position: absolute;\r\n	top: 0px;\r\n	right: 0px;\r\n	padding: 2px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text]{\r\n	margin: 0px;\r\n}\r\ninput[type=password]{\r\n	margin: 0px;\r\n}\r\ninput[type=url]{\r\n	margin: 0px;\r\n}\r\ninput[type=email]{\r\n	margin: 0px;\r\n}\r\ninput.text{\r\n	margin: 0px;\r\n}\r\ninput.title{\r\n	margin: 0px;\r\n}\r\ntextarea{\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	background: #fff;\r\n	position: absolute;\r\n	border-radius: 4px;\r\n	height: 24px;\r\n	border: 1px solid #ccc;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	direction: rtl;\r\n	padding-top: 3px;\r\n	margin-top: 2px;\r\n}\r\n.file-picker {\r\n	width: 41px;\r\n	height: 32px;\r\n	background: url([SITE_ROOT]/images/02/02/upload.png);\r\n	display: inline-block;\r\n}\r\n.next-page div.wdform-page-button {\r\n	color: #4D4A3C;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 36px;\r\n	line-height: 33px;\r\n	background: url([SITE_ROOT]/images/02/next.png) top right #CFAB1A;\r\n	padding: 0px 30px 0 15px;\r\n	vertical-align: middle;\r\n	font-weight: 600;\r\n	font-size: 16px;\r\n}\r\n.next-page div.wdform-page-button:hover {\r\n	background: url([SITE_ROOT]/images/02/next.png) top right  #A08104;\r\n}\r\n.previous-page div.wdform-page-button {\r\n	color: #4D4A3C;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 36px;\r\n	line-height: 36px;\r\n	background: url([SITE_ROOT]/images/02/previous.png) top left #CFAB1A;\r\n	padding: 0px 15px 0 30px;\r\n	vertical-align: middle;\r\n	font-weight: 600;\r\n	font-size: 16px;\r\n}\r\n.previous-page div.wdform-page-button:hover {\r\n	background: url([SITE_ROOT]/images/02/previous.png) top left  #A08104;\r\n}\r\n.button-submit {\r\n	background: url([SITE_ROOT]/images/02/bg.png) #CFAB1A;\r\n	cursor: pointer;\r\n	font-size: 16px;\r\n	border-radius: 0px;\r\n	min-width: 80px;\r\n	min-height: 34px;\r\n	color: #4D4A3C;\r\n	margin: 5px;\r\n	border: 0px;\r\n	font-family: Segoe UI;\r\n	font-weight: 600;\r\n}\r\n.button-reset {\r\n	background: transparent;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	min-width: 80px;\r\n	min-height: 34px;\r\n	color: #787878;\r\n	border: 0px;\r\n	margin: 5px;\r\n	font-family: Segoe UI;\r\n	text-decoration: underline;\r\n}\r\n.wdform_page {\r\n	background: #E2DED7;\r\n	padding: 15px 15px 15px 50px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_column {\r\n	border-right: none !important;\r\n	padding-right: 30px !important;\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n}\r\n.wdform_column>div {\r\n	border-bottom: 1px solid #CFCFCF;\r\n}\r\n.wdform_column>.wdform_row:last-child {\r\n	border-bottom: 0px solid #E7E7E7;\r\n}\r\n.wdform-field-section-break {\r\n	text-align: center;\r\n}\r\n.wdform_section_break2 {\r\n	margin: 16px 10px 16px 0px;\r\n	display: inline-block;\r\n	background: url([SITE_ROOT]/images/02/bg.png) #CFAB1A;\r\n	text-align: left;\r\n	padding: 10px;\r\n	border-radius: 0px;\r\n	-moz-box-shadow: 7px -9px 20px -5px rgba(0, 0, 0, 0.23), -7px 9px 20px -5px rgba(0, 0, 0, 0.23);\r\n	-webkit-box-shadow: 7px -9px 20px -5px rgba(0, 0, 0, 0.23), -7px 9px 20px -5px rgba(0, 0, 0, 0.23);\r\n	box-shadow: 7px -9px 20px -5px rgba(0, 0, 0, 0.23), -7px 9px 20px -5px rgba(0, 0, 0, 0.23);\r\n	width: 466px;\r\n	text-align: center;\r\nfont-size: 18px;\r\nfont-family: Segoe UI;\r\ncolor: #292929;\r\nfont-weight: 600;\r\n}\r\n\r\n.wdform_section_break\r\n{\r\nmargin: 16px 10px 16px 0px;\r\ntext-align: left;\r\nfont-size: 18px;\r\nfont-family: Segoe UI;\r\ncolor: #292929;\r\n}\r\n.wdform_section {\r\n	display: table-row\r\n}\r\nselect {\r\n	border-radius: 4px;\r\n	height: 26px;\r\n	overflow: hidden;\r\n	border: 0px solid #ccc;\r\n	padding: 2px;\r\n	outline: none;\r\n}\r\ninput[type=\"text\"] {\r\n	border-radius: 4px;\r\n	height: 25px;\r\n	border: 0px solid #ccc;\r\n	padding:0 3px !important;\r\n}\r\ninput[type=\"password\"] {\r\n	border-radius: 4px;\r\n	height: 25px;\r\n	border: 0px solid #ccc;\r\n	padding:0 3px !important;\r\n}\r\ntextarea {\r\n	border-radius: 4px;\r\n	height: 25px;\r\n	border: 0px solid #ccc;\r\n	padding:0 3px !important;\r\n}\r\ninput[type=\"text\"]:focus{\r\n	border-color: #FFB471;\r\n	outline: none;\r\n}\r\ninput[type=\"password\"]:focus{\r\n	border-color: #FFB471;\r\n	outline: none;\r\n}\r\ntextarea:focus{\r\n	border-color: #FFB471;\r\n	outline: none;\r\n}\r\n\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 30px;\r\n	vertical-align: middle;\r\n}\r\n.checkbox-div input[type=checkbox] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.checkbox-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #A7A7A7;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n}\r\n.checkbox-div label {\r\n	cursor: pointer;\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)\";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: \"\";\r\n	position: absolute;\r\n	width: 16px;\r\n	height: 13px;\r\n	background: url([SITE_ROOT]/images/02/checkbox.png);\r\n	border-radius: 0px;\r\n	top: -3px;\r\n	left: 1px;\r\n}\r\n.checkbox-div label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .checkbox-div label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div input[type=checkbox]:checked + label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/02/02/date.png) no-repeat left 50% !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 22px;\r\n	height: 24px;\r\n	position: relative;\r\n	left: -22px;\r\n	vertical-align: top;\r\n}\r\n.wdform-calendar-button:focus {\r\n outline:none; \r\n}\r\n.radio-div input[type=radio] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n.radio-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #A7A7A7;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n	top: 2px;\r\n}\r\n.radio-div label {\r\n	cursor: pointer;\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)\";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: \"\";\r\n	position: absolute;\r\n	width: 11px;\r\n	height: 10px;\r\n	background: #A7A7A7;\r\n	border-radius: 0px;\r\n	top: 1px;\r\n	left: 1px;\r\n}\r\n.radio-div label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .radio-div label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div input[type=radio]:checked + label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.if-ie-div-label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #000;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	padding-top: 5px;\r\n	margin-top: 15px;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: \"Lucida Grande\", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #000;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #000;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: rgb(158, 0, 0);\r\n	vertical-align: top;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n	border-radius: 4px;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\n	font-size: 12px;\r\n color: #3F3927;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 20px;\r\n	text-align: center;\r\n	vertical-align: bottom;\r\n	padding-top: 5px;\r\n	padding: 5px 30px 0px 30px;\r\n	font-weight: bold;\r\n}\r\n.page_deactive:nth-child(even) {\r\n	background-color: #DCDADB;\r\n}\r\n.page_deactive:nth-child(odd) {\r\n	background-color: #D1CDCE;\r\n}\r\n.page_active {\r\n	color: #3F3927;\r\n	cursor: pointer;\r\n	background-color: #ECBD00;\r\n	display: inline-block;\r\n	vertical-align: bottom;\r\n	height: 25px;\r\n	text-align: center;\r\n	font-size: 18px;\r\n	padding: 5px 30px 0px 30px;\r\n}\r\n.page_percentage_active {\r\n	padding: 0px;\r\n	margin: 0px;\r\n	border-spacing: 0px;\r\n	height: 17px;\r\n	line-height: 17px;\r\n	font-size: 15px;\r\n	float: left;\r\n	text-align: right !important;\r\n	z-index: 1;\r\n	position: relative;\r\n	background: #ECBD00 ; /* Old browsers */\r\n	background: -moz-linear-gradient(left, #ECBD00 0%, #F5C403 49%, #F8C90B 84%, #FFCC00 99%); /* FF3.6+ */\r\n	background: -webkit-gradient(linear, left top, right top, color-stop(0%, #ECBD00 ), color-stop(49%, #F5C403 ), color-stop(84%, #F8C90B ), color-stop(99%, #FFCC00 )); /* Chrome,Safari4+ */\r\n	background: -webkit-linear-gradient(left, #ECBD00 0%, #F5C403 49%, #F8C90B 84%, #FFCC00 99%); /* Chrome10+,Safari5.1+ */\r\n	background: -o-linear-gradient(left, #ECBD00 0%, #F5C403 49%, #F8C90B 84%, #FFCC00 99%); /* Opera 11.10+ */\r\n	background: -ms-linear-gradient(left, #ECBD00 0%, #F5C403 49%, #F8C90B 84%, #FFCC00 99%); /* IE10+ */\r\n	background: linear-gradient(to right, #ECBD00 0%, #F5C403 49%, #F8C90B 84%, #FFCC00 99%); /* W3C */\r\n	vertical-align: middle;\r\n}\r\n.page_percentage_deactive {\r\n	height: 17px;\r\n	line-height: 17px;\r\n	background-color: #D9D7D8;\r\n	text-align: left !important;\r\n	margin-bottom: 1px;\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: right !important;\r\n	margin-bottom: -2px;\r\n}\r\n.wdform_percentage_text {\r\n	margin: 3px 5px 3px 9px;\r\n	color: #292929;\r\n	font-weight: bold;\r\nfont-size:13px;\r\n}\r\n.wdform_percentage_title {\r\n	color: #000000;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 17px;\r\n	height: 17px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_button button {\r\n	background: #0E4D92;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 4px;\r\n	min-width: 80px;\r\n	min-height: 27px;\r\n	color: #fff;\r\n	border: 2px solid #0E3F77;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_button button:active {\r\n	border: 2px solid #0B2D52;\r\n	background: #0E3F77;\r\n}", "0");
INSERT INTO `wp_formmaker_themes` VALUES("7", "Theme 02 violet", ".wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #C9ADEF;\r\nborder: 1px solid #E3E2E4;\r\nmargin-bottom: 10px;\r\ncolor: #E3E2E4;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.ui-slider {\r\n	height: 6px;\r\n	background: #fff !important;\r\n	margin: 7px 0px;\r\n}\r\na.ui-slider-handle {\r\n	border-radius: 10px;\r\n	border: 2px solid #fff;\r\n	background: #A4A4A4;\r\n}\r\n.ui-slider-range {\r\n	background: #A4A4A4 !important;\r\n}\r\n.ui-slider-horizontal .ui-slider-handle {\r\n	top: -8px !important;\r\n}\r\na.ui-slider-handle {\r\n	border-radius: 10px;\r\n	border: 2px solid #fff;\r\n	background: #A4A4A4;\r\n}\r\n.wdform-matrix-cell input[type=\"text\"] {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n	content: url([SITE_ROOT]/images/02/bg.png);\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #E9E9E9;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 3px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\na.ui-spinner-button:hover{\r\n	background: #5C00DA !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-spinner-button:active{\r\n	background: #5C00DA !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-spinner-button:focus{\r\n	background: #5C00DA !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-slider-handle:hover{\r\n	background: #5C00DA !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-slider-handle:active{\r\n	background: #5C00DA !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-slider-handle:focus{\r\n	background: #5C00DA !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\nui-state-hover {\r\n	background: #5C00DA !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\nui-slider {\r\n	background: #fff !important;\r\n}\r\n.ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-content .ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-header .ui-state-default {\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-slider-range {\r\n	background: #ccc !important;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #DCDCDC;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\n	border: 0px !important;\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n.sel-wrap select {\r\n	position: absolute;\r\n z-index:-1;\r\n width: 0px !important;\r\n}\r\n.sel-imul {\r\n	display: inline-block;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	border-radius: 4px;\r\n	padding: 2px 0px 2px 2px;\r\n	font-size: 13px;\r\n	height: 22px;\r\n	line-height: 22px;\r\n	overflow: hidden;\r\n	background: #fff;\r\n	border: 0px solid #ccc;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 22px;\r\n	width: 29px;\r\n	background: url([SITE_ROOT]/images/02/01.png) 50% 50% no-repeat;\r\n	position: absolute;\r\n	top: 0px;\r\n	right: 0px;\r\n	padding: 2px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text]{\r\n	margin: 0px;\r\n}\r\ninput[type=password]{\r\n	margin: 0px;\r\n}\r\ninput[type=url]{\r\n	margin: 0px;\r\n}\r\ninput[type=email]{\r\n	margin: 0px;\r\n}\r\ninput.text{\r\n	margin: 0px;\r\n}\r\ninput.title{\r\n	margin: 0px;\r\n}\r\ntextarea{\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	background: #fff;\r\n	position: absolute;\r\n	border-radius: 4px;\r\n	height: 24px;\r\n	border: 1px solid #ccc;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	direction: rtl;\r\n	padding-top: 3px;\r\n	margin-top: 2px;\r\n}\r\n.file-picker {\r\n	width: 41px;\r\n	height: 32px;\r\n	background: url([SITE_ROOT]/images/02/02/upload.png);\r\n	display: inline-block;\r\n}\r\n.next-page div.wdform-page-button {\r\n	color: #4D4A3C;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 36px;\r\n	line-height: 33px;\r\n	background: url([SITE_ROOT]/images/02/next.png) top right #5C00DA;\r\n	padding: 0px 30px 0 15px;\r\n	vertical-align: middle;\r\n	font-weight: 600;\r\n	font-size: 16px;\r\n}\r\n.next-page div.wdform-page-button:hover {\r\n	background: url([SITE_ROOT]/images/02/next.png) top right #3D0886;\r\n}.previous-page div.wdform-page-button {\r\n	color: #4D4A3C;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 36px;\r\n	line-height: 36px;\r\n	background: url([SITE_ROOT]/images/02/previous.png) top left #5C00DA;\r\n	padding: 0px 15px 0 30px;\r\n	vertical-align: middle;\r\n	font-weight: 600;\r\n	font-size: 16px;\r\n}\r\n.previous-page div.wdform-page-button:hover {\r\n	background: url([SITE_ROOT]/images/02/previous.png)  top left #3D0886;\r\n}\r\n.button-submit {\r\n	background: url([SITE_ROOT]/images/02/bg.png) #5C00DA;\r\n	cursor: pointer;\r\n	font-size: 16px;\r\n	border-radius: 0px;\r\n	min-width: 80px;\r\n	min-height: 34px;\r\n	color: #4D4A3C;\r\n	margin: 5px;\r\n	border: 0px;\r\n	font-family: Segoe UI;\r\n	font-weight: 600;\r\n}\r\n.button-reset {\r\n	background: transparent;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	min-width: 80px;\r\n	min-height: 34px;\r\n	color: #787878;\r\n	border: 0px;\r\n	margin: 5px;\r\n	font-family: Segoe UI;\r\n	text-decoration: underline;\r\n}\r\n.wdform_page {\r\n	background: #E3E2E4;\r\n	padding: 15px 15px 15px 50px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_column {\r\n	border-right: none !important;\r\n	padding-right: 30px !important;\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n}\r\n.wdform_column>div {\r\n	border-bottom: 1px solid #CFCFCF;\r\n}\r\n.wdform_column>.wdform_row:last-child {\r\n	border-bottom: 0px solid #E7E7E7;\r\n}\r\n.wdform-field-section-break {\r\n	text-align: center;\r\n}\r\n.wdform_section_break2 {\r\n	margin: 16px 10px 16px 0px;\r\n	display: inline-block;\r\n	background: url([SITE_ROOT]/images/02/bg.png) #5C00DA;\r\n	text-align: left;\r\n	padding: 10px;\r\n	border-radius: 0px;\r\n	-moz-box-shadow: 7px -9px 20px -5px rgba(0, 0, 0, 0.23), -7px 9px 20px -5px rgba(0, 0, 0, 0.23);\r\n	-webkit-box-shadow: 7px -9px 20px -5px rgba(0, 0, 0, 0.23), -7px 9px 20px -5px rgba(0, 0, 0, 0.23);\r\n	box-shadow: 7px -9px 20px -5px rgba(0, 0, 0, 0.23), -7px 9px 20px -5px rgba(0, 0, 0, 0.23);\r\n	width: 466px;\r\n	text-align: center;\r\nfont-size: 18px;\r\nfont-family: Segoe UI;\r\ncolor: #292929;\r\nfont-weight: 600;\r\n}\r\n\r\n.wdform_section_break\r\n{\r\nmargin: 16px 10px 16px 0px;\r\ntext-align: left;\r\nfont-size: 18px;\r\nfont-family: Segoe UI;\r\ncolor: #292929;\r\n}\r\n.wdform_section {\r\n	display: table-row\r\n}\r\nselect {\r\n	border-radius: 4px;\r\n	height: 26px;\r\n	overflow: hidden;\r\n	border: 0px solid #ccc;\r\n	padding: 2px;\r\n	outline: none;\r\n}\r\ninput[type=\"text\"] {\r\n	border-radius: 4px;\r\n	height: 25px;\r\n	border: 0px solid #ccc;\r\n	padding:0 3px !important;\r\n}\r\ninput[type=\"password\"] {\r\n	border-radius: 4px;\r\n	height: 25px;\r\n	border: 0px solid #ccc;\r\n	padding:0 3px !important;\r\n}\r\ntextarea {\r\n	border-radius: 4px;\r\n	height: 25px;\r\n	border: 0px solid #ccc;\r\n	padding:0 3px !important;\r\n}\r\ninput[type=\"text\"]:focus{\r\n	border-color: #FFB471;\r\n	outline: none;\r\n}\r\ninput[type=\"password\"]:focus{\r\n	border-color: #FFB471;\r\n	outline: none;\r\n}\r\ntextarea:focus{\r\n	border-color: #FFB471;\r\n	outline: none;\r\n}\r\n\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 30px;\r\n	vertical-align: middle;\r\n}\r\n.checkbox-div input[type=checkbox] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.checkbox-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #A7A7A7;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n}\r\n.checkbox-div label {\r\n	cursor: pointer;\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)\";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: \"\";\r\n	position: absolute;\r\n	width: 16px;\r\n	height: 13px;\r\n	background: url([SITE_ROOT]/images/02/checkbox.png);\r\n	border-radius: 0px;\r\n	top: -3px;\r\n	left: 1px;\r\n}\r\n.checkbox-div label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .checkbox-div label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div input[type=checkbox]:checked + label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/02/03/date.png) no-repeat left 50% !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 22px;\r\n	height: 24px;\r\n	position: relative;\r\n	left: -22px;\r\n	vertical-align: top;\r\n}\r\n.wdform-calendar-button:focus {\r\n outline:none; \r\n}\r\n.radio-div input[type=radio] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n.radio-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #A7A7A7;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n	top: 2px;\r\n}\r\n.radio-div label {\r\n	cursor: pointer;\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)\";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: \"\";\r\n	position: absolute;\r\n	width: 11px;\r\n	height: 10px;\r\n	background: #A7A7A7;\r\n	border-radius: 0px;\r\n	top: 1px;\r\n	left: 1px;\r\n}\r\n.radio-div label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .radio-div label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div input[type=radio]:checked + label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.if-ie-div-label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #000;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	padding-top: 5px;\r\n	margin-top: 15px;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: \"Lucida Grande\", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #000;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #000;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: rgb(158, 0, 0);\r\n	vertical-align: top;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n	border-radius: 4px;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\n	font-size: 12px;\r\n color: #3F3927;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 20px;\r\n	text-align: center;\r\n	vertical-align: bottom;\r\n	padding-top: 5px;\r\n	padding: 5px 30px 0px 30px;\r\n	font-weight: bold;\r\n}\r\n.page_deactive:nth-child(even) {\r\n	background-color: #DCDADB;\r\n}\r\n.page_deactive:nth-child(odd) {\r\n	background-color: #D1CDCE;\r\n}\r\n.page_active {\r\n	color: #FFF;\r\n	cursor: pointer;\r\n	background-color: #5C00DA;\r\n	display: inline-block;\r\n	vertical-align: bottom;\r\n	height: 25px;\r\n	text-align: center;\r\n	font-size: 18px;\r\n	padding: 5px 30px 0px 30px;\r\n}\r\n.page_percentage_active {\r\n	padding: 0px;\r\n	margin: 0px;\r\n	border-spacing: 0px;\r\n	height: 17px;\r\n	line-height: 17px;\r\n	font-size: 15px;\r\n	float: left;\r\n	text-align: right !important;\r\n	z-index: 1;\r\n	position: relative;\r\n	background: #5C00DA ; /* Old browsers */\r\n	background: -moz-linear-gradient(left, #5C00DA 0%, #5C00DB 49%, #6600F0 84%, #7917FF 99%); /* FF3.6+ */\r\n	background: -webkit-gradient(linear, left top, right top, color-stop(0%, #5C00DA ), color-stop(49%, #5C00DB ), color-stop(84%, #6600F0 ), color-stop(99%, #7917FF )); /* Chrome,Safari4+ */\r\n	background: -webkit-linear-gradient(left, #5C00DA 0%, #5C00DB 49%, #6600F0 84%, #7917FF 99%); /* Chrome10+,Safari5.1+ */\r\n	background: -o-linear-gradient(left, #5C00DA 0%, #5C00DB 49%, #6600F0 84%, #7917FF 99%); /* Opera 11.10+ */\r\n	background: -ms-linear-gradient(left, #5C00DA 0%, #5C00DB 49%, #6600F0 84%, #7917FF 99%); /* IE10+ */\r\n	background: linear-gradient(to right, #5C00DA 0%, #5C00DB 49%, #6600F0 84%, #7917FF 99%); /* W3C */\r\n	vertical-align: middle;\r\n}\r\n.page_percentage_deactive {\r\n	height: 17px;\r\n	line-height: 17px;\r\n	background-color: #D9D7D8;\r\n	text-align: left !important;\r\n	margin-bottom: 1px;\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: right !important;\r\n	margin-bottom: -2px;\r\n}\r\n.wdform_percentage_text {\r\n	margin: 3px 5px 3px 9px;\r\n	color: #fff;\r\n	font-weight: bold;\r\nfont-size:13px;\r\n}\r\n.wdform_percentage_title {\r\n	color: #000000;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 17px;\r\n	height: 17px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_button button {\r\n	background: #0E4D92;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 4px;\r\n	min-width: 80px;\r\n	min-height: 27px;\r\n	color: #fff;\r\n	border: 2px solid #0E3F77;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_button button:active {\r\n	border: 2px solid #0B2D52;\r\n	background: #0E3F77;\r\n}", "0");
INSERT INTO `wp_formmaker_themes` VALUES("8", "Theme 02 transparent (aquamarine button)", ".radio-div input[type=\"radio\"],\r\n.checkbox-div input[type=\"checkbox\"]\r\n{\r\nvisibility: hidden;\r\n}\r\n.wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #EAF9F3;\r\nborder: 1px solid #4D4A58;\r\nmargin-bottom: 10px;\r\ncolor: #4D4A58;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.ui-slider {\r\n	height: 6px;\r\n	background: #fff !important;\r\n	margin: 7px 0px;\r\n}\r\na.ui-slider-handle {\r\n	border-radius: 10px;\r\n	border: 2px solid #fff;\r\n	background: #A4A4A4;\r\n}\r\n.ui-slider-range {\r\n	background: #A4A4A4 !important;\r\n}\r\n.ui-slider-horizontal .ui-slider-handle {\r\n	top: -8px !important;\r\n}\r\na.ui-slider-handle {\r\n	border-radius: 10px;\r\n	border: 2px solid #fff;\r\n	background: #A4A4A4;\r\n}\r\n.wdform-matrix-cell input[type=\"text\"] {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n	content: url([SITE_ROOT]/images/02/bg.png);\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #E9E9E9;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 3px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\na.ui-spinner-button:hover{\r\n	background: #CEECE2 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-spinner-button:active{\r\n	background: #CEECE2 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-spinner-button:focus{\r\n	background: #CEECE2 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-slider-handle:hover{\r\n	background: #CEECE2 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-slider-handle:active{\r\n	background: #CEECE2 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-slider-handle:focus{\r\n	background: #CEECE2 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\nui-state-hover {\r\n	background: #CEECE2 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\nui-slider {\r\n	background: #fff !important;\r\n}\r\n.ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-content .ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-header .ui-state-default {\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-slider-range {\r\n	background: #ccc !important;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #DCDCDC;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\n	border: 0px !important;\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n.sel-wrap select {\r\n	position: absolute;\r\n z-index:-1;\r\n width: 0px !important;\r\n}\r\n.sel-imul {\r\n	display: inline-block;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	border-radius: 4px;\r\n	padding: 2px 0px 2px 2px;\r\n	font-size: 13px;\r\n	height: 22px;\r\n	line-height: 22px;\r\n	overflow: hidden;\r\n	background: #fff;\r\n	border: 0px solid #ccc;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 22px;\r\n	width: 29px;\r\n	background: url([SITE_ROOT]/images/02/01.png) 50% 50% no-repeat;\r\n	position: absolute;\r\n	top: 0px;\r\n	right: 0px;\r\n	padding: 2px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text]{\r\n	margin: 0px;\r\n}\r\ninput[type=password]{\r\n	margin: 0px;\r\n}\r\ninput[type=url]{\r\n	margin: 0px;\r\n}\r\ninput[type=email]{\r\n	margin: 0px;\r\n}\r\ninput.text{\r\n	margin: 0px;\r\n}\r\ninput.title{\r\n	margin: 0px;\r\n}\r\ntextarea{\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	background: #fff;\r\n	position: absolute;\r\n	border-radius: 4px;\r\n	height: 24px;\r\n	border: 1px solid #ccc;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	direction: rtl;\r\n	padding-top: 3px;\r\n	margin-top: 2px;\r\n}\r\n.file-picker {\r\n	width: 41px;\r\n	height: 32px;\r\n	background: url([SITE_ROOT]/images/02/02/upload.png);\r\n	display: inline-block;\r\n}\r\n.next-page div.wdform-page-button {\r\n	color: #4D4A3C;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 36px;\r\n	line-height: 33px;\r\n	background: url([SITE_ROOT]/images/02/next.png) top right #94FFD5;\r\n	padding: 0px 30px 0 15px;\r\n	vertical-align: middle;\r\n	font-weight: 600;\r\n	font-size: 16px;\r\n}\r\n.next-page div.wdform-page-button:hover {\r\n	background: url([SITE_ROOT]/images/02/next.png) top right  #E4F3E2;\r\n}\r\n.previous-page div.wdform-page-button {\r\n	color: #4D4A3C;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 36px;\r\n	line-height: 36px;\r\n	background: url([SITE_ROOT]/images/02/previous.png) top left #94FFD5;\r\n	padding: 0px 15px 0 30px;\r\n	vertical-align: middle;\r\n	font-weight: 600;\r\n	font-size: 16px;\r\n}\r\n.previous-page div.wdform-page-button:hover {\r\n	background: url([SITE_ROOT]/images/02/previous.png) top left  #E4F3E2;\r\n}\r\n.button-submit {\r\n	background: url([SITE_ROOT]/images/02/bg.png) #94FFD5;\r\n	cursor: pointer;\r\n	font-size: 16px;\r\n	border-radius: 0px;\r\n	min-width: 80px;\r\n	min-height: 34px;\r\n	color: #4D4A3C;\r\n	margin: 5px;\r\n	border: 0px;\r\n	font-family: Segoe UI;\r\n	font-weight: 600;\r\n}\r\n.button-reset {\r\n	background: transparent;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	min-width: 80px;\r\n	min-height: 34px;\r\n	color: #787878;\r\n	border: 0px;\r\n	margin: 5px;\r\n	font-family: Segoe UI;\r\n	text-decoration: underline;\r\n}\r\n.wdform_page {\r\n	background: transparent;\r\n	padding: 15px 15px 15px 50px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_column {\r\n	border-right: none !important;\r\n	padding-right: 30px !important;\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n}\r\n.wdform_column>div {\r\n	border-bottom: 1px solid #CFCFCF;\r\n}\r\n.wdform_column>.wdform_row:last-child {\r\n	border-bottom: 0px solid #E7E7E7;\r\n}\r\n.wdform-field-section-break {\r\n	text-align: center;\r\n}\r\n.wdform_section_break2 {\r\n	margin: 16px 10px 16px 0px;\r\n	display: inline-block;\r\n	background: url([SITE_ROOT]/images/02/bg.png) #CFAB1A;\r\n	text-align: left;\r\n	padding: 10px;\r\n	border-radius: 0px;\r\n	-moz-box-shadow: 7px -9px 20px -5px rgba(0, 0, 0, 0.23), -7px 9px 20px -5px rgba(0, 0, 0, 0.23);\r\n	-webkit-box-shadow: 7px -9px 20px -5px rgba(0, 0, 0, 0.23), -7px 9px 20px -5px rgba(0, 0, 0, 0.23);\r\n	box-shadow: 7px -9px 20px -5px rgba(0, 0, 0, 0.23), -7px 9px 20px -5px rgba(0, 0, 0, 0.23);\r\n	width: 466px;\r\n	text-align: center;\r\nfont-size: 18px;\r\nfont-family: Segoe UI;\r\ncolor: #292929;\r\nfont-weight: 600;\r\n}\r\n\r\n.wdform_section_break\r\n{\r\nmargin: 16px 10px 16px 0px;\r\ntext-align: left;\r\nfont-size: 18px;\r\nfont-family: Segoe UI;\r\ncolor: #292929;\r\n}\r\n.wdform_section {\r\n	display: table-row\r\n}\r\nselect {\r\n	border-radius: 4px;\r\n	height: 26px;\r\n	overflow: hidden;\r\n	border: 0px solid #ccc;\r\n	padding: 2px;\r\n	outline: none;\r\nbackground: #E9E9E9;\r\n}\r\ninput[type=\"text\"] {\r\n	border-radius: 4px;\r\n	height: 25px;\r\n	border: 0px solid #ccc;\r\n	padding:0 3px !important;\r\nbackground: #E9E9E9;\r\n}\r\ninput[type=\"password\"] {\r\n	border-radius: 4px;\r\n	height: 25px;\r\n	border: 0px solid #ccc;\r\n	padding:0 3px !important;\r\nbackground: #E9E9E9;\r\n}\r\ntextarea {\r\n	border-radius: 4px;\r\n	height: 25px;\r\n	border: 0px solid #ccc;\r\n	padding:0 3px !important;\r\nbackground: #E9E9E9;\r\n}\r\ninput[type=\"text\"]:focus{\r\n	border-color: #FFB471;\r\n	outline: none;\r\n}\r\ninput[type=\"password\"]:focus{\r\n	border-color: #FFB471;\r\n	outline: none;\r\n}\r\ntextarea:focus{\r\n	border-color: #FFB471;\r\n	outline: none;\r\n}\r\n\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 30px;\r\n	vertical-align: middle;\r\n}\r\n.checkbox-div input[type=checkbox] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.checkbox-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #A7A7A7;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n}\r\n.checkbox-div label {\r\n	cursor: pointer;\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)\";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: \"\";\r\n	position: absolute;\r\n	width: 16px;\r\n	height: 13px;\r\n	background: url([SITE_ROOT]/images/02/checkbox.png);\r\n	border-radius: 0px;\r\n	top: -3px;\r\n	left: 1px;\r\n}\r\n.checkbox-div label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .checkbox-div label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div input[type=checkbox]:checked + label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/02/02/date.png) no-repeat left 50% !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 22px;\r\n	height: 24px;\r\n	position: relative;\r\n	left: -22px;\r\n	vertical-align: top;\r\n}\r\n.wdform-calendar-button:focus {\r\n outline:none; \r\n}\r\n.radio-div input[type=radio] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n.radio-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #A7A7A7;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n	top: 2px;\r\n}\r\n.radio-div label {\r\n	cursor: pointer;\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)\";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: \"\";\r\n	position: absolute;\r\n	width: 11px;\r\n	height: 10px;\r\n	background: #A7A7A7;\r\n	border-radius: 0px;\r\n	top: 1px;\r\n	left: 1px;\r\n}\r\n.radio-div label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .radio-div label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div input[type=radio]:checked + label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.if-ie-div-label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #000;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	padding-top: 5px;\r\n	margin-top: 15px;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: \"Lucida Grande\", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #000;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #000;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: rgb(158, 0, 0);\r\n	vertical-align: top;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n	border-radius: 4px;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\n	font-size: 12px;\r\n color: #3F3927;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 20px;\r\n	text-align: center;\r\n	vertical-align: bottom;\r\n	padding-top: 5px;\r\n	padding: 5px 30px 0px 30px;\r\n	font-weight: bold;\r\n}\r\n.page_deactive:nth-child(even) {\r\n	background-color: #EEEEEE;\r\n}\r\n.page_deactive:nth-child(odd) {\r\n	background-color: #EEEEEE;\r\n}\r\n.page_active {\r\n	color: #3F3927;\r\n	cursor: pointer;\r\n	background-color: #CEECE2;\r\n	display: inline-block;\r\n	vertical-align: bottom;\r\n	height: 25px;\r\n	text-align: center;\r\n	font-size: 18px;\r\n	padding: 5px 30px 0px 30px;\r\n}\r\n.page_percentage_active {\r\n	padding: 0px;\r\n	margin: 0px;\r\n	border-spacing: 0px;\r\n	height: 17px;\r\n	line-height: 17px;\r\n	font-size: 15px;\r\n	float: left;\r\n	text-align: right !important;\r\n	z-index: 1;\r\n	position: relative;\r\n	background: #95D3BE ; /* Old browsers */\r\n	background: -moz-linear-gradient(left, #80CEB4 0%, #95D6C1 49%, #95D3BE 84%, #B3E7D6 99%); /* FF3.6+ */\r\n	background: -webkit-gradient(linear, left top, right top, color-stop(0%, #80CEB4 ), color-stop(49%, #95D6C1 ), color-stop(84%, #95D3BE ), color-stop(99%, #B3E7D6 )); /* Chrome,Safari4+ */\r\n	background: -webkit-linear-gradient(left, #80CEB4 0%, #95D6C1 49%, #95D3BE 84%, #B3E7D6 99%); /* Chrome10+,Safari5.1+ */\r\n	background: -o-linear-gradient(left, #80CEB4 0%, #95D6C1 49%, #95D3BE 84%, #B3E7D6 99%); /* Opera 11.10+ */\r\n	background: -ms-linear-gradient(left, #80CEB4 0%, #95D6C1 49%, #95D3BE 84%, #B3E7D6 99%); /* IE10+ */\r\n	background: linear-gradient(to right, #80CEB4 0%, #95D6C1 49%, #95D3BE 84%, #B3E7D6 99%); /* W3C */\r\n	vertical-align: middle;\r\n}\r\n.page_percentage_deactive {\r\n	height: 17px;\r\n	line-height: 17px;\r\n	background-color: #E0DFE0;\r\n	text-align: left !important;\r\n	margin-bottom: 1px;\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: right !important;\r\n	margin-bottom: -2px;\r\n}\r\n.wdform_percentage_text {\r\n	margin: 3px 5px 3px 9px;\r\n	color: #292929;\r\n	font-weight: bold;\r\nfont-size:13px;\r\n}\r\n.wdform_percentage_title {\r\n	color: #000000;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 17px;\r\n	height: 17px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_button button {\r\n	background: #0E4D92;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 4px;\r\n	min-width: 80px;\r\n	min-height: 27px;\r\n	color: #fff;\r\n	border: 2px solid #0E3F77;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_button button:active {\r\n	border: 2px solid #0B2D52;\r\n	background: #0E3F77;\r\n}", "0");
INSERT INTO `wp_formmaker_themes` VALUES("9", "Theme 03 green", ".wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #F0EEEF;\r\nborder: 1px solid #3A620A;\r\nmargin-bottom: 10px;\r\ncolor: #3A620A;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\na.ui-slider-handle {\r\n	border-radius: 0px;\r\n	border: 1px solid #39680B;\r\n	background: #C9FD9C;\r\n	height: 13px;\r\n	width: 13px;\r\n}\r\n.ui-slider-horizontal .ui-slider-handle {\r\n	top: -5px !important;\r\n}\r\n.ui-slider {\r\n	height: 6px;\r\n	background: #fff !important;\r\n	margin: 7px 0px;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell input[type=\"text\"] {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #E9E9E9;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 0px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\na.ui-spinner-button:hover {\r\n	background: #4A8C08!important;\r\n	color: #fff;\r\n}\r\na.ui-spinner-button:active {\r\n	background: #4A8C08!important;\r\n	color: #fff;\r\n}\r\na.ui-spinner-button:focus {\r\n	background: #4A8C08!important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:hover {\r\n	background: #4A8C08!important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:active {\r\n	background: #4A8C08!important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:focus {\r\n	background: #4A8C08!important;\r\n	color: #fff;\r\n}\r\nui-state-hover {\r\n	background: #4A8C08!important;\r\n	color: #fff;\r\n}\r\n.ui-state-default {\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-content .ui-state-default {\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-header .ui-state-default {\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-slider-range {\r\n	background: #C9FD9C !important;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #fff;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\n	border: 0px !important;\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n.sel-wrap select {\r\n	position: absolute;\r\n z-index:-1;\r\n width: 0px !important;\r\n}\r\n.sel-imul {\r\n	display: inline-block;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	border-radius: 0px;\r\n	padding: 0px 0px 0px 2px;\r\n	font-size: 13px;\r\n	height: 23px;\r\n	line-height: 23px;\r\n	overflow: hidden;\r\n	background: #fff;\r\n	border: 0px solid #ccc;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 23px;\r\n	width: 30px;\r\n	background: url([SITE_ROOT]/images/03/01/01.png) 50% 50% no-repeat;\r\n	position: absolute;\r\n	top: 0px;\r\n	right: 0px;\r\n	padding: 0px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text]{\r\n	margin: 0px;\r\n}\r\ninput[type=password]{\r\n	margin: 0px;\r\n}\r\ninput[type=url]{\r\n	margin: 0px;\r\n}\r\ninput[type=email]{\r\n	margin: 0px;\r\n}\r\ninput.text{\r\n	margin: 0px;\r\n}\r\ninput.title{\r\n	margin: 0px;\r\n}\r\ntextarea{\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	position: absolute;\r\n	border-radius: 0px;\r\n	height: 23px;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	}\r\n.file-picker {\r\n	width: 32px;\r\n	height: 25px;\r\n	background: url([SITE_ROOT]/images/03/upload.png);\r\n	display: inline-block;\r\n}\r\ndiv.wdform-page-button {\r\n	color: #414141;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 36px;\r\n	line-height: 36px;\r\n	background-color: #ACABAB;\r\npadding: 2px 15px;\r\nvertical-align: middle;\r\nborder: none;\r\nfont-size: 15px;\r\n}\r\n\r\n\r\n.button-submit {\r\n	background: #3A620A;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	min-width: 80px;\r\n	min-height: 34px;\r\n	color: #fff;\r\n	border: 2px solid #4A8C08;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 1px 1px #44740E;\r\n	font-family: Segoe UI;\r\n	}\r\n.button-reset {\r\n	background: #D8D6D7;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	min-width: 80px;\r\n	min-height: 34px;\r\n	color: #787878;\r\n	border: 2px solid #fff;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px 1px #969495;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_page {\r\n	background: #CDD9C3;\r\n	padding-top: 15px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_column {\r\n	border-right: none !important;\r\n	padding-right: 30px !important;\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n}\r\n.wdform-field-section-break {\r\n	text-align: center;\r\n}\r\n.wdform_section_break2 {\r\n	margin: 16px 10px 16px 0px;\r\n	display: inline-block;\r\n	background: url([SITE_ROOT]/images/03/01/bg.png);\r\n	text-align: left;\r\n	padding: 10px 20px 10px 50px;\r\n	border-radius: 0px;\r\n	-moz-box-shadow: 7px -9px 20px -5px rgba(0, 0, 0, 0.23), -7px 9px 20px -5px rgba(0, 0, 0, 0.23);\r\n	-webkit-box-shadow: 7px -9px 20px -5px rgba(0, 0, 0, 0.23), -7px 9px 20px -5px rgba(0, 0, 0, 0.23);\r\n	box-shadow: 7px -9px 20px -5px rgba(0, 0, 0, 0.23), -7px 9px 20px -5px rgba(0, 0, 0, 0.23);\r\n	width: 466px;\r\n	text-align: right;\r\n	color: #000;\r\nfont-size: 18px;\r\n}\r\n\r\n.wdform_section_break\r\n{\r\nmargin: 16px 15px;\r\ntext-align: left;\r\nfont-size: 18px;\r\ncolor: #555;\r\n}\r\n.wdform_section {\r\n	display: inline-block;\r\n	padding: 0px 15px;\r\n}\r\nselect {\r\n	border-radius: 0px;\r\n	padding: 2px;\r\n	height: 26px;\r\n	overflow: hidden;\r\n	border: 0px solid #ccc;\r\n	padding: 2px;\r\n	outline: none;\r\n}\r\ninput[type=\"text\"]{\r\n	border-radius: 0px;\r\n	height: 25px;\r\n	border: 0px solid #ccc;\r\n	padding:0 3px !important;\r\n}\r\ninput[type=\"password\"]{\r\n	border-radius: 0px;\r\n	height: 25px;\r\n	border: 0px solid #ccc;\r\n	padding:0 3px !important;\r\n}\r\ntextarea {\r\n	border-radius: 0px;\r\n	height: 25px;\r\n	border: 0px solid #ccc;\r\n	padding:0 3px !important;\r\n}\r\ninput[type=\"text\"]:focus{\r\n	border-color: #FFB471;\r\n	outline: none;\r\n}\r\ninput[type=\"password\"]:focus{\r\n	border-color: #FFB471;\r\n	outline: none;\r\n}\r\ntextarea:focus{\r\n	border-color: #FFB471;\r\n	outline: none;\r\n}\r\n\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 30px;\r\n	vertical-align: middle;\r\n}\r\n.checkbox-div input[type=checkbox] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.checkbox-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #A7A7A7;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n}\r\n.checkbox-div label {\r\n	cursor: pointer;\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)\";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: \"\";\r\n	position: absolute;\r\n	width: 16px;\r\n	height: 13px;\r\n	background: url([SITE_ROOT]/images/03/checkbox.png);\r\n	border-radius: 0px;\r\n	top: -3px;\r\n	left: 1px;\r\n}\r\n.checkbox-div label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .checkbox-div label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div input[type=checkbox]:checked + label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/03/date.png) no-repeat left 50% !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 22px;\r\n	height: 24px;\r\n	position: relative;\r\n	left: -22px;\r\n	vertical-align: top;\r\n}\r\n.wdform-calendar-button:focus {\r\n outline:none; \r\n}\r\n.radio-div input[type=radio] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n.radio-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #A7A7A7;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n	top: 2px;\r\n}\r\n.radio-div label {\r\n	cursor: pointer;\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)\";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: \"\";\r\n	position: absolute;\r\n	width: 9px;\r\n	height: 8px;\r\n	background: #A7A7A7;\r\n	border-radius: 0px;\r\n	top: 2px;\r\n	left: 2px;\r\n}\r\n.radio-div label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .radio-div label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div input[type=radio]:checked + label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.if-ie-div-label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #000;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	margin-top: 15px;\r\n	background-color: #DFDFDF;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: \"Lucida Grande\", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #A8A8A8;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #000;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: red;\r\n	vertical-align: top;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n	border-radius: 0px;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\n	color: #fff;\r\n	background-color: #42810e;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 20px;\r\n	text-align: center;\r\n	vertical-align: bottom;\r\n	padding-top: 5px;\r\n	padding: 5px 25px 0px 25px;\r\n	font-size: 12px;\r\n}\r\n.page_active {\r\n	color: #fff;\r\n	background-color: #36690c;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	vertical-align: bottom;\r\n	height: 33px;\r\n	text-align: center;\r\n	font-size: 21px;\r\n	padding: 5px 20px 0px 20px;\r\n	margin-bottom: -13px;\r\n}\r\n.page_percentage_active {\r\n	padding: 0px;\r\n	margin: 0px;\r\n	border-spacing: 0px;\r\n	height: 18px;\r\n	line-height: 20px;\r\n	font-size: 15px;\r\n	float: left;\r\n	text-align: right !important;\r\n	z-index: 1;\r\n	position: relative;\r\n	background: #62983A; /* Old browsers */\r\n	background: -moz-linear-gradient(left, #61b217 0%, #62983a 39%, #62983a 100%); /* FF3.6+ */\r\n	background: -webkit-gradient(linear, left top, right top, color-stop(0%, #61b217), color-stop(39%, #62983a), color-stop(100%, #62983a)); /* Chrome,Safari4+ */\r\n	background: -webkit-linear-gradient(left, #61b217 0%, #62983a 39%, #62983a 100%); /* Chrome10+,Safari5.1+ */\r\n	background: -o-linear-gradient(left, #61b217 0%, #62983a 39%, #62983a 100%); /* Opera 11.10+ */\r\n	background: -ms-linear-gradient(left, #61b217 0%, #62983a 39%, #62983a 100%); /* IE10+ */\r\n	background: linear-gradient(to right, #61b217 0%, #62983a 39%, #62983a 100%); /* W3C */\r\n	vertical-align: middle;\r\n}\r\n.page_percentage_deactive {\r\n	height: 18px;\r\n	line-height: 20px;\r\n	background-color: #DFDFDF;\r\n	text-align: left !important;\r\n	margin-bottom: 1px;\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: center!important;\r\n	margin-bottom: 0px;\r\n}\r\n.wdform_percentage_text {\r\n	margin: 3px -34px 3px 9px;\r\n	color: #FFFFFF;\r\n	font-weight: normal;\r\n	font-size: 12px;\r\nline-height: 18px;\r\n}\r\n.wdform_percentage_title {\r\n	color: #000000;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 20px;\r\n	height: 20px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_percentage_arrow {\r\n	display: inline-block;\r\n	width: 34px;\r\n	height: 18px;\r\n	background: url([SITE_ROOT]/images/03/01/percentage_arrow.png);\r\n	position: relative;\r\n	left: -1px;\r\ntop:0px;\r\n	z-index: 0;\r\n	vertical-align: middle;\r\n}\r\n.wdform_button button {\r\n	background: #4D792C;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 0px;\r\n	min-width: 80px;\r\n	min-height: 31px;\r\n	color: #fff;\r\n	border: 2px solid #68943B;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}", "0");
INSERT INTO `wp_formmaker_themes` VALUES("10", "Theme 03 red", ".wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #F0EEEF;\r\nborder: 1px solid #811919;\r\nmargin-bottom: 10px;\r\ncolor: #811919;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\na.ui-slider-handle {\r\n	border-radius: 0px;\r\n	border: 1px solid #39680B;\r\n	background: #C9FD9C;\r\n	height: 13px;\r\n	width: 13px;\r\n}\r\n.ui-slider-horizontal .ui-slider-handle {\r\n	top: -5px !important;\r\n}\r\n.ui-slider {\r\n	height: 6px;\r\n	background: #fff !important;\r\n	margin: 7px 0px;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell input[type=\"text\"] {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #E9E9E9;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 0px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\na.ui-spinner-button:hover {\r\n	background: #5D0000 !important;\r\n	color: #fff;\r\n}\r\na.ui-spinner-button:active {\r\n	background: #5D0000 !important;\r\n	color: #fff;\r\n}\r\na.ui-spinner-button:focus {\r\n	background: #5D0000 !important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:hover {\r\n	background: #5D0000 !important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:active {\r\n	background: #5D0000 !important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:focus {\r\n	background: #5D0000 !important;\r\n	color: #fff;\r\n}\r\nui-state-hover {\r\n	background: #5D0000 !important;\r\n	color: #fff;\r\n}\r\n.ui-state-default {\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-content .ui-state-default {\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-header .ui-state-default {\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-slider-range {\r\n	background: #942323 !important;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #fff;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\n	border: 0px !important;\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n.sel-wrap select {\r\n	position: absolute;\r\n z-index:-1;\r\n width: 0px !important;\r\n}\r\n.sel-imul {\r\n	display: inline-block;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	border-radius: 0px;\r\n	padding: 0px 0px 0px 2px;\r\n	font-size: 13px;\r\n	height: 23px;\r\n	line-height: 23px;\r\n	overflow: hidden;\r\n	background: #fff;\r\n	border: 0px solid #ccc;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 23px;\r\n	width: 30px;\r\n	background: url([SITE_ROOT]/images/03/02/01.png) 50% 50% no-repeat;\r\n	position: absolute;\r\n	top: 0px;\r\n	right: 0px;\r\n	padding: 0px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text]{\r\n	margin: 0px;\r\n}\r\ninput[type=password]{\r\n	margin: 0px;\r\n}\r\ninput[type=url]{\r\n	margin: 0px;\r\n}\r\ninput[type=email]{\r\n	margin: 0px;\r\n}\r\ninput.text{\r\n	margin: 0px;\r\n}\r\ninput.title{\r\n	margin: 0px;\r\n}\r\ntextarea{\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	position: absolute;\r\n	border-radius: 0px;\r\n	height: 23px;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	}\r\n.file-picker {\r\n	width: 32px;\r\n	height: 25px;\r\n	background: url([SITE_ROOT]/images/03/upload.png);\r\n	display: inline-block;\r\n}\r\ndiv.wdform-page-button {\r\n	color: #414141;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 36px;\r\n	line-height: 36px;\r\n	background-color: #ACABAB;\r\npadding: 2px 15px;\r\nvertical-align: middle;\r\nborder: none;\r\nfont-size: 15px;\r\n}\r\n\r\n.button-submit {\r\nbackground: #811919;\r\ncursor: pointer;\r\nfont-size: 17px;\r\nmin-width: 80px;\r\nmin-height: 34px;\r\ncolor: #fff;\r\nborder: 2px solid #9E1919;\r\nmargin: 5px;\r\nbox-shadow: 0px 0px 1px 1px #811818;\r\nfont-family: Segoe UI;\r\n	}\r\n.button-reset {\r\n	background: #D8D6D7;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	min-width: 80px;\r\n	min-height: 34px;\r\n	color: #787878;\r\n	border: 2px solid #fff;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px 1px #969495;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_page {\r\n	background: #F0EEEF;\r\n	padding-top: 15px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_column {\r\n	border-right: none !important;\r\n	padding-right: 30px !important;\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n}\r\n.wdform-field-section-break {\r\n	text-align: center;\r\n}\r\n.wdform_section_break2 {\r\n	margin: 16px 10px 16px 0px;\r\n	display: inline-block;\r\n	background: url([SITE_ROOT]/images/03/02/bg.png);\r\n	text-align: left;\r\n	padding: 10px 20px 10px 50px;\r\n	border-radius: 0px;\r\n	-moz-box-shadow: 7px -9px 20px -5px rgba(0, 0, 0, 0.23), -7px 9px 20px -5px rgba(0, 0, 0, 0.23);\r\n	-webkit-box-shadow: 7px -9px 20px -5px rgba(0, 0, 0, 0.23), -7px 9px 20px -5px rgba(0, 0, 0, 0.23);\r\n	box-shadow: 7px -9px 20px -5px rgba(0, 0, 0, 0.23), -7px 9px 20px -5px rgba(0, 0, 0, 0.23);\r\n	width: 466px;\r\n	text-align: right;\r\n	color: #fff;\r\nfont-size: 18px;\r\n}\r\n\r\n.wdform_section_break\r\n{\r\nmargin: 16px 15px;\r\ntext-align: left;\r\ncolor: #555;\r\nfont-size: 18px;\r\n}\r\n.wdform_section {\r\n	display: inline-block;\r\n	padding: 0px 15px;\r\n}\r\nselect {\r\n	border-radius: 0px;\r\n	padding: 2px;\r\n	height: 26px;\r\n	overflow: hidden;\r\n	border: 0px solid #ccc;\r\n	padding: 2px;\r\n	outline: none;\r\n}\r\ninput[type=\"text\"]{\r\n	border-radius: 0px;\r\n	height: 25px;\r\n	border: 0px solid #ccc;\r\n	padding:0 3px !important;\r\n}\r\ninput[type=\"password\"]{\r\n	border-radius: 0px;\r\n	height: 25px;\r\n	border: 0px solid #ccc;\r\n	padding:0 3px !important;\r\n}\r\ntextarea {\r\n	border-radius: 0px;\r\n	height: 25px;\r\n	border: 0px solid #ccc;\r\n	padding:0 3px !important;\r\n}\r\ninput[type=\"text\"]:focus{\r\n	border-color: #FFB471;\r\n	outline: none;\r\n}\r\ninput[type=\"password\"]:focus{\r\n	border-color: #FFB471;\r\n	outline: none;\r\n}\r\ntextarea:focus{\r\n	border-color: #FFB471;\r\n	outline: none;\r\n}\r\n\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 30px;\r\n	vertical-align: middle;\r\n}\r\n.checkbox-div input[type=checkbox] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.checkbox-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #A7A7A7;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n}\r\n.checkbox-div label {\r\n	cursor: pointer;\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)\";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: \"\";\r\n	position: absolute;\r\n	width: 16px;\r\n	height: 13px;\r\n	background: url([SITE_ROOT]/images/03/checkbox.png);\r\n	border-radius: 0px;\r\n	top: -3px;\r\n	left: 1px;\r\n}\r\n.checkbox-div label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .checkbox-div label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div input[type=checkbox]:checked + label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/03/date.png) no-repeat left 50% !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 22px;\r\n	height: 24px;\r\n	position: relative;\r\n	left: -22px;\r\n	vertical-align: top;\r\n}\r\n.wdform-calendar-button:focus {\r\n outline:none; \r\n}\r\n.radio-div input[type=radio] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n.radio-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #A7A7A7;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n	top: 2px;\r\n}\r\n.radio-div label {\r\n	cursor: pointer;\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)\";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: \"\";\r\n	position: absolute;\r\n	width: 9px;\r\n	height: 8px;\r\n	background: #A7A7A7;\r\n	border-radius: 0px;\r\n	top: 2px;\r\n	left: 2px;\r\n}\r\n.radio-div label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .radio-div label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div input[type=radio]:checked + label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.if-ie-div-label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #000;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	margin-top: 15px;\r\n	background-color: #DFDFDF;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: \"Lucida Grande\", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #A8A8A8;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #000;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: red;\r\n	vertical-align: top;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n	border-radius: 0px;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\n	color: #fff;\r\n	background-color: #640B0B;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 20px;\r\n	text-align: center;\r\n	vertical-align: bottom;\r\n	padding-top: 5px;\r\n	padding: 5px 25px 0px 25px;\r\n	font-size: 12px;\r\n}\r\n.page_active {\r\n	color: #fff;\r\n	background-color: #942323;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	vertical-align: bottom;\r\n	height: 33px;\r\n	text-align: center;\r\n	font-size: 21px;\r\n	padding: 5px 20px 0px 20px;\r\n	margin-bottom: -13px;\r\n}\r\n.page_percentage_active {\r\n	padding: 0px;\r\n	margin: 0px;\r\n	border-spacing: 0px;\r\n	height: 18px;\r\n	line-height: 20px;\r\n	font-size: 15px;\r\n	float: left;\r\n	text-align: right !important;\r\n	z-index: 1;\r\n	position: relative;\r\n	background: #752D2D ; /* Old browsers */\r\n	background: -moz-linear-gradient(left, #9A0B0B  0%, #7B2828 39%, #752D2D 100%); /* FF3.6+ */\r\n	background: -webkit-gradient(linear, left top, right top, color-stop(0%, #9A0B0B ), color-stop(39%, #7B2828 ), color-stop(100%, #752D2D )); /* Chrome,Safari4+ */\r\n	background: -webkit-linear-gradient(left, #9A0B0B 0%, #7B2828 39%, #752D2D 100%); /* Chrome10+,Safari5.1+ */\r\n	background: -o-linear-gradient(left, #9A0B0B 0%, #7B2828 39%, #752D2D 100%); /* Opera 11.10+ */\r\n	background: -ms-linear-gradient(left, #9A0B0B 0%, #7B2828 39%, #752D2D 100%); /* IE10+ */\r\n	background: linear-gradient(to right, #9A0B0B 0%, #7B2828 39%, #752D2D 100%); /* W3C */\r\n	vertical-align: middle;\r\n}\r\n.page_percentage_deactive {\r\n	height: 18px;\r\n	line-height: 20px;\r\n	background-color: #DFDFDF;\r\n	text-align: left !important;\r\n	margin-bottom: 1px;\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: center!important;\r\n	margin-bottom: 0px;\r\n}\r\n.wdform_percentage_text {\r\n	margin: 3px -34px 3px 9px;\r\n	color: #FFFFFF;\r\n	font-weight: normal;\r\n	font-size: 12px;\r\nline-height:18px;\r\n}\r\n.wdform_percentage_title {\r\n	color: #000000;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 20px;\r\n	height: 20px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_percentage_arrow {\r\n	display: inline-block;\r\n	width: 34px;\r\n	height: 18px;\r\n	background: url([SITE_ROOT]/images/03/02/percentage_arrow.png);\r\n	position: relative;\r\n	left: -1px;\r\ntop:0px;\r\n	z-index: 0;\r\n	vertical-align: middle;\r\n}\r\n.wdform_button button {\r\n	background: #4D792C;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 0px;\r\n	min-width: 80px;\r\n	min-height: 31px;\r\n	color: #fff;\r\n	border: 2px solid #68943B;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}", "0");
INSERT INTO `wp_formmaker_themes` VALUES("11", "Theme 03 dark cyan", ".wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #F0EEEF;\r\nborder: 1px solid #0B7A97;\r\nmargin-bottom: 10px;\r\ncolor: #0B7A97;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\na.ui-slider-handle {\r\n	border-radius: 0px;\r\n	border: 1px solid #39680B;\r\n	background: #C9FD9C;\r\n	height: 13px;\r\n	width: 13px;\r\n}\r\n.ui-slider-horizontal .ui-slider-handle {\r\n	top: -5px !important;\r\n}\r\n.ui-slider {\r\n	height: 6px;\r\n	background: #fff !important;\r\n	margin: 7px 0px;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell input[type=\"text\"] {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #E9E9E9;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 0px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\na.ui-spinner-button:hover {\r\n	background: #0C6177 !important;\r\n	color: #fff;\r\n}\r\na.ui-spinner-button:active {\r\n	background: #0C6177 !important;\r\n	color: #fff;\r\n}\r\na.ui-spinner-button:focus {\r\n	background: #0C6177 !important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:hover {\r\n	background: #0C6177 !important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:active {\r\n	background: #0C6177 !important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:focus {\r\n	background: #0C6177 !important;\r\n	color: #fff;\r\n}\r\nui-state-hover {\r\n	background: #0C6177 !important;\r\n	color: #fff;\r\n}\r\n.ui-state-default {\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-content .ui-state-default {\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-header .ui-state-default {\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-slider-range {\r\n	background: #2796B3 !important;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #fff;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\n	border: 0px !important;\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n.sel-wrap select {\r\n	position: absolute;\r\n z-index:-1;\r\n width: 0px !important;\r\n}\r\n.sel-imul {\r\n	display: inline-block;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	border-radius: 0px;\r\n	padding: 0px 0px 0px 2px;\r\n	font-size: 13px;\r\n	height: 23px;\r\n	line-height: 23px;\r\n	overflow: hidden;\r\n	background: #fff;\r\n	border: 0px solid #ccc;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 23px;\r\n	width: 30px;\r\n	background: url([SITE_ROOT]/images/03/03/01.png) 50% 50% no-repeat;\r\n	position: absolute;\r\n	top: 0px;\r\n	right: 0px;\r\n	padding: 0px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text]{\r\n	margin: 0px;\r\n}\r\ninput[type=password]{\r\n	margin: 0px;\r\n}\r\ninput[type=url]{\r\n	margin: 0px;\r\n}\r\ninput[type=email]{\r\n	margin: 0px;\r\n}\r\ninput.text{\r\n	margin: 0px;\r\n}\r\ninput.title{\r\n	margin: 0px;\r\n}\r\ntextarea{\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	position: absolute;\r\n	border-radius: 0px;\r\n	height: 23px;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	}\r\n.file-picker {\r\n	width: 32px;\r\n	height: 25px;\r\n	background: url([SITE_ROOT]/images/03/upload.png);\r\n	display: inline-block;\r\n}\r\ndiv.wdform-page-button {\r\n	color: #414141;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 36px;\r\n	line-height: 36px;\r\n	background-color: #ACABAB;\r\npadding: 2px 15px;\r\nvertical-align: middle;\r\nborder: none;\r\nfont-size: 15px;\r\n}\r\n\r\n.button-submit {\r\nbackground: #0B7A97;\r\ncursor: pointer;\r\nfont-size: 17px;\r\nmin-width: 80px;\r\nmin-height: 34px;\r\ncolor: #fff;\r\nborder: 2px solid #18627C;\r\nmargin: 5px;\r\nbox-shadow: 0px 0px 1px 1px #56B4D5;\r\nfont-family: Segoe UI;\r\n}\r\n.button-reset {\r\n	background: #D8D6D7;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	min-width: 80px;\r\n	min-height: 34px;\r\n	color: #787878;\r\n	border: 2px solid #fff;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px 1px #969495;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_page {\r\n	background: #F0EEEF;\r\n	padding-top: 15px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_column {\r\n	border-right: none !important;\r\n	padding-right: 30px !important;\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n}\r\n.wdform-field-section-break {\r\n	text-align: center;\r\n}\r\n.wdform_section_break2 {\r\n	margin: 16px 10px 16px 0px;\r\n	display: inline-block;\r\n	background: url([SITE_ROOT]/images/03/03/bg.png);\r\n	text-align: left;\r\n	padding: 10px 20px 10px 50px;\r\n	border-radius: 0px;\r\n	-moz-box-shadow: 7px -9px 20px -5px rgba(0, 0, 0, 0.23), -7px 9px 20px -5px rgba(0, 0, 0, 0.23);\r\n	-webkit-box-shadow: 7px -9px 20px -5px rgba(0, 0, 0, 0.23), -7px 9px 20px -5px rgba(0, 0, 0, 0.23);\r\n	box-shadow: 7px -9px 20px -5px rgba(0, 0, 0, 0.23), -7px 9px 20px -5px rgba(0, 0, 0, 0.23);\r\n	width: 466px;\r\n	text-align: right;\r\n	color: #fff;\r\nfont-size:18px;\r\n}\r\n\r\n.wdform_section_break\r\n{\r\nmargin: 16px 15px;\r\ntext-align: left;\r\ncolor: #555;\r\nfont-size:18px;\r\n}\r\n.wdform_section {\r\n	display: inline-block;\r\n	padding: 0px 15px;\r\n}\r\nselect {\r\n	border-radius: 0px;\r\n	padding: 2px;\r\n	height: 26px;\r\n	overflow: hidden;\r\n	border: 0px solid #ccc;\r\n	padding: 2px;\r\n	outline: none;\r\n}\r\ninput[type=\"text\"]{\r\n	border-radius: 0px;\r\n	height: 25px;\r\n	border: 0px solid #ccc;\r\n	padding:0 3px !important;\r\n}\r\ninput[type=\"password\"]{\r\n	border-radius: 0px;\r\n	height: 25px;\r\n	border: 0px solid #ccc;\r\n	padding:0 3px !important;\r\n}\r\ntextarea {\r\n	border-radius: 0px;\r\n	height: 25px;\r\n	border: 0px solid #ccc;\r\n	padding:0 3px !important;\r\n}\r\ninput[type=\"text\"]:focus{\r\n	border-color: #FFB471;\r\n	outline: none;\r\n}\r\ninput[type=\"password\"]:focus{\r\n	border-color: #FFB471;\r\n	outline: none;\r\n}\r\ntextarea:focus{\r\n	border-color: #FFB471;\r\n	outline: none;\r\n}\r\n\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 30px;\r\n	vertical-align: middle;\r\n}\r\n.checkbox-div input[type=checkbox] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.checkbox-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #A7A7A7;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n}\r\n.checkbox-div label {\r\n	cursor: pointer;\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)\";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: \"\";\r\n	position: absolute;\r\n	width: 16px;\r\n	height: 13px;\r\n	background: url([SITE_ROOT]/images/03/checkbox.png);\r\n	border-radius: 0px;\r\n	top: -3px;\r\n	left: 1px;\r\n}\r\n.checkbox-div label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .checkbox-div label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div input[type=checkbox]:checked + label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/03/date.png) no-repeat left 50% !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 22px;\r\n	height: 24px;\r\n	position: relative;\r\n	left: -22px;\r\n	vertical-align: top;\r\n}\r\n.wdform-calendar-button:focus {\r\n outline:none; \r\n}\r\n.radio-div input[type=radio] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n.radio-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #A7A7A7;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n	top: 2px;\r\n}\r\n.radio-div label {\r\n	cursor: pointer;\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)\";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: \"\";\r\n	position: absolute;\r\n	width: 9px;\r\n	height: 8px;\r\n	background: #A7A7A7;\r\n	border-radius: 0px;\r\n	top: 2px;\r\n	left: 2px;\r\n}\r\n.radio-div label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .radio-div label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div input[type=radio]:checked + label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.if-ie-div-label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #000;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	margin-top: 15px;\r\n	background-color: #DFDFDF;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: \"Lucida Grande\", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #A8A8A8;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #000;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: red;\r\n	vertical-align: top;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n	border-radius: 0px;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\n	color: #fff;\r\n	background-color: #0C6177;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 20px;\r\n	text-align: center;\r\n	vertical-align: bottom;\r\n	padding-top: 5px;\r\n	padding: 5px 25px 0px 25px;\r\n	font-size: 12px;\r\n}\r\n.page_active {\r\n	color: #fff;\r\n	background-color: #2796B3;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	vertical-align: bottom;\r\n	height: 33px;\r\n	text-align: center;\r\n	font-size: 21px;\r\n	padding: 5px 20px 0px 20px;\r\n	margin-bottom: -13px;\r\n}\r\n.page_percentage_active {\r\n	padding: 0px;\r\n	margin: 0px;\r\n	border-spacing: 0px;\r\n	height: 18px;\r\n	line-height: 20px;\r\n	font-size: 15px;\r\n	float: left;\r\n	text-align: right !important;\r\n	z-index: 1;\r\n	position: relative;\r\n	background: #752D2D ; /* Old browsers */\r\n	background: -moz-linear-gradient(left, #0E6378 0%, #2C7487 39%, #2D7587 100%); /* FF3.6+ */\r\n	background: -webkit-gradient(linear, left top, right top, color-stop(0%, #0E6378 ), color-stop(39%, #2C7487 ), color-stop(100%, #2D7587 )); /* Chrome,Safari4+ */\r\n	background: -webkit-linear-gradient(left, #0E6378 0%, #2C7487 39%, #2D7587 100%); /* Chrome10+,Safari5.1+ */\r\n	background: -o-linear-gradient(left, #0E6378 0%, #2C7487 39%, #2D7587 100%); /* Opera 11.10+ */\r\n	background: -ms-linear-gradient(left, #0E6378 0%, #2C7487 39%, #2D7587 100%); /* IE10+ */\r\n	background: linear-gradient(to right, #0E6378 0%, #2C7487 39%, #2D7587 100%); /* W3C */\r\n	vertical-align: middle;\r\n}\r\n.page_percentage_deactive {\r\n	height: 18px;\r\n	line-height: 20px;\r\n	background-color: #DFDFDF;\r\n	text-align: left !important;\r\n	margin-bottom: 1px;\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: center!important;\r\n	margin-bottom: 0px;\r\n}\r\n.wdform_percentage_text {\r\n	margin: 3px -34px 3px 9px;\r\n	color: #FFFFFF;\r\n	font-weight: normal;\r\n	font-size: 12px;\r\nline-height:18px;\r\n}\r\n.wdform_percentage_title {\r\n	color: #000000;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 20px;\r\n	height: 20px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_percentage_arrow {\r\n	display: inline-block;\r\n	width: 34px;\r\n	height: 18px;\r\n	background: url([SITE_ROOT]/images/03/03/percentage_arrow.png);\r\n	position: relative;\r\n	left: -1px;\r\ntop:0px;\r\n	z-index: 0;\r\n	vertical-align: middle;\r\n}\r\n.wdform_button button {\r\n	background: #4D792C;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 0px;\r\n	min-width: 80px;\r\n	min-height: 31px;\r\n	color: #fff;\r\n	border: 2px solid #68943B;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}", "0");
INSERT INTO `wp_formmaker_themes` VALUES("12", "Theme 03 transparent (salmon button)", ".radio-div input[type=\"radio\"],\r\n.checkbox-div input[type=\"checkbox\"]\r\n{\r\nvisibility: hidden;\r\n}\r\n.wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #D8D6D7;\r\nborder: 1px solid #D8D6D7;\r\nmargin-bottom: 10px;\r\ncolor: #D8D6D7;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\na.ui-slider-handle {\r\n	border-radius: 0px;\r\n	border: 1px solid #39680B;\r\n	background: #C9FD9C;\r\n	height: 13px;\r\n	width: 13px;\r\n}\r\n.ui-slider-horizontal .ui-slider-handle {\r\n	top: -5px !important;\r\n}\r\n.ui-slider {\r\n	height: 6px;\r\n	background: #fff !important;\r\n	margin: 7px 0px;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell input[type=\"text\"] {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #E9E9E9;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 0px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\na.ui-spinner-button:hover {\r\n	background: #FA8072 !important;\r\n	color: #fff;\r\n}\r\na.ui-spinner-button:active {\r\n	background: #FA8072 !important;\r\n	color: #fff;\r\n}\r\na.ui-spinner-button:focus {\r\n	background: #FA8072 !important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:hover {\r\n	background: #FA8072 !important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:active {\r\n	background: #FA8072 !important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:focus {\r\n	background: #FA8072 !important;\r\n	color: #fff;\r\n}\r\nui-state-hover {\r\n	background: #FA8072 !important;\r\n	color: #fff;\r\n}\r\n.ui-state-default {\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-content .ui-state-default {\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-header .ui-state-default {\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-slider-range {\r\n	background: #C9FD9C !important;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #fff;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\n	border: 0px !important;\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n.sel-wrap select {\r\n	position: absolute;\r\n z-index:-1;\r\n width: 0px !important;\r\n}\r\n.sel-imul {\r\n	display: inline-block;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	border-radius: 0px;\r\n	padding: 0px 0px 0px 2px;\r\n	font-size: 13px;\r\n	height: 23px;\r\n	line-height: 23px;\r\n	overflow: hidden;\r\n	background: #fff;\r\n	border: 0px solid #ccc;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 23px;\r\n	width: 30px;\r\n	background: url([SITE_ROOT]/images/03/01/01.png) 50% 50% no-repeat;\r\n	position: absolute;\r\n	top: 0px;\r\n	right: 0px;\r\n	padding: 0px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text]{\r\n	margin: 0px;\r\n}\r\ninput[type=password]{\r\n	margin: 0px;\r\n}\r\ninput[type=url]{\r\n	margin: 0px;\r\n}\r\ninput[type=email]{\r\n	margin: 0px;\r\n}\r\ninput.text{\r\n	margin: 0px;\r\n}\r\ninput.title{\r\n	margin: 0px;\r\n}\r\ntextarea{\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	position: absolute;\r\n	border-radius: 0px;\r\n	height: 23px;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	}\r\n.file-picker {\r\n	width: 32px;\r\n	height: 25px;\r\n	background: url([SITE_ROOT]/images/03/upload.png);\r\n	display: inline-block;\r\n}\r\ndiv.wdform-page-button {\r\n	color: #414141;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 36px;\r\n	line-height: 36px;\r\n	background-color: #ACABAB;\r\npadding: 2px 15px;\r\nvertical-align: middle;\r\nborder: none;\r\nfont-size: 15px;\r\n}\r\n\r\n\r\n.button-submit {\r\nbackground: #FA8072;\r\ncursor: pointer;\r\nfont-size: 17px;\r\nmin-width: 80px;\r\nmin-height: 34px;\r\ncolor: #fff;\r\nborder: 2px solid #FFABA1;\r\nmargin: 5px;\r\nbox-shadow: 0px 0px 1px 1px #FF9689;\r\nfont-family: Segoe UI;\r\n	}\r\n.button-reset {\r\n	background: #D8D6D7;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	min-width: 80px;\r\n	min-height: 34px;\r\n	color: #787878;\r\n	border: 2px solid #fff;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px 1px #969495;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_page {\r\n	background: transparent;\r\n	padding-top: 15px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_column {\r\n	border-right: none !important;\r\n	padding-right: 30px !important;\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n}\r\n.wdform-field-section-break {\r\n	text-align: center;\r\n}\r\n.wdform_section_break2 {\r\n	margin: 16px 10px 16px 0px;\r\n	display: inline-block;\r\n	background: url([SITE_ROOT]/images/03/01/bg.png);\r\n	text-align: left;\r\n	padding: 10px 20px 10px 50px;\r\n	border-radius: 0px;\r\n	-moz-box-shadow: 7px -9px 20px -5px rgba(0, 0, 0, 0.23), -7px 9px 20px -5px rgba(0, 0, 0, 0.23);\r\n	-webkit-box-shadow: 7px -9px 20px -5px rgba(0, 0, 0, 0.23), -7px 9px 20px -5px rgba(0, 0, 0, 0.23);\r\n	box-shadow: 7px -9px 20px -5px rgba(0, 0, 0, 0.23), -7px 9px 20px -5px rgba(0, 0, 0, 0.23);\r\n	width: 466px;\r\n	text-align: right;\r\n	color: #000;\r\nfont-size: 18px;\r\n}\r\n\r\n.wdform_section_break\r\n{\r\nmargin: 16px 15px;\r\ntext-align: left;\r\nfont-size: 18px;\r\ncolor: #555;\r\n}\r\n.wdform_section {\r\n	display: inline-block;\r\n	padding: 0px 15px;\r\n}\r\nselect {\r\n	border-radius: 0px;\r\n	padding: 2px;\r\n	height: 26px;\r\n	overflow: hidden;\r\n	border: 0px solid #ccc;\r\n	padding: 2px;\r\n	outline: none;\r\nbackground: #ECECEC;\r\n}\r\ninput[type=\"text\"]{\r\n	border-radius: 0px;\r\n	height: 25px;\r\n	border: 0px solid #ccc;\r\n	padding:0 3px !important;\r\nbackground: #ECECEC;\r\n}\r\ninput[type=\"password\"]{\r\n	border-radius: 0px;\r\n	height: 25px;\r\n	border: 0px solid #ccc;\r\n	padding:0 3px !important;\r\nbackground: #ECECEC;\r\n}\r\ntextarea {\r\n	border-radius: 0px;\r\n	height: 25px;\r\n	border: 0px solid #ccc;\r\n	padding:0 3px !important;\r\nbackground: #ECECEC;\r\n}\r\ninput[type=\"text\"]:focus{\r\n	border-color: #FFB471;\r\n	outline: none;\r\n}\r\ninput[type=\"password\"]:focus{\r\n	border-color: #FFB471;\r\n	outline: none;\r\n}\r\ntextarea:focus{\r\n	border-color: #FFB471;\r\n	outline: none;\r\n}\r\n\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 30px;\r\n	vertical-align: middle;\r\n}\r\n.checkbox-div input[type=checkbox] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.checkbox-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #A7A7A7;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n}\r\n.checkbox-div label {\r\n	cursor: pointer;\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)\";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: \"\";\r\n	position: absolute;\r\n	width: 16px;\r\n	height: 13px;\r\n	background: url([SITE_ROOT]/images/03/checkbox.png);\r\n	border-radius: 0px;\r\n	top: -3px;\r\n	left: 1px;\r\n}\r\n.checkbox-div label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .checkbox-div label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div input[type=checkbox]:checked + label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/03/date.png) no-repeat left 50% !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 22px;\r\n	height: 24px;\r\n	position: relative;\r\n	left: -22px;\r\n	vertical-align: top;\r\n}\r\n.wdform-calendar-button:focus {\r\n outline:none; \r\n}\r\n.radio-div input[type=radio] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n.radio-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #A7A7A7;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n	top: 2px;\r\n}\r\n.radio-div label {\r\n	cursor: pointer;\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)\";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: \"\";\r\n	position: absolute;\r\n	width: 9px;\r\n	height: 8px;\r\n	background: #A7A7A7;\r\n	border-radius: 0px;\r\n	top: 2px;\r\n	left: 2px;\r\n}\r\n.radio-div label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .radio-div label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div input[type=radio]:checked + label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.if-ie-div-label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #000;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	margin-top: 15px;\r\n	background-color: #DFDFDF;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: \"Lucida Grande\", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #A8A8A8;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #000;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: red;\r\n	vertical-align: top;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n	border-radius: 0px;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\n	color: #fff;\r\n	background-color: #FF9A8E;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 20px;\r\n	text-align: center;\r\n	vertical-align: bottom;\r\n	padding-top: 5px;\r\n	padding: 5px 25px 0px 25px;\r\n	font-size: 12px;\r\n}\r\n.page_active {\r\n	color: #fff;\r\n	background-color: #FA8072;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	vertical-align: bottom;\r\n	height: 33px;\r\n	text-align: center;\r\n	font-size: 21px;\r\n	padding: 5px 20px 0px 20px;\r\n	margin-bottom: -13px;\r\n}\r\n.page_percentage_active {\r\n	padding: 0px;\r\n	margin: 0px;\r\n	border-spacing: 0px;\r\n	height: 18px;\r\n	line-height: 20px;\r\n	font-size: 15px;\r\n	float: left;\r\n	text-align: right !important;\r\n	z-index: 1;\r\n	position: relative;\r\n	background: #FF8F83; /* Old browsers */\r\n	background: -moz-linear-gradient(left, #F7B4AC 0%, #F89F95 39%, #FF8F83 100%); /* FF3.6+ */\r\n	background: -webkit-gradient(linear, left top, right top, color-stop(0%, #F7B4AC), color-stop(39%, #F89F95), color-stop(100%, #FF8F83)); /* Chrome,Safari4+ */\r\n	background: -webkit-linear-gradient(left, #F7B4AC 0%, #F89F95 39%, #FF8F83 100%); /* Chrome10+,Safari5.1+ */\r\n	background: -o-linear-gradient(left, #F7B4AC 0%, #F89F95 39%, #FF8F83 100%); /* Opera 11.10+ */\r\n	background: -ms-linear-gradient(left, #F7B4AC 0%, #F89F95 39%, #FF8F83 100%); /* IE10+ */\r\n	background: linear-gradient(to right, #F7B4AC 0%, #F89F95 39%, #FF8F83 100%); /* W3C */\r\n	vertical-align: middle;\r\n}\r\n.page_percentage_deactive {\r\n	height: 18px;\r\n	line-height: 20px;\r\n	background-color: #DFDFDF;\r\n	text-align: left !important;\r\n	margin-bottom: 1px;\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: center!important;\r\n	margin-bottom: 0px;\r\n}\r\n.wdform_percentage_text {\r\n	margin: 3px -34px 3px 9px;\r\n	color: #FFFFFF;\r\n	font-weight: normal;\r\n	font-size: 12px;\r\nline-height: 18px;\r\n}\r\n.wdform_percentage_title {\r\n	color: #000000;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 20px;\r\n	height: 20px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_percentage_arrow {\r\n	display: inline-block;\r\n	width: 34px;\r\n	height: 18px;\r\n	background: url([SITE_ROOT]/images/03/04/percentage_arrow.png);\r\n	position: relative;\r\n	left: -1px;\r\ntop:0px;\r\n	z-index: 0;\r\n	vertical-align: middle;\r\n}\r\n.wdform_button button {\r\n	background: #4D792C;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 0px;\r\n	min-width: 80px;\r\n	min-height: 31px;\r\n	color: #fff;\r\n	border: 2px solid #68943B;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}", "0");
INSERT INTO `wp_formmaker_themes` VALUES("13", "Theme 04 dark orange", ".wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #F0EFEF;\r\nborder: 1px solid #F6CE9D;\r\nmargin-bottom: 10px;\r\ncolor: #F6CE9D;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\na.ui-slider-handle {\r\n	width: 15px;\r\n	height: 15px;\r\n	top: -5px;\r\n}\r\n.ui-slider {\r\n	height: 6px;\r\n	background: #fff !important;\r\n	margin: 7px 0px;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell input[type=\"text\"] {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n}\r\n@font-face {\r\n	font-family: ArTarumianHandes;\r\n	src: url([SITE_ROOT]/css/HANDES.ttf);\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #EDE5DA;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 3px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\na.ui-spinner-button:hover{\r\n	background: #E2B983 !important;\r\n	color: #fff;\r\n}\r\na.ui-spinner-button:active{\r\n	background: #E2B983 !important;\r\n	color: #fff;\r\n}\r\na.ui-spinner-button:focus{\r\n	background: #E2B983 !important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:hover{\r\n	background: #E2B983 !important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:active{\r\n	background: #E2B983 !important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:focus{\r\n	background: #E2B983 !important;\r\n	color: #fff;\r\n}\r\nui-state-hover {\r\n	background: #E2B983 !important;\r\n	color: #fff;\r\n}\r\n.ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-content .ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-header .ui-state-default {\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-slider-range {\r\n	background: #E5E5E5 !important;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #DCDCDC;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\n	border: 0px !important;\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n.sel-wrap select {\r\n	position: absolute;\r\n z-index:-1;\r\n width: 0px !important;\r\n}\r\n.sel-imul {\r\n	display: inline-block;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	padding: 2px 0px 2px 2px;\r\n	font-size: 13px;\r\n	height: 20px;\r\n	line-height: 22px;\r\n	overflow: hidden;\r\n	background: #fff;\r\n	border: 1px solid #ccc;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 20px;\r\n	width: 22px;\r\n	background: url([SITE_ROOT]/images/04/01.png) 50% 50% no-repeat;\r\n	position: absolute;\r\n	top: 0px;\r\n	right: 0px;\r\n	padding: 2px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text] {\r\n	margin: 0px;\r\n}\r\ninput[type=password] {\r\n	margin: 0px;\r\n}\r\ninput[type=url] {\r\n	margin: 0px;\r\n}\r\ninput[type=email] {\r\n	margin: 0px;\r\n}\r\ninput.text {\r\n	margin: 0px;\r\n}\r\ninput.title {\r\n	margin: 0px;\r\n}\r\ntextarea {\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	background: #fff;\r\n	position: absolute;\r\n	border-radius: 4px;\r\n	height: 24px;\r\n	border: 1px solid #ccc;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	direction: rtl;\r\n	padding-top: 3px;\r\n	margin-top: 2px;\r\n}\r\n.file-picker {\r\n	width: 45px;\r\n	height: 44px;\r\n	background: url([SITE_ROOT]/images/04/upload.png);\r\n	display: inline-block;\r\n}\r\ndiv.wdform-page-button {\r\n	color: #424242;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 39px;\r\n	line-height: 35px;\r\n	padding: 0px 20px;\r\n	vertical-align: middle;\r\n	font-weight: 400;\r\n	font-size: 20px;\r\n	border: 1px solid #959595;\r\n	border-radius: 5px;\r\n}\r\ndiv.wdform-page-button:hover {\r\n	color: #69512F;\r\n	border: 1px solid #D89E5F;\r\n	background: #C8A470; /* Old browsers */\r\n	background: -moz-linear-gradient(bottom, #DFC091 0%, #CFAE7B 49%, #C19C67 84%, #AA824E 95%); /* FF3.6+ */\r\n	background: -webkit-linear-gradient(bottom, #DFC091 0%, #CFAE7B 49%, #C19C67 84%, #AA824E 95%); /* Chrome10+,Safari5.1+ */\r\n	background: -o-linear-gradient(bottom, #DFC091 0%, #CFAE7B 49%, #C19C67 84%, #AA824E 95%); /* Opera 11.10+ */\r\n	background: -ms-linear-gradient(bottom, #DFC091 0%, #CFAE7B 49%, #C19C67 84%, #AA824E 95%); /* IE10+ */\r\n	background: linear-gradient(to bottom, #DFC091 0%, #CFAE7B 49%, #C19C67 84%, #AA824E 95%); /* W3C */\r\n	box-shadow: 0px 0px 5px 0px rgb(221, 221, 221) inset;\r\n}\r\n.button-submit {\r\n	color: #424242 !important;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 39px;\r\n	line-height: 32px;\r\n	padding: 0px 20px 5px;\r\n	vertical-align: middle;\r\n	font-weight: 400 !important;\r\n	font-size: 20px;\r\n	border: 1px solid #959595;\r\n	border-radius: 5px;\r\n	font-family: Segoe UI;\r\nbackground:transparent;\r\n}\r\n.button-submit:hover {\r\n	color: #69512F;\r\n	border: 1px solid #D89E5F;\r\n	background: #C8A470; /* Old browsers */\r\n	background: -moz-linear-gradient(bottom, #DFC091 0%, #CFAE7B 49%, #C19C67 84%, #AA824E 95%); /* FF3.6+ */\r\n	background: -webkit-linear-gradient(bottom, #DFC091 0%, #CFAE7B 49%, #C19C67 84%, #AA824E 95%); /* Chrome10+,Safari5.1+ */\r\n	background: -o-linear-gradient(bottom, #DFC091 0%, #CFAE7B 49%, #C19C67 84%, #AA824E 95%); /* Opera 11.10+ */\r\n	background: -ms-linear-gradient(bottom, #DFC091 0%, #CFAE7B 49%, #C19C67 84%, #AA824E 95%); /* IE10+ */\r\n	background: linear-gradient(to bottom, #DFC091 0%, #CFAE7B 49%, #C19C67 84%, #AA824E 95%); /* W3C */\r\n	box-shadow: 0px 0px 5px 0px rgb(221, 221, 221) inset;\r\n}\r\n.button-reset {\r\n	background: transparent;\r\n	cursor: pointer;\r\n	font-size: 18px;\r\n	min-width: 80px;\r\n	min-height: 34px;\r\n	color: #787878;\r\n	border: 0px;\r\n	margin: 5px;\r\n	font-family: Segoe UI;\r\n	text-decoration: underline;\r\n}\r\n.wdform_page {\r\n	background: #F6CE9D;\r\n	padding: 15px 15px 15px 50px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_column {\r\n	border-right: none !important;\r\n	padding-right: 30px !important;\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n}\r\n.wdform_column>div {\r\n	border-bottom: 0px solid #E7E7E7;\r\n}\r\n.wdform_column>.wdform_row:last-child {\r\n	border-bottom: 0px solid #E7E7E7;\r\n}\r\n.wdform-field-section-break {\r\n	text-align: center;\r\n}\r\n.wdform_section_break2 {\r\n	margin: 16px 10px 16px 0px;\r\n	display: inline-block;\r\n	background: url([SITE_ROOT]/images/04/01/bg.png) no-repeat;\r\n	text-align: left;\r\n	border-radius: 0px;\r\n	width: 300px;\r\n	padding: 13px;\r\n	text-align: center;\r\nfont-size: 18px;\r\n}\r\n.wdform_section_break\r\n{\r\nmargin: 16px 10px 16px 0px;\r\ntext-align: left;\r\nfont-size: 18px;\r\n}\r\n.wdform_section {\r\n	display: table-row\r\n}\r\nselect {\r\n	border-radius: 0px;\r\n	height: 24px;\r\n	overflow: hidden;\r\n	padding: 0px;\r\nborder: 1px solid #ccc;\r\n	outline: none;\r\n font-size: 14px;\r\n}\r\ninput[type=\"text\"]{\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	border: 1px solid #ccc;\r\n	padding:0 3px !important;\r\n font-size: 14px;\r\n}\r\ninput[type=\"password\"]{\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	border: 1px solid #ccc;\r\n	padding:0 3px !important;\r\n font-size: 14px;\r\n}\r\ntextarea {\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	border: 1px solid #ccc;\r\n	padding:0 3px !important;\r\n font-size: 14px;\r\n}\r\ninput[type=\"text\"]:focus {\r\n	border-color: #E2B983;\r\n	outline: none;\r\n}\r\ninput[type=\"password\"]:focus {\r\n	border-color: #E2B983;\r\n	outline: none;\r\n}\r\ntextarea:focus {\r\n	border-color: #E2B983;\r\n	outline: none;\r\n}\r\n\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 30px;\r\n	vertical-align: middle;\r\n}\r\n.checkbox-div input[type=checkbox] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.checkbox-div {\r\n	width: 14px;\r\n	height: 14px;\r\n	background: #fff;\r\n	border: 1px solid #ccc;\r\n	border-radius: 7px;\r\n	position: relative;\r\n	display: inline-block;\r\n	box-shadow: 0px 3px 8px 1px rgb(213, 213, 213) inset;\r\n}\r\n.checkbox-div label {\r\n	cursor: pointer;\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)\";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: \"\";\r\n	position: absolute;\r\n	width: 16px;\r\n	height: 13px;\r\n	background: url([SITE_ROOT]/images/02/checkbox.png);\r\n	border-radius: 0px;\r\n	top: -3px;\r\n	left: 2px;\r\n}\r\n.checkbox-div label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .checkbox-div label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div input[type=checkbox]:checked + label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/04/date.png) no-repeat left 50% !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 20px;\r\n	height: 24px;\r\n	position: relative;\r\n	left: -22px;\r\n	vertical-align: top;\r\n	outline: none;\r\n}\r\n.radio-div input[type=radio] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n.radio-div {\r\n	width: 14px;\r\n	height: 14px;\r\n	background: #fff;\r\n	border: 1px solid #ccc;\r\n	border-radius: 7px;\r\n	position: relative;\r\n	display: inline-block;\r\n	box-shadow: 0px 3px 8px 1px rgb(213, 213, 213) inset;\r\n}\r\n.radio-div label {\r\n	cursor: pointer;\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)\";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: \"\";\r\n	position: absolute;\r\n	width: 10px;\r\n	height: 10px;\r\n	background: #DAA157;\r\n	background: -moz-linear-gradient(bottom, #F8DCB2 0%, #E7C187 49%, #E6BE86 84%, #DAA157 95%);\r\n	background: -webkit-linear-gradient(bottom, #F8DCB2 0%, #E7C187 49%, #E6BE86 84%, #DAA157 95%);\r\n	background: -o-linear-gradient(bottom, #F8DCB2 0%, #E7C187 49%, #E6BE86 84%, #DAA157 95%);\r\n	background: -ms-linear-gradient(bottom, #F8DCB2 0%, #E7C187 49%, #E6BE86 84%, #DAA157 95%);\r\n	background: linear-gradient(to bottom, #F8DCB2 0%, #E7C187 49%, #E6BE86 84%, #DAA157 95%);\r\n	box-shadow: 0px 0px 5px 0px rgb(214, 214, 214) inset;\r\n	border-radius: 7px;\r\n	top: 1px;\r\n	left: 1px;\r\n	border: 1px solid #C0A77E;\r\n}\r\n.radio-div label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.5;\r\n}\r\n.radio-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.5;\r\n}\r\n.wdform-ch-rad-label:hover + .radio-div label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.5;\r\n}\r\n.radio-div input[type=radio]:checked + label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.if-ie-div-label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #000;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	padding-top: 5px;\r\n	margin-top: 15px;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: \"Lucida Grande\", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #000;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #000;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: red;\r\n	vertical-align: top;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\n	font-size: 12px;\r\n color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 20px;\r\n	text-align: center;\r\n	vertical-align: bottom;\r\n	padding: 5px 20px 0px 20px;\r\n	font-weight: bold;\r\n	background-color: #E2B983;\r\n	margin-left: 1px;\r\n}\r\n.page_active {\r\n	color: #fff;\r\n	cursor: pointer;\r\n	background-color: #AA824E;\r\n	display: inline-block;\r\n	vertical-align: bottom;\r\n	height: 25px;\r\n	text-align: center;\r\n	font-size: 16px;\r\n	padding: 5px 20px 0px 20px;\r\n	margin-left: 1px;\r\n}\r\n.page_percentage_active {\r\n	padding: 0px;\r\n	margin: 0px;\r\n	border-spacing: 0px;\r\n	height: 23px;\r\n	line-height: 23px;\r\n	font-size: 15px;\r\n	float: left;\r\n	text-align: right !important;\r\n	z-index: 1;\r\n	position: relative;\r\n	background: #AA824E;\r\n	vertical-align: middle;\r\n	font-family: ArTarumianHandes;\r\n}\r\n.page_percentage_deactive {\r\n	height: 23px;\r\n	line-height: 23px;\r\n	background-color: #E2B983;\r\n	text-align: left !important;\r\n	margin-bottom: 1px;\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: right !important;\r\n	margin-bottom: 0px;\r\n}\r\n.wdform_percentage_text {\r\n	margin: 3px 5px 3px 9px;\r\n	color: #FFFFFF;\r\n	font-weight: bold;\r\n}\r\n.wdform_percentage_title {\r\n	color: #000000;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 20px;\r\n	height: 20px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_percentage_arrow {\r\n	display: inline-block;\r\n	width: 20px;\r\n	height: 23px;\r\n	background-color: #AA824E;\r\n	position: relative;\r\n	left: -14px;\r\n	z-index: 0;\r\n	vertical-align: middle;\r\n	-moz-transform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(-25deg) skewY(0deg);\r\n	-webkit-transform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(-25deg) skewY(0deg);\r\n	-o-transform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(-25deg) skewY(0deg);\r\n	-ms-transform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(-25deg) skewY(0deg);\r\n	transform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(-25deg) skewY(0deg);\r\n}\r\n.wdform_button button {\r\n	background: #0E4D92;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 4px;\r\n	min-width: 80px;\r\n	min-height: 27px;\r\n	color: #fff;\r\n	border: 2px solid #0E3F77;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_button button:active {\r\n	border: 2px solid #0B2D52;\r\n	background: #0E3F77;\r\n}", "0");
INSERT INTO `wp_formmaker_themes` VALUES("14", "Theme 04 light blue", ".wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #F0EFEF;\r\nborder: 1px solid #CEE4E4;\r\nmargin-bottom: 10px;\r\ncolor: #CEE4E4;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\na.ui-slider-handle {\r\n	width: 15px;\r\n	height: 15px;\r\n	top: -5px;\r\n}\r\n.ui-slider {\r\n	height: 6px;\r\n	background: #fff !important;\r\n	margin: 7px 0px;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell input[type=\"text\"] {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n}\r\n@font-face {\r\n	font-family: ArTarumianHandes;\r\n	src: url([SITE_ROOT]/css/HANDES.ttf);\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #EDE5DA;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 3px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\na.ui-spinner-button:hover{\r\n	background: #678B94 !important;\r\n	color: #fff;\r\n}\r\na.ui-spinner-button:active{\r\n	background: #678B94 !important;\r\n	color: #fff;\r\n}\r\na.ui-spinner-button:focus{\r\n	background: #678B94 !important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:hover{\r\n	background: #678B94 !important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:active{\r\n	background: #678B94 !important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:focus{\r\n	background: #678B94 !important;\r\n	color: #fff;\r\n}\r\nui-state-hover {\r\n	background: #678B94 !important;\r\n	color: #fff;\r\n}\r\n.ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-content .ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-header .ui-state-default {\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-slider-range {\r\n	background: #E5E5E5 !important;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #DCDCDC;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\n	border: 0px !important;\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n.sel-wrap select {\r\n	position: absolute;\r\n z-index:-1;\r\n width: 0px !important;\r\n}\r\n.sel-imul {\r\n	display: inline-block;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	padding: 2px 0px 2px 2px;\r\n	font-size: 13px;\r\n	height: 20px;\r\n	line-height: 22px;\r\n	overflow: hidden;\r\n	background: #fff;\r\n	border: 1px solid #ccc;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 20px;\r\n	width: 22px;\r\n	background: url([SITE_ROOT]/images/04/01.png) 50% 50% no-repeat;\r\n	position: absolute;\r\n	top: 0px;\r\n	right: 0px;\r\n	padding: 2px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text] {\r\n	margin: 0px;\r\n}\r\ninput[type=password] {\r\n	margin: 0px;\r\n}\r\ninput[type=url] {\r\n	margin: 0px;\r\n}\r\ninput[type=email] {\r\n	margin: 0px;\r\n}\r\ninput.text {\r\n	margin: 0px;\r\n}\r\ninput.title {\r\n	margin: 0px;\r\n}\r\ntextarea {\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	background: #fff;\r\n	position: absolute;\r\n	border-radius: 4px;\r\n	height: 24px;\r\n	border: 1px solid #ccc;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	direction: rtl;\r\n	padding-top: 3px;\r\n	margin-top: 2px;\r\n}\r\n.file-picker {\r\n	width: 45px;\r\n	height: 44px;\r\n	background: url([SITE_ROOT]/images/04/upload.png);\r\n	display: inline-block;\r\n}\r\ndiv.wdform-page-button {\r\n	color: #424242;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 39px;\r\n	line-height: 35px;\r\n	padding: 0px 20px;\r\n	vertical-align: middle;\r\n	font-weight: 400;\r\n	font-size: 20px;\r\n	border: 1px solid #959595;\r\n	border-radius: 5px;\r\n}\r\ndiv.wdform-page-button:hover {\r\ncolor: #fff;\r\nborder: 1px solid #88A1A6;\r\nbackground: #86A0A7 ;\r\nbackground: -moz-linear-gradient(bottom, #A0C5CF 0%, #95B3BB 49%, #869AA0 84%, #86A0A7 95%);\r\nbackground: -webkit-linear-gradient(bottom, #A0C5CF 0%, #95B3BB 49%, #869AA0 84%, #86A0A7 95%);\r\nbackground: -o-linear-gradient(bottom, #A0C5CF 0%, #95B3BB 49%, #869AA0 84%, #86A0A7 95%);\r\nbackground: -ms-linear-gradient(bottom, #A0C5CF 0%, #95B3BB 49%, #869AA0 84%, #86A0A7 95%);\r\nbackground: linear-gradient(to bottom, #A0C5CF 0%, #95B3BB 49%, #869AA0 84%, #86A0A7 95%);\r\nbox-shadow: 0px 0px 5px 0px rgb(221, 221, 221) inset;\r\n}\r\n.button-submit {\r\n	color: #767676 !important;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 39px;\r\n	line-height: 32px;\r\n	padding: 0px 20px 5px;\r\n	vertical-align: middle;\r\n	font-weight: 400 !important;\r\n	font-size: 20px;\r\n	border: 1px solid #959595;\r\n	border-radius: 5px;\r\n	font-family: Segoe UI;\r\nbackground:transparent;\r\n}\r\n.button-submit:hover {\r\ncolor: #fff !important;\r\nborder: 1px solid #88A1A6;\r\nbackground: #86A0A7 ;\r\nbackground: -moz-linear-gradient(bottom, #A0C5CF 0%, #95B3BB 49%, #869AA0 84%, #86A0A7 95%);\r\nbackground: -webkit-linear-gradient(bottom, #A0C5CF 0%, #95B3BB 49%, #869AA0 84%, #86A0A7 95%);\r\nbackground: -o-linear-gradient(bottom, #A0C5CF 0%, #95B3BB 49%, #869AA0 84%, #86A0A7 95%);\r\nbackground: -ms-linear-gradient(bottom, #A0C5CF 0%, #95B3BB 49%, #869AA0 84%, #86A0A7 95%);\r\nbackground: linear-gradient(to bottom, #A0C5CF 0%, #95B3BB 49%, #869AA0 84%, #86A0A7 95%);\r\nbox-shadow: 0px 0px 5px 0px rgb(221, 221, 221) inset;\r\n}\r\n.button-reset {\r\n	background: transparent;\r\n	cursor: pointer;\r\n	font-size: 18px;\r\n	min-width: 80px;\r\n	min-height: 34px;\r\n	color: #787878;\r\n	border: 0px;\r\n	margin: 5px;\r\n	font-family: Segoe UI;\r\n	text-decoration: underline;\r\n}\r\n.wdform_page {\r\n	background: #CEE4E4;\r\n	padding: 15px 15px 15px 50px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_column {\r\n	border-right: none !important;\r\n	padding-right: 30px !important;\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n}\r\n.wdform_column>div {\r\n	border-bottom: 0px solid #E7E7E7;\r\n}\r\n.wdform_column>.wdform_row:last-child {\r\n	border-bottom: 0px solid #E7E7E7;\r\n}\r\n.wdform-field-section-break {\r\n	text-align: center;\r\n}\r\n.wdform_section_break2 {\r\n	margin: 16px 10px 16px 0px;\r\n	display: inline-block;\r\n	background: url([SITE_ROOT]/images/04/02/bg.png) no-repeat;\r\n	text-align: left;\r\n	border-radius: 0px;\r\n	width: 300px;\r\npadding: 5px;\r\n	text-align: center;\r\nfont-size: 16px;\r\n}\r\n.wdform_section_break\r\n{\r\nmargin: 16px 10px 16px 0px;\r\ntext-align: left;\r\nfont-size: 18px;\r\n}\r\n.wdform_section {\r\n	display: table-row\r\n}\r\nselect {\r\n	border-radius: 0px;\r\n	height: 24px;\r\n	overflow: hidden;\r\n	padding: 0px;\r\nborder: 1px solid #ccc;\r\n	outline: none;\r\n font-size: 14px;\r\n}\r\ninput[type=\"text\"]{\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	border: 1px solid #ccc;\r\n	padding:0 3px !important;\r\n font-size: 14px;\r\n}\r\ninput[type=\"password\"]{\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	border: 1px solid #ccc;\r\n	padding:0 3px !important;\r\n font-size: 14px;\r\n}\r\ntextarea {\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	border: 1px solid #ccc;\r\n	padding:0 3px !important;\r\n font-size: 14px;\r\n}\r\ninput[type=\"text\"]:focus {\r\n	border-color: #678B94;\r\n	outline: none;\r\n}\r\ninput[type=\"password\"]:focus {\r\n	border-color: #678B94;\r\n	outline: none;\r\n}\r\ntextarea:focus {\r\n	border-color: #678B94;\r\n	outline: none;\r\n}\r\n\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 30px;\r\n	vertical-align: middle;\r\n}\r\n.checkbox-div input[type=checkbox] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.checkbox-div {\r\n	width: 14px;\r\n	height: 14px;\r\n	background: #fff;\r\n	border: 1px solid #ccc;\r\n	border-radius: 7px;\r\n	position: relative;\r\n	display: inline-block;\r\n	box-shadow: 0px 3px 8px 1px rgb(213, 213, 213) inset;\r\n}\r\n.checkbox-div label {\r\n	cursor: pointer;\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)\";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: \"\";\r\n	position: absolute;\r\n	width: 16px;\r\n	height: 13px;\r\n	background: url([SITE_ROOT]/images/02/checkbox.png);\r\n	border-radius: 0px;\r\n	top: -3px;\r\n	left: 2px;\r\n}\r\n.checkbox-div label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .checkbox-div label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div input[type=checkbox]:checked + label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/04/date.png) no-repeat left 50% !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 20px;\r\n	height: 24px;\r\n	position: relative;\r\n	left: -22px;\r\n	vertical-align: top;\r\n	outline: none;\r\n}\r\n.radio-div input[type=radio] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n.radio-div {\r\n	width: 14px;\r\n	height: 14px;\r\n	background: #fff;\r\n	border: 1px solid #ccc;\r\n	border-radius: 7px;\r\n	position: relative;\r\n	display: inline-block;\r\n	box-shadow: 0px 3px 8px 1px rgb(213, 213, 213) inset;\r\n}\r\n.radio-div label {\r\ncursor: pointer;\r\n-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)\";\r\nfilter: alpha(opacity=0);\r\nopacity: 0;\r\ncontent: \"\";\r\nposition: absolute;\r\nwidth: 10px;\r\nheight: 10px;\r\nbackground: #63929E ;\r\nbackground: -moz-linear-gradient(bottom, #84B8C5 0%, #75A1AC 49%, #63929E 84%, #377483 95%);\r\nbackground: -webkit-linear-gradient(bottom, #84B8C5 0%, #75A1AC 49%, #63929E 84%, #377483 95%);\r\nbackground: -o-linear-gradient(bottom, #84B8C5 0%, #75A1AC 49%, #63929E 84%, #377483 95%);\r\nbackground: -ms-linear-gradient(bottom, #84B8C5 0%, #75A1AC 49%, #63929E 84%, #377483 95%);\r\nbackground: linear-gradient(to bottom, #84B8C5 0%, #75A1AC 49%, #63929E 84%, #377483 95%);\r\nbox-shadow: 0px 0px 5px 0px rgb(214, 214, 214) inset;\r\nborder-radius: 7px;\r\ntop: 1px;\r\nleft: 1px;\r\nborder: 1px solid #678B94;\r\n}\r\n.radio-div label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.5;\r\n}\r\n.radio-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.5;\r\n}\r\n.wdform-ch-rad-label:hover + .radio-div label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.5;\r\n}\r\n.radio-div input[type=radio]:checked + label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.if-ie-div-label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #000;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	padding-top: 5px;\r\n	margin-top: 15px;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: \"Lucida Grande\", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #000;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #000;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: red;\r\n	vertical-align: top;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\n	font-size: 12px;\r\n color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 20px;\r\n	text-align: center;\r\n	vertical-align: bottom;\r\n	padding: 5px 20px 0px 20px;\r\n	font-weight: bold;\r\n	background-color: #88B4BD;\r\n	margin-left: 1px;\r\n}\r\n.page_active {\r\n	color: #fff;\r\n	cursor: pointer;\r\n	background-color: #678B94;\r\n	display: inline-block;\r\n	vertical-align: bottom;\r\n	height: 25px;\r\n	text-align: center;\r\n	font-size: 16px;\r\n	padding: 5px 20px 0px 20px;\r\n	margin-left: 1px;\r\n}\r\n.page_percentage_active {\r\n	padding: 0px;\r\n	margin: 0px;\r\n	border-spacing: 0px;\r\n	height: 23px;\r\n	line-height: 23px;\r\n	font-size: 15px;\r\n	float: left;\r\n	text-align: right !important;\r\n	z-index: 1;\r\n	position: relative;\r\n	background: #678B94;\r\n	vertical-align: middle;\r\n	font-family: ArTarumianHandes;\r\n}\r\n.page_percentage_deactive {\r\n	height: 23px;\r\n	line-height: 23px;\r\n	background-color: #88B4BD;\r\n	text-align: left !important;\r\n	margin-bottom: 1px;\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: right !important;\r\n	margin-bottom: 0px;\r\n}\r\n.wdform_percentage_text {\r\n	margin: 3px 5px 3px 9px;\r\n	color: #FFFFFF;\r\n	font-weight: bold;\r\n}\r\n.wdform_percentage_title {\r\n	color: #000000;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 20px;\r\n	height: 20px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_percentage_arrow {\r\n	display: inline-block;\r\n	width: 20px;\r\n	height: 23px;\r\n	background-color: #678B94;\r\n	position: relative;\r\n	left: -14px;\r\n	z-index: 0;\r\n	vertical-align: middle;\r\n	-moz-transform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(-25deg) skewY(0deg);\r\n	-webkit-transform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(-25deg) skewY(0deg);\r\n	-o-transform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(-25deg) skewY(0deg);\r\n	-ms-transform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(-25deg) skewY(0deg);\r\n	transform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(-25deg) skewY(0deg);\r\n}\r\n.wdform_button button {\r\n	background: #0E4D92;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 4px;\r\n	min-width: 80px;\r\n	min-height: 27px;\r\n	color: #fff;\r\n	border: 2px solid #0E3F77;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_button button:active {\r\n	border: 2px solid #0B2D52;\r\n	background: #0E3F77;\r\n}", "0");
INSERT INTO `wp_formmaker_themes` VALUES("15", "Theme 04 red", ".wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #F0EFEF;\r\nborder: 1px solid #CEE4E4;\r\nmargin-bottom: 10px;\r\ncolor: #CEE4E4;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\na.ui-slider-handle {\r\n	width: 15px;\r\n	height: 15px;\r\n	top: -5px;\r\n}\r\n.ui-slider {\r\n	height: 6px;\r\n	background: #fff !important;\r\n	margin: 7px 0px;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell input[type=\"text\"] {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n}\r\n@font-face {\r\n	font-family: ArTarumianHandes;\r\n	src: url([SITE_ROOT]/css/HANDES.ttf);\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #EDE5DA;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 3px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\na.ui-spinner-button:hover{\r\n	background: #8A6B63 !important;\r\n	color: #fff;\r\n}\r\na.ui-spinner-button:active{\r\n	background: #8A6B63 !important;\r\n	color: #fff;\r\n}\r\na.ui-spinner-button:focus{\r\n	background: #8A6B63 !important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:hover{\r\n	background: #8A6B63 !important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:active{\r\n	background: #8A6B63 !important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:focus{\r\n	background: #8A6B63 !important;\r\n	color: #fff;\r\n}\r\nui-state-hover {\r\n	background: #8A6B63 !important;\r\n	color: #fff;\r\n}\r\n.ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-content .ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-header .ui-state-default {\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-slider-range {\r\n	background: #E5E5E5 !important;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #DCDCDC;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\n	border: 0px !important;\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n.sel-wrap select {\r\n	position: absolute;\r\n z-index:-1;\r\n width: 0px !important;\r\n}\r\n.sel-imul {\r\n	display: inline-block;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	padding: 2px 0px 2px 2px;\r\n	font-size: 13px;\r\n	height: 20px;\r\n	line-height: 22px;\r\n	overflow: hidden;\r\n	background: #fff;\r\n	border: 1px solid #ccc;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 20px;\r\n	width: 22px;\r\n	background: url([SITE_ROOT]/images/04/01.png) 50% 50% no-repeat;\r\n	position: absolute;\r\n	top: 0px;\r\n	right: 0px;\r\n	padding: 2px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text] {\r\n	margin: 0px;\r\n}\r\ninput[type=password] {\r\n	margin: 0px;\r\n}\r\ninput[type=url] {\r\n	margin: 0px;\r\n}\r\ninput[type=email] {\r\n	margin: 0px;\r\n}\r\ninput.text {\r\n	margin: 0px;\r\n}\r\ninput.title {\r\n	margin: 0px;\r\n}\r\ntextarea {\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	background: #fff;\r\n	position: absolute;\r\n	border-radius: 4px;\r\n	height: 24px;\r\n	border: 1px solid #ccc;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	direction: rtl;\r\n	padding-top: 3px;\r\n	margin-top: 2px;\r\n}\r\n.file-picker {\r\n	width: 45px;\r\n	height: 44px;\r\n	background: url([SITE_ROOT]/images/04/upload.png);\r\n	display: inline-block;\r\n}\r\ndiv.wdform-page-button {\r\n	color: #424242;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 39px;\r\n	line-height: 35px;\r\n	padding: 0px 20px;\r\n	vertical-align: middle;\r\n	font-weight: 400;\r\n	font-size: 20px;\r\n	border: 1px solid #959595;\r\n	border-radius: 5px;\r\n}\r\ndiv.wdform-page-button:hover {\r\ncolor: #fff;\r\nborder: 1px solid #C09F97;\r\nbackground: #86A0A7;\r\nbackground: -moz-linear-gradient(bottom, #E0B8AF 0%, #CAA298 49%, #BD9E96 84%, #B6958E 95%);\r\nbackground: -webkit-linear-gradient(bottom, #E0B8AF 0%, #CAA298 49%, #BD9E96 84%, #B6958E 95%);\r\nbackground: -o-linear-gradient(bottom, #E0B8AF 0%, #CAA298 49%, #BD9E96 84%, #B6958E 95%);\r\nbackground: -ms-linear-gradient(bottom, #E0B8AF 0%, #CAA298 49%, #BD9E96 84%, #B6958E 95%);\r\nbackground: linear-gradient(to bottom, #E0B8AF 0%, #CAA298 49%, #BD9E96 84%, #B6958E 95%);\r\nbox-shadow: 0px 0px 5px 0px rgb(221, 221, 221) inset;\r\n}\r\n.button-submit {\r\n	color: #767676 !important;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 39px;\r\n	line-height: 32px;\r\n	padding: 0px 20px 5px;\r\n	vertical-align: middle;\r\n	font-weight: 400 !important;\r\n	font-size: 20px;\r\n	border: 1px solid #959595;\r\n	border-radius: 5px;\r\n	font-family: Segoe UI;\r\nbackground:transparent;\r\n}\r\n.button-submit:hover {\r\ncolor: #fff !important;\r\nborder: 1px solid #C09F97;\r\nbackground: #86A0A7;\r\nbackground: -moz-linear-gradient(bottom, #E0B8AF 0%, #CAA298 49%, #BD9E96 84%, #B6958E 95%);\r\nbackground: -webkit-linear-gradient(bottom, #E0B8AF 0%, #CAA298 49%, #BD9E96 84%, #B6958E 95%);\r\nbackground: -o-linear-gradient(bottom, #E0B8AF 0%, #CAA298 49%, #BD9E96 84%, #B6958E 95%);\r\nbackground: -ms-linear-gradient(bottom, #E0B8AF 0%, #CAA298 49%, #BD9E96 84%, #B6958E 95%);\r\nbackground: linear-gradient(to bottom, #E0B8AF 0%, #CAA298 49%, #BD9E96 84%, #B6958E 95%);\r\nbox-shadow: 0px 0px 5px 0px rgb(221, 221, 221) inset;\r\n}\r\n.button-reset {\r\n	background: transparent;\r\n	cursor: pointer;\r\n	font-size: 18px;\r\n	min-width: 80px;\r\n	min-height: 34px;\r\n	color: #787878;\r\n	border: 0px;\r\n	margin: 5px;\r\n	font-family: Segoe UI;\r\n	text-decoration: underline;\r\n}\r\n.wdform_page {\r\n	background: #E0D0CD;\r\n	padding: 15px 15px 15px 50px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_column {\r\n	border-right: none !important;\r\n	padding-right: 30px !important;\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n}\r\n.wdform_column>div {\r\n	border-bottom: 0px solid #E7E7E7;\r\n}\r\n.wdform_column>.wdform_row:last-child {\r\n	border-bottom: 0px solid #E7E7E7;\r\n}\r\n.wdform-field-section-break {\r\n	text-align: center;\r\n}\r\n.wdform_section_break2 {\r\nmargin: 16px 10px 16px 0px;\r\ndisplay: inline-block;\r\nbackground: url([SITE_ROOT]/images/04/03/bg.png) no-repeat;\r\ntext-align: left;\r\nborder-radius: 0px;\r\nwidth: 300px;\r\npadding: 5px 10px;\r\ntext-align: center;\r\nfont-size: 18px;\r\n}\r\n.wdform_section_break\r\n{\r\nmargin: 16px 10px 16px 0px;\r\ntext-align: left;\r\nfont-size: 18px;\r\n}\r\n.wdform_section {\r\n	display: table-row\r\n}\r\nselect {\r\n	border-radius: 0px;\r\n	height: 24px;\r\n	overflow: hidden;\r\n	padding: 0px;\r\nborder: 1px solid #ccc;\r\n	outline: none;\r\n font-size: 14px;\r\n}\r\ninput[type=\"text\"]{\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	border: 1px solid #ccc;\r\n	padding:0 3px !important;\r\n font-size: 14px;\r\n}\r\ninput[type=\"password\"]{\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	border: 1px solid #ccc;\r\n	padding:0 3px !important;\r\n font-size: 14px;\r\n}\r\ntextarea {\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	border: 1px solid #ccc;\r\n	padding:0 3px !important;\r\n font-size: 14px;\r\n}\r\ninput[type=\"text\"]:focus {\r\n	border-color: #8A6B63;\r\n	outline: none;\r\n}\r\ninput[type=\"password\"]:focus {\r\n	border-color: #8A6B63;\r\n	outline: none;\r\n}\r\ntextarea:focus {\r\n	border-color: #8A6B63;\r\n	outline: none;\r\n}\r\n\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 30px;\r\n	vertical-align: middle;\r\n}\r\n.checkbox-div input[type=checkbox] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.checkbox-div {\r\n	width: 14px;\r\n	height: 14px;\r\n	background: #fff;\r\n	border: 1px solid #ccc;\r\n	border-radius: 7px;\r\n	position: relative;\r\n	display: inline-block;\r\n	box-shadow: 0px 3px 8px 1px rgb(213, 213, 213) inset;\r\n}\r\n.checkbox-div label {\r\n	cursor: pointer;\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)\";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: \"\";\r\n	position: absolute;\r\n	width: 16px;\r\n	height: 13px;\r\n	background: url([SITE_ROOT]/images/02/checkbox.png);\r\n	border-radius: 0px;\r\n	top: -3px;\r\n	left: 2px;\r\n}\r\n.checkbox-div label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .checkbox-div label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div input[type=checkbox]:checked + label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/04/date.png) no-repeat left 50% !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 20px;\r\n	height: 24px;\r\n	position: relative;\r\n	left: -22px;\r\n	vertical-align: top;\r\n	outline: none;\r\n}\r\n.radio-div input[type=radio] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n.radio-div {\r\n	width: 14px;\r\n	height: 14px;\r\n	background: #fff;\r\n	border: 1px solid #ccc;\r\n	border-radius: 7px;\r\n	position: relative;\r\n	display: inline-block;\r\n	box-shadow: 0px 3px 8px 1px rgb(213, 213, 213) inset;\r\n}\r\n.radio-div label {\r\ncursor: pointer;\r\n-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)\";\r\nfilter: alpha(opacity=0);\r\nopacity: 0;\r\ncontent: \"\";\r\nposition: absolute;\r\nwidth: 10px;\r\nheight: 10px;\r\nbackground: #B98476 ;\r\nbackground: -moz-linear-gradient(bottom, #CA9B8F 0%, #DBACA0 49%, #B98476 84%, #A38279 95%);\r\nbackground: -webkit-linear-gradient(bottom, #CA9B8F 0%, #DBACA0 49%, #B98476 84%, #A38279 95%);\r\nbackground: -o-linear-gradient(bottom, #CA9B8F 0%, #DBACA0 49%, #B98476 84%, #A38279 95%);\r\nbackground: -ms-linear-gradient(bottom, #CA9B8F 0%, #DBACA0 49%, #B98476 84%, #A38279 95%);\r\nbackground: linear-gradient(to bottom, #CA9B8F 0%, #DBACA0 49%, #B98476 84%, #A38279 95%);\r\nbox-shadow: 0px 0px 5px 0px rgb(214, 214, 214) inset;\r\nborder-radius: 7px;\r\ntop: 1px;\r\nleft: 1px;\r\nborder: 1px solid #9B766D;\r\n}\r\n.radio-div label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.5;\r\n}\r\n.radio-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.5;\r\n}\r\n.wdform-ch-rad-label:hover + .radio-div label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.5;\r\n}\r\n.radio-div input[type=radio]:checked + label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.if-ie-div-label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #000;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	padding-top: 5px;\r\n	margin-top: 15px;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: \"Lucida Grande\", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #000;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #000;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: red;\r\n	vertical-align: top;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\n	font-size: 12px;\r\n color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 20px;\r\n	text-align: center;\r\n	vertical-align: bottom;\r\n	padding: 5px 20px 0px 20px;\r\n	font-weight: bold;\r\n	background-color: #CCAAA3;\r\n	margin-left: 1px;\r\n}\r\n.page_active {\r\n	color: #fff;\r\n	cursor: pointer;\r\n	background-color: #8A6B63;\r\n	display: inline-block;\r\n	vertical-align: bottom;\r\n	height: 25px;\r\n	text-align: center;\r\n	font-size: 16px;\r\n	padding: 5px 20px 0px 20px;\r\n	margin-left: 1px;\r\n}\r\n.page_percentage_active {\r\n	padding: 0px;\r\n	margin: 0px;\r\n	border-spacing: 0px;\r\n	height: 23px;\r\n	line-height: 23px;\r\n	font-size: 15px;\r\n	float: left;\r\n	text-align: right !important;\r\n	z-index: 1;\r\n	position: relative;\r\n	background: #8A6B63;\r\n	vertical-align: middle;\r\n	font-family: ArTarumianHandes;\r\n}\r\n.page_percentage_deactive {\r\n	height: 23px;\r\n	line-height: 23px;\r\n	background-color: #CCAAA3;\r\n	text-align: left !important;\r\n	margin-bottom: 1px;\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: right !important;\r\n	margin-bottom: 0px;\r\n}\r\n.wdform_percentage_text {\r\n	margin: 3px 5px 3px 9px;\r\n	color: #FFFFFF;\r\n	font-weight: bold;\r\n}\r\n.wdform_percentage_title {\r\n	color: #000000;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 20px;\r\n	height: 20px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_percentage_arrow {\r\n	display: inline-block;\r\n	width: 20px;\r\n	height: 23px;\r\n	background-color: #8A6B63;\r\n	position: relative;\r\n	left: -14px;\r\n	z-index: 0;\r\n	vertical-align: middle;\r\n	-moz-transform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(-25deg) skewY(0deg);\r\n	-webkit-transform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(-25deg) skewY(0deg);\r\n	-o-transform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(-25deg) skewY(0deg);\r\n	-ms-transform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(-25deg) skewY(0deg);\r\n	transform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(-25deg) skewY(0deg);\r\n}\r\n.wdform_button button {\r\n	background: #0E4D92;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 4px;\r\n	min-width: 80px;\r\n	min-height: 27px;\r\n	color: #fff;\r\n	border: 2px solid #0E3F77;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_button button:active {\r\n	border: 2px solid #0B2D52;\r\n	background: #0E3F77;\r\n}", "0");
INSERT INTO `wp_formmaker_themes` VALUES("16", "Theme 04 transparent (gray button)", ".radio-div input[type=\"radio\"],\r\n.checkbox-div input[type=\"checkbox\"]\r\n{\r\nvisibility: hidden;\r\n}\r\n.wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #FFFFFF;\r\nborder: 1px solid #A6A6A6;\r\nmargin-bottom: 10px;\r\ncolor: #A6A6A6;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\na.ui-slider-handle {\r\n	width: 15px;\r\n	height: 15px;\r\n	top: -5px;\r\n}\r\n.ui-slider {\r\n	height: 6px;\r\n	background: #fff !important;\r\n	margin: 7px 0px;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell input[type=\"text\"] {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n}\r\n@font-face {\r\n	font-family: ArTarumianHandes;\r\n	src: url([SITE_ROOT]/css/HANDES.ttf);\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #EDE5DA;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 3px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\na.ui-spinner-button:hover{\r\n	background: #B3B3B3 !important;\r\n	color: #fff;\r\n}\r\na.ui-spinner-button:active{\r\n	background: #B3B3B3 !important;\r\n	color: #fff;\r\n}\r\na.ui-spinner-button:focus{\r\n	background: #B3B3B3 !important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:hover{\r\n	background: #B3B3B3 !important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:active{\r\n	background: #B3B3B3 !important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:focus{\r\n	background: #B3B3B3 !important;\r\n	color: #fff;\r\n}\r\nui-state-hover {\r\n	background: #B3B3B3 !important;\r\n	color: #fff;\r\n}\r\n.ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-content .ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-header .ui-state-default {\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-slider-range {\r\n	background: #E5E5E5 !important;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #DCDCDC;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\n	border: 0px !important;\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n.sel-wrap select {\r\n	position: absolute;\r\n z-index:-1;\r\n width: 0px !important;\r\n}\r\n.sel-imul {\r\n	display: inline-block;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	padding: 2px 0px 2px 2px;\r\n	font-size: 13px;\r\n	height: 20px;\r\n	line-height: 22px;\r\n	overflow: hidden;\r\n	background: #fff;\r\n	border: 1px solid #ccc;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 20px;\r\n	width: 22px;\r\n	background: url([SITE_ROOT]/images/04/01.png) 50% 50% no-repeat;\r\n	position: absolute;\r\n	top: 0px;\r\n	right: 0px;\r\n	padding: 2px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text] {\r\n	margin: 0px;\r\n}\r\ninput[type=password] {\r\n	margin: 0px;\r\n}\r\ninput[type=url] {\r\n	margin: 0px;\r\n}\r\ninput[type=email] {\r\n	margin: 0px;\r\n}\r\ninput.text {\r\n	margin: 0px;\r\n}\r\ninput.title {\r\n	margin: 0px;\r\n}\r\ntextarea {\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	background: #fff;\r\n	position: absolute;\r\n	border-radius: 4px;\r\n	height: 24px;\r\n	border: 1px solid #ccc;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	direction: rtl;\r\n	padding-top: 3px;\r\n	margin-top: 2px;\r\n}\r\n.file-picker {\r\n	width: 45px;\r\n	height: 44px;\r\n	background: url([SITE_ROOT]/images/04/upload.png);\r\n	display: inline-block;\r\n}\r\ndiv.wdform-page-button {\r\n	color: #424242;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 39px;\r\n	line-height: 35px;\r\n	padding: 0px 20px;\r\n	vertical-align: middle;\r\n	font-weight: 400;\r\n	font-size: 20px;\r\n	border: 1px solid #959595;\r\n	border-radius: 5px;\r\n}\r\ndiv.wdform-page-button:hover {\r\ncolor: #fff;\r\nborder: 1px solid #919191;\r\nbackground: #7A7A7A ;\r\nbackground: -moz-linear-gradient(bottom, #C7C7C7 0%, #A0A0A0 49%, #7A7A7A 84%, #858585 95%);\r\nbackground: -webkit-linear-gradient(bottom, #C7C7C7 0%, #A0A0A0 49%, #7A7A7A 84%, #858585 95%);\r\nbackground: -o-linear-gradient(bottom, #C7C7C7 0%, #A0A0A0 49%, #7A7A7A 84%, #858585 95%);\r\nbackground: -ms-linear-gradient(bottom, #C7C7C7 0%, #A0A0A0 49%, #7A7A7A 84%, #858585 95%);\r\nbackground: linear-gradient(to bottom, #C7C7C7 0%, #A0A0A0 49%, #7A7A7A 84%, #858585 95%);\r\nbox-shadow: 0px 0px 5px 0px rgb(221, 221, 221) inset;\r\n}\r\n.button-submit {\r\n	color: #767676 !important;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 39px;\r\n	line-height: 32px;\r\n	padding: 0px 20px 5px;\r\n	vertical-align: middle;\r\n	font-weight: 400 !important;\r\n	font-size: 20px;\r\n	border: 1px solid #959595;\r\n	border-radius: 5px;\r\n	font-family: Segoe UI;\r\nbackground:transparent;\r\n}\r\n.button-submit:hover {\r\ncolor: #fff !important;\r\nborder: 1px solid #919191;\r\nbackground: #7A7A7A ;\r\nbackground: -moz-linear-gradient(bottom, #C7C7C7 0%, #A0A0A0 49%, #7A7A7A 84%, #858585 95%);\r\nbackground: -webkit-linear-gradient(bottom, #C7C7C7 0%, #A0A0A0 49%, #7A7A7A 84%, #858585 95%);\r\nbackground: -o-linear-gradient(bottom, #C7C7C7 0%, #A0A0A0 49%, #7A7A7A 84%, #858585 95%);\r\nbackground: -ms-linear-gradient(bottom, #C7C7C7 0%, #A0A0A0 49%, #7A7A7A 84%, #858585 95%);\r\nbackground: linear-gradient(to bottom, #C7C7C7 0%, #A0A0A0 49%, #7A7A7A 84%, #858585 95%);\r\nbox-shadow: 0px 0px 5px 0px rgb(221, 221, 221) inset;\r\n}\r\n.button-reset {\r\n	background: transparent;\r\n	cursor: pointer;\r\n	font-size: 18px;\r\n	min-width: 80px;\r\n	min-height: 34px;\r\n	color: #787878;\r\n	border: 0px;\r\n	margin: 5px;\r\n	font-family: Segoe UI;\r\n	text-decoration: underline;\r\n}\r\n.wdform_page {\r\n	background: transparent;\r\n	padding: 15px 15px 15px 50px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_column {\r\n	border-right: none !important;\r\n	padding-right: 30px !important;\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n}\r\n.wdform_column>div {\r\n	border-bottom: 0px solid #E7E7E7;\r\n}\r\n.wdform_column>.wdform_row:last-child {\r\n	border-bottom: 0px solid #E7E7E7;\r\n}\r\n.wdform-field-section-break {\r\n	text-align: center;\r\n}\r\n.wdform_section_break2 {\r\n	margin: 16px 10px 16px 0px;\r\n	display: inline-block;\r\n	background: url([SITE_ROOT]/images/04/02/bg.png) no-repeat;\r\n	text-align: left;\r\n	border-radius: 0px;\r\n	width: 300px;\r\npadding: 5px;\r\n	text-align: center;\r\nfont-size: 16px;\r\n}\r\n.wdform_section_break\r\n{\r\nmargin: 16px 10px 16px 0px;\r\ntext-align: left;\r\nfont-size: 18px;\r\n}\r\n.wdform_section {\r\n	display: table-row\r\n}\r\nselect {\r\n	border-radius: 0px;\r\n	height: 24px;\r\n	overflow: hidden;\r\n	padding: 0px;\r\nborder: 1px solid #ccc;\r\n	outline: none;\r\n font-size: 14px;\r\n}\r\ninput[type=\"text\"]{\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	border: 1px solid #ccc;\r\n	padding:0 3px !important;\r\n font-size: 14px;\r\n}\r\ninput[type=\"password\"]{\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	border: 1px solid #ccc;\r\n	padding:0 3px !important;\r\n font-size: 14px;\r\n}\r\ntextarea {\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	border: 1px solid #ccc;\r\n	padding:0 3px !important;\r\n font-size: 14px;\r\n}\r\ninput[type=\"text\"]:focus {\r\n	border-color: #B3B3B3;\r\n	outline: none;\r\n}\r\ninput[type=\"password\"]:focus {\r\n	border-color: #B3B3B3;\r\n	outline: none;\r\n}\r\ntextarea:focus {\r\n	border-color: #B3B3B3;\r\n	outline: none;\r\n}\r\n\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 30px;\r\n	vertical-align: middle;\r\n}\r\n.checkbox-div input[type=checkbox] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.checkbox-div {\r\n	width: 14px;\r\n	height: 14px;\r\n	background: #fff;\r\n	border: 1px solid #ccc;\r\n	border-radius: 7px;\r\n	position: relative;\r\n	display: inline-block;\r\n	box-shadow: 0px 3px 8px 1px rgb(213, 213, 213) inset;\r\n}\r\n.checkbox-div label {\r\n	cursor: pointer;\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)\";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: \"\";\r\n	position: absolute;\r\n	width: 16px;\r\n	height: 13px;\r\n	background: url([SITE_ROOT]/images/02/checkbox.png);\r\n	border-radius: 0px;\r\n	top: -3px;\r\n	left: 2px;\r\n}\r\n.checkbox-div label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .checkbox-div label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div input[type=checkbox]:checked + label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/04/date.png) no-repeat left 50% !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 20px;\r\n	height: 24px;\r\n	position: relative;\r\n	left: -22px;\r\n	vertical-align: top;\r\n	outline: none;\r\n}\r\n.radio-div input[type=radio] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n.radio-div {\r\n	width: 14px;\r\n	height: 14px;\r\n	background: #fff;\r\n	border: 1px solid #ccc;\r\n	border-radius: 7px;\r\n	position: relative;\r\n	display: inline-block;\r\n	box-shadow: 0px 3px 8px 1px rgb(213, 213, 213) inset;\r\n}\r\n.radio-div label {\r\ncursor: pointer;\r\n-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)\";\r\nfilter: alpha(opacity=0);\r\nopacity: 0;\r\ncontent: \"\";\r\nposition: absolute;\r\nwidth: 10px;\r\nheight: 10px;\r\nbackground: #63929E ;\r\nbackground: -moz-linear-gradient(bottom, #84B8C5 0%, #75A1AC 49%, #63929E 84%, #377483 95%);\r\nbackground: -webkit-linear-gradient(bottom, #84B8C5 0%, #75A1AC 49%, #63929E 84%, #377483 95%);\r\nbackground: -o-linear-gradient(bottom, #84B8C5 0%, #75A1AC 49%, #63929E 84%, #377483 95%);\r\nbackground: -ms-linear-gradient(bottom, #84B8C5 0%, #75A1AC 49%, #63929E 84%, #377483 95%);\r\nbackground: linear-gradient(to bottom, #84B8C5 0%, #75A1AC 49%, #63929E 84%, #377483 95%);\r\nbox-shadow: 0px 0px 5px 0px rgb(214, 214, 214) inset;\r\nborder-radius: 7px;\r\ntop: 1px;\r\nleft: 1px;\r\nborder: 1px solid #678B94;\r\n}\r\n.radio-div label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.5;\r\n}\r\n.radio-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.5;\r\n}\r\n.wdform-ch-rad-label:hover + .radio-div label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.5;\r\n}\r\n.radio-div input[type=radio]:checked + label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.if-ie-div-label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #000;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	padding-top: 5px;\r\n	margin-top: 15px;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: \"Lucida Grande\", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #000;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #000;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: red;\r\n	vertical-align: top;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\n	font-size: 12px;\r\n color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 20px;\r\n	text-align: center;\r\n	vertical-align: bottom;\r\n	padding: 5px 20px 0px 20px;\r\n	font-weight: bold;\r\n	background-color: #C0C0C0;\r\n	margin-left: 1px;\r\n}\r\n.page_active {\r\n	color: #fff;\r\n	cursor: pointer;\r\n	background-color: #A8A8A8;\r\n	display: inline-block;\r\n	vertical-align: bottom;\r\n	height: 25px;\r\n	text-align: center;\r\n	font-size: 16px;\r\n	padding: 5px 20px 0px 20px;\r\n	margin-left: 1px;\r\n}\r\n.page_percentage_active {\r\n	padding: 0px;\r\n	margin: 0px;\r\n	border-spacing: 0px;\r\n	height: 23px;\r\n	line-height: 23px;\r\n	font-size: 15px;\r\n	float: left;\r\n	text-align: right !important;\r\n	z-index: 1;\r\n	position: relative;\r\n	background: #678B94;\r\n	vertical-align: middle;\r\n	font-family: ArTarumianHandes;\r\n}\r\n.page_percentage_deactive {\r\n	height: 23px;\r\n	line-height: 23px;\r\n	background-color: #88B4BD;\r\n	text-align: left !important;\r\n	margin-bottom: 1px;\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: right !important;\r\n	margin-bottom: 0px;\r\n}\r\n.wdform_percentage_text {\r\n	margin: 3px 5px 3px 9px;\r\n	color: #FFFFFF;\r\n	font-weight: bold;\r\n}\r\n.wdform_percentage_title {\r\n	color: #000000;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 20px;\r\n	height: 20px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_percentage_arrow {\r\n	display: inline-block;\r\n	width: 20px;\r\n	height: 23px;\r\n	background-color: #678B94;\r\n	position: relative;\r\n	left: -14px;\r\n	z-index: 0;\r\n	vertical-align: middle;\r\n	-moz-transform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(-25deg) skewY(0deg);\r\n	-webkit-transform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(-25deg) skewY(0deg);\r\n	-o-transform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(-25deg) skewY(0deg);\r\n	-ms-transform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(-25deg) skewY(0deg);\r\n	transform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(-25deg) skewY(0deg);\r\n}\r\n.wdform_button button {\r\n	background: #0E4D92;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 4px;\r\n	min-width: 80px;\r\n	min-height: 27px;\r\n	color: #fff;\r\n	border: 2px solid #0E3F77;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_button button:active {\r\n	border: 2px solid #0B2D52;\r\n	background: #0E3F77;\r\n}", "0");
INSERT INTO `wp_formmaker_themes` VALUES("17", "Theme 05 blue", ".wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #0E7297;\r\nborder: 1px solid #A0CBDB;\r\nmargin-bottom: 10px;\r\ncolor: #A0CBDB;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\na.ui-slider-handle {\r\n	width: 14px;\r\n	height: 14px;\r\n	top: -6px;\r\n	border: 2px solid #ccc;\r\n}\r\n.ui-slider {\r\n	height: 6px;\r\n	background: #fff !important;\r\n	margin: 7px 0px;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell input[type=\"text\"] {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n	content: url([SITE_ROOT]/images/05/01/nextbg_hover.png) url([SITE_ROOT]/images/05/01/previousbg_hover.png);\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #CECECE;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 0px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\na.ui-spinner-button:hover{\r\n	background: #00B4F6 !important;\r\n	color: #fff;\r\n}\r\na.ui-spinner-button:active{\r\n	background: #00B4F6 !important;\r\n	color: #fff;\r\n}\r\na.ui-spinner-button:focus{\r\n	background: #00B4F6 !important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:hover{\r\n	background: #00B4F6 !important;\r\n	color: #fff;\r\noutline:none;\r\n}\r\na.ui-slider-handle:active{\r\n	background: #00B4F6 !important;\r\n	color: #fff;\r\noutline:none;\r\n}\r\na.ui-slider-handle:focus{\r\n	background: #00B4F6 !important;\r\n	color: #fff;\r\noutline:none;\r\n}\r\nui-state-hover {\r\n	background: #00B4F6 !important;\r\n	color: #fff;\r\n}\r\n.ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-content .ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\nborder-radius: 0px;\r\n}\r\n.ui-widget-header .ui-state-default {\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-slider-range {\r\n	background: #E5E5E5 !important;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #DCDCDC;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\n	border: 0px !important;\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n.sel-wrap select {\r\n	position: absolute;\r\n z-index:-1;\r\n width: 0px !important;\r\n}\r\n.sel-imul {\r\n	display: inline-block;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	padding: 2px 0px 2px 2px;\r\n	font-size: 13px;\r\n	height: 20px;\r\n	line-height: 20px;\r\n	overflow: hidden;\r\n	background: #fff;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 22px;\r\n	width: 27px;\r\n	background: url([SITE_ROOT]/images/05/01.png) 50% 50% no-repeat;\r\n	position: absolute;\r\n	top: -1px;\r\n	right: 0px;\r\n	padding: 2px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text]{\r\n	margin: 0px;\r\n}\r\ninput[type=password]{\r\n	margin: 0px;\r\n}\r\ninput[type=url]{\r\n	margin: 0px;\r\n}\r\ninput[type=email]{\r\n	margin: 0px;\r\n}\r\ninput.text{\r\n	margin: 0px;\r\n}\r\ninput.title{\r\n	margin: 0px;\r\n}\r\ntextarea{\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	background: #fff;\r\n	position: absolute;\r\n	border-radius: 4px;\r\n	height: 24px;\r\n	border: 1px solid #ccc;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	direction: rtl;\r\n	padding-top: 3px;\r\n	margin-top: 2px;\r\n}\r\n.file-picker {\r\n	width: 41px;\r\n	height: 32px;\r\n	background: url([SITE_ROOT]/images/05/01/upload.png) no-repeat;\r\n	display: inline-block;\r\n}\r\n.next-page div.wdform-page-button {\r\n	color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 32px;\r\n	line-height: 28px;\r\n	background: url([SITE_ROOT]/images/05/01/nextbg.png) no-repeat;\r\n	padding: 0px 20px 0 0;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	margin-right: 20px;\r\n	margin-left: 20px;\r\n	width: 90px;\r\n}\r\n.next-page div.wdform-page-button:hover {\r\n	background: url([SITE_ROOT]/images/05/01/nextbg_hover.png) no-repeat;\r\n	width: 113px;\r\n}\r\n.previous-page div.wdform-page-button {\r\n	color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 32px;\r\n	line-height: 28px;\r\n	background: url([SITE_ROOT]/images/05/01/previousbg.png) no-repeat;\r\n	padding: 0px 0 0 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	margin-right: 20px;\r\n	margin-left: 20px;\r\n	width: 90px;\r\n}\r\n.previous-page div.wdform-page-button:hover {\r\n	background: url([SITE_ROOT]/images/05/01/previousbg_hover.png) no-repeat;\r\n	width: 113px;\r\n}\r\n.button-submit {\r\n	background: url([SITE_ROOT]/images/05/01/submit.png) no-repeat;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 0px;\r\n	min-width: 80px;\r\n	min-height: 32px;\r\n	color: #fff;\r\n	margin: 5px;\r\n	border: 0px;\r\n	font-family: Segoe UI;\r\n	font-weight: 500;\r\n	padding: 0 12px 0 24px;\r\n}\r\n.button-reset {\r\n	background: transparent;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	min-width: 80px;\r\n	min-height: 34px;\r\n	color: #787878;\r\n	border: 0px;\r\n	margin: 5px;\r\n	font-family: Segoe UI;\r\n	text-decoration: underline;\r\n}\r\n.wdform_page {\r\n	background: #A0CBDB;\r\n	padding:15px 20px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_column {\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n}\r\n.wdform_column>div {\r\n	border-bottom: 0px solid #E7E7E7;\r\n}\r\n.wdform_column>.wdform_row:last-child {\r\n	border-bottom: 0px solid #E7E7E7;\r\n}\r\n.wdform-field-section-break {\r\n	text-align: center;\r\n}\r\n.wdform_section_break2 {\r\n	margin: 16px 0px;\r\n	background: #006A91;\r\n	border-radius: 0px;\r\npadding: 6px 10px 15px;\r\ntext-align: center;\r\nfont-size: 18px;\r\ncolor: #fff;\r\nbox-shadow: 0px 3px 5px #4B4B4B;\r\n}\r\n\r\n.wdform-field-section-break2:after {\r\n	content: \" \";\r\n	position: relative;\r\n	width: 97.7%;\r\n	right: 0px;\r\n	bottom: 20px;\r\n	height: 4px;\r\n	-webkit-box-shadow: 0 2px 3px #444141;\r\n	-moz-box-shadow: 0 2px 3px #444141;\r\n	box-shadow: 0 2px 3px #444141;\r\n	display: inline-block;\r\n}\r\n\r\n.wdform_section_break {\r\n	margin: 16px 0px;\r\n	border-radius: 0px;\r\n	text-align: left;\r\nfont-size: 18px;\r\ncolor: #3F3F3F;\r\n}\r\n.wdform_section {\r\n	display: table-row;\r\n}\r\nselect {\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	overflow: hidden;\r\nborder: 1px solid transparent;\r\n	padding: 0px;\r\n	outline: none;\r\n font-size: 14px;\r\n}\r\ninput[type=\"text\"]{\r\n	border-radius: 0px;\r\n	border: 1px solid transparent;\r\n	height: 20px;\r\n	padding:0 3px !important;\r\n font-size: 14px;\r\n}\r\ninput[type=\"password\"]{\r\n	border-radius: 0px;\r\n	border: 1px solid transparent;\r\n	height: 20px;\r\n	padding:0 3px !important;\r\n font-size: 14px;\r\n}\r\ntextarea {\r\n	border-radius: 0px;\r\n	border: 1px solid transparent;\r\n	height: 20px;\r\n	padding:0 3px !important;\r\n font-size: 14px;\r\n}\r\ninput[type=\"text\"]:focus{\r\n	border: 1px solid #006A91;\r\n	outline: none;\r\n}\r\ninput[type=\"password\"]:focus{\r\n	border: 1px solid #006A91;\r\n	outline: none;\r\n}\r\ntextarea:focus{\r\n	border: 1px solid #006A91;\r\n	outline: none;\r\n}\r\n\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 30px;\r\n	vertical-align: middle;\r\n}\r\n.checkbox-div input[type=checkbox] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.checkbox-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #026994;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n}\r\n.checkbox-div label {\r\n	cursor: pointer;\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)\";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: \" \";\r\n	position: absolute;\r\n	width: 16px;\r\n	height: 13px;\r\n	background: url([SITE_ROOT]/images/03/checkbox.png);\r\n	border-radius: 0px;\r\n	top: -3px;\r\n	left: 1px;\r\n}\r\n.checkbox-div label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .checkbox-div label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div input[type=checkbox]:checked + label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/05/date.png) no-repeat left 50% !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 20px;\r\n	height: 21px;\r\n	position: relative;\r\n	left: -19px;\r\n	vertical-align: top;\r\n	outline: none;\r\n}\r\n.radio-div input[type=radio] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n.radio-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #026994;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n	top: 2px;\r\n}\r\n.radio-div label {\r\n	cursor: pointer;\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)\";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: \" \";\r\n	position: absolute;\r\n	width: 9px;\r\n	height: 8px;\r\n	background: #026994;\r\n	border-radius: 0px;\r\n	top: 2px;\r\n	left: 2px;\r\n}\r\n.radio-div label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .radio-div label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div input[type=radio]:checked + label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.if-ie-div-label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #000;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	padding-top: 5px;\r\n	margin-top: 15px;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: \"Lucida Grande\", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #000;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #000;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: red;\r\n	vertical-align: top;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\n	font-size: 12px;\r\n color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 20px;\r\n	text-align: center;\r\n	vertical-align: bottom;\r\n	padding: 5px 25px 0px 25px;\r\n	font-weight: bold;\r\n	background-color: #006A91;\r\n	margin-left: 1px;\r\n}\r\n.page_active {\r\n	color: #fff;\r\n	cursor: pointer;\r\n	background-color: #01B4F6;\r\n	display: inline-block;\r\n	vertical-align: bottom;\r\n	height: 25px;\r\n	text-align: center;\r\n	font-size: 16px;\r\n	padding: 5px 25px 0px 25px;\r\n	margin-left: 1px;\r\n	line-height: 25px;\r\n}\r\n.page_percentage_active {\r\n	padding: 0px;\r\n	margin: 0px;\r\n	border-spacing: 0px;\r\n	height: 27px;\r\n	line-height: 27px;\r\n	font-size: 15px;\r\n	float: left;\r\n	text-align: right !important;\r\n	z-index: 1;\r\n	position: relative;\r\n	vertical-align: middle;\r\n	background: #018ABE;\r\n	background: -moz-linear-gradient(left, #0079A6 0%, #018ABE 39%, #00B6FA 100%);\r\n	background: -webkit-gradient(linear, left top, right top, color-stop(0%, #0079A6), color-stop(39%, #018ABE ), color-stop(100%, #00B6FA ));\r\n	background: -webkit-linear-gradient(left, #0079A6 0%, #018ABE 39%, #00B6FA 100%);\r\n	background: -o-linear-gradient(left, #0079A6 0%, #018ABE 39%, #00B6FA 100%);\r\n	background: -ms-linear-gradient(left, #0079A6 0%, #018ABE 39%, #00B6FA 100%);\r\n	background: linear-gradient(to right, #0079A6 0%, #018ABE 39%, #00B6FA 100%);\r\n	border-top-right-radius: 9px;\r\n	border-bottom-right-radius: 9px;\r\n	box-shadow: 2px 0px 7px #9E9B9B;\r\n}\r\n.page_percentage_deactive {\r\n	height: 27px;\r\n	line-height: 27px;\r\n	background-color: #C4D5DF;\r\n	text-align: left !important;\r\n	margin-bottom: 1px;\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: right !important;\r\n	margin-bottom: 0px;\r\n}\r\n.wdform_percentage_text {\r\n	margin: 3px 5px 3px 9px;\r\n	color: #ffffff;\r\n	font-weight: bold;\r\n}\r\n.wdform_percentage_title {\r\n	color: #6E6E6E;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 27px;\r\n	height: 27px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_button button {\r\n	background: #0E4D92;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 4px;\r\n	min-width: 80px;\r\n	min-height: 27px;\r\n	color: #fff;\r\n	border: 2px solid #0E3F77;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_button button:active {\r\n	border: 2px solid #0B2D52;\r\n	background: #0E3F77;\r\n}", "0");
INSERT INTO `wp_formmaker_themes` VALUES("18", "Theme 05 green", ".wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #007326;\r\nborder: 1px solid #B6E4CF;\r\nmargin-bottom: 10px;\r\ncolor: #B6E4CF;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\na.ui-slider-handle {\r\n	width: 14px;\r\n	height: 14px;\r\n	top: -6px;\r\n	border: 2px solid #ccc;\r\n}\r\n.ui-slider {\r\n	height: 6px;\r\n	background: #fff !important;\r\n	margin: 7px 0px;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell input[type=\"text\"] {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n	content: url([SITE_ROOT]/images/05/02/nextbg_hover.png) url([SITE_ROOT]/images/05/02/previousbg_hover.png);\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #CECECE;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 0px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\na.ui-spinner-button:hover{\r\n	background: #018D08 !important;\r\n	color: #fff;\r\n}\r\na.ui-spinner-button:active{\r\n	background: #018D08 !important;\r\n	color: #fff;\r\n}\r\na.ui-spinner-button:focus{\r\n	background: #018D08 !important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:hover{\r\n	background: #018D08 !important;\r\n	color: #fff;\r\noutline:none;\r\n}\r\na.ui-slider-handle:active{\r\n	background: #018D08 !important;\r\n	color: #fff;\r\noutline:none;\r\n}\r\na.ui-slider-handle:focus{\r\n	background: #018D08 !important;\r\n	color: #fff;\r\noutline:none;\r\n}\r\nui-state-hover {\r\n	background: #018D08 !important;\r\n	color: #fff;\r\n}\r\n.ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-content .ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\nborder-radius: 0px;\r\n}\r\n.ui-widget-header .ui-state-default {\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-slider-range {\r\n	background: #E5E5E5 !important;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #DCDCDC;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\n	border: 0px !important;\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n.sel-wrap select {\r\n	position: absolute;\r\n z-index:-1;\r\n width: 0px !important;\r\n}\r\n.sel-imul {\r\n	display: inline-block;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	padding: 2px 0px 2px 2px;\r\n	font-size: 13px;\r\n	height: 20px;\r\n	line-height: 20px;\r\n	overflow: hidden;\r\n	background: #fff;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 22px;\r\n	width: 27px;\r\n	background: url([SITE_ROOT]/images/05/01.png) 50% 50% no-repeat;\r\n	position: absolute;\r\n	top: -1px;\r\n	right: 0px;\r\n	padding: 2px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text]{\r\n	margin: 0px;\r\n}\r\ninput[type=password]{\r\n	margin: 0px;\r\n}\r\ninput[type=url]{\r\n	margin: 0px;\r\n}\r\ninput[type=email]{\r\n	margin: 0px;\r\n}\r\ninput.text{\r\n	margin: 0px;\r\n}\r\ninput.title{\r\n	margin: 0px;\r\n}\r\ntextarea{\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	background: #fff;\r\n	position: absolute;\r\n	border-radius: 4px;\r\n	height: 24px;\r\n	border: 1px solid #ccc;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	direction: rtl;\r\n	padding-top: 3px;\r\n	margin-top: 2px;\r\n}\r\n.file-picker {\r\n	width: 41px;\r\n	height: 32px;\r\n	background: url([SITE_ROOT]/images/05/02/upload.png) no-repeat;\r\n	display: inline-block;\r\n}\r\n.next-page div.wdform-page-button {\r\n	color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 32px;\r\n	line-height: 28px;\r\n	background: url([SITE_ROOT]/images/05/02/nextbg.png) no-repeat;\r\n	padding: 0px 20px 0 0;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	margin-right: 20px;\r\n	margin-left: 20px;\r\n	width: 90px;\r\n}\r\n.next-page div.wdform-page-button:hover {\r\n	background: url([SITE_ROOT]/images/05/02/nextbg_hover.png) no-repeat;\r\n	width: 113px;\r\n}\r\n.previous-page div.wdform-page-button {\r\n	color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 32px;\r\n	line-height: 28px;\r\n	background: url([SITE_ROOT]/images/05/02/previousbg.png) no-repeat;\r\n	padding: 0px 0 0 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	margin-right: 20px;\r\n	margin-left: 20px;\r\n	width: 90px;\r\n}\r\n.previous-page div.wdform-page-button:hover {\r\n	background: url([SITE_ROOT]/images/05/02/previousbg_hover.png) no-repeat;\r\n	width: 113px;\r\n}\r\n.button-submit {\r\n	background: url([SITE_ROOT]/images/05/02/submit.png) no-repeat;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 0px;\r\n	min-width: 80px;\r\n	min-height: 32px;\r\n	color: #fff;\r\n	margin: 5px;\r\n	border: 0px;\r\n	font-family: Segoe UI;\r\n	font-weight: 500;\r\n	padding: 0 12px 0 24px;\r\n}\r\n.button-reset {\r\n	background: transparent;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	min-width: 80px;\r\n	min-height: 34px;\r\n	color: #787878;\r\n	border: 0px;\r\n	margin: 5px;\r\n	font-family: Segoe UI;\r\n	text-decoration: underline;\r\n}\r\n.wdform_page {\r\n	background: #B6E4CF;\r\n	padding: 15px 20px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_column {\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n}\r\n.wdform_column>div {\r\n	border-bottom: 0px solid #E7E7E7;\r\n}\r\n.wdform_column>.wdform_row:last-child {\r\n	border-bottom: 0px solid #E7E7E7;\r\n}\r\n.wdform-field-section-break {\r\n	text-align: center;\r\n}\r\n.wdform_section_break2{\r\n	margin: 16px 0px;\r\n	background: #0D7A31;\r\n	border-radius: 0px;\r\npadding: 6px 10px 15px;\r\ntext-align: center;\r\nfont-size: 18px;\r\ncolor: #fff;\r\nbox-shadow: 0px 3px 5px #4B4B4B;\r\n}\r\n\r\n.wdform-field-section-break2:after {\r\n	content: \" \";\r\n	position: relative;\r\n	width: 97.7%;\r\n	right: 0px;\r\n	bottom: 20px;\r\n	height: 4px;\r\n	-webkit-box-shadow: 0 2px 3px #444141;\r\n	-moz-box-shadow: 0 2px 3px #444141;\r\n	box-shadow: 0 2px 3px #444141;\r\n	display: inline-block;\r\n}\r\n\r\n.wdform_section_break{\r\n	margin: 16px 0px;\r\n	border-radius: 0px;\r\n	text-align: left;\r\nfont-size: 18px;\r\n}\r\n.wdform_section {\r\n	display: table-row;\r\n}\r\nselect {\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	overflow: hidden;\r\nborder: 1px solid transparent;\r\n	padding: 0px;\r\n	outline: none;\r\n font-size: 14px;\r\n}\r\ninput[type=\"text\"]{\r\n	border-radius: 0px;\r\n	border: 1px solid transparent;\r\n	height: 20px;\r\n	padding:0 3px !important;\r\n font-size: 14px;\r\n}\r\ninput[type=\"password\"]{\r\n	border-radius: 0px;\r\n	border: 1px solid transparent;\r\n	height: 20px;\r\n	padding:0 3px !important;\r\n font-size: 14px;\r\n}\r\ntextarea {\r\n	border-radius: 0px;\r\n	border: 1px solid transparent;\r\n	height: 20px;\r\n	padding:0 3px !important;\r\n font-size: 14px;\r\n}\r\ninput[type=\"text\"]:focus{\r\n	border: 1px solid #0D7A31;\r\n	outline: none;\r\n}\r\ninput[type=\"password\"]:focus{\r\n	border: 1px solid #0D7A31;\r\n	outline: none;\r\n}\r\ntextarea:focus{\r\n	border: 1px solid #0D7A31;\r\n	outline: none;\r\n}\r\n\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 30px;\r\n	vertical-align: middle;\r\n}\r\n.checkbox-div input[type=checkbox] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.checkbox-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #0D7A31;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n}\r\n.checkbox-div label {\r\n	cursor: pointer;\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)\";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: \" \";\r\n	position: absolute;\r\n	width: 16px;\r\n	height: 13px;\r\n	background: url([SITE_ROOT]/images/03/checkbox.png);\r\n	border-radius: 0px;\r\n	top: -3px;\r\n	left: 1px;\r\n}\r\n.checkbox-div label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .checkbox-div label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div input[type=checkbox]:checked + label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/05/date.png) no-repeat left 50% !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 20px;\r\n	height: 21px;\r\n	position: relative;\r\n	left: -19px;\r\n	vertical-align: top;\r\n	outline: none;\r\n}\r\n.radio-div input[type=radio] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n.radio-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #0D7A31;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n	top: 2px;\r\n}\r\n.radio-div label {\r\n	cursor: pointer;\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)\";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: \" \";\r\n	position: absolute;\r\n	width: 9px;\r\n	height: 8px;\r\n	background: #0D7A31;\r\n	border-radius: 0px;\r\n	top: 2px;\r\n	left: 2px;\r\n}\r\n.radio-div label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .radio-div label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div input[type=radio]:checked + label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.if-ie-div-label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #000;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	padding-top: 5px;\r\n	margin-top: 15px;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: \"Lucida Grande\", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #000;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #000;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: red;\r\n	vertical-align: top;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\n	font-size: 12px;\r\n color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 20px;\r\n	text-align: center;\r\n	vertical-align: bottom;\r\n	padding: 5px 25px 0px 25px;\r\n	font-weight: bold;\r\n	background-color: #018D08;\r\n	margin-left: 1px;\r\n}\r\n.page_active {\r\n	color: #fff;\r\n	cursor: pointer;\r\n	background-color: #00AC0A;\r\n	display: inline-block;\r\n	vertical-align: bottom;\r\n	height: 25px;\r\n	text-align: center;\r\n	font-size: 16px;\r\n	padding: 5px 25px 0px 25px;\r\n	margin-left: 1px;\r\n	line-height: 25px;\r\n}\r\n.page_percentage_active {\r\n	padding: 0px;\r\n	margin: 0px;\r\n	border-spacing: 0px;\r\n	height: 27px;\r\n	line-height: 27px;\r\n	font-size: 15px;\r\n	float: left;\r\n	text-align: right !important;\r\n	z-index: 1;\r\n	position: relative;\r\n	vertical-align: middle;\r\n	background: #018F08 ;\r\n	background: -moz-linear-gradient(left, #018D08 0%, #018F08 39%, #00BE0A 100%);\r\n	background: -webkit-gradient(linear, left top, right top, color-stop(0%, #018D08 ), color-stop(39%, #018F08 ), color-stop(100%, #00BE0A ));\r\n	background: -webkit-linear-gradient(left, #018D08 0%, #018F08 39%, #00BE0A 100%);\r\n	background: -o-linear-gradient(left, #018D08 0%, #018F08 39%, #00BE0A 100%);\r\n	background: -ms-linear-gradient(left, #018D08 0%, #018F08 39%, #00BE0A 100%);\r\nbackground: linear-gradient(to right, #018D08 0%, #018F08 39%, #00BE0A 100%);\r\n	border-top-right-radius: 9px;\r\n	border-bottom-right-radius: 9px;\r\n	box-shadow: 2px 0px 7px #9E9B9B;\r\n}\r\n.page_percentage_deactive {\r\n	height: 27px;\r\n	line-height: 27px;\r\n	background-color: #CEE0D3;\r\n	text-align: left !important;\r\n	margin-bottom: 1px;\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: right !important;\r\n	margin-bottom: 0px;\r\n}\r\n.wdform_percentage_text {\r\n	margin: 3px 5px 3px 9px;\r\n	color: #ffffff;\r\n	font-weight: bold;\r\n}\r\n.wdform_percentage_title {\r\n	color: #6E6E6E;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 27px;\r\n	height: 27px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_button button {\r\n	background: #0E4D92;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 4px;\r\n	min-width: 80px;\r\n	min-height: 27px;\r\n	color: #fff;\r\n	border: 2px solid #0E3F77;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_button button:active {\r\n	border: 2px solid #0B2D52;\r\n	background: #0E3F77;\r\n}", "0");
INSERT INTO `wp_formmaker_themes` VALUES("19", "Theme 05 pink", ".wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #B05785;\r\nborder: 1px solid #F6E2ED;\r\nmargin-bottom: 10px;\r\ncolor: #F6E2ED;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\na.ui-slider-handle {\r\n	width: 14px;\r\n	height: 14px;\r\n	top: -6px;\r\n	border: 2px solid #ccc;\r\n}\r\n.ui-slider {\r\n	height: 6px;\r\n	background: #fff !important;\r\n	margin: 7px 0px;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell input[type=\"text\"] {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n	content: url([SITE_ROOT]/images/05/03/nextbg_hover.png) url([SITE_ROOT]/images/05/03/previousbg_hover.png);\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #CECECE;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 0px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\na.ui-spinner-button:hover{\r\n	background: #B05785 !important;\r\n	color: #fff;\r\n}\r\na.ui-spinner-button:active{\r\n	background: #B05785 !important;\r\n	color: #fff;\r\n}\r\na.ui-spinner-button:focus{\r\n	background: #B05785 !important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:hover{\r\n	background: #B05785 !important;\r\n	color: #fff;\r\noutline:none;\r\n}\r\na.ui-slider-handle:active{\r\n	background: #B05785 !important;\r\n	color: #fff;\r\noutline:none;\r\n}\r\na.ui-slider-handle:focus{\r\n	background: #B05785 !important;\r\n	color: #fff;\r\noutline:none;\r\n}\r\nui-state-hover {\r\n	background: #B05785 !important;\r\n	color: #fff;\r\n}\r\n.ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-content .ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\nborder-radius: 0px;\r\n}\r\n.ui-widget-header .ui-state-default {\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-slider-range {\r\n	background: #E5E5E5 !important;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #DCDCDC;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\n	border: 0px !important;\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n.sel-wrap select {\r\n	position: absolute;\r\n z-index:-1;\r\n width: 0px !important;\r\n}\r\n.sel-imul {\r\n	display: inline-block;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	padding: 2px 0px 2px 2px;\r\n	font-size: 13px;\r\n	height: 20px;\r\n	line-height: 20px;\r\n	overflow: hidden;\r\n	background: #fff;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 22px;\r\n	width: 27px;\r\n	background: url([SITE_ROOT]/images/05/01.png) 50% 50% no-repeat;\r\n	position: absolute;\r\n	top: -1px;\r\n	right: 0px;\r\n	padding: 2px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text]{\r\n	margin: 0px;\r\n}\r\ninput[type=password]{\r\n	margin: 0px;\r\n}\r\ninput[type=url]{\r\n	margin: 0px;\r\n}\r\ninput[type=email]{\r\n	margin: 0px;\r\n}\r\ninput.text{\r\n	margin: 0px;\r\n}\r\ninput.title{\r\n	margin: 0px;\r\n}\r\ntextarea{\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	background: #fff;\r\n	position: absolute;\r\n	border-radius: 4px;\r\n	height: 24px;\r\n	border: 1px solid #ccc;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	direction: rtl;\r\n	padding-top: 3px;\r\n	margin-top: 2px;\r\n}\r\n.file-picker {\r\n	width: 41px;\r\n	height: 32px;\r\n	background: url([SITE_ROOT]/images/05/02/upload.png) no-repeat;\r\n	display: inline-block;\r\n}\r\n.next-page div.wdform-page-button {\r\n	color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 32px;\r\n	line-height: 28px;\r\n	background: url([SITE_ROOT]/images/05/03/nextbg.png) no-repeat;\r\n	padding: 0px 20px 0 0;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	margin-right: 20px;\r\n	margin-left: 20px;\r\n	width: 90px;\r\n}\r\n.next-page div.wdform-page-button:hover {\r\n	background: url([SITE_ROOT]/images/05/03/nextbg_hover.png) no-repeat;\r\n	width: 113px;\r\n}\r\n.previous-page div.wdform-page-button {\r\n	color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 32px;\r\n	line-height: 28px;\r\n	background: url([SITE_ROOT]/images/05/03/previousbg.png) no-repeat;\r\n	padding: 0px 0 0 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	margin-right: 20px;\r\n	margin-left: 20px;\r\n	width: 90px;\r\n}\r\n.previous-page div.wdform-page-button:hover {\r\n	background: url([SITE_ROOT]/images/05/03/previousbg_hover.png) no-repeat;\r\n	width: 113px;\r\n}\r\n.button-submit {\r\n	background: url([SITE_ROOT]/images/05/03/submit.png) no-repeat;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 0px;\r\n	min-width: 80px;\r\n	min-height: 32px;\r\n	color: #fff;\r\n	margin: 5px;\r\n	border: 0px;\r\n	font-family: Segoe UI;\r\n	font-weight: 500;\r\n	padding: 0 12px 0 24px;\r\n}\r\n.button-reset {\r\n	background: transparent;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	min-width: 80px;\r\n	min-height: 34px;\r\n	color: #787878;\r\n	border: 0px;\r\n	margin: 5px;\r\n	font-family: Segoe UI;\r\n	text-decoration: underline;\r\n}\r\n.wdform_page {\r\n	background: #F6E2ED;\r\n	padding: 15px 20px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_column {\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n}\r\n.wdform_column>div {\r\n	border-bottom: 0px solid #E7E7E7;\r\n}\r\n.wdform_column>.wdform_row:last-child {\r\n	border-bottom: 0px solid #E7E7E7;\r\n}\r\n.wdform-field-section-break {\r\n	text-align: center;\r\n}\r\n.wdform_section_break2 {\r\n	margin: 16px 0px;\r\n	background: #B05785;\r\n	border-radius: 0px;\r\npadding: 6px 10px 15px;\r\ntext-align: center;\r\nfont-size: 18px;\r\ncolor: #fff;\r\nbox-shadow: 0px 3px 5px #4B4B4B;\r\n}\r\n\r\n.wdform-field-section-break2:after {\r\n	content: \" \";\r\n	position: relative;\r\n	width: 97.7%;\r\n	right: 0px;\r\n	bottom: 20px;\r\n	height: 4px;\r\n	-webkit-box-shadow: 0 2px 3px #444141;\r\n	-moz-box-shadow: 0 2px 3px #444141;\r\n	box-shadow: 0 2px 3px #444141;\r\n	display: inline-block;\r\n\r\n}\r\n\r\n.wdform_section_break {\r\n	margin: 16px 0px;\r\n	border-radius: 0px;\r\n	text-align: left;\r\nfont-size: 18px;\r\n}\r\n.wdform_section {\r\n	display: table-row;\r\n}\r\nselect {\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	overflow: hidden;\r\nborder: 1px solid transparent;\r\n	padding: 0px;\r\n	outline: none;\r\n font-size: 14px;\r\n}\r\ninput[type=\"text\"]{\r\n	border-radius: 0px;\r\n	border: 1px solid transparent;\r\n	height: 20px;\r\n	padding:0 3px !important;\r\n font-size: 14px;\r\n}\r\ninput[type=\"password\"]{\r\n	border-radius: 0px;\r\n	border: 1px solid transparent;\r\n	height: 20px;\r\n	padding:0 3px !important;\r\n font-size: 14px;\r\n}\r\ntextarea {\r\n	border-radius: 0px;\r\n	border: 1px solid transparent;\r\n	height: 20px;\r\n	padding:0 3px !important;\r\n font-size: 14px;\r\n}\r\ninput[type=\"text\"]:focus{\r\n	border: 1px solid #B05785;\r\n	outline: none;\r\n}\r\ninput[type=\"password\"]:focus{\r\n	border: 1px solid #B05785;\r\n	outline: none;\r\n}\r\ntextarea:focus{\r\n	border: 1px solid #B05785;\r\n	outline: none;\r\n}\r\n\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 30px;\r\n	vertical-align: middle;\r\n}\r\n.checkbox-div input[type=checkbox] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.checkbox-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #B05785;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n}\r\n.checkbox-div label {\r\n	cursor: pointer;\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)\";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: \" \";\r\n	position: absolute;\r\n	width: 16px;\r\n	height: 13px;\r\n	background: url([SITE_ROOT]/images/03/checkbox.png);\r\n	border-radius: 0px;\r\n	top: -3px;\r\n	left: 1px;\r\n}\r\n.checkbox-div label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .checkbox-div label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div input[type=checkbox]:checked + label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/05/date.png) no-repeat left 50% !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 20px;\r\n	height: 21px;\r\n	position: relative;\r\n	left: -19px;\r\n	vertical-align: top;\r\n	outline: none;\r\n}\r\n.radio-div input[type=radio] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n.radio-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #B05785;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n	top: 2px;\r\n}\r\n.radio-div label {\r\n	cursor: pointer;\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)\";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: \" \";\r\n	position: absolute;\r\n	width: 9px;\r\n	height: 8px;\r\n	background: #B05785;\r\n	border-radius: 0px;\r\n	top: 2px;\r\n	left: 2px;\r\n}\r\n.radio-div label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .radio-div label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div input[type=radio]:checked + label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.if-ie-div-label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #000;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	padding-top: 5px;\r\n	margin-top: 15px;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: \"Lucida Grande\", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #000;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #000;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: red;\r\n	vertical-align: top;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\n	font-size: 12px;\r\n color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 20px;\r\n	text-align: center;\r\n	vertical-align: bottom;\r\n	padding: 5px 25px 0px 25px;\r\n	font-weight: bold;\r\n	background-color: #D7639F;\r\n	margin-left: 1px;\r\n}\r\n.page_active {\r\n	color: #fff;\r\n	cursor: pointer;\r\n	background-color: #E47DB3;\r\n	display: inline-block;\r\n	vertical-align: bottom;\r\n	height: 25px;\r\n	text-align: center;\r\n	font-size: 16px;\r\n	padding: 5px 25px 0px 25px;\r\n	margin-left: 1px;\r\n	line-height: 25px;\r\n}\r\n.page_percentage_active {\r\n	padding: 0px;\r\n	margin: 0px;\r\n	border-spacing: 0px;\r\n	height: 27px;\r\n	line-height: 27px;\r\n	font-size: 15px;\r\n	float: left;\r\n	text-align: right !important;\r\n	z-index: 1;\r\n	position: relative;\r\n	vertical-align: middle;\r\n	background: #D863A0 ;\r\n	background: -moz-linear-gradient(left, #D7639F 0%, #D863A0 39%, #F173B4 100%);\r\n	background: -webkit-gradient(linear, left top, right top, color-stop(0%, #D7639F ), color-stop(39%, #D863A0 ), color-stop(100%, #F173B4 ));\r\n	background: -webkit-linear-gradient(left, #D7639F 0%, #D863A0 39%, #F173B4 100%);\r\n	background: -o-linear-gradient(left, #D7639F 0%, #D863A0 39%, #F173B4 100%);\r\n	background: -ms-linear-gradient(left, #D7639F 0%, #D863A0 39%, #F173B4 100%);\r\nbackground: linear-gradient(to right, #D7639F 0%, #D863A0 39%, #F173B4 100%);\r\n	border-top-right-radius: 9px;\r\n	border-bottom-right-radius: 9px;\r\n	box-shadow: 2px 0px 7px #9E9B9B;\r\n}\r\n.page_percentage_deactive {\r\n	height: 27px;\r\n	line-height: 27px;\r\n	background-color: #D6CAD2;\r\n	text-align: left !important;\r\n	margin-bottom: 1px;\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: right !important;\r\n	margin-bottom: 0px;\r\n}\r\n.wdform_percentage_text {\r\n	margin: 3px 5px 3px 9px;\r\n	color: #ffffff;\r\n	font-weight: bold;\r\n}\r\n.wdform_percentage_title {\r\n	color: #6E6E6E;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 27px;\r\n	height: 27px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_button button {\r\n	background: #0E4D92;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 4px;\r\n	min-width: 80px;\r\n	min-height: 27px;\r\n	color: #fff;\r\n	border: 2px solid #0E3F77;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_button button:active {\r\n	border: 2px solid #0B2D52;\r\n	background: #0E3F77;\r\n}", "0");
INSERT INTO `wp_formmaker_themes` VALUES("20", "Theme 06 turquoise", ".wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #B1EBE9;\r\nborder: 1px solid #018580;\r\nmargin-bottom: 10px;\r\ncolor: #018580;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\na.ui-slider-handle {\r\n	width: 16px;\r\n	height: 16px;\r\n	top: -6px;\r\n	border: 0px;\r\n	border-radius: 13px;\r\n	background: #fff;\r\n	border: 1px solid #ccc;\r\n}\r\n.ui-slider {\r\n	height: 6px;\r\n	background: transparent !important;\r\n	margin: 7px 0px;\r\nborder:1px solid #ABAAAA !important;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell input[type=\"text\"] {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #CECECE;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 3px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\na.ui-spinner-button:hover{\r\n	background: #029A95 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-spinner-button:active{\r\n	background: #029A95 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-spinner-button:focus{\r\n	background: #029A95 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-slider-handle:hover{\r\n	background: #029A95 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-slider-handle:active{\r\n	background: #029A95 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-slider-handle:focus{\r\n	background: #029A95 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\nui-state-hover {\r\n	background: #029A95 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\n.ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-content .ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-header .ui-state-default {\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-slider-range {\r\n	background: #ccc !important;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #DCDCDC;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\n	border: 0px !important;\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n.sel-wrap select {\r\n	position: absolute;\r\n z-index:-1;\r\n width: 0px !important;\r\n}\r\n.sel-imul {\r\n	display: inline-block;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	padding: 2px 0px 2px 4px;\r\n	font-size: 13px;\r\n	height: 23px;\r\n	line-height: 20px;\r\n	overflow: hidden;\r\n	background: transparent;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n	border: 1px solid #ABAAAA;\r\n	border-radius: 7px;\r\n	color: #4C4C4C;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 25px;\r\n	width: 28px;\r\n	background: url([SITE_ROOT]/images/06/01.png) no-repeat 0% 50%;\r\n	position: absolute;\r\n	top: -1px;\r\n	right: 0px;\r\n	padding: 2px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text]{\r\n	margin: 0px;\r\n}\r\ninput[type=password]{\r\n	margin: 0px;\r\n}\r\ninput[type=url]{\r\n	margin: 0px;\r\n}\r\ninput[type=email]{\r\n	margin: 0px;\r\n}\r\ninput.text{\r\n	margin: 0px;\r\n}\r\ninput.title{\r\n	margin: 0px;\r\n}\r\ntextarea{\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	background: #fff;\r\n	position: absolute;\r\n	border-radius: 4px;\r\n	height: 24px;\r\n	border: 1px solid #ccc;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	direction: rtl;\r\n	padding-top: 3px;\r\n	margin-top: 2px;\r\n}\r\n.file-picker {\r\n	width: 66px;\r\n	height: 49px;\r\n	background: url([SITE_ROOT]/images/06/upload.png) no-repeat;\r\n	display: inline-block;\r\n}\r\n.next-page\r\n{\r\n        width:inherit !important;\r\n}\r\n.next-page div.wdform-page-button {\r\n	color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 35px;\r\n	line-height: 32px;\r\n	background: url([SITE_ROOT]/images/06/next.png) no-repeat right #019993;\r\n 	padding: 0px 36px 0 20px ;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	margin-right: 20px;\r\n	margin-left: 20px;\r\n	border: 1px solid #018580;\r\n\r\n}\r\n.next-page div.wdform-page-button:hover {\r\n	background: url([SITE_ROOT]/images/06/next.png) no-repeat right #00C5BD;\r\n}\r\n.previous-page\r\n{\r\n        width:inherit !important;\r\n}\r\n.previous-page div.wdform-page-button {\r\n	color: #A2A2A2;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 35px;\r\n	line-height: 35px;\r\n	background: url([SITE_ROOT]/images/06/previous.png) no-repeat left #F0EFEF;\r\n	padding: 0 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	margin-right: 20px;\r\n	margin-left: 20px;\r\n	border: 1px solid #959595;\r\n}\r\n.previous-page div.wdform-page-button:hover {\r\n	background: url([SITE_ROOT]/images/06/previous.png) no-repeat left #E8E8E8;\r\n}\r\n.previous-page div.wdform-page-button:before {\r\n	content: \" \";\r\n	background: url([SITE_ROOT]/images/06/previous.png) no-repeat left;\r\n	height: 19px;\r\n	width: 20px;\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	top: -2px;\r\n	position: relative;\r\n}\r\n.button-submit {\r\n	color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 35px;\r\n	line-height: 35px;\r\n	background: #019993;\r\n	padding: 0px 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	border: 1px solid #018580;\r\n}\r\n.button-submit:hover {\r\n	background: #00C5BD;\r\n}\r\n.button-reset {\r\n	color: #A2A2A2;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 35px;\r\n	line-height: 35px;\r\n	background: #F0EFEF;\r\n	padding: 0 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	border: 1px solid #959595;\r\n	margin-left: 5px;\r\n}\r\n.button-reset:hover {\r\n	background: #E8E8E8;\r\n}\r\n.wdform_page {\r\n	background: #B1EBE9;\r\n	padding: 15px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_column {\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n}\r\n.wdform_column>div {\r\n	border-bottom: 0px solid #E7E7E7;\r\n}\r\n.wdform_column>.wdform_row:last-child {\r\n	border-bottom: 0px solid #E7E7E7;\r\n}\r\n.wdform_section_break2 {\r\n	margin: 16px 10px 16px 0px;\r\n	display: inline-block;\r\n	background: #029A95;\r\n	color: #ffffff !important;\r\n	font-size: 16px;\r\n	text-align: left;\r\npadding: 7px 30px 10px;\r\n}\r\n\r\n.wdform_section_break2 p{\r\n	color: #ffffff !important;\r\n	\r\n}\r\n\r\n.wdform_section_break2:after {\r\n	content: \" \" ;\r\n	position: relative;\r\n	width: 16px;\r\n	height: 13px;\r\n	top: -3px;\r\n	left: 1px;\r\n	box-shadow: 0px 7px 2px #c9c9c9;\r\n}\r\n\r\n.wdform_section_break\r\n{\r\n	margin: 16px 10px 16px 0px;\r\ncolor:#4C4C4C;\r\nfont-size: 16px;\r\n}\r\n.wdform_section {\r\n	display: table-row;\r\n}\r\nselect {\r\n	border-radius: 5px;\r\n	height: 27px;\r\n	overflow: hidden;\r\n	padding: 2px;\r\nborder: 1px solid #ABAAAA;\r\nbackground: transparent;\r\ncolor: #5C5C5C;\r\n	outline: none;\r\n}\r\ninput[type=\"text\"]{\r\n	border: 1px solid #ABAAAA;\r\n	height: 25px;\r\n	padding:0 3px !important;\r\n	border-radius: 5px;\r\n	background: transparent;\r\n	color: #5C5C5C;\r\n}\r\ninput[type=\"password\"]{\r\n	border: 1px solid #ABAAAA;\r\n	height: 25px;\r\n	padding:0 3px !important;\r\n	border-radius: 5px;\r\n	background: transparent;\r\n	color: #5C5C5C;\r\n}\r\ntextarea {\r\n	border: 1px solid #ABAAAA;\r\n	height: 25px;\r\n	padding:0 3px !important;\r\n	border-radius: 5px;\r\n	background: transparent;\r\n	color: #5C5C5C;\r\n}\r\ninput[type=\"text\"]:focus{\r\n	border: 1px solid #029A95;\r\n	outline: none;\r\n}\r\ninput[type=\"password\"]:focus{\r\n	border: 1px solid #029A95;\r\n	outline: none;\r\n}\r\ntextarea:focus{\r\n	border: 1px solid #029A95;\r\n	outline: none;\r\n}\r\n\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 30px;\r\n	vertical-align: middle;\r\n}\r\n.checkbox-div input[type=checkbox] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.checkbox-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #029A95;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n}\r\n.checkbox-div label {\r\n	cursor: pointer;\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)\";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: \" \";\r\n	position: absolute;\r\n	width: 16px;\r\n	height: 13px;\r\n	background: url([SITE_ROOT]/images/03/checkbox.png);\r\n	border-radius: 0px;\r\n	top: -3px;\r\n	left: 1px;\r\n}\r\n.checkbox-div label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .checkbox-div label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div input[type=checkbox]:checked + label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/06/date.png) no-repeat left 50% !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 20px;\r\n	height: 24px;\r\n	position: relative;\r\n	left: -22px;\r\n	vertical-align: top;\r\n	outline: none;\r\n}\r\n.radio-div input[type=radio] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n.radio-div {\r\n	width: 14px;\r\n	height: 13px;\r\n	background: #fff;\r\n	border: 1px solid #ccc;\r\n	border-radius: 7px;\r\n	position: relative;\r\n	display: inline-block;\r\n	box-shadow: 0px 3px 9px 1px rgb(218, 218, 218) inset;\r\n}\r\n.radio-div label {\r\n	cursor: pointer;\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)\";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: \" \";\r\n	position: absolute;\r\n	width: 16px;\r\n	height: 13px;\r\n	background: url([SITE_ROOT]/images/03/checkbox.png);\r\n	border-radius: 0px;\r\n	top: -3px;\r\n	left: 2px;\r\n}\r\n.radio-div label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .radio-div label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div input[type=radio]:checked + label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.if-ie-div-label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #4C4C4C;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	padding-top: 5px;\r\n	margin-top: 15px;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: \"Lucida Grande\", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #000;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #4C4C4C;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: red;\r\n	vertical-align: top;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\n	font-size: 12px;\r\n color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 20px;\r\n	text-align: center;\r\n	vertical-align: bottom;\r\n	padding: 5px 25px 0px 25px;\r\n	font-weight: bold;\r\n	background-color: #029A95;\r\n	margin-right: 1px;\r\n}\r\n.page_active {\r\n	color: #fff;\r\n	cursor: pointer;\r\n	background-color: #00DAD3;\r\n	display: inline-block;\r\n	vertical-align: bottom;\r\n	height: 20px;\r\n	text-align: center;\r\n	font-size: 16px;\r\n	padding: 5px 25px 0px 25px;\r\n	margin-right: 1px;\r\n}\r\n.page_percentage_active {\r\n	padding: 0px;\r\n	margin: 0px;\r\n	border-spacing: 0px;\r\n	height: 23px;\r\n	line-height: 23px;\r\n	font-size: 15px;\r\n	float: left;\r\n	text-align: right !important;\r\n	z-index: 1;\r\n	position: relative;\r\n	vertical-align: middle;\r\n	background: #01B3AD ;\r\n	background: -moz-linear-gradient(left, #01B3AD 0%, #01CDC6 39%, #02DED6 100%);\r\n	background: -webkit-gradient(linear, left top, right top, color-stop(0%, #01B3AD ), color-stop(39%, #01CDC6 ), color-stop(100%, #02DED6 ));\r\n	background: -webkit-linear-gradient(left, #01B3AD 0%, #01CDC6 39%, #02DED6 100%);\r\n	background: -o-linear-gradient(left, #01B3AD 0%, #01CDC6 39%, #02DED6 100%);\r\n	background: -ms-linear-gradient(left, #01B3AD 0%, #01CDC6 39%, #02DED6 100%);\r\nlinear-gradient(to right, #01B3AD 0%, #01CDC6 39%, #02DED6 100%)\r\n}\r\n.page_percentage_deactive {\r\n	height: 23px;\r\n	line-height: 23px;\r\n	background-color: #029A95;\r\n	text-align: left !important;\r\n	margin-bottom: 1px;\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: left !important;\r\n	margin-bottom: 0px;\r\n}\r\n.wdform_percentage_text {\r\n	margin: 3px 5px 3px 9px;\r\n	color: #ffffff;\r\n	font-weight: bold;\r\n}\r\n.wdform_percentage_title {\r\n	color: #ffffff;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 23px;\r\n	height: 23px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_button button {\r\n	background: #0E4D92;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 4px;\r\n	min-width: 80px;\r\n	min-height: 27px;\r\n	color: #fff;\r\n	border: 2px solid #0E3F77;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_button button:active {\r\n	border: 2px solid #0B2D52;\r\n	background: #0E3F77;\r\n}\r\n\r\n.wdform-section-break-div\r\n{\r\nborder-top:1px solid #ABAAAA !important;\r\n}", "0");
INSERT INTO `wp_formmaker_themes` VALUES("21", "Theme 06 blue", ".wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #BBDBE7;\r\nborder: 1px solid #25A5DF;\r\nmargin-bottom: 10px;\r\ncolor: #25A5DF;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\na.ui-slider-handle {\r\n	width: 16px;\r\n	height: 16px;\r\n	top: -6px;\r\n	border: 0px;\r\n	border-radius: 13px;\r\n	background: #fff;\r\n	border: 1px solid #ccc;\r\n}\r\n.ui-slider {\r\n	height: 6px;\r\n	background: transparent !important;\r\n	margin: 7px 0px;\r\nborder:1px solid #ABAAAA !important;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell input[type=\"text\"] {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #CECECE;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 3px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\na.ui-spinner-button:hover{\r\n	background: #0176AA !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-spinner-button:active{\r\n	background: #0176AA !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-spinner-button:focus{\r\n	background: #0176AA !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-slider-handle:hover{\r\n	background: #0176AA !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-slider-handle:active{\r\n	background: #0176AA !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-slider-handle:focus{\r\n	background: #0176AA !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\nui-state-hover {\r\n	background: #0176AA !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\n.ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-content .ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-header .ui-state-default {\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-slider-range {\r\n	background: #ccc !important;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #DCDCDC;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\n	border: 0px !important;\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n.sel-wrap select {\r\n	position: absolute;\r\n z-index:-1;\r\n width: 0px !important;\r\n}\r\n.sel-imul {\r\n	display: inline-block;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	padding: 2px 0px 2px 4px;\r\n	font-size: 13px;\r\n	height: 23px;\r\n	line-height: 20px;\r\n	overflow: hidden;\r\n	background: transparent;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n	border: 1px solid #ABAAAA;\r\n	border-radius: 7px;\r\n	color: #4C4C4C;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 25px;\r\n	width: 28px;\r\n	background: url([SITE_ROOT]/images/06/01.png) no-repeat 0% 50%;\r\n	position: absolute;\r\n	top: -1px;\r\n	right: 0px;\r\n	padding: 2px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text]{\r\n	margin: 0px;\r\n}\r\ninput[type=password]{\r\n	margin: 0px;\r\n}\r\ninput[type=url]{\r\n	margin: 0px;\r\n}\r\ninput[type=email]{\r\n	margin: 0px;\r\n}\r\ninput.text{\r\n	margin: 0px;\r\n}\r\ninput.title{\r\n	margin: 0px;\r\n}\r\ntextarea{\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	background: #fff;\r\n	position: absolute;\r\n	border-radius: 4px;\r\n	height: 24px;\r\n	border: 1px solid #ccc;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	direction: rtl;\r\n	padding-top: 3px;\r\n	margin-top: 2px;\r\n}\r\n.file-picker {\r\n	width: 66px;\r\n	height: 49px;\r\n	background: url([SITE_ROOT]/images/06/upload.png) no-repeat;\r\n	display: inline-block;\r\n}\r\n.next-page div.wdform-page-button {\r\n	color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 35px;\r\n	line-height: 32px;\r\nbackground: url([SITE_ROOT]/images/06/next.png) no-repeat right #0D66B1;\r\n	padding: 0px 36px 0 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	margin-right: 20px;\r\n	margin-left: 20px;\r\nborder: 1px solid #107DAF;\r\n}\r\n.next-page div.wdform-page-button:hover {\r\nbackground: url([SITE_ROOT]/images/06/next.png) no-repeat right #25A5DF;\r\n}\r\n.previous-page div.wdform-page-button {\r\n	color: #A2A2A2;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 35px;\r\n	line-height: 32px;\r\n	background: url([SITE_ROOT]/images/06/previous.png) no-repeat left #F0EFEF;\r\n	padding: 0 20px 0 36px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	margin-right: 20px;\r\n	margin-left: 20px;\r\n	border: 1px solid #959595;\r\n}\r\n.previous-page div.wdform-page-button:hover {\r\n	background: url([SITE_ROOT]/images/06/previous.png) no-repeat left #E8E8E8;\r\n}\r\n.button-submit {\r\n	color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 35px;\r\n	line-height: 35px;\r\n	background: #0D66B1;\r\n	padding: 0px 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	border: 1px solid #107DAF;\r\n}\r\n.button-submit:hover {\r\n	background: #25A5DF;\r\n}\r\n.button-reset {\r\n	color: #A2A2A2;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 35px;\r\n	line-height: 35px;\r\n	background: #F0EFEF;\r\n	padding: 0 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	border: 1px solid #959595;\r\n	margin-left: 5px;\r\n}\r\n.button-reset:hover {\r\n	background: #E8E8E8;\r\n}\r\n.wdform_page {\r\n	background: #BBDBE7;\r\n	padding: 15px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_column {\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n}\r\n.wdform_column>div {\r\n	border-bottom: 0px solid #E7E7E7;\r\n}\r\n.wdform_column>.wdform_row:last-child {\r\n	border-bottom: 0px solid #E7E7E7;\r\n}\r\n.wdform_section_break2 {\r\n	margin: 16px 10px 16px 0px;\r\n	display: inline-block;\r\n	background: #0D66B1;\r\n	color: #ffffff;\r\n	font-size: 16px;\r\n	text-align: left;\r\npadding: 7px 30px 10px;\r\n}\r\n\r\n.wdform_section_break2:after {\r\n	content: \" \" ;\r\n	position: relative;\r\n	width: 16px;\r\n	height: 13px;\r\n	top: -3px;\r\n	left: 1px;\r\n	box-shadow: 0px 7px 2px #c9c9c9;\r\n}\r\n\r\n.wdform_section_break\r\n{\r\n	margin: 16px 10px 16px 0px;\r\ncolor:#4C4C4C;\r\n	font-size: 16px;\r\n}\r\n.wdform_section {\r\n	display: table-row;\r\n}\r\nselect {\r\n	border-radius: 5px;\r\n	height: 27px;\r\n	overflow: hidden;\r\n	padding: 2px;\r\nborder: 1px solid #ABAAAA;\r\nbackground: transparent;\r\ncolor: #5C5C5C;\r\n	outline: none;\r\n}\r\ninput[type=\"text\"]{\r\n	border: 1px solid #ABAAAA;\r\n	height: 25px;\r\n	padding:0 3px !important;\r\n	border-radius: 5px;\r\n	background: transparent;\r\n	color: #5C5C5C;\r\n}\r\ninput[type=\"password\"]{\r\n	border: 1px solid #ABAAAA;\r\n	height: 25px;\r\n	padding:0 3px !important;\r\n	border-radius: 5px;\r\n	background: transparent;\r\n	color: #5C5C5C;\r\n}\r\ntextarea {\r\n	border: 1px solid #ABAAAA;\r\n	height: 25px;\r\n	padding:0 3px !important;\r\n	border-radius: 5px;\r\n	background: transparent;\r\n	color: #5C5C5C;\r\n}\r\ninput[type=\"text\"]:focus{\r\n	border: 1px solid #0176AA ;\r\n	outline: none;\r\n}\r\ninput[type=\"password\"]:focus{\r\n	border: 1px solid #0176AA ;\r\n	outline: none;\r\n}\r\ntextarea:focus{\r\n	border: 1px solid #0176AA ;\r\n	outline: none;\r\n}\r\n\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 30px;\r\n	vertical-align: middle;\r\n}\r\n.checkbox-div input[type=checkbox] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.checkbox-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #0176AA ;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n}\r\n.checkbox-div label {\r\n	cursor: pointer;\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)\";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: \" \";\r\n	position: absolute;\r\n	width: 16px;\r\n	height: 13px;\r\n	background: url([SITE_ROOT]/images/03/checkbox.png);\r\n	border-radius: 0px;\r\n	top: -3px;\r\n	left: 1px;\r\n}\r\n.checkbox-div label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .checkbox-div label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div input[type=checkbox]:checked + label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/06/date.png) no-repeat left 50% !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 20px;\r\n	height: 24px;\r\n	position: relative;\r\n	left: -22px;\r\n	vertical-align: top;\r\n	outline: none;\r\n}\r\n.radio-div input[type=radio] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n.radio-div {\r\n	width: 14px;\r\n	height: 13px;\r\n	background: #fff;\r\n	border: 1px solid #ccc;\r\n	border-radius: 7px;\r\n	position: relative;\r\n	display: inline-block;\r\nbox-shadow: 0px 3px 9px 1px rgb(218, 218, 218) inset;\r\n}\r\n.radio-div label {\r\n	cursor: pointer;\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)\";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: \" \";\r\n	position: absolute;\r\n	width: 16px;\r\n	height: 13px;\r\n	background: url([SITE_ROOT]/images/03/checkbox.png);\r\n	border-radius: 0px;\r\n	top: -3px;\r\n	left: 2px;\r\n}\r\n.radio-div label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .radio-div label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div input[type=radio]:checked + label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.if-ie-div-label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #4C4C4C;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	padding-top: 5px;\r\n	margin-top: 15px;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: \"Lucida Grande\", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #000;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #4C4C4C;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: red;\r\n	vertical-align: top;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\n	font-size: 12px;\r\n color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 20px;\r\n	text-align: center;\r\n	vertical-align: bottom;\r\n	padding: 5px 25px 0px 25px;\r\n	font-weight: bold;\r\n	background-color: #0176AA;\r\n	margin-right: 1px;\r\n}\r\n.page_active {\r\n	color: #fff;\r\n	cursor: pointer;\r\n	background-color: #008AFF;\r\n	display: inline-block;\r\n	vertical-align: bottom;\r\n	height: 20px;\r\n	text-align: center;\r\n	font-size: 16px;\r\n	padding: 5px 25px 0px 25px;\r\n	margin-right: 1px;\r\n}\r\n.page_percentage_active {\r\n	padding: 0px;\r\n	margin: 0px;\r\n	border-spacing: 0px;\r\n	height: 23px;\r\n	line-height: 23px;\r\n	font-size: 15px;\r\n	float: left;\r\n	text-align: right !important;\r\n	z-index: 1;\r\n	position: relative;\r\n	vertical-align: middle;\r\n	background: #0073D3 ;\r\n	background: -moz-linear-gradient(left, #0073D3 0%, #008FE1 39%, #00A7ED 100%);\r\n	background: -webkit-gradient(linear, left top, right top, color-stop(0%, #0073D3 ), color-stop(39%, #008FE1 ), color-stop(100%, #00A7ED ));\r\n	background: -webkit-linear-gradient(left, #0073D3 0%, #008FE1 39%, #00A7ED 100%);\r\n	background: -o-linear-gradient(left, #0073D3 0%, #008FE1 39%, #00A7ED 100%);\r\nbackground: -webkit-linear-gradient(left, #0073D3 0%, #008FE1 39%, #00A7ED 100%);\r\n}\r\n.page_percentage_deactive {\r\n	height: 23px;\r\n	line-height: 23px;\r\n	background-color: #0176AA;\r\n	text-align: left !important;\r\n	margin-bottom: 1px;\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: left !important;\r\n	margin-bottom: 0px;\r\n}\r\n.wdform_percentage_text {\r\n	margin: 3px 5px 3px 9px;\r\n	color: #ffffff;\r\n	font-weight: bold;\r\n}\r\n.wdform_percentage_title {\r\n	color: #ffffff;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 23px;\r\n	height: 23px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_button button {\r\n	background: #0E4D92;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 4px;\r\n	min-width: 80px;\r\n	min-height: 27px;\r\n	color: #fff;\r\n	border: 2px solid #0E3F77;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_button button:active {\r\n	border: 2px solid #0B2D52;\r\n	background: #0E3F77;\r\n}\r\n\r\n.wdform-section-break-div\r\n{\r\nborder-top:1px solid #ABAAAA !important;\r\n}", "0");
INSERT INTO `wp_formmaker_themes` VALUES("22", "Theme 06 orange", ".wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #F0EEEF;\r\nborder: 1px solid #FAB17A;\r\nmargin-bottom: 10px;\r\ncolor: #FAB17A;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\na.ui-slider-handle {\r\n	width: 16px;\r\n	height: 16px;\r\n	top: -6px;\r\n	border: 0px;\r\n	border-radius: 13px;\r\n	background: #fff;\r\n	border: 1px solid #ccc;\r\n}\r\n.ui-slider {\r\n	height: 6px;\r\n	background: transparent !important;\r\n	margin: 7px 0px;\r\nborder:1px solid #ABAAAA !important;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell input[type=\"text\"] {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #CECECE;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 3px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\na.ui-spinner-button:hover{\r\n	background: #FFA15C !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-spinner-button:active{\r\n	background: #FFA15C !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-spinner-button:focus{\r\n	background: #FFA15C !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-slider-handle:hover{\r\n	background: #FFA15C !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-slider-handle:active{\r\n	background: #FFA15C !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-slider-handle:focus{\r\n	background: #FFA15C !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\nui-state-hover {\r\n	background: #FFA15C !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\n.ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-content .ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-header .ui-state-default {\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-slider-range {\r\n	background: #ccc !important;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #DCDCDC;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\n	border: 0px !important;\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n.sel-wrap select {\r\n	position: absolute;\r\n z-index:-1;\r\n width: 0px !important;\r\n}\r\n.sel-imul {\r\n	display: inline-block;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	padding: 2px 0px 2px 4px;\r\n	font-size: 13px;\r\n	height: 23px;\r\n	line-height: 20px;\r\n	overflow: hidden;\r\n	background: transparent;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n	border: 1px solid #ABAAAA;\r\n	border-radius: 7px;\r\n	color: #4C4C4C;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 25px;\r\n	width: 28px;\r\n	background: url([SITE_ROOT]/images/06/01.png) no-repeat 0% 50%;\r\n	position: absolute;\r\n	top: -1px;\r\n	right: 0px;\r\n	padding: 2px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text]{\r\n	margin: 0px;\r\n}\r\ninput[type=password]{\r\n	margin: 0px;\r\n}\r\ninput[type=url]{\r\n	margin: 0px;\r\n}\r\ninput[type=email]{\r\n	margin: 0px;\r\n}\r\ninput.text{\r\n	margin: 0px;\r\n}\r\ninput.title{\r\n	margin: 0px;\r\n}\r\ntextarea{\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	background: #fff;\r\n	position: absolute;\r\n	border-radius: 4px;\r\n	height: 24px;\r\n	border: 1px solid #ccc;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	direction: rtl;\r\n	padding-top: 3px;\r\n	margin-top: 2px;\r\n}\r\n.file-picker {\r\n	width: 66px;\r\n	height: 49px;\r\n	background: url([SITE_ROOT]/images/06/upload.png) no-repeat;\r\n	display: inline-block;\r\n}\r\n.next-page div.wdform-page-button {\r\ncolor: #473C34;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 35px;\r\n	line-height: 32px;\r\n	background:url([SITE_ROOT]/images/06/01/next.png) no-repeat right #FFA15C;\r\n	padding: 0px 36px 0 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	margin-right: 20px;\r\n	margin-left: 20px;\r\n	border: 1px solid #C78655;\r\n}\r\n\r\n.next-page div.wdform-page-button:hover {\r\n	background:url([SITE_ROOT]/images/06/01/next.png) no-repeat right #FAB17A;\r\n}\r\n.previous-page div.wdform-page-button {\r\n	color: #A2A2A2;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 35px;\r\n	line-height: 32px;\r\n	background: url([SITE_ROOT]/images/06/previous.png) no-repeat left #F0EFEF;\r\n	padding: 0 20px 0 36px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	margin-right: 20px;\r\n	margin-left: 20px;\r\n	border: 1px solid #959595;\r\n}\r\n.previous-page div.wdform-page-button:hover {\r\n	background: url([SITE_ROOT]/images/06/previous.png) no-repeat left #E8E8E8;\r\n}\r\n.button-submit {\r\ncolor: #473C34;\r\ncursor: pointer;\r\ndisplay: inline-block;\r\nheight: 35px;\r\nline-height: 35px;\r\nbackground: #FFA15C;\r\npadding: 0px 20px;\r\nvertical-align: middle;\r\nfont-size: 18px;\r\nborder: 1px solid #C78655;\r\n}\r\n.button-submit:hover {\r\n	background: #FAB17A;\r\n}\r\n.button-reset {\r\n	color: #A2A2A2;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 35px;\r\n	line-height: 35px;\r\n	background: #F0EFEF;\r\n	padding: 0 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	border: 1px solid #959595;\r\n	margin-left: 5px;\r\n}\r\n.button-reset:hover {\r\n	background: #E8E8E8;\r\n}\r\n.wdform_page {\r\n	background: #F0EEEF;\r\n	padding: 15px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_column {\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n}\r\n.wdform_column>div {\r\n	border-bottom: 0px solid #E7E7E7;\r\n}\r\n.wdform_column>.wdform_row:last-child {\r\n	border-bottom: 0px solid #E7E7E7;\r\n}\r\n.wdform_section_break2{\r\n	margin: 16px 10px 16px 0px;\r\n	display: inline-block;\r\n	background: #FFA15C ;\r\n	color: #030303;\r\n	font-size: 16px;\r\n	text-align: left;\r\npadding: 7px 30px 10px;\r\n}\r\n\r\n.wdform_section_break2:after {\r\n	content: \" \" ;\r\n	position: relative;\r\n	width: 16px;\r\n	height: 13px;\r\n	top: -3px;\r\n	left: 1px;\r\n	box-shadow: 0px 7px 2px #c9c9c9;\r\n}\r\n\r\n.wdform_section_break\r\n{\r\n	margin: 16px 10px 16px 0px;\r\ncolor:#4C4C4C;\r\n	font-size: 16px;\r\n}\r\n.wdform_section {\r\n	display: table-row;\r\n}\r\nselect {\r\n	border-radius: 5px;\r\n	height: 27px;\r\n	overflow: hidden;\r\n	padding: 2px;\r\nborder: 1px solid #ABAAAA;\r\nbackground: transparent;\r\ncolor: #5C5C5C;\r\n	outline: none;\r\n}\r\ninput[type=\"text\"]{\r\n	border: 1px solid #ABAAAA;\r\n	height: 25px;\r\n	padding:0 3px !important;\r\n	border-radius: 5px;\r\n	background: transparent;\r\n	color: #5C5C5C;\r\n}\r\ninput[type=\"password\"]{\r\n	border: 1px solid #ABAAAA;\r\n	height: 25px;\r\n	padding:0 3px !important;\r\n	border-radius: 5px;\r\n	background: transparent;\r\n	color: #5C5C5C;\r\n}\r\ntextarea {\r\n	border: 1px solid #ABAAAA;\r\n	height: 25px;\r\n	padding:0 3px !important;\r\n	border-radius: 5px;\r\n	background: transparent;\r\n	color: #5C5C5C;\r\n}\r\ninput[type=\"text\"]:focus{\r\n	border: 1px solid #FFA15C ;\r\n	outline: none;\r\n}\r\ninput[type=\"password\"]:focus{\r\n	border: 1px solid #FFA15C ;\r\n	outline: none;\r\n}\r\ntextarea:focus{\r\n	border: 1px solid #FFA15C ;\r\n	outline: none;\r\n}\r\n\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 30px;\r\n	vertical-align: middle;\r\n}\r\n.checkbox-div input[type=checkbox] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.checkbox-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #FFA15C ;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n}\r\n.checkbox-div label {\r\n	cursor: pointer;\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)\";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: \" \";\r\n	position: absolute;\r\n	width: 16px;\r\n	height: 13px;\r\n	background: url([SITE_ROOT]/images/03/checkbox.png);\r\n	border-radius: 0px;\r\n	top: -3px;\r\n	left: 1px;\r\n}\r\n.checkbox-div label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .checkbox-div label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div input[type=checkbox]:checked + label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/06/date.png) no-repeat left 50% !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 20px;\r\n	height: 24px;\r\n	position: relative;\r\n	left: -22px;\r\n	vertical-align: top;\r\n	outline: none;\r\n}\r\n.radio-div input[type=radio] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n.radio-div {\r\n	width: 14px;\r\n	height: 13px;\r\n	background: #fff;\r\n	border: 1px solid #ccc;\r\n	border-radius: 7px;\r\n	position: relative;\r\n	display: inline-block;\r\nbox-shadow: 0px 3px 9px 1px rgb(218, 218, 218) inset;\r\n}\r\n.radio-div label {\r\n	cursor: pointer;\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)\";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: \" \";\r\n	position: absolute;\r\n	width: 16px;\r\n	height: 13px;\r\n	background: url([SITE_ROOT]/images/03/checkbox.png);\r\n	border-radius: 0px;\r\n	top: -3px;\r\n	left: 2px;\r\n}\r\n.radio-div label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .radio-div label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div input[type=radio]:checked + label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.if-ie-div-label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #4C4C4C;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	padding-top: 5px;\r\n	margin-top: 15px;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: \"Lucida Grande\", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #000;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #4C4C4C;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: red;\r\n	vertical-align: top;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\n	font-size: 12px;\r\n color: #342114;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 20px;\r\n	text-align: center;\r\n	vertical-align: bottom;\r\n	padding: 5px 25px 0px 25px;\r\n	font-weight: bold;\r\n	background-color: #C78655;\r\n	margin-right: 1px;\r\n}\r\n.page_active {\r\n	color: #342114;\r\n	cursor: pointer;\r\n	background-color: #FF8A34;\r\n	display: inline-block;\r\n	vertical-align: bottom;\r\n	height: 20px;\r\n	text-align: center;\r\n	font-size: 16px;\r\n	padding: 5px 25px 0px 25px;\r\n	margin-right: 1px;\r\n}\r\n.page_percentage_active {\r\n	padding: 0px;\r\n	margin: 0px;\r\n	border-spacing: 0px;\r\n	height: 23px;\r\n	line-height: 23px;\r\n	font-size: 15px;\r\n	float: left;\r\n	text-align: right !important;\r\n	z-index: 1;\r\n	position: relative;\r\n	vertical-align: middle;\r\n	background: #FF8932 ;\r\n	background: -moz-linear-gradient(left, #F3BA28 0%, #FFD325 39%, #FEB824 100%);\r\n	background: -webkit-gradient(linear, left top, right top, color-stop(0%, #F3BA28 ), color-stop(39%, #FFD325 ), color-stop(100%, #FEB824 ));\r\n	background: -o-linear-gradient(left, #F3BA28 0%, #FFD325 39%, #FEB824 100%);\r\nbackground: -ms-linear-gradient(left, #F3BA28 0%, #FFD325 39%, #FEB824 100%);\r\nbackground: -webkit-linear-gradient(left, #F3BA28 0%, #FFD325 39%, #FEB824 100%);\r\n\r\n}\r\n.page_percentage_deactive {\r\n	height: 23px;\r\n	line-height: 23px;\r\nbackground-color: #ECBE9C;\r\n	text-align: left !important;\r\n	margin-bottom: 1px;\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: left !important;\r\n	margin-bottom: 0px;\r\n}\r\n.wdform_percentage_text {\r\n	margin: 3px 5px 3px 9px;\r\n	color: #473C34;\r\n	font-weight: bold;\r\n}\r\n.wdform_percentage_title {\r\n	color: #ffffff;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 23px;\r\n	height: 23px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_button button {\r\n	background: #0E4D92;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 4px;\r\n	min-width: 80px;\r\n	min-height: 27px;\r\n	color: #fff;\r\n	border: 2px solid #0E3F77;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_button button:active {\r\n	border: 2px solid #0B2D52;\r\n	background: #0E3F77;\r\n}\r\n\r\n.wdform-section-break-div\r\n{\r\nborder-top:1px solid #ABAAAA !important;\r\n}", "0");
INSERT INTO `wp_formmaker_themes` VALUES("23", "Theme 06 transparent (light green button)", ".radio-div input[type=\"radio\"],\r\n.checkbox-div input[type=\"checkbox\"]\r\n{\r\nvisibility: hidden;\r\n}\r\n.wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #FFFFFF;\r\nborder: 1px solid #90EE90;\r\nmargin-bottom: 10px;\r\ncolor: #90EE90;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\na.ui-slider-handle {\r\n	width: 16px;\r\n	height: 16px;\r\n	top: -6px;\r\n	border: 0px;\r\n	border-radius: 13px;\r\n	background: #fff;\r\n	border: 1px solid #ccc;\r\n}\r\n.ui-slider {\r\n	height: 6px;\r\n	background: transparent !important;\r\n	margin: 7px 0px;\r\nborder:1px solid #ABAAAA !important;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell input[type=\"text\"] {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #CECECE;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 3px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\na.ui-spinner-button:hover{\r\n	background: #6BD86B !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-spinner-button:active{\r\n	background: #6BD86B !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-spinner-button:focus{\r\n	background: #6BD86B !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-slider-handle:hover{\r\n	background: #6BD86B !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-slider-handle:active{\r\n	background: #6BD86B !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-slider-handle:focus{\r\n	background: #6BD86B !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\nui-state-hover {\r\n	background: #6BD86B !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\n.ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-content .ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-header .ui-state-default {\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-slider-range {\r\n	background: #ccc !important;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #DCDCDC;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\n	border: 0px !important;\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n.sel-wrap select {\r\n	position: absolute;\r\n z-index:-1;\r\n width: 0px !important;\r\n}\r\n.sel-imul {\r\n	display: inline-block;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	padding: 2px 0px 2px 4px;\r\n	font-size: 13px;\r\n	height: 23px;\r\n	line-height: 20px;\r\n	overflow: hidden;\r\n	background: transparent;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n	border: 1px solid #ABAAAA;\r\n	border-radius: 7px;\r\n	color: #4C4C4C;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 25px;\r\n	width: 28px;\r\n	background: url([SITE_ROOT]/images/06/01.png) no-repeat 0% 50%;\r\n	position: absolute;\r\n	top: -1px;\r\n	right: 0px;\r\n	padding: 2px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text]{\r\n	margin: 0px;\r\n}\r\ninput[type=password]{\r\n	margin: 0px;\r\n}\r\ninput[type=url]{\r\n	margin: 0px;\r\n}\r\ninput[type=email]{\r\n	margin: 0px;\r\n}\r\ninput.text{\r\n	margin: 0px;\r\n}\r\ninput.title{\r\n	margin: 0px;\r\n}\r\ntextarea{\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	background: #fff;\r\n	position: absolute;\r\n	border-radius: 4px;\r\n	height: 24px;\r\n	border: 1px solid #ccc;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	direction: rtl;\r\n	padding-top: 3px;\r\n	margin-top: 2px;\r\n}\r\n.file-picker {\r\n	width: 66px;\r\n	height: 49px;\r\n	background: url([SITE_ROOT]/images/06/upload.png) no-repeat;\r\n	display: inline-block;\r\n}\r\n.next-page div.wdform-page-button {\r\ncolor: #473C34;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 35px;\r\n	line-height: 32px;\r\n	background:url([SITE_ROOT]/images/06/01/next.png) no-repeat right #6BD86B;\r\n	padding: 0px 36px 0 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	margin-right: 20px;\r\n	margin-left: 20px;\r\n	border: 1px solid #459B45;\r\n}\r\n\r\n.next-page div.wdform-page-button:hover {\r\n	background:url([SITE_ROOT]/images/06/01/next.png) no-repeat right #90EE90;\r\n}\r\n.previous-page div.wdform-page-button {\r\n	color: #A2A2A2;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 35px;\r\n	line-height: 35px;\r\n	background: url([SITE_ROOT]/images/06/previous.png) no-repeat left #F0EFEF;\r\n	padding: 0 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	margin-right: 20px;\r\n	margin-left: 20px;\r\n	border: 1px solid #959595;\r\n}\r\n.previous-page div.wdform-page-button:hover {\r\n	background: url([SITE_ROOT]/images/06/previous.png) no-repeat left #E8E8E8;\r\n}\r\n.previous-page div.wdform-page-button:before {\r\n	content: \" \";\r\n	background: url([SITE_ROOT]/images/06/previous.png) no-repeat left;\r\n	height: 19px;\r\n	width: 20px;\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	top: -2px;\r\n	position: relative;\r\n}\r\n.button-submit {\r\ncolor: #473C34;\r\ncursor: pointer;\r\ndisplay: inline-block;\r\nheight: 35px;\r\nline-height: 35px;\r\nbackground: #6BD86B;\r\npadding: 0px 20px;\r\nvertical-align: middle;\r\nfont-size: 18px;\r\nborder: 1px solid #459B45;\r\n}\r\n.button-submit:hover {\r\n	background: #90EE90;\r\n}\r\n.button-reset {\r\n	color: #A2A2A2;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 35px;\r\n	line-height: 35px;\r\n	background: #F0EFEF;\r\n	padding: 0 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	border: 1px solid #959595;\r\n	margin-left: 5px;\r\n}\r\n.button-reset:hover {\r\n	background: #E8E8E8;\r\n}\r\n.wdform_page {\r\n	background: transparent;\r\n	padding: 15px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_column {\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n}\r\n.wdform_column>div {\r\n	border-bottom: 0px solid #E7E7E7;\r\n}\r\n.wdform_column>.wdform_row:last-child {\r\n	border-bottom: 0px solid #E7E7E7;\r\n}\r\n.wdform_section_break2{\r\n	margin: 16px 10px 16px 0px;\r\n	display: inline-block;\r\n	background: #6BD86B ;\r\n	color: #030303;\r\n	font-size: 16px;\r\n	text-align: left;\r\npadding: 7px 30px 10px;\r\n}\r\n\r\n.wdform_section_break2:after {\r\n	content: \" \" ;\r\n	position: relative;\r\n	width: 16px;\r\n	height: 13px;\r\n	top: -3px;\r\n	left: 1px;\r\n	box-shadow: 0px 7px 2px #c9c9c9;\r\n}\r\n\r\n.wdform_section_break\r\n{\r\n	margin: 16px 10px 16px 0px;\r\ncolor:#4C4C4C;\r\n	font-size: 16px;\r\n}\r\n.wdform_section {\r\n	display: table-row;\r\n}\r\nselect {\r\n	border-radius: 5px;\r\n	height: 27px;\r\n	overflow: hidden;\r\n	padding: 2px;\r\nborder: 1px solid #ABAAAA;\r\nbackground: transparent;\r\ncolor: #5C5C5C;\r\n	outline: none;\r\n}\r\ninput[type=\"text\"]{\r\n	border: 1px solid #ABAAAA;\r\n	height: 25px;\r\n	padding:0 3px !important;\r\n	border-radius: 5px;\r\n	background: transparent;\r\n	color: #5C5C5C;\r\n}\r\ninput[type=\"password\"]{\r\n	border: 1px solid #ABAAAA;\r\n	height: 25px;\r\n	padding:0 3px !important;\r\n	border-radius: 5px;\r\n	background: transparent;\r\n	color: #5C5C5C;\r\n}\r\ntextarea {\r\n	border: 1px solid #ABAAAA;\r\n	height: 25px;\r\n	padding:0 3px !important;\r\n	border-radius: 5px;\r\n	background: transparent;\r\n	color: #5C5C5C;\r\n}\r\ninput[type=\"text\"]:focus{\r\n	border: 1px solid #6BD86B ;\r\n	outline: none;\r\n}\r\ninput[type=\"password\"]:focus{\r\n	border: 1px solid #6BD86B  ;\r\n	outline: none;\r\n}\r\ntextarea:focus{\r\n	border: 1px solid #6BD86B ;\r\n	outline: none;\r\n}\r\n\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 30px;\r\n	vertical-align: middle;\r\n}\r\n.checkbox-div input[type=checkbox] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.checkbox-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #6BD86B ;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n}\r\n.checkbox-div label {\r\n	cursor: pointer;\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)\";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: \" \";\r\n	position: absolute;\r\n	width: 16px;\r\n	height: 13px;\r\n	background: url([SITE_ROOT]/images/03/checkbox.png);\r\n	border-radius: 0px;\r\n	top: -3px;\r\n	left: 1px;\r\n}\r\n.checkbox-div label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .checkbox-div label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div input[type=checkbox]:checked + label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/06/date.png) no-repeat left 50% !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 20px;\r\n	height: 24px;\r\n	position: relative;\r\n	left: -22px;\r\n	vertical-align: top;\r\n	outline: none;\r\n}\r\n.radio-div input[type=radio] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n.radio-div {\r\n	width: 14px;\r\n	height: 13px;\r\n	background: #fff;\r\n	border: 1px solid #ccc;\r\n	border-radius: 7px;\r\n	position: relative;\r\n	display: inline-block;\r\nbox-shadow: 0px 3px 9px 1px rgb(218, 218, 218) inset;\r\n}\r\n.radio-div label {\r\n	cursor: pointer;\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)\";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: \" \";\r\n	position: absolute;\r\n	width: 16px;\r\n	height: 13px;\r\n	background: url([SITE_ROOT]/images/03/checkbox.png);\r\n	border-radius: 0px;\r\n	top: -3px;\r\n	left: 2px;\r\n}\r\n.radio-div label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .radio-div label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div input[type=radio]:checked + label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.if-ie-div-label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #4C4C4C;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	padding-top: 5px;\r\n	margin-top: 15px;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: \"Lucida Grande\", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #000;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #4C4C4C;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: red;\r\n	vertical-align: top;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\n	font-size: 12px;\r\n color: #342114;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 20px;\r\n	text-align: center;\r\n	vertical-align: bottom;\r\n	padding: 5px 25px 0px 25px;\r\n	font-weight: bold;\r\n	background-color: #90EE90;\r\n	margin-right: 1px;\r\n}\r\n.page_active {\r\n	color: #342114;\r\n	cursor: pointer;\r\n	background-color: #6BD86B;\r\n	display: inline-block;\r\n	vertical-align: bottom;\r\n	height: 20px;\r\n	text-align: center;\r\n	font-size: 16px;\r\n	padding: 5px 25px 0px 25px;\r\n	margin-right: 1px;\r\n}\r\n.page_percentage_active {\r\n	padding: 0px;\r\n	margin: 0px;\r\n	border-spacing: 0px;\r\n	height: 23px;\r\n	line-height: 23px;\r\n	font-size: 15px;\r\n	float: left;\r\n	text-align: right !important;\r\n	z-index: 1;\r\n	position: relative;\r\n	vertical-align: middle;\r\n	background: #72DB72 ;\r\n	background: -moz-linear-gradient(left, #8FEB8F 0%, #5CF35C 39%, #72DB72 100%);\r\n	background: -webkit-gradient(linear, left top, right top, color-stop(0%, #8FEB8F ), color-stop(39%, #5CF35C ), color-stop(100%, #72DB72 ));\r\n	background: -o-linear-gradient(left, #8FEB8F 0%, #5CF35C 39%, #72DB72 100%);\r\nbackground: -ms-linear-gradient(left, #8FEB8F 0%, #5CF35C 39%, #72DB72 100%);\r\nbackground: -webkit-linear-gradient(left, #8FEB8F 0%, #5CF35C 39%, #72DB72 100%);\r\n\r\n}\r\n.page_percentage_deactive {\r\n	height: 23px;\r\n	line-height: 23px;\r\nbackground-color: #E0E0E0;\r\n	text-align: left !important;\r\n	margin-bottom: 1px;\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: left !important;\r\n	margin-bottom: 0px;\r\n}\r\n.wdform_percentage_text {\r\n	margin: 3px 5px 3px 9px;\r\n	color: #473C34;\r\n	font-weight: bold;\r\n}\r\n.wdform_percentage_title {\r\n	color: #ffffff;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 23px;\r\n	height: 23px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_button button {\r\n	background: #0E4D92;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 4px;\r\n	min-width: 80px;\r\n	min-height: 27px;\r\n	color: #fff;\r\n	border: 2px solid #0E3F77;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_button button:active {\r\n	border: 2px solid #0B2D52;\r\n	background: #0E3F77;\r\n}\r\n\r\n.wdform-section-break-div\r\n{\r\nborder-top:1px solid #ABAAAA !important;\r\n}", "0");
INSERT INTO `wp_formmaker_themes` VALUES("24", "Theme 07 blue", ".wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #F0EFEF;\r\nborder: 1px solid #0072A2;\r\nmargin-bottom: 10px;\r\ncolor: #0072A2;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\na.ui-slider-handle {\r\n	width: 16px;\r\n	height: 16px;\r\n	top: -6px;\r\n	border: 0px;\r\n	border-radius: 13px;\r\n	background: #A4A4A4;\r\n	border: 1px solid #fff;\r\n	outline: none;\r\n}\r\n.ui-slider {\r\n	height: 6px;\r\n	background: #F1F1F1 !important;\r\n	margin: 7px 0px;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell input[type=\"text\"] {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #E9E9E9;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n	color: #696969;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 0px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\na.ui-spinner-button:hover{\r\n	background: #0072A2 !important;\r\n	color: #fff;\r\n}\r\na.ui-spinner-button:active{\r\n	background: #0072A2 !important;\r\n	color: #fff;\r\n}\r\na.ui-spinner-button:focus{\r\n	background: #0072A2 !important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:hover{\r\n	background: #0072A2 !important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:active{\r\n	background: #0072A2 !important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:focus{\r\n	background: #0072A2 !important;\r\n	color: #fff;\r\n}\r\nui-state-hover {\r\n	background: #0072A2 !important;\r\n	color: #fff;\r\n}\r\n.ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-content .ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-header .ui-state-default {\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-slider-range {\r\n	background: #ccc !important;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #fff;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\n	border: 0px !important;\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n.sel-wrap select {\r\n	position: absolute;\r\n z-index:-1;\r\n width: 0px !important;\r\n}\r\n.sel-imul {\r\n	display: inline-block;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	border-radius: 0px;\r\n	padding: 0px 0px 0px 2px;\r\n	font-size: 13px;\r\n	height: 22px;\r\n	line-height: 22px;\r\n	overflow: hidden;\r\n	background: #F1F1F1;\r\n	border: 0px solid #ccc;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 23px;\r\n	width: 30px;\r\n	background: url([SITE_ROOT]/images/07/01.png) 50% 50% no-repeat;\r\n	position: absolute;\r\n	top: 0px;\r\n	right: 0px;\r\n	padding: 0px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text]{\r\n	margin: 0px;\r\n}\r\ninput[type=password]{\r\n	margin: 0px;\r\n}\r\ninput[type=url]{\r\n	margin: 0px;\r\n}\r\ninput[type=email]{\r\n	margin: 0px;\r\n}\r\ninput.text{\r\n	margin: 0px;\r\n}\r\ninput.title{\r\n	margin: 0px;\r\n}\r\ntextarea{\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	position: absolute;\r\n	border-radius: 0px;\r\n	height: 23px;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	}\r\n.file-picker {\r\n	width: 71px;\r\n	height: 32px;\r\n	background: url([SITE_ROOT]/images/07/upload.png);\r\n	display: inline-block;\r\n}\r\n.next-page div.wdform-page-button {\r\n	color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 35px;\r\n	line-height: 32px;\r\n	background:url([SITE_ROOT]/images/07/next.png) no-repeat right #0072A2;\r\n	padding: 0px 36px 0 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n}\r\n.previous-page div.wdform-page-button {\r\n	color: #A2A2A2;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 35px;\r\n	line-height: 32px;\r\n	background:url([SITE_ROOT]/images/07/previous.png) no-repeat left #F0EFEF;\r\n	padding: 0 20px 0 36px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	border-right: 1px solid #CECECE;\r\n} \r\n.button-submit {\r\n	color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	line-height: 35px;\r\n	background: #0072A2;\r\n	padding: 0px 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	min-width: 80px;\r\n	min-height: 35px;\r\n	font-family: Segoe UI;\r\n	border: 1px solid transparent;\r\n	margin: 5px;\r\n}\r\n.button-reset {\r\n	color: #787878;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	line-height: 35px;\r\n	background: #F0EFEF;\r\n	padding: 0px 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	min-width: 80px;\r\n	min-height: 35px;\r\n	font-family: Segoe UI;\r\n	float: right;\r\n	border: 1px solid transparent;\r\n	margin: 5px;\r\n}\r\n.wdform_page {\r\n	background: #FFFFFF;\r\n	padding-top: 15px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_column {\r\n	border-right: none !important;\r\n	padding-right: 50px !important;\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n}\r\n.wdform_section_break2 {\r\n	color: #267EA9;\r\n	display: inline-block;\r\n	text-align: left;\r\n	font-size: 20px;\r\nmargin: 16px 0px;\r\n}\r\n\r\n.wdform_section_break {\r\n	color: #267EA9;\r\n	font-size: 20px;\r\nmargin: 16px 0px;\r\n\r\n}\r\n.wdform_section {\r\n	display: inline-block;\r\n}\r\nselect {\r\n	border-radius: 0px;\r\n	height: 24px;\r\n	overflow: hidden;\r\n	padding: 0px;\r\nbackground: #F1F1F1;\r\nborder: 1px solid transparent;\r\ncolor: #696969;\r\n	outline: none;\r\n font-size: 14px;\r\n}\r\ninput[type=\"text\"] {\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F1F1F1;\r\n	border: 1px solid transparent;\r\ncolor: #696969;\r\n font-size: 14px;\r\n}\r\ninput[type=\"password\"] {\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F1F1F1;\r\n	border: 1px solid transparent;\r\ncolor: #696969;\r\n font-size: 14px;\r\n}\r\ntextarea {\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F1F1F1;\r\n	border: 1px solid transparent;\r\ncolor: #696969;\r\n font-size: 14px;\r\n}\r\ninput[type=\"text\"]:focus{\r\n	outline: none;\r\n}\r\ninput[type=\"password\"]:focus{\r\n	outline: none;\r\n}\r\ntextarea:focus{\r\n	outline: none;\r\n}\r\n\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 30px;\r\n	vertical-align: middle;\r\n}\r\n.checkbox-div input[type=checkbox] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.checkbox-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #A7A7A7;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n}\r\n.checkbox-div label {\r\n	cursor: pointer;\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)\";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: \" \";\r\n	position: absolute;\r\n	width: 16px;\r\n	height: 13px;\r\n	background: url([SITE_ROOT]/images/03/checkbox.png);\r\n	border-radius: 0px;\r\n	top: -3px;\r\n	left: 1px;\r\n}\r\n.checkbox-div label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .checkbox-div label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div input[type=checkbox]:checked + label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/03/date.png) no-repeat !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 22px;\r\n	height: 22px;\r\n	position: relative;\r\n	left: -22px;\r\n	vertical-align: top;\r\n	outline: none;\r\n}\r\n.radio-div input[type=radio] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n.radio-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #A7A7A7;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n	top: 2px;\r\n}\r\n.radio-div label {\r\n	cursor: pointer;\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)\";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: \" \";\r\n	position: absolute;\r\n	width: 9px;\r\n	height: 8px;\r\n	background: #A7A7A7;\r\n	border-radius: 0px;\r\n	top: 2px;\r\n	left: 2px;\r\n}\r\n.radio-div label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .radio-div label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div input[type=radio]:checked + label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.if-ie-div-label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #000;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	margin-top: 15px;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: \"Lucida Grande\", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #A8A8A8;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #000;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: red;\r\n	vertical-align: top;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n	border-radius: 0px;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\n	color: #0072A2;\r\n	background-color: #ECEBEB;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 20px;\r\n	text-align: center;\r\n	vertical-align: bottom;\r\n	padding-top: 5px;\r\n	padding: 5px 25px 0px 25px;\r\n	font-size: 12px;\r\n}\r\n.page_active {\r\n	color: #fff;\r\n	cursor: pointer;\r\n	background-color: #0072A2;\r\n	display: inline-block;\r\n	vertical-align: bottom;\r\n	height: 25px;\r\n	text-align: center;\r\n	font-size: 16px;\r\n	padding: 5px 30px 0px 30px;\r\n}\r\n.page_percentage_active {\r\n	padding: 0px;\r\n	margin: 0px;\r\n	border-spacing: 0px;\r\n	height: 18px;\r\n	line-height: 18px;\r\n	font-size: 15px;\r\n	float: left;\r\n	text-align: right !important;\r\n	z-index: 1;\r\n	position: relative;\r\n	background: #006C9A; /* Old browsers */\r\n	background: -moz-linear-gradient(left, #0072A2 0%, #00709F 39%, #006A97 100%); /* FF3.6+ */\r\n	background: -webkit-gradient(linear, left top, right top, color-stop(0%, #0072A2), color-stop(39%, #00709F), color-stop(100%, #006A97)); /* Chrome,Safari4+ */\r\n	background: -webkit-linear-gradient(left, #0072A2 0%, #00709F 39%, #006A97 100%); /* Chrome10+,Safari5.1+ */\r\n	background: -o-linear-gradient(left, #0072A2 0%, #00709F 39%, #006A97 100%); /* Opera 11.10+ */\r\n	background: -ms-linear-gradient(left, #0072A2 0%, #00709F 39%, #006A97 100%); /* IE10+ */\r\n	background: linear-gradient(to right, #0072A2 0%, #00709F 39%, #006A97 100%); /* W3C */\r\n	vertical-align: middle;\r\n}\r\n.page_percentage_deactive {\r\n	height: 18px;\r\n	line-height: 20px;\r\n	background-color: #EBEAEA;\r\n	text-align: left !important;\r\n	margin-bottom: 1px;\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: center!important;\r\n	margin-bottom: 0px;\r\n}\r\n.wdform_page_navigation:after {\r\n	content: \" \";\r\n	display: block;\r\n	height: 9px;\r\n	background: url([SITE_ROOT]/images/07/0.png) no-repeat;\r\n	position: relative;\r\n	background-size: cover;\r\n	top: -9px;\r\n}\r\n.wdform_percentage_text {\r\n	margin-right:9px;\r\n	color: #FFFFFF;\r\n	font-weight: normal;\r\n	font-size: 13px;\r\n	position: relative;\r\n}\r\n.wdform_percentage_title {\r\n	color: #000000;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 20px;\r\n	height: 20px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_button button {\r\n	background: #4D792C;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 0px;\r\n	min-width: 80px;\r\n	min-height: 31px;\r\n	color: #fff;\r\n	border: 2px solid #68943B;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}\r\n", "0");
INSERT INTO `wp_formmaker_themes` VALUES("25", "Theme 07 green", ".wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #F0EFEF;\r\nborder: 1px solid #00A25B;\r\nmargin-bottom: 10px;\r\ncolor: #00A25B;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\na.ui-slider-handle {\r\n	width: 16px;\r\n	height: 16px;\r\n	top: -6px;\r\n	border: 0px;\r\n	border-radius: 13px;\r\n	background: #A4A4A4;\r\n	border: 1px solid #fff;\r\n	outline: none;\r\n}\r\n.ui-slider {\r\n	height: 6px;\r\n	background: #F1F1F1 !important;\r\n	margin: 7px 0px;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell input[type=\"text\"] {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #E9E9E9;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n	color: #696969;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 0px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\na.ui-spinner-button:hover{\r\n	background: #00A25B !important;\r\n	color: #fff;\r\n}\r\na.ui-spinner-button:active{\r\n	background: #00A25B !important;\r\n	color: #fff;\r\n}\r\na.ui-spinner-button:focus{\r\n	background: #00A25B !important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:hover{\r\n	background: #00A25B !important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:active{\r\n	background: #00A25B !important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:focus{\r\n	background: #00A25B !important;\r\n	color: #fff;\r\n}\r\nui-state-hover {\r\n	background: #00A25B !important;\r\n	color: #fff;\r\n}\r\n.ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-content .ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-header .ui-state-default {\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-slider-range {\r\n	background: #ccc !important;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #fff;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\n	border: 0px !important;\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n.sel-wrap select {\r\n	position: absolute;\r\n z-index:-1;\r\n width: 0px !important;\r\n}\r\n.sel-imul {\r\n	display: inline-block;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	border-radius: 0px;\r\n	padding: 0px 0px 0px 2px;\r\n	font-size: 13px;\r\n	height: 22px;\r\n	line-height: 22px;\r\n	overflow: hidden;\r\n	background: #F1F1F1;\r\n	border: 0px solid #ccc;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 23px;\r\n	width: 30px;\r\n	background: url([SITE_ROOT]/images/07/01.png) 50% 50% no-repeat;\r\n	position: absolute;\r\n	top: 0px;\r\n	right: 0px;\r\n	padding: 0px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text]{\r\n	margin: 0px;\r\n}\r\ninput[type=password]{\r\n	margin: 0px;\r\n}\r\ninput[type=url]{\r\n	margin: 0px;\r\n}\r\ninput[type=email]{\r\n	margin: 0px;\r\n}\r\ninput.text{\r\n	margin: 0px;\r\n}\r\ninput.title{\r\n	margin: 0px;\r\n}\r\ntextarea{\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	position: absolute;\r\n	border-radius: 0px;\r\n	height: 23px;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	}\r\n.file-picker {\r\n	width: 71px;\r\n	height: 32px;\r\n	background: url([SITE_ROOT]/images/07/upload.png);\r\n	display: inline-block;\r\n}\r\n.next-page div.wdform-page-button {\r\n	color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 35px;\r\n	line-height: 32px;\r\n	background:url([SITE_ROOT]/images/07/next.png) no-repeat right #00A25B;\r\n	padding: 0px 36px 0 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n}\r\n.previous-page div.wdform-page-button {\r\n	color: #A2A2A2;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 35px;\r\n	line-height: 32px;\r\n	background: url([SITE_ROOT]/images/07/previous.png) no-repeat left #F0EFEF;\r\n	padding: 0 20px 0 36px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	border-right: 1px solid #CECECE;\r\n}\r\n.button-submit {\r\n	color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	line-height: 35px;\r\n	background: #00A25B;\r\n	padding: 0px 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	min-width: 80px;\r\n	min-height: 35px;\r\n	font-family: Segoe UI;\r\n	border: 1px solid transparent;\r\n	margin: 5px;\r\n}\r\n.button-reset {\r\n	color: #787878;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	line-height: 35px;\r\n	background: #F0EFEF;\r\n	padding: 0px 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	min-width: 80px;\r\n	min-height: 35px;\r\n	font-family: Segoe UI;\r\n	float: right;\r\n	border: 1px solid transparent;\r\n	margin: 5px;\r\n}\r\n.wdform_page {\r\n	background: #FFFFFF;\r\n	padding-top: 15px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_column {\r\n	border-right: none !important;\r\n	padding-right: 50px !important;\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n}\r\n.wdform_section_break2 {\r\n	color: #00A25B;\r\n	display: inline-block;\r\n	text-align: left;\r\n	font-size: 20px;\r\nmargin: 16px 0px;\r\n}\r\n\r\n.wdform_section_break {\r\n	color: #00A25B;\r\n	font-size: 20px;\r\nmargin: 16px 0px;\r\n\r\n}\r\n.wdform_section {\r\n	display: inline-block;\r\n}\r\nselect {\r\n	border-radius: 0px;\r\n	height: 24px;\r\n	overflow: hidden;\r\n	padding: 0px;\r\nbackground: #F1F1F1;\r\nborder: 1px solid transparent;\r\ncolor: #696969;\r\n	outline: none;\r\n font-size: 14px;\r\n}\r\ninput[type=\"text\"] {\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F1F1F1;\r\n	border: 1px solid transparent;\r\ncolor: #696969;\r\n font-size: 14px;\r\n}\r\ninput[type=\"password\"] {\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F1F1F1;\r\n	border: 1px solid transparent;\r\ncolor: #696969;\r\n font-size: 14px;\r\n}\r\ntextarea {\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F1F1F1;\r\n	border: 1px solid transparent;\r\ncolor: #696969;\r\n font-size: 14px;\r\n}\r\ninput[type=\"text\"]:focus{\r\n	outline: none;\r\n}\r\ninput[type=\"password\"]:focus{\r\n	outline: none;\r\n}\r\ntextarea:focus{\r\n	outline: none;\r\n}\r\n\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 30px;\r\n	vertical-align: middle;\r\n}\r\n.checkbox-div input[type=checkbox] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.checkbox-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #A7A7A7;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n}\r\n.checkbox-div label {\r\n	cursor: pointer;\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)\";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: \" \";\r\n	position: absolute;\r\n	width: 16px;\r\n	height: 13px;\r\n	background: url([SITE_ROOT]/images/03/checkbox.png);\r\n	border-radius: 0px;\r\n	top: -3px;\r\n	left: 1px;\r\n}\r\n.checkbox-div label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .checkbox-div label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div input[type=checkbox]:checked + label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/03/date.png) no-repeat !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 22px;\r\n	height: 22px;\r\n	position: relative;\r\n	left: -22px;\r\n	vertical-align: top;\r\n	outline: none;\r\n}\r\n.radio-div input[type=radio] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n.radio-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #A7A7A7;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n	top: 2px;\r\n}\r\n.radio-div label {\r\n	cursor: pointer;\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)\";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: \" \";\r\n	position: absolute;\r\n	width: 9px;\r\n	height: 8px;\r\n	background: #A7A7A7;\r\n	border-radius: 0px;\r\n	top: 2px;\r\n	left: 2px;\r\n}\r\n.radio-div label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .radio-div label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div input[type=radio]:checked + label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.if-ie-div-label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #000;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	margin-top: 15px;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: \"Lucida Grande\", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #A8A8A8;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #000;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: red;\r\n	vertical-align: top;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n	border-radius: 0px;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\n	color: #00A25B;\r\n	background-color: #ECEBEB;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 20px;\r\n	text-align: center;\r\n	vertical-align: bottom;\r\n	padding-top: 5px;\r\n	padding: 5px 25px 0px 25px;\r\n	font-size: 12px;\r\n}\r\n.page_active {\r\n	color: #fff;\r\n	cursor: pointer;\r\n	background-color: #00A25B;\r\n	display: inline-block;\r\n	vertical-align: bottom;\r\n	height: 25px;\r\n	text-align: center;\r\n	font-size: 16px;\r\n	padding: 5px 30px 0px 30px;\r\n}\r\n.page_percentage_active {\r\n	padding: 0px;\r\n	margin: 0px;\r\n	border-spacing: 0px;\r\n	height: 18px;\r\n	line-height: 18px;\r\n	font-size: 15px;\r\n	float: left;\r\n	text-align: right !important;\r\n	z-index: 1;\r\n	position: relative;\r\n	background: #00A15B ; /* Old browsers */\r\n	background: -moz-linear-gradient(left, #00A25B 0%, #00A15A 39%, #00A15B 100%); /* FF3.6+ */\r\n	background: -webkit-gradient(linear, left top, right top, color-stop(0%, #00A25B ), color-stop(39%, #00A15A ), color-stop(100%, #00A15B )); /* Chrome,Safari4+ */\r\n	background: -webkit-linear-gradient(left, #00A25B 0%, #00A15A 39%, #00A15B 100%); /* Chrome10+,Safari5.1+ */\r\n	background: -o-linear-gradient(left, #00A25B 0%, #00A15A 39%, #00A15B 100%); /* Opera 11.10+ */\r\n	background: -ms-linear-gradient(left, #00A25B 0%, #00A15A  39%, #00A15B 100%); /* IE10+ */\r\nbackground: linear-gradient(to right, #00A25B 0%, #00A15A 39%, #00A15B 100%);\r\n	vertical-align: middle;\r\n}\r\n.page_percentage_deactive {\r\n	height: 18px;\r\n	line-height: 20px;\r\n	background-color: #EBEAEA;\r\n	text-align: left !important;\r\n	margin-bottom: 1px;\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: center!important;\r\n	margin-bottom: 0px;\r\n}\r\n.wdform_page_navigation:after {\r\n	content: \" \";\r\n	display: block;\r\n	height: 9px;\r\n	background: url([SITE_ROOT]/images/07/0.png) no-repeat;\r\n	position: relative;\r\n	background-size: cover;\r\n	top: -9px;\r\n}\r\n.wdform_percentage_text {\r\n	margin-right:9px;\r\n	color: #FFFFFF;\r\n	font-weight: normal;\r\n	font-size: 13px;\r\n	position: relative;\r\n}\r\n.wdform_percentage_title {\r\n	color: #000000;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 20px;\r\n	height: 20px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_button button {\r\n	background: #4D792C;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 0px;\r\n	min-width: 80px;\r\n	min-height: 31px;\r\n	color: #fff;\r\n	border: 2px solid #68943B;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}", "0");
INSERT INTO `wp_formmaker_themes` VALUES("26", "Theme 07 dark violet", ".wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #F0EFEF;\r\nborder: 1px solid #33016B;\r\nmargin-bottom: 10px;\r\ncolor: #33016B;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\na.ui-slider-handle {\r\n	width: 16px;\r\n	height: 16px;\r\n	top: -6px;\r\n	border: 0px;\r\n	border-radius: 13px;\r\n	background: #A4A4A4;\r\n	border: 1px solid #fff;\r\n	outline: none;\r\n}\r\n.ui-slider {\r\n	height: 6px;\r\n	background: #F1F1F1 !important;\r\n	margin: 7px 0px;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell input[type=\"text\"] {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #E9E9E9;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n	color: #696969;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 0px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\na.ui-spinner-button:hover{\r\n	background: #33016B !important;\r\n	color: #fff;\r\n}\r\na.ui-spinner-button:active{\r\n	background: #33016B !important;\r\n	color: #fff;\r\n}\r\na.ui-spinner-button:focus{\r\n	background: #33016B !important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:hover{\r\n	background: #33016B !important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:active{\r\n	background: #33016B !important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:focus{\r\n	background: #33016B !important;\r\n	color: #fff;\r\n}\r\nui-state-hover {\r\n	background: #33016B !important;\r\n	color: #fff;\r\n}\r\n.ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-content .ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-header .ui-state-default {\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-slider-range {\r\n	background: #ccc !important;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #fff;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\n	border: 0px !important;\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n.sel-wrap select {\r\n	position: absolute;\r\n z-index:-1;\r\n width: 0px !important;\r\n}\r\n.sel-imul {\r\n	display: inline-block;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	border-radius: 0px;\r\n	padding: 0px 0px 0px 2px;\r\n	font-size: 13px;\r\n	height: 22px;\r\n	line-height: 22px;\r\n	overflow: hidden;\r\n	background: #F1F1F1;\r\n	border: 0px solid #ccc;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 23px;\r\n	width: 30px;\r\n	background: url([SITE_ROOT]/images/07/01.png) 50% 50% no-repeat;\r\n	position: absolute;\r\n	top: 0px;\r\n	right: 0px;\r\n	padding: 0px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text]{\r\n	margin: 0px;\r\n}\r\ninput[type=password]{\r\n	margin: 0px;\r\n}\r\ninput[type=url]{\r\n	margin: 0px;\r\n}\r\ninput[type=email]{\r\n	margin: 0px;\r\n}\r\ninput.text{\r\n	margin: 0px;\r\n}\r\ninput.title{\r\n	margin: 0px;\r\n}\r\ntextarea{\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	position: absolute;\r\n	border-radius: 0px;\r\n	height: 23px;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	}\r\n.file-picker {\r\n	width: 71px;\r\n	height: 32px;\r\n	background: url([SITE_ROOT]/images/07/upload.png);\r\n	display: inline-block;\r\n}\r\n.next-page div.wdform-page-button {\r\n	color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 35px;\r\n	line-height: 32px;\r\n	background:url([SITE_ROOT]/images/07/next.png) no-repeat right #33016B;\r\n	padding: 0px 36px 0 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n}\r\n.previous-page div.wdform-page-button {\r\n	color: #A2A2A2;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 35px;\r\n	line-height: 32px;\r\n	background:url([SITE_ROOT]/images/07/previous.png) no-repeat left #F0EFEF;\r\n	padding: 0 20px 0 36px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	border-right: 1px solid #CECECE;\r\n}\r\n.button-submit {\r\n	color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	line-height: 35px;\r\n	background: #33016B;\r\n	padding: 0px 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	min-width: 80px;\r\n	min-height: 35px;\r\n	font-family: Segoe UI;\r\n	border: 1px solid transparent;\r\n	margin: 5px;\r\n}\r\n.button-reset {\r\n	color: #787878;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	line-height: 35px;\r\n	background: #F0EFEF;\r\n	padding: 0px 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	min-width: 80px;\r\n	min-height: 35px;\r\n	font-family: Segoe UI;\r\n	float: right;\r\n	border: 1px solid transparent;\r\n	margin: 5px;\r\n}\r\n.wdform_page {\r\n	background: #FFFFFF;\r\n	padding-top: 15px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_column {\r\n	border-right: none !important;\r\n	padding-right: 50px !important;\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n}\r\n.wdform_section_break2 {\r\n	color: #33016B;\r\n	display: inline-block;\r\n	text-align: left;\r\n	font-size: 20px;\r\nmargin: 16px 0px;\r\n}\r\n\r\n.wdform_section_break {\r\n	color: #33016B;\r\n	font-size: 20px;\r\nmargin: 16px 0px;\r\n\r\n}\r\n.wdform_section {\r\n	display: inline-block;\r\n}\r\nselect {\r\n	border-radius: 0px;\r\n	height: 24px;\r\n	overflow: hidden;\r\n	padding: 0px;\r\nbackground: #F1F1F1;\r\nborder: 1px solid transparent;\r\ncolor: #696969;\r\n	outline: none;\r\n font-size: 14px;\r\n}\r\ninput[type=\"text\"] {\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F1F1F1;\r\n	border: 1px solid transparent;\r\ncolor: #696969;\r\n font-size: 14px;\r\n}\r\ninput[type=\"password\"] {\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F1F1F1;\r\n	border: 1px solid transparent;\r\ncolor: #696969;\r\n font-size: 14px;\r\n}\r\ntextarea {\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F1F1F1;\r\n	border: 1px solid transparent;\r\ncolor: #696969;\r\n font-size: 14px;\r\n}\r\ninput[type=\"text\"]:focus{\r\n	outline: none;\r\n}\r\ninput[type=\"password\"]:focus{\r\n	outline: none;\r\n}\r\ntextarea:focus{\r\n	outline: none;\r\n}\r\n\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 30px;\r\n	vertical-align: middle;\r\n}\r\n.checkbox-div input[type=checkbox] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.checkbox-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #A7A7A7;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n}\r\n.checkbox-div label {\r\n	cursor: pointer;\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)\";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: \" \";\r\n	position: absolute;\r\n	width: 16px;\r\n	height: 13px;\r\n	background: url([SITE_ROOT]/images/03/checkbox.png);\r\n	border-radius: 0px;\r\n	top: -3px;\r\n	left: 1px;\r\n}\r\n.checkbox-div label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .checkbox-div label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div input[type=checkbox]:checked + label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/03/date.png) no-repeat !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 22px;\r\n	height: 22px;\r\n	position: relative;\r\n	left: -22px;\r\n	vertical-align: top;\r\n	outline: none;\r\n}\r\n.radio-div input[type=radio] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n.radio-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #A7A7A7;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n	top: 2px;\r\n}\r\n.radio-div label {\r\n	cursor: pointer;\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)\";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: \" \";\r\n	position: absolute;\r\n	width: 9px;\r\n	height: 8px;\r\n	background: #A7A7A7;\r\n	border-radius: 0px;\r\n	top: 2px;\r\n	left: 2px;\r\n}\r\n.radio-div label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .radio-div label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div input[type=radio]:checked + label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.if-ie-div-label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #000;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	margin-top: 15px;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: \"Lucida Grande\", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #A8A8A8;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #000;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: red;\r\n	vertical-align: top;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n	border-radius: 0px;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\n	color: #33016B;\r\n	background-color: #ECEBEB;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 20px;\r\n	text-align: center;\r\n	vertical-align: bottom;\r\n	padding-top: 5px;\r\n	padding: 5px 25px 0px 25px;\r\n	font-size: 12px;\r\n}\r\n.page_active {\r\n	color: #fff;\r\n	cursor: pointer;\r\n	background-color: #33016B;\r\n	display: inline-block;\r\n	vertical-align: bottom;\r\n	height: 25px;\r\n	text-align: center;\r\n	font-size: 16px;\r\n	padding: 5px 30px 0px 30px;\r\n}\r\n.page_percentage_active {\r\n	padding: 0px;\r\n	margin: 0px;\r\n	border-spacing: 0px;\r\n	height: 18px;\r\n	line-height: 18px;\r\n	font-size: 15px;\r\n	float: left;\r\n	text-align: right !important;\r\n	z-index: 1;\r\n	position: relative;\r\n	background: #33016A ; /* Old browsers */\r\n	background: -moz-linear-gradient(left, #33016B 0%, #320169 39%, #33016A 100%); /* FF3.6+ */\r\n	background: -webkit-gradient(linear, left top, right top, color-stop(0%, #33016B ), color-stop(39%, #320169 ), color-stop(100%, #33016A )); /* Chrome,Safari4+ */\r\n	background: -webkit-linear-gradient(left, #33016B 0%, #320169 39%, #33016A 100%); /* Chrome10+,Safari5.1+ */\r\n	background: -o-linear-gradient(left, #33016B 0%, #320169 39%, #33016A 100%); /* Opera 11.10+ */\r\n	background: -ms-linear-gradient(left, #33016B 0%, #320169 39%, #33016A 100%); /* IE10+ */\r\nbackground: linear-gradient(to right, #33016B 0%, #320169 39%, #33016A 100%);\r\n	vertical-align: middle;\r\n}\r\n.page_percentage_deactive {\r\n	height: 18px;\r\n	line-height: 20px;\r\n	background-color: #EBEAEA;\r\n	text-align: left !important;\r\n	margin-bottom: 1px;\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: center!important;\r\n	margin-bottom: 0px;\r\n}\r\n.wdform_page_navigation:after {\r\n	content: \" \";\r\n	display: block;\r\n	height: 9px;\r\n	background: url([SITE_ROOT]/images/07/0.png) no-repeat;\r\n	position: relative;\r\n	background-size: cover;\r\n	top: -9px;\r\n}\r\n.wdform_percentage_text {\r\n	margin-right:9px;\r\n	color: #FFFFFF;\r\n	font-weight: normal;\r\n	font-size: 13px;\r\n	position: relative;\r\n}\r\n.wdform_percentage_title {\r\n	color: #000000;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 20px;\r\n	height: 20px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_button button {\r\n	background: #4D792C;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 0px;\r\n	min-width: 80px;\r\n	min-height: 31px;\r\n	color: #fff;\r\n	border: 2px solid #68943B;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}\r\n", "0");
INSERT INTO `wp_formmaker_themes` VALUES("27", "Theme 07 transparent (burlywood button)", ".radio-div input[type=\"radio\"],\r\n.checkbox-div input[type=\"checkbox\"]\r\n{\r\nvisibility: hidden;\r\n}\r\n.wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #F0EFEF;\r\nborder: 1px solid #E6C18B;\r\nmargin-bottom: 10px;\r\ncolor: #E6C18B;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\na.ui-slider-handle {\r\n	width: 16px;\r\n	height: 16px;\r\n	top: -6px;\r\n	border: 0px;\r\n	border-radius: 13px;\r\n	background: #A4A4A4;\r\n	border: 1px solid #fff;\r\n	outline: none;\r\n}\r\n.ui-slider {\r\n	height: 6px;\r\n	background: #F1F1F1 !important;\r\n	margin: 7px 0px;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell input[type=\"text\"] {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #E9E9E9;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n	color: #696969;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 0px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\na.ui-spinner-button:hover{\r\n	background: #E6C18B !important;\r\n	color: #fff;\r\n}\r\na.ui-spinner-button:active{\r\n	background: #E6C18B !important;\r\n	color: #fff;\r\n}\r\na.ui-spinner-button:focus{\r\n	background: #E6C18B !important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:hover{\r\n	background: #E6C18B !important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:active{\r\n	background: #E6C18B !important;\r\n	color: #fff;\r\n}\r\na.ui-slider-handle:focus{\r\n	background: #E6C18B !important;\r\n	color: #fff;\r\n}\r\nui-state-hover {\r\n	background: #E6C18B !important;\r\n	color: #fff;\r\n}\r\n.ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-content .ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-header .ui-state-default {\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-slider-range {\r\n	background: #ccc !important;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #fff;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\n	border: 0px !important;\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n.sel-wrap select {\r\n	position: absolute;\r\n z-index:-1;\r\n width: 0px !important;\r\n}\r\n.sel-imul {\r\n	display: inline-block;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	border-radius: 0px;\r\n	padding: 0px 0px 0px 2px;\r\n	font-size: 13px;\r\n	height: 22px;\r\n	line-height: 22px;\r\n	overflow: hidden;\r\n	background: #F1F1F1;\r\n	border: 0px solid #ccc;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 23px;\r\n	width: 30px;\r\n	background: url([SITE_ROOT]/images/07/01.png) 50% 50% no-repeat;\r\n	position: absolute;\r\n	top: 0px;\r\n	right: 0px;\r\n	padding: 0px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text]{\r\n	margin: 0px;\r\n}\r\ninput[type=password]{\r\n	margin: 0px;\r\n}\r\ninput[type=url]{\r\n	margin: 0px;\r\n}\r\ninput[type=email]{\r\n	margin: 0px;\r\n}\r\ninput.text{\r\n	margin: 0px;\r\n}\r\ninput.title{\r\n	margin: 0px;\r\n}\r\ntextarea{\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	position: absolute;\r\n	border-radius: 0px;\r\n	height: 23px;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	}\r\n.file-picker {\r\n	width: 71px;\r\n	height: 32px;\r\n	background: url([SITE_ROOT]/images/07/upload.png);\r\n	display: inline-block;\r\n}\r\n.next-page div.wdform-page-button {\r\n	color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 35px;\r\n	line-height: 32px;\r\n	background:url([SITE_ROOT]/images/07/next.png) no-repeat right #E6C18B;\r\n	padding: 0px 36px 0 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n}\r\n.previous-page div.wdform-page-button {\r\n	color: #A2A2A2;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 35px;\r\n	line-height: 32px;\r\n	background:url([SITE_ROOT]/images/07/previous.png) no-repeat left #F0EFEF;\r\n	padding: 0 20px 0 36px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	border-right: 1px solid #CECECE;\r\n} \r\n.button-submit {\r\n	color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	line-height: 35px;\r\n	background: #E6C18B;\r\n	padding: 0px 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	min-width: 80px;\r\n	min-height: 35px;\r\n	font-family: Segoe UI;\r\n	border: 1px solid transparent;\r\n	margin: 5px;\r\n}\r\n.button-reset {\r\n	color: #787878;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	line-height: 35px;\r\n	background: #F0EFEF;\r\n	padding: 0px 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	min-width: 80px;\r\n	min-height: 35px;\r\n	font-family: Segoe UI;\r\n	float: right;\r\n	border: 1px solid transparent;\r\n	margin: 5px;\r\n}\r\n.wdform_page {\r\n	background: transparent;\r\n	padding-top: 15px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_column {\r\n	border-right: none !important;\r\n	padding-right: 50px !important;\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n}\r\n.wdform_section_break2 {\r\n	color: #267EA9;\r\n	display: inline-block;\r\n	text-align: left;\r\n	font-size: 20px;\r\nmargin: 16px 0px;\r\n}\r\n\r\n.wdform_section_break {\r\n	color: #267EA9;\r\n	font-size: 20px;\r\nmargin: 16px 0px;\r\n\r\n}\r\n.wdform_section {\r\n	display: inline-block;\r\n}\r\nselect {\r\n	border-radius: 0px;\r\n	height: 24px;\r\n	overflow: hidden;\r\n	padding: 0px;\r\nbackground: #F1F1F1;\r\nborder: 1px solid transparent;\r\ncolor: #696969;\r\n	outline: none;\r\n font-size: 14px;\r\n}\r\ninput[type=\"text\"] {\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F1F1F1;\r\n	border: 1px solid transparent;\r\ncolor: #696969;\r\n font-size: 14px;\r\n}\r\ninput[type=\"password\"] {\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F1F1F1;\r\n	border: 1px solid transparent;\r\ncolor: #696969;\r\n font-size: 14px;\r\n}\r\ntextarea {\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F1F1F1;\r\n	border: 1px solid transparent;\r\ncolor: #696969;\r\n font-size: 14px;\r\n}\r\ninput[type=\"text\"]:focus{\r\n	outline: none;\r\n}\r\ninput[type=\"password\"]:focus{\r\n	outline: none;\r\n}\r\ntextarea:focus{\r\n	outline: none;\r\n}\r\n\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 30px;\r\n	vertical-align: middle;\r\n}\r\n.checkbox-div input[type=checkbox] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.checkbox-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #A7A7A7;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n}\r\n.checkbox-div label {\r\n	cursor: pointer;\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)\";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: \" \";\r\n	position: absolute;\r\n	width: 16px;\r\n	height: 13px;\r\n	background: url([SITE_ROOT]/images/03/checkbox.png);\r\n	border-radius: 0px;\r\n	top: -3px;\r\n	left: 1px;\r\n}\r\n.checkbox-div label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .checkbox-div label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div input[type=checkbox]:checked + label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/03/date.png) no-repeat !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 22px;\r\n	height: 22px;\r\n	position: relative;\r\n	left: -22px;\r\n	vertical-align: top;\r\n	outline: none;\r\n}\r\n.radio-div input[type=radio] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n.radio-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #A7A7A7;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n	top: 2px;\r\n}\r\n.radio-div label {\r\n	cursor: pointer;\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)\";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: \" \";\r\n	position: absolute;\r\n	width: 9px;\r\n	height: 8px;\r\n	background: #A7A7A7;\r\n	border-radius: 0px;\r\n	top: 2px;\r\n	left: 2px;\r\n}\r\n.radio-div label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .radio-div label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div input[type=radio]:checked + label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.if-ie-div-label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #000;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	margin-top: 15px;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: \"Lucida Grande\", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #A8A8A8;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #000;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: red;\r\n	vertical-align: top;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n	border-radius: 0px;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\n	color: #E6C18B;\r\n	background-color: #ECEBEB;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 20px;\r\n	text-align: center;\r\n	vertical-align: bottom;\r\n	padding-top: 5px;\r\n	padding: 5px 25px 0px 25px;\r\n	font-size: 12px;\r\n}\r\n.page_active {\r\n	color: #fff;\r\n	cursor: pointer;\r\n	background-color: #E6C18B;\r\n	display: inline-block;\r\n	vertical-align: bottom;\r\n	height: 25px;\r\n	text-align: center;\r\n	font-size: 16px;\r\n	padding: 5px 30px 0px 30px;\r\n}\r\n.page_percentage_active {\r\n	padding: 0px;\r\n	margin: 0px;\r\n	border-spacing: 0px;\r\n	height: 18px;\r\n	line-height: 18px;\r\n	font-size: 15px;\r\n	float: left;\r\n	text-align: right !important;\r\n	z-index: 1;\r\n	position: relative;\r\n	background: #F3CC92 ; /* Old browsers */\r\n	background: -moz-linear-gradient(left, #F3CC92 0%, #F3CC92 39%, #F5CB8F 100%); /* FF3.6+ */\r\n	background: -webkit-gradient(linear, left top, right top, color-stop(0%, #F3CC92 ), color-stop(39%, #F3CC92 ), color-stop(100%, #F5CB8F )); /* Chrome,Safari4+ */\r\n	background: -webkit-linear-gradient(left, #F3CC92 0%, #F3CC92 39%, #F5CB8F 100%); /* Chrome10+,Safari5.1+ */\r\n	background: -o-linear-gradient(left, #F3CC92 0%, #F3CC92 39%, #F5CB8F 100%); /* Opera 11.10+ */\r\n	background: -ms-linear-gradient(left, #F3CC92 0%, #F3CC92 39%, #F5CB8F 100%); /* IE10+ */\r\n	background: linear-gradient(to right, #F3CC92 0%, #F3CC92 39%, #F5CB8F 100%); /* W3C */\r\n	vertical-align: middle;\r\n}\r\n.page_percentage_deactive {\r\n	height: 18px;\r\n	line-height: 20px;\r\n	background-color: #EBEAEA;\r\n	text-align: left !important;\r\n	margin-bottom: 1px;\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: center!important;\r\n	margin-bottom: 0px;\r\n}\r\n.wdform_page_navigation:after {\r\n	content: \" \";\r\n	display: block;\r\n	height: 9px;\r\n	background: url([SITE_ROOT]/images/07/0.png) no-repeat;\r\n	position: relative;\r\n	background-size: cover;\r\n	top: -9px;\r\n}\r\n.wdform_percentage_text {\r\n	margin-right:9px;\r\n	color: #FFFFFF;\r\n	font-weight: normal;\r\n	font-size: 13px;\r\n	position: relative;\r\n}\r\n.wdform_percentage_title {\r\n	color: #000000;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 20px;\r\n	height: 20px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_button button {\r\n	background: #4D792C;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 0px;\r\n	min-width: 80px;\r\n	min-height: 31px;\r\n	color: #fff;\r\n	border: 2px solid #68943B;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}\r\n", "0");
INSERT INTO `wp_formmaker_themes` VALUES("28", "Theme 08 transparent (black button)", ".radio-div input[type=\"radio\"],\r\n.checkbox-div input[type=\"checkbox\"]\r\n{\r\nvisibility: hidden;\r\n}\r\n.wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #F0EFEF;\r\nborder: 1px solid #000000;\r\nmargin-bottom: 10px;\r\ncolor: #000000;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\na.ui-slider-handle {\r\nwidth: 13px;\r\nheight: 13px;\r\ntop: -4px;\r\nborder: 0px;\r\nborder-radius: 13px;\r\nbackground: #FAFAFA;\r\nborder: 3px solid #B1B1B1;\r\noutline: none;\r\n}\r\na.ui-spinner-button\r\n{\r\nbackground:none !important;\r\n}\r\n.ui-slider {\r\n	height: 6px;\r\n	background: #F5F5F5 !important;\r\n	margin: 7px 0px;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell input[type=\"text\"] {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #E9E9E9;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n	color: #414141;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 0px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\n\r\n\r\n.ui-slider-range {\r\n	background: #8A8A8A !important;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #fff;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\n	border: 1px solid #EEEEEE !important;\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n.sel-wrap select {\r\n	position: absolute;\r\n z-index:-1;\r\n width: 0px !important;\r\n}\r\n.sel-imul {\r\n	display: inline-block;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	border-radius: 0px;\r\n	padding: 0px 0px 0px 2px;\r\n	font-size: 13px;\r\n	height: 22px;\r\n	line-height: 22px;\r\n	overflow: hidden;\r\n	background: #F8F8F8;\r\n	border: 0px solid #D3D3D3;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 23px;\r\n	width: 30px;\r\n	background: url([SITE_ROOT]/images/08/01.png) 50% 50% no-repeat;\r\n	position: absolute;\r\n	top: 0px;\r\n	right: 0px;\r\n	padding: 0px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text] {\r\n	margin: 0px;\r\n}\r\ninput[type=password] {\r\n	margin: 0px;\r\n}\r\ninput[type=url] {\r\n	margin: 0px;\r\n}\r\ninput[type=email] {\r\n	margin: 0px;\r\n}\r\ninput.text {\r\n	margin: 0px;\r\n}\r\ninput.title {\r\n	margin: 0px;\r\n}\r\ntextarea {\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	position: absolute;\r\n	border-radius: 0px;\r\n	height: 23px;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	}\r\n.file-picker {\r\n	width: 71px;\r\n	height: 32px;\r\n	background: url([SITE_ROOT]/images/07/upload.png);\r\n	display: inline-block;\r\n}\r\n.next-page div.wdform-page-button {\r\n	color: #A2A2A2;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 35px;\r\n	line-height: 32px;\r\n	background: url([SITE_ROOT]/images/08/next.png) no-repeat right;\r\n	padding: 0px 36px 0 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n        border: 1px solid #CECECE;\r\n}\r\n.previous-page div.wdform-page-button {\r\n	color: #A2A2A2;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 35px;\r\n	line-height: 35px;\r\n	background: url([SITE_ROOT]/images/08/previous.png) no-repeat left;\r\n	padding: 0 20px 0 36px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	border: 1px solid #CECECE;\r\n}\r\n.button-submit {\r\n	color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	line-height: 35px;\r\n	background: #000;\r\n	padding: 0px 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	min-width: 80px;\r\n	min-height: 35px;\r\n	font-family: Segoe UI;\r\n		border: 1px solid transparent;\r\n	margin: 5px;\r\n}\r\n.button-reset {\r\n	color: #787878;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	line-height: 35px;\r\n	background: #F0EFEF;\r\n	padding: 0px 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	min-width: 80px;\r\n	min-height: 35px;\r\n	font-family: Segoe UI;\r\n	float: right;\r\n	border: 1px solid transparent;\r\n	margin: 5px;\r\n}\r\n.wdform_page {\r\n	background: transparent;\r\n	padding: 15px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_column {\r\n	border-right: none !important;\r\n	padding-right: 50px !important;\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n}\r\n.wdform_section_break2 {\r\n	color: #000000;\r\n	display: inline-block;\r\n	text-align: left;\r\n	font-size: 23px;\r\nmargin: 16px 0px;\r\n}\r\n\r\n.wdform_section_break \r\n{\r\n	color: #000000;\r\n	text-align: left;\r\n	font-size: 23px;\r\nmargin: 16px 0px;\r\n}\r\n\r\n\r\n.wdform_section {\r\n	display: inline-block;\r\n}\r\nselect {\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	overflow: hidden;\r\n	padding: 0px;\r\nbackground: #F8F8F8;\r\nborder: 0px solid #fff;\r\ncolor: #414141;\r\n	outline: none;\r\n}\r\n\r\ninput[type=\"text\"]{\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F0F0F0;\r\nborder:0px solid #fff;\r\ncolor: #414141;\r\n}\r\ninput[type=\"password\"]{\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F0F0F0;\r\nborder:0px solid #fff;\r\ncolor: #414141;\r\n}\r\ntextarea {\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F0F0F0;\r\nborder:0px solid #fff;\r\ncolor: #414141;\r\n}\r\ninput[type=\"text\"]:focus {\r\n	outline: none;\r\n}\r\ninput[type=\"password\"]:focus {\r\n	outline: none;\r\n}\r\ntextarea:focus {\r\n	outline: none;\r\n}\r\n\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 30px;\r\n	vertical-align: middle;\r\n}\r\n.checkbox-div input[type=checkbox] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.checkbox-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #000;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n}\r\n.checkbox-div label {\r\ncursor: pointer;\r\n-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)\";\r\nfilter: alpha(opacity=0);\r\nopacity: 0;\r\ncontent: \"\";\r\nposition: absolute;\r\nwidth: 13px;\r\nheight: 9px;\r\nbackground: url([SITE_ROOT]/images/08/checkbox.png) no-repeat;\r\nborder-radius: 0px;\r\ntop: 1px;\r\nleft: 2px;\r\n}\r\n.checkbox-div label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .checkbox-div label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div input[type=checkbox]:checked + label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/03/date.png) no-repeat !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 22px;\r\n	height: 22px;\r\n	position: relative;\r\n	left: -22px;\r\n	vertical-align: top;\r\n	outline: none;\r\n}\r\n.radio-div input[type=radio] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n.radio-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #000000;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n	top: 2px;\r\n}\r\n.radio-div label {\r\n	cursor: pointer;\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)\";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: \"\";\r\n	position: absolute;\r\n	width: 9px;\r\n	height: 8px;\r\n	background: #000000;\r\n	border-radius: 0px;\r\n	top: 2px;\r\n	left: 2px;\r\n}\r\n.radio-div label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .radio-div label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div input[type=radio]:checked + label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.if-ie-div-label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #000;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	margin-top: 15px;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: \"Lucida Grande\", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #8A8A8A;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #000;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: red;\r\n	vertical-align: top;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n	border-radius: 0px;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\ncolor: #CDCDCD;\r\nbackground-color: #F8F8F8;\r\ncursor: pointer;\r\ndisplay: inline-block;\r\nheight: 27px;\r\ntext-align: center;\r\nvertical-align: bottom;\r\npadding: 5px 25px 0px 25px;\r\nfont-size: 18px;\r\nmargin-right:3px;\r\nmargin-bottom:3px;\r\nfont-weight: bold;\r\n}\r\n.page_active {\r\n	color: #000;\r\ncursor: pointer;\r\nbackground-color: #FFFFFF;\r\ndisplay: inline-block;\r\nvertical-align: bottom;\r\nheight: 29px;\r\ntext-align: center;\r\nfont-size: 22px;\r\npadding: 5px 25px 0px 25px;\r\nborder: 1px solid #EEEEEE;\r\nfont-weight: bold;\r\nmargin-right:3px;\r\nborder-bottom: none;\r\nline-height: 26px;\r\n}\r\n.page_percentage_active {\r\npadding: 0px;\r\nmargin: 1px;\r\nborder-spacing: 0px;\r\nheight: 21px;\r\nline-height: 20px;\r\nfont-size: 15px;\r\nfloat: left;\r\ntext-align: right !important;\r\nz-index: 1;\r\nposition: relative;\r\nbackground: #000;\r\n}\r\n.page_percentage_deactive {\r\n	height: 24px;\r\nline-height: 20px;\r\nbackground-color: #FFFFFF;\r\ntext-align: left !important;\r\nmargin: 0 5px;\r\nborder: 1px solid #EEEEEE;\r\ndisplay: inline-block;\r\nwidth: 98%;\r\nborder-bottom: none;\r\n\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: right !important;\r\n	margin-bottom: -1px;\r\n}\r\n\r\n.wdform_percentage_text {\r\n	color: #FFF;\r\n	font-weight: bold;\r\n	font-size: 13px;\r\n	position: relative;\r\n}\r\n.wdform_percentage_title {\r\n	color: #000000;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 20px;\r\n	height: 20px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_button button {\r\n	background: #4D792C;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 0px;\r\n	min-width: 80px;\r\n	min-height: 31px;\r\n	color: #fff;\r\n	border: 2px solid #68943B;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}", "0");
INSERT INTO `wp_formmaker_themes` VALUES("29", "Theme 08 deep pink", ".wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #F0EFEF;\r\nborder: 1px solid #930049;\r\nmargin-bottom: 10px;\r\ncolor: #930049;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\na.ui-slider-handle {\r\nwidth: 13px;\r\nheight: 13px;\r\ntop: -4px;\r\nborder: 0px;\r\nborder-radius: 13px;\r\nbackground: #FAFAFA;\r\nborder: 3px solid #B1B1B1;\r\noutline: none;\r\n}\r\na.ui-spinner-button\r\n{\r\nbackground:none !important;\r\n}\r\n.ui-slider {\r\n	height: 6px;\r\n	background: #F5F5F5 !important;\r\n	margin: 7px 0px;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell input[type=\"text\"] {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #E9E9E9;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n	color: #414141;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 0px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\n\r\n\r\n.ui-slider-range {\r\n	background: #930049 !important;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #fff;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\n	border: 1px solid #EEEEEE !important;\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n.sel-wrap select {\r\n	position: absolute;\r\n z-index:-1;\r\n width: 0px !important;\r\n}\r\n.sel-imul {\r\n	display: inline-block;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	border-radius: 0px;\r\n	padding: 0px 0px 0px 2px;\r\n	font-size: 13px;\r\n	height: 22px;\r\n	line-height: 22px;\r\n	overflow: hidden;\r\n	background: #F8F8F8;\r\n	border: 0px solid #D3D3D3;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 23px;\r\n	width: 30px;\r\n	background: url([SITE_ROOT]/images/08/01.png) 50% 50% no-repeat;\r\n	position: absolute;\r\n	top: 0px;\r\n	right: 0px;\r\n	padding: 0px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text] {\r\n	margin: 0px;\r\n}\r\ninput[type=password] {\r\n	margin: 0px;\r\n}\r\ninput[type=url] {\r\n	margin: 0px;\r\n}\r\ninput[type=email] {\r\n	margin: 0px;\r\n}\r\ninput.text {\r\n	margin: 0px;\r\n}\r\ninput.title {\r\n	margin: 0px;\r\n}\r\ntextarea {\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	position: absolute;\r\n	border-radius: 0px;\r\n	height: 23px;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	}\r\n.file-picker {\r\n	width: 71px;\r\n	height: 32px;\r\n	background: url([SITE_ROOT]/images/07/upload.png);\r\n	display: inline-block;\r\n}\r\n.next-page div.wdform-page-button {\r\n	color: #A2A2A2;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 35px;\r\n	line-height: 32px;\r\n	background: url([SITE_ROOT]/images/08/next.png) no-repeat right;\r\n	padding: 0px 36px 0 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n        border: 1px solid #CECECE;\r\n}\r\n.previous-page div.wdform-page-button {\r\n	color: #A2A2A2;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 35px;\r\n	line-height: 35px;\r\n	background: url([SITE_ROOT]/images/08/previous.png) no-repeat left;\r\n	padding: 0 20px 0 36px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	border: 1px solid #CECECE;\r\n}\r\n.button-submit {\r\n	color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	line-height: 35px;\r\n	background: #930049;\r\n	padding: 0px 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	min-width: 80px;\r\n	min-height: 35px;\r\n	font-family: Segoe UI;\r\n		border: 1px solid transparent;\r\n	margin: 5px;\r\n}\r\n.button-reset {\r\n	color: #787878;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	line-height: 35px;\r\n	background: #F0EFEF;\r\n	padding: 0px 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	min-width: 80px;\r\n	min-height: 35px;\r\n	font-family: Segoe UI;\r\n	float: right;\r\n	border: 1px solid transparent;\r\n	margin: 5px;\r\n}\r\n.wdform_page {\r\n	background: #EEEEEE;\r\n	padding: 15px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_column {\r\n	border-right: none !important;\r\n	padding-right: 50px !important;\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n}\r\n.wdform_section_break2 {\r\n	color: #930049;\r\n	display: inline-block;\r\n	text-align: left;\r\n	font-size: 23px;\r\nmargin: 16px 0px;\r\n}\r\n\r\n.wdform_section_break \r\n{\r\n	color: #930049;\r\n	text-align: left;\r\n	font-size: 23px;\r\nmargin: 16px 0px;\r\n}\r\n\r\n\r\n.wdform_section {\r\n	display: inline-block;\r\n}\r\nselect {\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	overflow: hidden;\r\n	padding: 0px;\r\nbackground: #F8F8F8;\r\nborder: 0px solid #fff;\r\ncolor: #414141;\r\n	outline: none;\r\n}\r\ninput[type=\"text\"]{\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F8F8F8;\r\nborder:0px solid #fff;\r\ncolor: #414141;\r\n}\r\ninput[type=\"password\"]{\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F8F8F8;\r\nborder:0px solid #fff;\r\ncolor: #414141;\r\n}\r\ntextarea {\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F8F8F8;\r\nborder:0px solid #fff;\r\ncolor: #414141;\r\n}\r\ninput[type=\"text\"]:focus {\r\n	outline: none;\r\n}\r\ninput[type=\"password\"]:focus {\r\n	outline: none;\r\n}\r\ntextarea:focus {\r\n	outline: none;\r\n}\r\n\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 30px;\r\n	vertical-align: middle;\r\n}\r\n.checkbox-div input[type=checkbox] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.checkbox-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #636363;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n}\r\n.checkbox-div label {\r\ncursor: pointer;\r\n-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)\";\r\nfilter: alpha(opacity=0);\r\nopacity: 0;\r\ncontent: \"\";\r\nposition: absolute;\r\nwidth: 13px;\r\nheight: 9px;\r\nbackground: url([SITE_ROOT]/images/08/checkbox.png) no-repeat;\r\nborder-radius: 0px;\r\ntop: 1px;\r\nleft: 2px;\r\n}\r\n.checkbox-div label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .checkbox-div label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div input[type=checkbox]:checked + label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/03/date.png) no-repeat !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 22px;\r\n	height: 22px;\r\n	position: relative;\r\n	left: -22px;\r\n	vertical-align: top;\r\n	outline: none;\r\n}\r\n.radio-div input[type=radio] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n.radio-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #8A8A8A;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n	top: 2px;\r\n}\r\n.radio-div label {\r\n	cursor: pointer;\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)\";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: \"\";\r\n	position: absolute;\r\n	width: 9px;\r\n	height: 8px;\r\n	background: #8A8A8A;\r\n	border-radius: 0px;\r\n	top: 2px;\r\n	left: 2px;\r\n}\r\n.radio-div label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .radio-div label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div input[type=radio]:checked + label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.if-ie-div-label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #000;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	margin-top: 15px;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: \"Lucida Grande\", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #8A8A8A;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #000;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: red;\r\n	vertical-align: top;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n	border-radius: 0px;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\ncolor: #CDCDCD;\r\nbackground-color: #F8F8F8;\r\ncursor: pointer;\r\ndisplay: inline-block;\r\nheight: 27px;\r\ntext-align: center;\r\nvertical-align: bottom;\r\npadding: 5px 25px 0px 25px;\r\nfont-size: 18px;\r\nmargin-right:3px;\r\nmargin-bottom:3px;\r\nfont-weight: bold;\r\n}\r\n.page_active {\r\n	color: #930049;\r\ncursor: pointer;\r\nbackground-color: #fff;\r\ndisplay: inline-block;\r\nvertical-align: bottom;\r\nheight: 29px;\r\ntext-align: center;\r\nfont-size: 22px;\r\npadding: 5px 25px 0px 25px;\r\nborder: 1px solid #EEEEEE;\r\nfont-weight: bold;\r\nmargin-right:3px;\r\nborder-bottom: none;\r\nline-height: 26px;\r\n}\r\n.page_percentage_active {\r\npadding: 0px;\r\nmargin: 1px;\r\nborder-spacing: 0px;\r\nheight: 21px;\r\nline-height: 20px;\r\nfont-size: 15px;\r\nfloat: left;\r\ntext-align: right !important;\r\nz-index: 1;\r\nposition: relative;\r\nbackground: #930049;\r\n}\r\n.page_percentage_deactive {\r\n	height: 24px;\r\nline-height: 20px;\r\nbackground-color: #FFFFFF;\r\ntext-align: left !important;\r\nmargin: 0 5px;\r\nborder: 1px solid #EEEEEE;\r\ndisplay: inline-block;\r\nwidth: 98%;\r\nborder-bottom: none;\r\n\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: right !important;\r\n	margin-bottom: -1px;\r\n}\r\n\r\n.wdform_percentage_text {\r\n	color: #fff;\r\n	font-weight: bold;\r\n	font-size: 13px;\r\n	position: relative;\r\n}\r\n.wdform_percentage_title {\r\n	color: #000000;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 20px;\r\n	height: 20px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_button button {\r\n	background: #4D792C;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 0px;\r\n	min-width: 80px;\r\n	min-height: 31px;\r\n	color: #fff;\r\n	border: 2px solid #68943B;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}", "0");
INSERT INTO `wp_formmaker_themes` VALUES("30", "Theme 08 blue", ".wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #F0EFEF;\r\nborder: 1px solid #070068;\r\nmargin-bottom: 10px;\r\ncolor: #070068;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\na.ui-slider-handle {\r\nwidth: 13px;\r\nheight: 13px;\r\ntop: -4px;\r\nborder: 0px;\r\nborder-radius: 13px;\r\nbackground: #FAFAFA;\r\nborder: 3px solid #B1B1B1;\r\noutline: none;\r\n}\r\na.ui-spinner-button\r\n{\r\nbackground:none !important;\r\n}\r\n.ui-slider {\r\n	height: 6px;\r\n	background: #F5F5F5 !important;\r\n	margin: 7px 0px;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell input[type=\"text\"] {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #E9E9E9;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n	color: #414141;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 0px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\n\r\n\r\n.ui-slider-range {\r\n	background: #070068 !important;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #fff;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\n	border: 1px solid #EEEEEE !important;\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n.sel-wrap select {\r\n	position: absolute;\r\n z-index:-1;\r\n width: 0px !important;\r\n}\r\n.sel-imul {\r\n	display: inline-block;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	border-radius: 0px;\r\n	padding: 0px 0px 0px 2px;\r\n	font-size: 13px;\r\n	height: 22px;\r\n	line-height: 22px;\r\n	overflow: hidden;\r\n	background: #F8F8F8;\r\n	border: 0px solid #D3D3D3;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 23px;\r\n	width: 30px;\r\n	background: url([SITE_ROOT]/images/08/01.png) 50% 50% no-repeat;\r\n	position: absolute;\r\n	top: 0px;\r\n	right: 0px;\r\n	padding: 0px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text] {\r\n	margin: 0px;\r\n}\r\ninput[type=password] {\r\n	margin: 0px;\r\n}\r\ninput[type=url] {\r\n	margin: 0px;\r\n}\r\ninput[type=email] {\r\n	margin: 0px;\r\n}\r\ninput.text {\r\n	margin: 0px;\r\n}\r\ninput.title {\r\n	margin: 0px;\r\n}\r\ntextarea {\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	position: absolute;\r\n	border-radius: 0px;\r\n	height: 23px;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	}\r\n.file-picker {\r\n	width: 71px;\r\n	height: 32px;\r\n	background: url([SITE_ROOT]/images/07/upload.png);\r\n	display: inline-block;\r\n}\r\n.next-page div.wdform-page-button {\r\n	color: #A2A2A2;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 35px;\r\n	line-height: 32px;\r\n	background: url([SITE_ROOT]/images/08/next.png) no-repeat right;\r\n	padding: 0px 36px 0 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n        border: 1px solid #CECECE;\r\n}\r\n.previous-page div.wdform-page-button {\r\n	color: #A2A2A2;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 35px;\r\n	line-height: 35px;\r\n	background: url([SITE_ROOT]/images/08/previous.png) no-repeat left;\r\n	padding: 0 20px 0 36px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	border: 1px solid #CECECE;\r\n}\r\n.button-submit {\r\n	color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	line-height: 35px;\r\n	background: #070068;\r\n	padding: 0px 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	min-width: 80px;\r\n	min-height: 35px;\r\n	font-family: Segoe UI;\r\n		border: 1px solid transparent;\r\n	margin: 5px;\r\n}\r\n.button-reset {\r\n	color: #787878;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	line-height: 35px;\r\n	background: #F0EFEF;\r\n	padding: 0px 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	min-width: 80px;\r\n	min-height: 35px;\r\n	font-family: Segoe UI;\r\n	float: right;\r\n	border: 1px solid transparent;\r\n	margin: 5px;\r\n}\r\n.wdform_page {\r\n	background: #FFFFFF;\r\n	padding: 15px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_column {\r\n	border-right: none !important;\r\n	padding-right: 50px !important;\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n}\r\n.wdform_section_break2 {\r\n	color: #070068;\r\n	display: inline-block;\r\n	text-align: left;\r\n	font-size: 23px;\r\nmargin: 16px 0px;\r\n}\r\n\r\n.wdform_section_break \r\n{\r\n	color: #070068;\r\n	text-align: left;\r\n	font-size: 23px;\r\nmargin: 16px 0px;\r\n}\r\n\r\n\r\n.wdform_section {\r\n	display: inline-block;\r\n}\r\nselect {\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	overflow: hidden;\r\n	padding: 0px;\r\nbackground: #F8F8F8;\r\nborder: 0px solid #fff;\r\ncolor: #414141;\r\n	outline: none;\r\n}\r\ninput[type=\"text\"]{\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F8F8F8;\r\nborder:0px solid #fff;\r\ncolor: #414141;\r\n}\r\ninput[type=\"password\"]{\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F8F8F8;\r\nborder:0px solid #fff;\r\ncolor: #414141;\r\n}\r\ntextarea {\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F8F8F8;\r\nborder:0px solid #fff;\r\ncolor: #414141;\r\n}\r\ninput[type=\"text\"]:focus {\r\n	outline: none;\r\n}\r\ninput[type=\"password\"]:focus {\r\n	outline: none;\r\n}\r\ntextarea:focus {\r\n	outline: none;\r\n}\r\n\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 30px;\r\n	vertical-align: middle;\r\n}\r\n.checkbox-div input[type=checkbox] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.checkbox-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #636363;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n}\r\n.checkbox-div label {\r\ncursor: pointer;\r\n-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)\";\r\nfilter: alpha(opacity=0);\r\nopacity: 0;\r\ncontent: \"\";\r\nposition: absolute;\r\nwidth: 13px;\r\nheight: 9px;\r\nbackground: url([SITE_ROOT]/images/08/checkbox.png) no-repeat;\r\nborder-radius: 0px;\r\ntop: 1px;\r\nleft: 2px;\r\n}\r\n.checkbox-div label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .checkbox-div label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div input[type=checkbox]:checked + label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/03/date.png) no-repeat !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 22px;\r\n	height: 22px;\r\n	position: relative;\r\n	left: -22px;\r\n	vertical-align: top;\r\n	outline: none;\r\n}\r\n.radio-div input[type=radio] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n.radio-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #8A8A8A;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n	top: 2px;\r\n}\r\n.radio-div label {\r\n	cursor: pointer;\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)\";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: \"\";\r\n	position: absolute;\r\n	width: 9px;\r\n	height: 8px;\r\n	background: #8A8A8A;\r\n	border-radius: 0px;\r\n	top: 2px;\r\n	left: 2px;\r\n}\r\n.radio-div label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .radio-div label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div input[type=radio]:checked + label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.if-ie-div-label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #000;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	margin-top: 15px;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: \"Lucida Grande\", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #8A8A8A;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #000;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: red;\r\n	vertical-align: top;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n	border-radius: 0px;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\ncolor: #CDCDCD;\r\nbackground-color: #F8F8F8;\r\ncursor: pointer;\r\ndisplay: inline-block;\r\nheight: 27px;\r\ntext-align: center;\r\nvertical-align: bottom;\r\npadding: 5px 25px 0px 25px;\r\nfont-size: 18px;\r\nmargin-right:3px;\r\nmargin-bottom:3px;\r\nfont-weight: bold;\r\n}\r\n.page_active {\r\n	color: #070068;\r\ncursor: pointer;\r\nbackground-color: #FFFFFF;\r\ndisplay: inline-block;\r\nvertical-align: bottom;\r\nheight: 29px;\r\ntext-align: center;\r\nfont-size: 22px;\r\npadding: 5px 25px 0px 25px;\r\nborder: 1px solid #EEEEEE;\r\nfont-weight: bold;\r\nmargin-right:3px;\r\nborder-bottom: none;\r\nline-height: 26px;\r\n}\r\n.page_percentage_active {\r\npadding: 0px;\r\nmargin: 1px;\r\nborder-spacing: 0px;\r\nheight: 21px;\r\nline-height: 20px;\r\nfont-size: 15px;\r\nfloat: left;\r\ntext-align: right !important;\r\nz-index: 1;\r\nposition: relative;\r\nbackground: #070068;\r\n}\r\n.page_percentage_deactive {\r\n	height: 24px;\r\nline-height: 20px;\r\nbackground-color: #FFFFFF;\r\ntext-align: left !important;\r\nmargin: 0 5px;\r\nborder: 1px solid #EEEEEE;\r\ndisplay: inline-block;\r\nwidth: 98%;\r\nborder-bottom: none;\r\n\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: right !important;\r\n	margin-bottom: -1px;\r\n}\r\n\r\n.wdform_percentage_text {\r\n	color: #fff;\r\n	font-weight: bold;\r\n	font-size: 13px;\r\n	position: relative;\r\n}\r\n.wdform_percentage_title {\r\n	color: #000000;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 20px;\r\n	height: 20px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_button button {\r\n	background: #4D792C;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 0px;\r\n	min-width: 80px;\r\n	min-height: 31px;\r\n	color: #fff;\r\n	border: 2px solid #68943B;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}", "0");
INSERT INTO `wp_formmaker_themes` VALUES("31", "Theme 09 light gray", ".wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #DDDDDD;\r\nborder: 1px solid #818181;\r\nmargin-bottom: 10px;\r\ncolor: #818181;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\na.ui-spinner-button\r\n{\r\nborder-radius:0px !important;\r\nbackground: none!important;\r\n}\r\n\r\na.ui-slider-handle {\r\nwidth: 13px;\r\nheight: 13px;\r\ntop: -4px;\r\nborder: 0px;\r\nborder-radius: 13px;\r\nbackground: #FAFAFA;\r\nborder: 3px solid #B1B1B1;\r\noutline: none;\r\n}\r\n\r\n.ui-slider {\r\n	height: 6px;\r\n	background: #F5F5F5 !important;\r\n	margin: 7px 0px;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell input[type=\"text\"] {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #E9E9E9;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n	color: #000;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 0px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\n\r\n\r\n.ui-slider-range {\r\n	background: #8A8A8A !important;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #fff;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\nborder-top: 1px solid #7F7F7F !important;\r\n\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n.sel-wrap select {\r\n	position: absolute;\r\n z-index:-1;\r\n width: 0px !important;\r\n}\r\n.sel-imul {\r\n	display: inline-block;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	border-radius: 0px;\r\n	padding: 0px 0px 0px 2px;\r\n	font-size: 13px;\r\n	height: 22px;\r\n	line-height: 22px;\r\n	overflow: hidden;\r\n	background: #F8F8F8;\r\n	border: 1px solid #B7B7B7;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 23px;\r\n	width: 30px;\r\n	background: url([SITE_ROOT]/images/09/01.png) 50% 50% no-repeat;\r\n	position: absolute;\r\n	top: 0px;\r\n	right: 0px;\r\n	padding: 0px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text]{\r\n	margin: 0px;\r\n}\r\ninput[type=password]{\r\n	margin: 0px;\r\n}\r\ninput[type=url]{\r\n	margin: 0px;\r\n}\r\ninput[type=email]{\r\n	margin: 0px;\r\n}\r\ninput.text{\r\n	margin: 0px;\r\n}\r\ninput.title{\r\n	margin: 0px;\r\n}\r\ntextarea{\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	position: absolute;\r\n	border-radius: 0px;\r\n	height: 23px;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	}\r\n.file-picker {\r\n	width: 41px;\r\n	height: 32px;\r\n	background: url([SITE_ROOT]/images/09/01/upload.png) no-repeat;\r\n	display: inline-block;\r\n}\r\n.next-page div.wdform-page-button {\r\n	color: #A2A2A2;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 35px;\r\n	line-height: 32px;\r\n	background: url([SITE_ROOT]/images/09/next.png) no-repeat right;\r\n	padding: 0px 36px 0 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n        border: 1px solid #CECECE;\r\n}\r\n.previous-page div.wdform-page-button {\r\n	color: #A2A2A2;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 35px;\r\n	line-height: 35px;\r\n	background: url([SITE_ROOT]/images/09/previous.png) no-repeat left;\r\n	padding: 0 20px 0 36px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	border: 1px solid #CECECE;\r\n}\r\n.button-submit {\r\n	color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	line-height: 35px;\r\n	background: #013D7C;\r\n	padding: 0px 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	min-width: 80px;\r\n	min-height: 35px;\r\n	font-family: Segoe UI;\r\n		border: 1px solid transparent;\r\n	margin: 5px;\r\n}\r\n.button-reset {\r\n	color: #787878;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	line-height: 35px;\r\n	background: #F0EFEF;\r\n	padding: 0px 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	min-width: 80px;\r\n	min-height: 35px;\r\n	font-family: Segoe UI;\r\n	float: right;\r\n	border: 1px solid transparent;\r\n	margin: 5px;\r\n}\r\n.wdform_page {\r\n	background: #DDDDDD;\r\n	padding-top: 15px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\npadding:10px;\r\n}\r\n.wdform_column {\r\n	border-right: none !important;\r\n	padding-right: 50px !important;\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n\r\n}\r\n.wdform_section_break2 {\r\n	color: #013D7C;\r\n	display: inline-block;\r\n	text-align: left;\r\n	font-size: 23px;\r\nmargin: 16px 10px 40px 0px;\r\n\r\n}\r\n\r\n.wdform_section_break {\r\n	color: #013D7C;\r\n	font-size: 23px;\r\nmargin: 16px 0px;\r\n\r\n}\r\n\r\n.wdform_section {\r\n	display: inline-block;\r\n}\r\nselect {\r\n	border-radius: 0px;\r\n	height: 24px;\r\n	overflow: hidden;\r\n	padding: 0px;\r\nbackground: #F8F8F8;\r\nborder: 1px solid #B7B7B7;\r\n	outline: none;\r\n}\r\ninput[type=\"text\"]{\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F8F8F8;\r\nborder:1px solid #B7B7B7;\r\n}\r\ninput[type=\"password\"]{\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F8F8F8;\r\nborder:1px solid #B7B7B7;\r\n}\r\ntextarea {\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F8F8F8;\r\nborder:1px solid #B7B7B7;\r\n}\r\ninput[type=\"text\"]:focus{\r\n	outline: none;\r\n}\r\ninput[type=\"password\"]:focus{\r\n	outline: none;\r\n}\r\ntextarea:focus{\r\n	outline: none;\r\n}\r\n\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 30px;\r\n	vertical-align: middle;\r\n}\r\n.checkbox-div input[type=checkbox] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.checkbox-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #8B8B8B;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n}\r\n.checkbox-div label {\r\ncursor: pointer;\r\n-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)\";\r\nfilter: alpha(opacity=0);\r\nopacity: 0;\r\ncontent: \"\";\r\nposition: absolute;\r\nwidth: 13px;\r\nheight: 9px;\r\nbackground: url([SITE_ROOT]/images/09/checkbox.png) no-repeat;\r\nborder-radius: 0px;\r\ntop: 1px;\r\nleft: 2px;\r\n}\r\n.checkbox-div label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .checkbox-div label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div input[type=checkbox]:checked + label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/03/date.png) no-repeat !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 22px;\r\n	height: 22px;\r\n	position: relative;\r\n	left: -22px;\r\n	vertical-align: top;\r\n	outline: none;\r\n}\r\n.radio-div input[type=radio] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n.radio-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #8B8B8B;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n	top: 2px;\r\n}\r\n.radio-div label {\r\n	cursor: pointer;\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)\";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: \"\";\r\n	position: absolute;\r\n	width: 9px;\r\n	height: 8px;\r\n	background: #8B8B8B;\r\n	border-radius: 0px;\r\n	top: 2px;\r\n	left: 2px;\r\n}\r\n.radio-div label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .radio-div label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div input[type=radio]:checked + label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.if-ie-div-label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #000;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	margin-top: 15px;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: \"Lucida Grande\", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #000;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #000;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: red;\r\n	vertical-align: top;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n	border-radius: 0px;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\ncolor: #808080;\r\nbackground-color: #E5E5E5;\r\ncursor: pointer;\r\ndisplay: inline-block;\r\nheight: 27px;\r\ntext-align: center;\r\nvertical-align: bottom;\r\npadding: 5px 25px 0px 25px;\r\nfont-size: 18px;\r\nmargin-left:3px;\r\nmargin-bottom:2px;\r\n}\r\n.page_active {\r\n	color: #C2C2C2;\r\ncursor: pointer;\r\nbackground-color: #FFFFFF;\r\ndisplay: inline-block;\r\nvertical-align: bottom;\r\nheight: 29px;\r\ntext-align: center;\r\nfont-size: 22px;\r\npadding: 5px 25px 0px 25px;\r\nborder: 1px solid #7F7F7F;\r\nmargin-left:3px;\r\nmargin-bottom: -1px;\r\nborder-bottom: none;\r\nline-height: 26px;\r\n}\r\n.page_percentage_active {\r\npadding: 0px;\r\nborder-spacing: 0px;\r\nheight: 10px;\r\nbackground: #727272;\r\nfloat: left;\r\n}\r\n.page_percentage_deactive {\r\nheight: 10px;\r\nline-height: 20px;\r\nbackground-color: #E5E5E5;\r\ntext-align: left !important;\r\nmargin-bottom: 2px;\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: right !important;\r\n}\r\n\r\n.wdform_percentage_text {\r\ncolor: #fff;\r\nfont-size: 12px;\r\nposition: relative;\r\nbackground: url([SITE_ROOT]/images/09/01/02.png) no-repeat;\r\nwidth: 36px;\r\ndisplay: inline-block;\r\nheight: 36px;\r\ntop: -37px;\r\nleft: 17px;\r\ntext-align: center;\r\nline-height: 27px;\r\nfloat: right;\r\n}\r\n.wdform_percentage_title {\r\n	color: #000000;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 20px;\r\n	height: 20px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_button button {\r\n	background: #4D792C;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 0px;\r\n	min-width: 80px;\r\n	min-height: 31px;\r\n	color: #fff;\r\n	border: 2px solid #68943B;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}", "0");
INSERT INTO `wp_formmaker_themes` VALUES("32", "Theme 09 yellow", ".wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #DDDDDD;\r\nborder: 1px solid #E9B500;\r\nmargin-bottom: 10px;\r\ncolor: #E9B500;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\na.ui-spinner-button\r\n{\r\nborder-radius:0px !important;\r\nbackground: none!important;\r\n}\r\n\r\na.ui-slider-handle {\r\nwidth: 13px;\r\nheight: 13px;\r\ntop: -4px;\r\nborder: 0px;\r\nborder-radius: 13px;\r\nbackground: #FAFAFA;\r\nborder: 3px solid #B1B1B1;\r\noutline: none;\r\n}\r\n\r\n.ui-slider {\r\n	height: 6px;\r\n	background: #F5F5F5 !important;\r\n	margin: 7px 0px;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell input[type=\"text\"] {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #E9E9E9;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n	color: #000;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 0px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\n\r\n\r\n.ui-slider-range {\r\n	background: #E9B500 !important;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #fff;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\nborder-top: 1px solid #7F7F7F !important;\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n.sel-wrap select {\r\n	position: absolute;\r\n z-index:-1;\r\n width: 0px !important;\r\n}\r\n.sel-imul {\r\n	display: inline-block;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	border-radius: 0px;\r\n	padding: 0px 0px 0px 2px;\r\n	font-size: 13px;\r\n	height: 22px;\r\n	line-height: 22px;\r\n	overflow: hidden;\r\n	background: #F8F8F8;\r\n	border: 1px solid #B7B7B7;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 23px;\r\n	width: 30px;\r\n	background: url([SITE_ROOT]/images/09/01.png) 50% 50% no-repeat;\r\n	position: absolute;\r\n	top: 0px;\r\n	right: 0px;\r\n	padding: 0px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text]{\r\n	margin: 0px;\r\n}\r\ninput[type=password]{\r\n	margin: 0px;\r\n}\r\ninput[type=url]{\r\n	margin: 0px;\r\n}\r\ninput[type=email]{\r\n	margin: 0px;\r\n}\r\ninput.text{\r\n	margin: 0px;\r\n}\r\ninput.title{\r\n	margin: 0px;\r\n}\r\ntextarea{\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	position: absolute;\r\n	border-radius: 0px;\r\n	height: 23px;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	}\r\n.file-picker {\r\n	width: 41px;\r\n	height: 32px;\r\n	background: url([SITE_ROOT]/images/09/02/upload.png) no-repeat;\r\n	display: inline-block;\r\n}\r\n.next-page div.wdform-page-button {\r\n	color: #A2A2A2;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 35px;\r\n	line-height: 32px;\r\n	background: url([SITE_ROOT]/images/09/next.png) no-repeat right;\r\n	padding: 0px 36px 0  20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n        border: 1px solid #CECECE;\r\n}\r\n.previous-page div.wdform-page-button {\r\n	color: #A2A2A2;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 35px;\r\n	line-height: 35px;\r\n	background: url([SITE_ROOT]/images/09/previous.png) no-repeat left;\r\n	padding: 0 20px 0 36px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	border: 1px solid #CECECE;\r\n}\r\n.button-submit {\r\n	color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	line-height: 35px;\r\n	background: #E9B500;\r\n	padding: 0px 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	min-width: 80px;\r\n	min-height: 35px;\r\n	font-family: Segoe UI;\r\n		border: 1px solid transparent;\r\n	margin: 5px;\r\n}\r\n.button-reset {\r\n	color: #787878;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	line-height: 35px;\r\n	background: #F0EFEF;\r\n	padding: 0px 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	min-width: 80px;\r\n	min-height: 35px;\r\n	font-family: Segoe UI;\r\n	float: right;\r\n	border: 1px solid transparent;\r\n	margin: 5px;\r\n}\r\n.wdform_page {\r\n	background: #DDDDDD;\r\n	padding-top: 15px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\npadding:10px;\r\n}\r\n.wdform_column {\r\n	border-right: none !important;\r\n	padding-right: 50px !important;\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n}\r\n.wdform_section_break2 {\r\n	color: #013D7C;\r\n	display: inline-block;\r\n	text-align: left;\r\n	font-size: 23px;\r\nmargin: 16px 10px 5px 0px;\r\n}\r\n\r\n.wdform_section_break {\r\n	color: #E9B500;\r\n	font-size: 23px;\r\nmargin: 16px 0px;\r\n\r\n}\r\n\r\n.wdform-section-break-div\r\n{\r\nborder-top:1px solid #7F7F7F !important;\r\n}\r\n\r\n.wdform_section {\r\n	display: inline-block;\r\n}\r\nselect {\r\n	border-radius: 0px;\r\n	height: 24px;\r\n	overflow: hidden;\r\n	padding: 0px;\r\nbackground: #F8F8F8;\r\nborder: 1px solid #B7B7B7;\r\n	outline: none;\r\n}\r\ninput[type=\"text\"]{\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F8F8F8;\r\nborder:1px solid #B7B7B7;\r\n}\r\ninput[type=\"password\"]{\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F8F8F8;\r\nborder:1px solid #B7B7B7;\r\n}\r\ntextarea {\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F8F8F8;\r\nborder:1px solid #B7B7B7;\r\n}\r\ninput[type=\"text\"]:focus{\r\n	outline: none;\r\n}\r\ninput[type=\"password\"]:focus{\r\n	outline: none;\r\n}\r\ntextarea:focus{\r\n	outline: none;\r\n}\r\n\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 30px;\r\n	vertical-align: middle;\r\n}\r\n.checkbox-div input[type=checkbox] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.checkbox-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #8B8B8B;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n}\r\n.checkbox-div label {\r\ncursor: pointer;\r\n-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)\";\r\nfilter: alpha(opacity=0);\r\nopacity: 0;\r\ncontent: \"\";\r\nposition: absolute;\r\nwidth: 13px;\r\nheight: 9px;\r\nbackground: url([SITE_ROOT]/images/09/checkbox.png) no-repeat;\r\nborder-radius: 0px;\r\ntop: 1px;\r\nleft: 2px;\r\n}\r\n.checkbox-div label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .checkbox-div label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div input[type=checkbox]:checked + label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/03/date.png) no-repeat !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 22px;\r\n	height: 22px;\r\n	position: relative;\r\n	left: -22px;\r\n	vertical-align: top;\r\n	outline: none;\r\n}\r\n.radio-div input[type=radio] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n.radio-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #8B8B8B;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n	top: 2px;\r\n}\r\n.radio-div label {\r\n	cursor: pointer;\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)\";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: \"\";\r\n	position: absolute;\r\n	width: 9px;\r\n	height: 8px;\r\n	background: #8B8B8B;\r\n	border-radius: 0px;\r\n	top: 2px;\r\n	left: 2px;\r\n}\r\n.radio-div label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .radio-div label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div input[type=radio]:checked + label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.if-ie-div-label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #000;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	margin-top: 15px;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: \"Lucida Grande\", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #000;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #000;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: red;\r\n	vertical-align: top;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n	border-radius: 0px;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\ncolor: #808080;\r\nbackground-color: #E5E5E5;\r\ncursor: pointer;\r\ndisplay: inline-block;\r\nheight: 27px;\r\ntext-align: center;\r\nvertical-align: bottom;\r\npadding: 5px 25px 0px 25px;\r\nfont-size: 18px;\r\nmargin-left:3px;\r\nmargin-bottom:2px;\r\n}\r\n.page_active {\r\n	color: #C2C2C2;\r\ncursor: pointer;\r\nbackground-color: #FFFFFF;\r\ndisplay: inline-block;\r\nvertical-align: bottom;\r\nheight: 29px;\r\ntext-align: center;\r\nfont-size: 22px;\r\npadding: 5px 25px 0px 25px;\r\nborder: 1px solid #7F7F7F;\r\nmargin-left:3px;\r\nmargin-bottom: -1px;\r\nborder-bottom: none;\r\nline-height: 26px;\r\n}\r\n.page_percentage_active {\r\npadding: 0px;\r\nborder-spacing: 0px;\r\nheight: 10px;\r\nbackground: #E7C85C;\r\nfloat: left;\r\n}\r\n.page_percentage_deactive {\r\nheight: 10px;\r\nline-height: 20px;\r\nbackground-color: #E5E5E5;\r\ntext-align: left !important;\r\nmargin-bottom: 2px;\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: right !important;\r\n}\r\n\r\n.wdform_percentage_text {\r\ncolor: #fff;\r\nfont-size: 12px;\r\nposition: relative;\r\nbackground: url([SITE_ROOT]/images/09/02/02.png) no-repeat;\r\nwidth: 36px;\r\ndisplay: inline-block;\r\nheight: 36px;\r\ntop: -37px;\r\nleft: 17px;\r\ntext-align: center;\r\nline-height: 27px;\r\nfloat: right;\r\n}\r\n.wdform_percentage_title {\r\n	color: #000000;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 20px;\r\n	height: 20px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_button button {\r\n	background: #4D792C;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 0px;\r\n	min-width: 80px;\r\n	min-height: 31px;\r\n	color: #fff;\r\n	border: 2px solid #68943B;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}", "0");
INSERT INTO `wp_formmaker_themes` VALUES("33", "Theme 09 blue", ".wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #DDDDDD;\r\nborder: 1px solid #015875;\r\nmargin-bottom: 10px;\r\ncolor: #015875;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\na.ui-spinner-button\r\n{\r\nborder-radius:0px !important;\r\nbackground: none!important;\r\n}\r\n\r\na.ui-slider-handle {\r\nwidth: 13px;\r\nheight: 13px;\r\ntop: -4px;\r\nborder: 0px;\r\nborder-radius: 13px;\r\nbackground: #FAFAFA;\r\nborder: 3px solid #B1B1B1;\r\noutline: none;\r\n}\r\n\r\n.ui-slider {\r\n	height: 6px;\r\n	background: #F5F5F5 !important;\r\n	margin: 7px 0px;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell input[type=\"text\"] {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #E9E9E9;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n	color: #000;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 0px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\n\r\n\r\n.ui-slider-range {\r\n	background: #015875 !important;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #fff;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\nborder-top: 1px solid #7F7F7F !important;\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n.sel-wrap select {\r\n	position: absolute;\r\n z-index:-1;\r\n width: 0px !important;\r\n}\r\n.sel-imul {\r\n	display: inline-block;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	border-radius: 0px;\r\n	padding: 0px 0px 0px 2px;\r\n	font-size: 13px;\r\n	height: 22px;\r\n	line-height: 22px;\r\n	overflow: hidden;\r\n	background: #F8F8F8;\r\n	border: 1px solid #B7B7B7;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 23px;\r\n	width: 30px;\r\n	background: url([SITE_ROOT]/images/09/01.png) 50% 50% no-repeat;\r\n	position: absolute;\r\n	top: 0px;\r\n	right: 0px;\r\n	padding: 0px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text]{\r\n	margin: 0px;\r\n}\r\ninput[type=password]{\r\n	margin: 0px;\r\n}\r\ninput[type=url]{\r\n	margin: 0px;\r\n}\r\ninput[type=email]{\r\n	margin: 0px;\r\n}\r\ninput.text{\r\n	margin: 0px;\r\n}\r\ninput.title{\r\n	margin: 0px;\r\n}\r\ntextarea{\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	position: absolute;\r\n	border-radius: 0px;\r\n	height: 23px;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	}\r\n.file-picker {\r\n	width: 41px;\r\n	height: 32px;\r\n	background: url([SITE_ROOT]/images/09/02/upload.png) no-repeat;\r\n	display: inline-block;\r\n}\r\n.next-page div.wdform-page-button {\r\n	color: #A2A2A2;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 35px;\r\n	line-height: 32px;\r\n	background: url([SITE_ROOT]/images/09/next.png) no-repeat right;\r\n	padding: 0px 36px 0 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n        border: 1px solid #CECECE;\r\n}\r\n.previous-page div.wdform-page-button {\r\n	color: #A2A2A2;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 35px;\r\n	line-height: 35px;\r\n	 background: url([SITE_ROOT]/images/09/previous.png) no-repeat left;\r\n	padding: 0 20px 0 36px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	border: 1px solid #CECECE;\r\n}\r\n.button-submit {\r\n	color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	line-height: 35px;\r\n	background: #015875;\r\n	padding: 0px 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	min-width: 80px;\r\n	min-height: 35px;\r\n	font-family: Segoe UI;\r\n		border: 1px solid transparent;\r\n	margin: 5px;\r\n}\r\n.button-reset {\r\n	color: #787878;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	line-height: 35px;\r\n	background: #F0EFEF;\r\n	padding: 0px 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	min-width: 80px;\r\n	min-height: 35px;\r\n	font-family: Segoe UI;\r\n	float: right;\r\n	border: 1px solid transparent;\r\n	margin: 5px;\r\n}\r\n.wdform_page {\r\n	background: #DDDDDD;\r\n	padding-top: 15px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\npadding:10px;\r\n}\r\n.wdform_column {\r\n	border-right: none !important;\r\n	padding-right: 50px !important;\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n}\r\n.wdform_section_break2 {\r\n	color: #015875;\r\n	display: inline-block;\r\n	text-align: left;\r\n	font-size: 23px;\r\nmargin: 16px 10px 40px 0px;\r\n}\r\n\r\n.wdform_section_break {\r\n	color: #015875;\r\n	font-size: 23px;\r\nmargin: 16px 0px;\r\n\r\n}\r\n\r\n.wdform-section-break-div\r\n{\r\nborder-top:1px solid #80ABBA !important;\r\n}\r\n\r\n.wdform_section {\r\n	display: inline-block;\r\n}\r\nselect {\r\n	border-radius: 0px;\r\n	height: 24px;\r\n	overflow: hidden;\r\n	padding: 0px;\r\nbackground: #F8F8F8;\r\nborder: 1px solid #B7B7B7;\r\n	outline: none;\r\n}\r\ninput[type=\"text\"]{\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F8F8F8;\r\nborder:1px solid #B7B7B7;\r\n}\r\ninput[type=\"password\"]{\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F8F8F8;\r\nborder:1px solid #B7B7B7;\r\n}\r\ntextarea {\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F8F8F8;\r\nborder:1px solid #B7B7B7;\r\n}\r\ninput[type=\"text\"]:focus{\r\n	outline: none;\r\n}\r\ninput[type=\"password\"]:focus{\r\n	outline: none;\r\n}\r\ntextarea:focus{\r\n	outline: none;\r\n}\r\n\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 30px;\r\n	vertical-align: middle;\r\n}\r\n.checkbox-div input[type=checkbox] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.checkbox-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #8B8B8B;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n}\r\n.checkbox-div label {\r\ncursor: pointer;\r\n-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)\";\r\nfilter: alpha(opacity=0);\r\nopacity: 0;\r\ncontent: \"\";\r\nposition: absolute;\r\nwidth: 13px;\r\nheight: 9px;\r\nbackground: url([SITE_ROOT]/images/09/checkbox.png) no-repeat;\r\nborder-radius: 0px;\r\ntop: 1px;\r\nleft: 2px;\r\n}\r\n.checkbox-div label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .checkbox-div label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div input[type=checkbox]:checked + label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/03/date.png) no-repeat !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 22px;\r\n	height: 22px;\r\n	position: relative;\r\n	left: -22px;\r\n	vertical-align: top;\r\n	outline: none;\r\n}\r\n.radio-div input[type=radio] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n.radio-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #8B8B8B;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n	top: 2px;\r\n}\r\n.radio-div label {\r\n	cursor: pointer;\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)\";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: \"\";\r\n	position: absolute;\r\n	width: 9px;\r\n	height: 8px;\r\n	background: #8B8B8B;\r\n	border-radius: 0px;\r\n	top: 2px;\r\n	left: 2px;\r\n}\r\n.radio-div label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .radio-div label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div input[type=radio]:checked + label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.if-ie-div-label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #000;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	margin-top: 15px;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: \"Lucida Grande\", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #000;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #000;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: red;\r\n	vertical-align: top;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n	border-radius: 0px;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\ncolor: #808080;\r\nbackground-color: #DEE9EC;\r\ncursor: pointer;\r\ndisplay: inline-block;\r\nheight: 27px;\r\ntext-align: center;\r\nvertical-align: bottom;\r\npadding: 5px 25px 0px 25px;\r\nfont-size: 18px;\r\nmargin-left:3px;\r\nmargin-bottom:2px;\r\n}\r\n.page_active {\r\n	color: #C2C2C2;\r\ncursor: pointer;\r\nbackground-color: #FFFFFF;\r\ndisplay: inline-block;\r\nvertical-align: bottom;\r\nheight: 29px;\r\ntext-align: center;\r\nfont-size: 22px;\r\npadding: 5px 25px 0px 25px;\r\nborder: 1px solid #7F7F7F;\r\nmargin-left:3px;\r\nmargin-bottom: -1px;\r\nborder-bottom: none;\r\nline-height: 26px;\r\n}\r\n.page_percentage_active {\r\npadding: 0px;\r\nborder-spacing: 0px;\r\nheight: 10px;\r\nbackground: #5C90A2;\r\nfloat: left;\r\n}\r\n.page_percentage_deactive {\r\nheight: 10px;\r\nline-height: 20px;\r\nbackground-color: #E5E5E5;\r\ntext-align: left !important;\r\nmargin-bottom: 2px;\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: right !important;\r\n}\r\n\r\n.wdform_percentage_text {\r\ncolor: #fff;\r\nfont-size: 12px;\r\nposition: relative;\r\nbackground: url([SITE_ROOT]/images/09/03/02.png) no-repeat;\r\nwidth: 36px;\r\ndisplay: inline-block;\r\nheight: 36px;\r\ntop: -37px;\r\nleft: 17px;\r\ntext-align: center;\r\nline-height: 27px;\r\nfloat: right;\r\n}\r\n.wdform_percentage_title {\r\n	color: #000000;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 20px;\r\n	height: 20px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_button button {\r\n	background: #4D792C;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 0px;\r\n	min-width: 80px;\r\n	min-height: 31px;\r\n	color: #fff;\r\n	border: 2px solid #68943B;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}", "0");
INSERT INTO `wp_formmaker_themes` VALUES("34", "Theme 09 transparent (lightgreen button)", ".radio-div input[type=\"radio\"],\r\n.checkbox-div input[type=\"checkbox\"]\r\n{\r\nvisibility: hidden;\r\n}\r\n.wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #F0EFEF;\r\nborder: 1px solid #30D1B1;\r\nmargin-bottom: 10px;\r\ncolor: #30D1B1;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\na.ui-spinner-button\r\n{\r\nborder-radius:0px !important;\r\nbackground: none!important;\r\n}\r\n\r\na.ui-slider-handle {\r\nwidth: 13px;\r\nheight: 13px;\r\ntop: -4px;\r\nborder: 0px;\r\nborder-radius: 13px;\r\nbackground: #FAFAFA;\r\nborder: 3px solid #B1B1B1;\r\noutline: none;\r\n}\r\n\r\n.ui-slider {\r\n	height: 6px;\r\n	background: #F5F5F5 !important;\r\n	margin: 7px 0px;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell input[type=\"text\"] {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #E9E9E9;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n	color: #000;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 0px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\n\r\n\r\n.ui-slider-range {\r\n	background: #E9B500 !important;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #fff;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\nborder-top: 1px solid #7F7F7F !important;\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n.sel-wrap select {\r\n	position: absolute;\r\n z-index:-1;\r\n width: 0px !important;\r\n}\r\n.sel-imul {\r\n	display: inline-block;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	border-radius: 0px;\r\n	padding: 0px 0px 0px 2px;\r\n	font-size: 13px;\r\n	height: 22px;\r\n	line-height: 22px;\r\n	overflow: hidden;\r\n	background: #F8F8F8;\r\n	border: 1px solid #B7B7B7;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 23px;\r\n	width: 30px;\r\n	background: url([SITE_ROOT]/images/09/01.png) 50% 50% no-repeat;\r\n	position: absolute;\r\n	top: 0px;\r\n	right: 0px;\r\n	padding: 0px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text]{\r\n	margin: 0px;\r\n}\r\ninput[type=password]{\r\n	margin: 0px;\r\n}\r\ninput[type=url]{\r\n	margin: 0px;\r\n}\r\ninput[type=email]{\r\n	margin: 0px;\r\n}\r\ninput.text{\r\n	margin: 0px;\r\n}\r\ninput.title{\r\n	margin: 0px;\r\n}\r\ntextarea{\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	position: absolute;\r\n	border-radius: 0px;\r\n	height: 23px;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	}\r\n.file-picker {\r\n	width: 41px;\r\n	height: 32px;\r\n	background: url([SITE_ROOT]/images/09/02/upload.png) no-repeat;\r\n	display: inline-block;\r\n}\r\n.next-page div.wdform-page-button {\r\n	color: #A2A2A2;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 35px;\r\n	line-height: 32px;\r\n	background: url([SITE_ROOT]/images/09/next.png) no-repeat right;\r\n	padding: 0px 36px 0  20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n        border: 1px solid #CECECE;\r\n}\r\n.previous-page div.wdform-page-button {\r\n	color: #A2A2A2;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 35px;\r\n	line-height: 35px;\r\n	background: url([SITE_ROOT]/images/09/previous.png) no-repeat left;\r\n	padding: 0 20px 0 36px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	border: 1px solid #CECECE;\r\n}\r\n.button-submit {\r\n	color: #ffffff;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	line-height: 35px;\r\n	background: #30D1B1;\r\n	padding: 0px 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	min-width: 80px;\r\n	min-height: 35px;\r\n	font-family: Segoe UI;\r\n		border: 1px solid transparent;\r\n	margin: 5px;\r\n}\r\n.button-reset {\r\n	color: #787878;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	line-height: 35px;\r\n	background: #F0EFEF;\r\n	padding: 0px 20px;\r\n	vertical-align: middle;\r\n	font-size: 18px;\r\n	min-width: 80px;\r\n	min-height: 35px;\r\n	font-family: Segoe UI;\r\n	float: right;\r\n	border: 1px solid transparent;\r\n	margin: 5px;\r\n}\r\n.wdform_page {\r\n	background: transparent;\r\n	padding-top: 15px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\npadding:10px;\r\n}\r\n.wdform_column {\r\n	border-right: none !important;\r\n	padding-right: 50px !important;\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n}\r\n.wdform_section_break2 {\r\n	color: #013D7C;\r\n	display: inline-block;\r\n	text-align: left;\r\n	font-size: 23px;\r\nmargin: 16px 10px 5px 0px;\r\n}\r\n\r\n.wdform_section_break {\r\n	color: #E9B500;\r\n	font-size: 23px;\r\nmargin: 16px 0px;\r\n\r\n}\r\n\r\n.wdform-section-break-div\r\n{\r\nborder-top:1px solid #7F7F7F !important;\r\n}\r\n\r\n.wdform_section {\r\n	display: inline-block;\r\n}\r\nselect {\r\n	border-radius: 0px;\r\n	height: 24px;\r\n	overflow: hidden;\r\n	padding: 0px;\r\nbackground: #F8F8F8;\r\nborder: 1px solid #B7B7B7;\r\n	outline: none;\r\n}\r\ninput[type=\"text\"]{\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F8F8F8;\r\nborder:1px solid #B7B7B7;\r\n}\r\ninput[type=\"password\"]{\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F8F8F8;\r\nborder:1px solid #B7B7B7;\r\n}\r\ntextarea {\r\n	border-radius: 0px;\r\n	height: 22px;\r\n	padding:0 3px !important;\r\n	background: #F8F8F8;\r\nborder:1px solid #B7B7B7;\r\n}\r\ninput[type=\"text\"]:focus{\r\n	outline: none;\r\n}\r\ninput[type=\"password\"]:focus{\r\n	outline: none;\r\n}\r\ntextarea:focus{\r\n	outline: none;\r\n}\r\n\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 30px;\r\n	vertical-align: middle;\r\n}\r\n.checkbox-div input[type=checkbox] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.checkbox-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #8B8B8B;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n}\r\n.checkbox-div label {\r\ncursor: pointer;\r\n-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)\";\r\nfilter: alpha(opacity=0);\r\nopacity: 0;\r\ncontent: \"\";\r\nposition: absolute;\r\nwidth: 13px;\r\nheight: 9px;\r\nbackground: url([SITE_ROOT]/images/09/checkbox.png) no-repeat;\r\nborder-radius: 0px;\r\ntop: 1px;\r\nleft: 2px;\r\n}\r\n.checkbox-div label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .checkbox-div label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div input[type=checkbox]:checked + label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/03/date.png) no-repeat !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 22px;\r\n	height: 22px;\r\n	position: relative;\r\n	left: -22px;\r\n	vertical-align: top;\r\n	outline: none;\r\n}\r\n.radio-div input[type=radio] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n.radio-div {\r\n	width: 13px;\r\n	height: 12px;\r\n	background: transparent;\r\n	border: 1px solid #8B8B8B;\r\n	border-radius: 0px;\r\n	position: relative;\r\n	display: inline-block;\r\n	top: 2px;\r\n}\r\n.radio-div label {\r\n	cursor: pointer;\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)\";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: \"\";\r\n	position: absolute;\r\n	width: 9px;\r\n	height: 8px;\r\n	background: #8B8B8B;\r\n	border-radius: 0px;\r\n	top: 2px;\r\n	left: 2px;\r\n}\r\n.radio-div label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .radio-div label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div input[type=radio]:checked + label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.if-ie-div-label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #000;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	margin-top: 15px;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: \"Lucida Grande\", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #000;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #000;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: red;\r\n	vertical-align: top;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n	border-radius: 0px;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\ncolor: #808080;\r\nbackground-color: #E5E5E5;\r\ncursor: pointer;\r\ndisplay: inline-block;\r\nheight: 27px;\r\ntext-align: center;\r\nvertical-align: bottom;\r\npadding: 5px 25px 0px 25px;\r\nfont-size: 18px;\r\nmargin-left:3px;\r\nmargin-bottom:2px;\r\n}\r\n.page_active {\r\n	color: #C2C2C2;\r\ncursor: pointer;\r\nbackground-color: #FFFFFF;\r\ndisplay: inline-block;\r\nvertical-align: bottom;\r\nheight: 29px;\r\ntext-align: center;\r\nfont-size: 22px;\r\npadding: 5px 25px 0px 25px;\r\nborder: 1px solid #7F7F7F;\r\nmargin-left:3px;\r\nmargin-bottom: -1px;\r\nborder-bottom: none;\r\nline-height: 26px;\r\n}\r\n.page_percentage_active {\r\npadding: 0px;\r\nborder-spacing: 0px;\r\nheight: 10px;\r\nbackground: #E7C85C;\r\nfloat: left;\r\n}\r\n.page_percentage_deactive {\r\nheight: 10px;\r\nline-height: 20px;\r\nbackground-color: #E5E5E5;\r\ntext-align: left !important;\r\nmargin-bottom: 2px;\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: right !important;\r\n}\r\n\r\n.wdform_percentage_text {\r\ncolor: #fff;\r\nfont-size: 12px;\r\nposition: relative;\r\nbackground: url([SITE_ROOT]/images/09/02/02.png) no-repeat;\r\nwidth: 36px;\r\ndisplay: inline-block;\r\nheight: 36px;\r\ntop: -37px;\r\nleft: 17px;\r\ntext-align: center;\r\nline-height: 27px;\r\nfloat: right;\r\n}\r\n.wdform_percentage_title {\r\n	color: #000000;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 20px;\r\n	height: 20px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_button button {\r\n	background: #4D792C;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 0px;\r\n	min-width: 80px;\r\n	min-height: 31px;\r\n	color: #fff;\r\n	border: 2px solid #68943B;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}", "0");
INSERT INTO `wp_formmaker_themes` VALUES("35", "Theme 10 orange", ".wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #F7D3BB;\r\nborder: 1px solid #FAAA63;\r\nmargin-bottom: 10px;\r\ncolor: #FAAA63;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell input[type=\"text\"] {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n	content: url([SITE_ROOT]/images/01/01/next_hoverbg.png) url([SITE_ROOT]/images/01/01/previous_hover.png) url([SITE_ROOT]/images/01/01/next_hover.png);\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #E9E9E9;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 3px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\na.ui-spinner-button:hover{\r\n	background: #FFB471 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-spinner-button:active{\r\n	background: #FFB471 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-spinner-button:focus{\r\n	background: #FFB471 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-slider-handle:hover{\r\n	background: #FFB471 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-slider-handle:active{\r\n	background: #FFB471 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-slider-handle:focus{\r\n	background: #FFB471 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\nui-state-hover {\r\n	background: #FFB471 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\n.ui-slider {\r\n	height: 6px;\r\n	background: #fff;\r\n	margin: 7px 0px;\r\n}\r\na.ui-slider-handle {\r\n	border-radius: 10px;\r\n	border: 2px solid #fff;\r\n	background: #A4A4A4;\r\n}\r\n.ui-slider-horizontal .ui-slider-handle {\r\n	top: -8px !important;\r\n}\r\n.ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-content .ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-header .ui-state-default {\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-slider-range {\r\n	background: #A4A4A4 !important;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\n	border: 0px !important;\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n.sel-wrap select {\r\n	position: absolute;\r\n z-index:-1;\r\n width: 0px !important;\r\n}\r\n.sel-imul {\r\n	display: inline-block;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	border-radius: 7px;\r\n	padding: 2px 0px 2px 2px;\r\n	font-size: 13px;\r\n	height: 26px;\r\n	line-height: 26px;\r\n	overflow: hidden;\r\n	background: #fff;\r\n	border: 1px solid #ccc;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 28px;\r\n	width: 32px;\r\n	background: url([SITE_ROOT]/images/01/01.png) 50% 50% no-repeat;\r\n	position: absolute;\r\n	top: 0px;\r\n	right: 0px;\r\n	padding: 1px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text] {\r\n	margin: 0px;\r\n}\r\ninput[type=password] {\r\n	margin: 0px;\r\n}\r\ninput[type=url] {\r\n	margin: 0px;\r\n}\r\ninput[type=email] {\r\n	margin: 0px;\r\n}\r\ninput.text {\r\n	margin: 0px;\r\n}\r\ninput.title {\r\n	margin: 0px;\r\n}\r\ntextarea {\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n.wdform-page-and-images:after {\r\n	width: 100%;\r\n	content: \"\";\r\n	display: block;\r\n	height: 17px;\r\n	background: url([SITE_ROOT]/images/01/0.png) no-repeat center center;\r\n	position: relative;\r\n	background-size: cover;\r\n	top: -17px;\r\n	left: -50px;\r\n	padding-left: 100px;\r\n}\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	background: #fff;\r\n	position: absolute;\r\n	border-radius: 7px;\r\n	height: 27px;\r\n	border: 1px solid #ccc;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	direction: rtl;\r\n//text-overflow: ellipsis;\r\n}\r\n.file-picker {\r\n	width: 38px;\r\n	height: 34px;\r\n	background: url([SITE_ROOT]/images/01/upload.png);\r\n	display: inline-block;\r\n}\r\ndiv.wdform-page-button {\r\n	color: #000;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 36px;\r\n	line-height: 36px;\r\n	background: url([SITE_ROOT]/images/01/nextbg.png) no-repeat right center;\r\n	-webkit-background-size: cover;\r\n	-moz-background-size: cover;\r\n	-o-background-size: cover;\r\n	background-size: cover;\r\n	border-style: solid;\r\n	padding: 0px 15px;\r\n	vertical-align: middle;\r\n	border-color: transparent;\r\n}\r\ndiv.wdform-page-button:hover {\r\n	background: url([SITE_ROOT]/images/01/01/next_hoverbg.png) no-repeat right center;\r\n	-webkit-background-size: cover;\r\n	-moz-background-size: cover;\r\n	-o-background-size: cover;\r\n	background-size: cover;\r\n}\r\n.next-page div.wdform-page-button {\r\n	border-width: 0px 18px 0px 0px;\r\n	-moz-border-image: url([SITE_ROOT]/images/01/next.png) 0 36 0 0 stretch;\r\n	-webkit-border-image: url([SITE_ROOT]/images/01/next.png) 0 36 0 0 stretch;\r\n	-o-border-image: url([SITE_ROOT]/images/01/next.png) 0 36 0 0 stretch;\r\n	border-image: url([SITE_ROOT]/images/01/next.png) 0 36 0 0 stretch;\r\n	box-shadow: inset 51px 0px 8px -50px #636363;\r\n}\r\n.next-page div.wdform-page-button:hover {\r\n	-moz-border-image: url([SITE_ROOT]/images/01/01/next_hover.png) 0 36 0 0 stretch;\r\n	-webkit-border-image: url([SITE_ROOT]/images/01/01/next_hover.png) 0 36 0 0 stretch;\r\n	-o-border-image: url([SITE_ROOT]/images/01/01/next_hover.png) 0 36 0 0 stretch;\r\n	border-image: url([SITE_ROOT]/images/01/01/next_hover.png) 0 36 0 0 stretch;\r\n}\r\n.next-page:before {\r\n	content: \"\";\r\n	height: 56px;\r\n	vertical-align: middle;\r\n	background: url([SITE_ROOT]/images/01/shadow.png) no-repeat left center;\r\n	background-size: contain;\r\n	width: 7px;\r\n	display: inline-block;\r\n	position: relative;\r\n	left: 7px;\r\n}\r\n.previous-page div.wdform-page-button {\r\n	border-width: 0px 0px 0px 18px;\r\n	-moz-border-image: url([SITE_ROOT]/images/01/previous.png) 0 0 0 36 stretch;\r\n	-webkit-border-image: url([SITE_ROOT]/images/01/previous.png) 0 0 0 36 stretch;\r\n	-o-border-image: url([SITE_ROOT]/images/01/previous.png) 0 0 0 36 stretch;\r\n	border-image: url([SITE_ROOT]/images/01/previous.png) 0 0 0 36 stretch;\r\n	box-shadow: inset -51px 0px 8px -50px #636363;\r\n}\r\n.previous-page div.wdform-page-button:hover {\r\n	-moz-border-image: url([SITE_ROOT]/images/01/01/previous_hover.png) 0 0 0 36 stretch;\r\n	-webkit-border-image: url([SITE_ROOT]/images/01/01/previous_hover.png) 0 0 0 36 stretch;\r\n	-o-border-image: url([SITE_ROOT]/images/01/01/previous_hover.png) 0 0 0 36 stretch;\r\n	border-image: url([SITE_ROOT]/images/01/01/previous_hover.png) 0 0 0 36 stretch;\r\n}\r\n.previous-page:after {\r\n	content: \"\";\r\n	height: 56px;\r\n	vertical-align: middle;\r\n	background: url([SITE_ROOT]/images/01/shadow1.png) no-repeat right center;\r\n	background-size: contain;\r\n	width: 7px;\r\n	display: inline-block;\r\n	position: relative;\r\n	left: -7px;\r\n}\r\n.button-submit {\r\n	background: #f58b33; /* Old browsers */\r\n	background: -moz-linear-gradient(left, #f58b33 0%, #faaa63 20%, #faaa63 80%, #f58b33 100%); /* FF3.6+ */\r\n	background: -webkit-gradient(linear, left top, right top, color-stop(0%, #f58b33), color-stop(20%, #faaa63), color-stop(80%, #faaa63), color-stop(100%, #f58b33)); /* Chrome,Safari4+ */\r\n	background: -webkit-linear-gradient(left, #f58b33 0%, #faaa63 20%, #faaa63 80%, #f58b33 100%); /* Chrome10+,Safari5.1+ */\r\n	background: -o-linear-gradient(left, #f58b33 0%, #faaa63 20%, #faaa63 80%, #f58b33 100%); /* Opera 11.10+ */\r\n	background: -ms-linear-gradient(left, #f58b33 0%, #faaa63 20%, #faaa63 80%, #f58b33 100%); /* IE10+ */\r\n	background: linear-gradient(to right, #f58b33 0%, #faaa63 20%, #faaa63 80%, #f58b33 100%); /* W3C */\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 7px;\r\n	min-width: 80px;\r\n	min-height: 34px;\r\n	color: #8D5D35;\r\n	border: 1px solid #F0C579;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 1px 1px #EC8E37;\r\n	font-family: Segoe UI;\r\n	}\r\n.button-reset {\r\n	background: transparent;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 7px;\r\n	min-width: 80px;\r\n	min-height: 34px;\r\n	color: #787878;\r\n	border: 1px solid #c9c9c9;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_page {\r\n	background: #F7D3BB;\r\n	padding: 15px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\n	border-top: 2px solid #FFB471;\r\n}\r\n.wdform_column {\r\n	border-right: none !important;\r\n	padding-right: 30px !important;\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n}\r\n.wdform-field-section-break2 {\r\n	background: url([SITE_ROOT]/images/01/shadow.png) no-repeat left center;\r\n	background-size: contain;\r\n}\r\n.wdform_section_break2 {\r\n	margin: 16px 10px 16px 0px;\r\n	display: inline-block;\r\n	background: #e8a467; /* Old browsers */\r\n	background: -moz-linear-gradient(left, #e8a467 1%, #ffb471 20%, #ffb471 80%, #ffcd72 100%); /* FF3.6+ */\r\n	background: -webkit-gradient(linear, left top, right top, color-stop(1%, #e8a467), color-stop(20%, #ffb471), color-stop(80%, #ffb471), color-stop(100%, #ffcd72)); /* Chrome,Safari4+ */\r\n	background: -webkit-linear-gradient(left, #e8a467 1%, #ffb471 20%, #ffb471 80%, #ffcd72 100%); /* Chrome10+,Safari5.1+ */\r\n	background: -o-linear-gradient(left, #e8a467 1%, #ffb471 20%, #ffb471 80%, #ffcd72 100%); /* Opera 11.10+ */\r\n	background: -ms-linear-gradient(left, #e8a467 1%, #ffb471 20%, #ffb471 80%, #ffcd72 100%); /* IE10+ */\r\n	background: linear-gradient(to right, #e8a467 1%, #ffb471 20%, #ffb471 80%, #ffcd72 100%); /* W3C */\r\n	text-align: left;\r\n	padding: 7px 30px 10px 10px;\r\n	border-top-left-radius: 0px;\r\n	border-top-right-radius: 10px;\r\n	border-bottom-right-radius: 10px;\r\n	border-bottom-left-radius: 0px;\r\n	-moz-box-shadow: inset 51px 0px 8px -50px #636363, 4px 0px 7px 0px rgba(0, 0, 0, 0.23);\r\n	-webkit-box-shadow: inset 51px 0px 8px -50px #636363, 4px 0px 7px 0px rgba(0, 0, 0, 0.23);\r\n	box-shadow: inset 51px 0px 8px -50px #636363, 4px 0px 7px 0px rgba(0, 0, 0, 0.23);\r\nfont-size:18px;\r\n}\r\n\r\n.wdform_section_break {\r\n	margin: 16px 10px 16px 0px;\r\nfont-size:18px;\r\n}\r\n.wdform_section {\r\n	display: table-row;\r\n}\r\nselect {\r\n	border-radius: 7px;\r\n	height: 32px;\r\n	overflow: hidden;\r\n	border: 1px solid #ccc;\r\n	padding: 2px;\r\n	outline: none;\r\n}\r\ninput[type=\"text\"]{\r\n	border-radius: 7px;\r\n	height: 30px;\r\n	border: 1px solid #ccc;\r\n	padding:0 3px !important;\r\n}\r\ninput[type=\"password\"]{\r\n	border-radius: 7px;\r\n	height: 30px;\r\n	border: 1px solid #ccc;\r\n	padding:0 3px !important;\r\n}\r\ntextarea {\r\n	border-radius: 7px;\r\n	height: 30px;\r\n	border: 1px solid #ccc;\r\n	padding:0 3px !important;\r\n}\r\ninput[type=\"text\"]:focus{\r\n	border-color: #FFB471;\r\n	outline: none;\r\n}\r\n\r\ninput[type=\"password\"]:focus{\r\n	border-color: #FFB471;\r\n	outline: none;\r\n}\r\n\r\ntextarea:focus{\r\n	border-color: #FFB471;\r\n	outline: none;\r\n}\r\n\r\n\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 70px;\r\n	vertical-align: middle;\r\n}\r\n.checkbox-div input[type=checkbox] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.checkbox-div {\r\n	width: 15px;\r\n	height: 16px;\r\n	background: #fff;\r\n	border: 1px solid #ccc;\r\n	border-radius: 5px;\r\n	position: relative;\r\n	display: inline-block;\r\n}\r\n.checkbox-div label {\r\n	cursor: pointer;\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)\";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: \"\";\r\n	position: absolute;\r\n	width: 16px;\r\n	height: 13px;\r\n	background: url([SITE_ROOT]/images/01/checkbox.png);\r\n	border-radius: 2px;\r\n	top: 0px;\r\n	left: 2px;\r\n}\r\n.checkbox-div label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .checkbox-div label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div input[type=checkbox]:checked + label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/01/date.png) no-repeat left 50% !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 37px;\r\n	height: 30px;\r\n	position: relative;\r\n	left: -35px;\r\n	vertical-align: top;\r\n}\r\n.wdform-calendar-button:focus {\r\n	outline:none;\r\n}\r\n.radio-div input[type=radio] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n.radio-div {\r\n	width: 15px;\r\n	height: 16px;\r\n	background: #fff;\r\n	border: 1px solid #ccc;\r\n	border-radius: 5px;\r\n	position: relative;\r\n	display: inline-block;\r\n}\r\n.radio-div label {\r\n	cursor: pointer;\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)\";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: \"\";\r\n	position: absolute;\r\n	width: 9px;\r\n	height: 10px;\r\n	background: #615F60;\r\n	border-radius: 2px;\r\n	top: 3px;\r\n	left: 3px;\r\n}\r\n.radio-div label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .radio-div label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div input[type=radio]:checked + label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.if-ie-div-label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #000;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	border-top: 1px solid #D8D6D7;\r\n	padding-top: 5px;\r\n	margin-top: 15px;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: \"Lucida Grande\", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #000;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #000;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: red;\r\n	vertical-align: top;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n	border-radius: 7px;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\n	font-size: 12px;\r\n color: #000;\r\n	cursor: pointer;\r\n	background-color: #FFD9B8;\r\n	margin: 1px;\r\n	display: inline-block;\r\n	height: 20px;\r\n	text-align: center;\r\n	vertical-align: bottom;\r\n	padding-top: 5px;\r\n	padding: 5px 30px 0px 30px;\r\n}\r\n.page_active {\r\n	color: #000;\r\n	cursor: pointer;\r\n	background-color: #FFB471;\r\n	margin: 1px;\r\n	display: inline-block;\r\n	vertical-align: bottom;\r\n	height: 25px;\r\n	text-align: center;\r\n	padding: 5px 30px 0px 30px;\r\n}\r\n.page_percentage_active {\r\n	padding: 0px;\r\n	margin: 0px;\r\n	border-spacing: 0px;\r\n	height: 25px;\r\n	line-height: 25px;\r\n	border-top-left-radius: 17px;\r\n	font-size: 15px;\r\n	float: left;\r\n	text-align: right !important;\r\n	z-index: 1;\r\n	position: relative;\r\n	background: #FF983C; /* Old browsers */\r\n	background: -moz-linear-gradient(left, #f6a965 0%, #f6a965 67%, #ff983c 100%); /* FF3.6+ */\r\n	background: -webkit-gradient(linear, left top, right top, color-stop(0%, #f6a965), color-stop(67%, #f6a965), color-stop(100%, #ff983c)); /* Chrome,Safari4+ */\r\n	background: -webkit-linear-gradient(left, #f6a965 0%, #f6a965 67%, #ff983c 100%); /* Chrome10+,Safari5.1+ */\r\n	background: -o-linear-gradient(left, #f6a965 0%, #f6a965 67%, #ff983c 100%); /* Opera 11.10+ */\r\n	background: -ms-linear-gradient(left, #f6a965 0%, #f6a965 67%, #ff983c 100%); /* IE10+ */\r\n	background: linear-gradient(to right, #f6a965 0%, #f6a965 67%, #ff983c 100%); /* W3C */\r\n	vertical-align: middle;\r\n}\r\n.page_percentage_deactive {\r\n	height: 25px;\r\n	line-height: 25px;\r\n	background-color: #FFD9B8;\r\n	text-align: left !important;\r\n	margin-bottom: 1px;\r\n	border-top-left-radius: 17px;\r\n	border-top-right-radius: 17px;\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: right !important;\r\n	margin-bottom: 0px;\r\n}\r\n.wdform_page_navigation span:first-child {\r\n	border-top-left-radius: 17px;\r\n}\r\n.wdform_percentage_arrow {\r\ndisplay: inline-block;\r\nwidth: 21px;\r\nheight: 25px;\r\nbackground-color: #FF983D;\r\nposition: relative;\r\nleft: -15px;\r\nz-index: 0;\r\nvertical-align: middle;\r\n-moz-transform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(-10deg) skewY(0deg);\r\n-webkit-transform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(-25deg) skewY(0deg);\r\n-o-transform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(-10deg) skewY(0deg);\r\n-ms-transform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(-10deg) skewY(0deg);\r\ntransform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(-10deg) skewY(0deg);\r\n}\r\n.wdform_percentage_text {\r\n	margin: 3px -14px 3px 9px;\r\n	color: #FFFFFF;\r\n	font-weight: bold;\r\n}\r\n.wdform_percentage_title {\r\n	color: #000000;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 25px;\r\n	height: 25px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #fff;\r\n}\r\n.wdform_button button {\r\n	background: #e4e4e4; /* Old browsers */\r\n	background: -moz-linear-gradient(top, #e4e4e4 0%, #cccccc 100%); /* FF3.6+ */\r\n	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #e4e4e4), color-stop(100%, #cccccc)); /* Chrome,Safari4+ */\r\n	background: -webkit-linear-gradient(top, #e4e4e4 0%, #cccccc 100%); /* Chrome10+,Safari5.1+ */\r\n	background: -o-linear-gradient(top, #e4e4e4 0%, #cccccc 100%); /* Opera 11.10+ */\r\n	background: -ms-linear-gradient(top, #e4e4e4 0%, #cccccc 100%); /* IE10+ */\r\n	background: linear-gradient(to bottom, #e4e4e4 0%, #cccccc 100%); /* W3C */\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 7px;\r\n	min-width: 80px;\r\n	min-height: 27px;\r\n	color: #787878;\r\n	border: 0px;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}", "0");
INSERT INTO `wp_formmaker_themes` VALUES("36", "Theme 10 blue", ".wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #D1E0F0;\r\nborder: 1px solid #075DA4;\r\nmargin-bottom: 10px;\r\ncolor: #075DA4;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell input[type=\"text\"] {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n	content: url([SITE_ROOT]/images/01/02/next_hoverbg.png) url([SITE_ROOT]/images/01/02/previous_hover.png) url([SITE_ROOT]/images/01/02/next_hover.png);\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #E9E9E9;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 3px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\na.ui-spinner-button:hover{\r\n	background: #004D8E !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-spinner-button:active{\r\n	background: #004D8E !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-spinner-button:focus{\r\n	background: #FFB471 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-slider-handle:hover{\r\n	background: #004D8E !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-slider-handle:active{\r\n	background: #FFB471 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-slider-handle:focus{\r\n	background: #004D8E !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\nui-state-hover {\r\n	background: #FFB471 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\n.ui-slider {\r\n	height: 6px;\r\n	background: #fff;\r\n	margin: 7px 0px;\r\n}\r\na.ui-slider-handle {\r\n	border-radius: 10px;\r\n	border: 2px solid #fff;\r\n	background: #A4A4A4;\r\n}\r\n.ui-slider-horizontal .ui-slider-handle {\r\n	top: -8px !important;\r\n}\r\n.ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-content .ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-header .ui-state-default {\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-slider-range {\r\n	background: #A4A4A4 !important;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\n	border: 0px !important;\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n.sel-wrap select {\r\n	position: absolute;\r\n z-index:-1;\r\n width: 0px !important;\r\n}\r\n.sel-imul {\r\n	display: inline-block;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	border-radius: 7px;\r\n	padding: 2px 0px 2px 2px;\r\n	font-size: 13px;\r\n	height: 26px;\r\n	line-height: 26px;\r\n	overflow: hidden;\r\n	background: #fff;\r\n	border: 1px solid #ccc;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 28px;\r\n	width: 32px;\r\n	background: url([SITE_ROOT]/images/01/01.png) 50% 50% no-repeat;\r\n	position: absolute;\r\n	top: 0px;\r\n	right: 0px;\r\n	padding: 1px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text] {\r\n	margin: 0px;\r\n}\r\ninput[type=password] {\r\n	margin: 0px;\r\n}\r\ninput[type=url] {\r\n	margin: 0px;\r\n}\r\ninput[type=email] {\r\n	margin: 0px;\r\n}\r\ninput.text {\r\n	margin: 0px;\r\n}\r\ninput.title {\r\n	margin: 0px;\r\n}\r\ntextarea {\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n.wdform-page-and-images:after {\r\n	width: 100%;\r\n	content: \"\";\r\n	display: block;\r\n	height: 17px;\r\n	background: url([SITE_ROOT]/images/01/0.png) no-repeat center center;\r\n	position: relative;\r\n	background-size: cover;\r\n	top: -17px;\r\n	left: -50px;\r\n	padding-left: 100px;\r\n}\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	background: #fff;\r\n	position: absolute;\r\n	border-radius: 7px;\r\n	height: 27px;\r\n	border: 1px solid #ccc;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	direction: rtl;\r\n//text-overflow: ellipsis;\r\n}\r\n.file-picker {\r\n	width: 38px;\r\n	height: 34px;\r\n	background: url([SITE_ROOT]/images/01/upload.png);\r\n	display: inline-block;\r\n}\r\ndiv.wdform-page-button {\r\n	color: #414141;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 36px;\r\n	line-height: 36px;\r\n	background: url([SITE_ROOT]/images/01/nextbg.png) no-repeat right center;\r\n	-webkit-background-size: cover;\r\n	-moz-background-size: cover;\r\n	-o-background-size: cover;\r\n	background-size: cover;\r\n	border-style: solid;\r\n	padding: 0px 15px;\r\n	vertical-align: middle;\r\n	border-color: transparent;\r\n}\r\ndiv.wdform-page-button:hover {\r\n	background: url([SITE_ROOT]/images/01/02/next_hoverbg.png) no-repeat right center;\r\n	-webkit-background-size: cover;\r\n	-moz-background-size: cover;\r\n	-o-background-size: cover;\r\n	background-size: cover;\r\ncolor:#fff;\r\n}\r\n.next-page div.wdform-page-button {\r\n	border-width: 0px 18px 0px 0px;\r\n	-moz-border-image: url([SITE_ROOT]/images/01/next.png) 0 36 0 0 stretch;\r\n	-webkit-border-image: url([SITE_ROOT]/images/01/next.png) 0 36 0 0 stretch;\r\n	-o-border-image: url([SITE_ROOT]/images/01/next.png) 0 36 0 0 stretch;\r\n	border-image: url([SITE_ROOT]/images/01/next.png) 0 36 0 0 stretch;\r\n	box-shadow: inset 51px 0px 8px -50px #636363;\r\n}\r\n.next-page div.wdform-page-button:hover {\r\n	-moz-border-image: url([SITE_ROOT]/images/01/02/next_hover.png) 0 36 0 0 stretch;\r\n	-webkit-border-image: url([SITE_ROOT]/images/01/02/next_hover.png) 0 36 0 0 stretch;\r\n	-o-border-image: url([SITE_ROOT]/images/01/02/next_hover.png) 0 36 0 0 stretch;\r\n	border-image: url([SITE_ROOT]/images/01/02/next_hover.png) 0 36 0 0 stretch;\r\n}\r\n.next-page:before {\r\n	content: \"\";\r\n	height: 56px;\r\n	vertical-align: middle;\r\n	background: url([SITE_ROOT]/images/01/shadow.png) no-repeat left center;\r\n	background-size: contain;\r\n	width: 7px;\r\n	display: inline-block;\r\n	position: relative;\r\n	left: 7px;\r\n}\r\n.previous-page div.wdform-page-button {\r\n	border-width: 0px 0px 0px 18px;\r\n	-moz-border-image: url([SITE_ROOT]/images/01/previous.png) 0 0 0 36 stretch;\r\n	-webkit-border-image: url([SITE_ROOT]/images/01/previous.png) 0 0 0 36 stretch;\r\n	-o-border-image: url([SITE_ROOT]/images/01/previous.png) 0 0 0 36 stretch;\r\n	border-image: url([SITE_ROOT]/images/01/previous.png) 0 0 0 36 stretch;\r\n	box-shadow: inset -51px 0px 8px -50px #636363;\r\n}\r\n.previous-page div.wdform-page-button:hover {\r\n	-moz-border-image: url([SITE_ROOT]/images/01/02/previous_hover.png) 0 0 0 36 stretch;\r\n	-webkit-border-image: url([SITE_ROOT]/images/01/02/previous_hover.png) 0 0 0 36 stretch;\r\n	-o-border-image: url([SITE_ROOT]/images/01/02/previous_hover.png) 0 0 0 36 stretch;\r\n	border-image: url([SITE_ROOT]/images/01/02/previous_hover.png) 0 0 0 36 stretch;\r\n}\r\n.previous-page:after {\r\n	content: \"\";\r\n	height: 56px;\r\n	vertical-align: middle;\r\n	background: url([SITE_ROOT]/images/01/shadow1.png) no-repeat right center;\r\n	background-size: contain;\r\n	width: 7px;\r\n	display: inline-block;\r\n	position: relative;\r\n	left: -7px;\r\n}\r\n.button-submit {\r\nbackground: #035192 ;\r\nbackground: -moz-linear-gradient(left, #035192 0%, #0860A9 20%, #0860A9 80%, #035192 100%);\r\nbackground: -webkit-gradient(linear, left top, right top, color-stop(0%, #035192 ), color-stop(20%, #0860A9 ), color-stop(80%, #0860A9 ), color-stop(100%, #035192 ));\r\nbackground: -webkit-linear-gradient(left, #035192 0%, #0860A9 20%, #0860A9 80%, #035192 100%);\r\nbackground: -o-linear-gradient(left, #035192 0%, #0860A9 20%, #0860A9 80%, #035192 100%);\r\nbackground: -ms-linear-gradient(left, #035192 0%, #0860A9 20%, #0860A9 80%, #035192 100%);\r\nbackground: linear-gradient(to right, #035192 0%, #0860A9 20%, #0860A9 80%, #035192 100%);\r\ncursor: pointer;\r\nfont-size: 17px;\r\nborder-radius: 7px;\r\nmin-width: 80px;\r\nmin-height: 34px;\r\ncolor: #fff;\r\nborder: 1px solid #3A8BCF;\r\nmargin: 5px;\r\nbox-shadow: 0px 0px 1px 1px #063A66;\r\nfont-family: Segoe UI;\r\n	}\r\n.button-reset {\r\n	background: transparent;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 7px;\r\n	min-width: 80px;\r\n	min-height: 34px;\r\n	color: #787878;\r\n	border: 1px solid #c9c9c9;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_page {\r\n	background: #D1E0F0;\r\n	padding: 15px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\n	border-top: 1px solid #004D8E;\r\n}\r\n.wdform_column {\r\n	border-right: none !important;\r\n	padding-right: 30px !important;\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n}\r\n.wdform-field-section-break2 {\r\n	background: url([SITE_ROOT]/images/01/shadow.png) no-repeat left center;\r\n	background-size: contain;\r\n}\r\n.wdform_section_break2 {\r\n	margin: 16px 10px 16px 0px;\r\n	display: inline-block;\r\n	background: #0559A0 ; /* Old browsers */\r\n	background: -moz-linear-gradient(left, #00457F 1%, #0559A0 20%, #0E6AB8 80%, #006CC7 100%); /* FF3.6+ */\r\n	background: -webkit-gradient(linear, left top, right top, color-stop(1%, #00457F ), color-stop(20%, #0559A0 ), color-stop(80%, #0E6AB8 ), color-stop(100%, #006CC7 )); /* Chrome,Safari4+ */\r\n	background: -webkit-linear-gradient(left, #00457F 1%, #0559A0 20%, #0E6AB8 80%, #006CC7 100%); /* Chrome10+,Safari5.1+ */\r\n	background: -o-linear-gradient(left, #00457F 1%, #0559A0 20%, #0E6AB8 80%, #006CC7 100%); /* Opera 11.10+ */\r\n	background: -ms-linear-gradient(left, #00457F 1%, #0559A0 20%, #0E6AB8 80%, #006CC7 100%); /* IE10+ */\r\nbackground: linear-gradient(to right, #00457F 1%, #0559A0 20%, #0E6AB8 80%, #006CC7 100%); /* W3C */\r\n	text-align: left;\r\n	padding: 7px 30px 10px 10px;\r\n	border-top-left-radius: 0px;\r\n	border-top-right-radius: 10px;\r\n	border-bottom-right-radius: 10px;\r\n	border-bottom-left-radius: 0px;\r\n	-moz-box-shadow: inset 51px 0px 8px -50px #636363, 4px 0px 7px 0px rgba(0, 0, 0, 0.23);\r\n	-webkit-box-shadow: inset 51px 0px 8px -50px #636363, 4px 0px 7px 0px rgba(0, 0, 0, 0.23);\r\n	box-shadow: inset 51px 0px 8px -50px #636363, 4px 0px 7px 0px rgba(0, 0, 0, 0.23);\r\ncolor:#fff;\r\nfont-size:18px;\r\n}\r\n\r\n.wdform_section_break {\r\n	margin: 16px 0px;\r\nfont-size:18px;\r\n}\r\n.wdform_section {\r\n	display: table-row;\r\n}\r\nselect {\r\n	border-radius: 7px;\r\n	height: 32px;\r\n	overflow: hidden;\r\n	border: 1px solid #ccc;\r\n	padding: 2px;\r\n	outline: none;\r\n}\r\ninput[type=\"text\"]{\r\n	border-radius: 7px;\r\n	height: 30px;\r\n	border: 1px solid #ccc;\r\n	padding:0 3px !important;\r\n}\r\ninput[type=\"password\"]{\r\n	border-radius: 7px;\r\n	height: 30px;\r\n	border: 1px solid #ccc;\r\n	padding:0 3px !important;\r\n}\r\ntextarea {\r\n	border-radius: 7px;\r\n	height: 30px;\r\n	border: 1px solid #ccc;\r\n	padding:0 3px !important;\r\n}\r\ninput[type=\"text\"]:focus{\r\n	border-color: #004D8E;\r\n	outline: none;\r\n}\r\n\r\ninput[type=\"password\"]:focus{\r\n	border-color: #004D8E;\r\n	outline: none;\r\n}\r\n\r\ntextarea:focus{\r\n	border-color: #004D8E;\r\n	outline: none;\r\n}\r\n\r\n\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 70px;\r\n	vertical-align: middle;\r\n}\r\n.checkbox-div input[type=checkbox] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.checkbox-div {\r\n	width: 15px;\r\n	height: 16px;\r\n	background: #fff;\r\n	border: 1px solid #ccc;\r\n	border-radius: 5px;\r\n	position: relative;\r\n	display: inline-block;\r\n}\r\n.checkbox-div label {\r\n	cursor: pointer;\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)\";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: \"\";\r\n	position: absolute;\r\n	width: 16px;\r\n	height: 13px;\r\n	background: url([SITE_ROOT]/images/01/checkbox.png);\r\n	border-radius: 2px;\r\n	top: 0px;\r\n	left: 2px;\r\n}\r\n.checkbox-div label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .checkbox-div label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div input[type=checkbox]:checked + label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/01/date.png) no-repeat left 50% !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 37px;\r\n	height: 30px;\r\n	position: relative;\r\n	left: -35px;\r\n	vertical-align: top;\r\n}\r\n.wdform-calendar-button:focus {\r\n outline:none; \r\n}\r\n.wdform-calendar-button:focus {\r\n	outline:none;\r\n}\r\n.radio-div input[type=radio] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n.radio-div {\r\n	width: 15px;\r\n	height: 16px;\r\n	background: #fff;\r\n	border: 1px solid #ccc;\r\n	border-radius: 5px;\r\n	position: relative;\r\n	display: inline-block;\r\n}\r\n.radio-div label {\r\n	cursor: pointer;\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)\";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: \"\";\r\n	position: absolute;\r\n	width: 9px;\r\n	height: 10px;\r\n	background: #615F60;\r\n	border-radius: 2px;\r\n	top: 3px;\r\n	left: 3px;\r\n}\r\n.radio-div label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .radio-div label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div input[type=radio]:checked + label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.if-ie-div-label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #000;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	border-top: 1px solid #D8D6D7;\r\n	padding-top: 5px;\r\n	margin-top: 15px;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: \"Lucida Grande\", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #000;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #000;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: red;\r\n	vertical-align: top;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n	border-radius: 7px;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\n	font-size: 12px;\r\n color: #0D5492;\r\n	cursor: pointer;\r\n	background-color: #7FA6C6;\r\n	margin: 1px;\r\n	display: inline-block;\r\n	height: 20px;\r\n	text-align: center;\r\n	vertical-align: bottom;\r\n	padding-top: 5px;\r\n	padding: 5px 30px 0px 30px;\r\n}\r\n.page_active {\r\n	color: #fff;\r\n	cursor: pointer;\r\n	background-color: #004D8E;\r\n	margin: 1px;\r\n	display: inline-block;\r\n	vertical-align: bottom;\r\n	height: 25px;\r\n	text-align: center;\r\n	padding: 5px 30px 0px 30px;\r\n}\r\n.page_percentage_active {\r\n	padding: 0px;\r\n	margin: 0px;\r\n	border-spacing: 0px;\r\n	height: 25px;\r\n	line-height: 25px;\r\n	border-top-left-radius: 17px;\r\n	font-size: 15px;\r\n	float: left;\r\n	text-align: right !important;\r\n	z-index: 1;\r\n	position: relative;\r\n	background: #00559D ; /* Old browsers */\r\n	background: -moz-linear-gradient(left, #00559D 0%, #005BA7 67%, #00559D 100%); /* FF3.6+ */\r\n	background: -webkit-gradient(linear, left top, right top, color-stop(0%, #00559D ), color-stop(67%, #005BA7 ), color-stop(100%, #00559D )); /* Chrome,Safari4+ */\r\n	background: -webkit-linear-gradient(left, #00559D 0%, #005BA7 67%, #00559D 100%); /* Chrome10+,Safari5.1+ */\r\n	background: -o-linear-gradient(left, #00559D 0%, #005BA7 67%, #00559D 100%); /* Opera 11.10+ */\r\n	background: -ms-linear-gradient(left, #00559D 0%, #005BA7 67%, #00559D 100%); /* IE10+ */\r\nbackground: linear-gradient(to right, #00559D 0%, #005BA7 67%, #00559D 100%);\r\n	vertical-align: middle;\r\n}\r\n.page_percentage_deactive {\r\n	height: 25px;\r\n	line-height: 25px;\r\n	background-color: #7FA6C6;\r\n	text-align: left !important;\r\n	margin-bottom: 1px;\r\n	border-top-left-radius: 17px;\r\n	border-top-right-radius: 17px;\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: right !important;\r\n	margin-bottom: 0px;\r\n}\r\n.wdform_page_navigation span:first-child {\r\n	border-top-left-radius: 17px;\r\n}\r\n.wdform_percentage_arrow {\r\ndisplay: inline-block;\r\nwidth: 21px;\r\nheight: 25px;\r\nbackground-color: #0057A0;\r\nposition: relative;\r\nleft: -15px;\r\nz-index: 0;\r\nvertical-align: middle;\r\n-moz-transform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(-10deg) skewY(0deg);\r\n-webkit-transform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(-25deg) skewY(0deg);\r\n-o-transform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(-10deg) skewY(0deg);\r\n-ms-transform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(-10deg) skewY(0deg);\r\ntransform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(-10deg) skewY(0deg);\r\n}\r\n.wdform_percentage_text {\r\n	margin: 3px -14px 3px 9px;\r\n	color: #FFFFFF;\r\n	font-weight: bold;\r\n}\r\n.wdform_percentage_title {\r\n	color: #000000;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 25px;\r\n	height: 25px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #fff;\r\n}\r\n.wdform_button button {\r\n	background: #e4e4e4; /* Old browsers */\r\n	background: -moz-linear-gradient(top, #e4e4e4 0%, #cccccc 100%); /* FF3.6+ */\r\n	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #e4e4e4), color-stop(100%, #cccccc)); /* Chrome,Safari4+ */\r\n	background: -webkit-linear-gradient(top, #e4e4e4 0%, #cccccc 100%); /* Chrome10+,Safari5.1+ */\r\n	background: -o-linear-gradient(top, #e4e4e4 0%, #cccccc 100%); /* Opera 11.10+ */\r\n	background: -ms-linear-gradient(top, #e4e4e4 0%, #cccccc 100%); /* IE10+ */\r\n	background: linear-gradient(to bottom, #e4e4e4 0%, #cccccc 100%); /* W3C */\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 7px;\r\n	min-width: 80px;\r\n	min-height: 27px;\r\n	color: #787878;\r\n	border: 0px;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}", "0");
INSERT INTO `wp_formmaker_themes` VALUES("37", "Theme 10 green", ".wdform-page-and-images .other_input\r\n{\r\nmax-width: none;\r\n}\r\nbutton,\r\ninput,\r\nselect,\r\ntextarea\r\n{\r\nfont-size:14px;\r\n}\r\n.warning,\r\n.error\r\n{\r\nbackground-color: #D8E5DB;\r\nborder: 1px solid #007616;\r\nmargin-bottom: 10px;\r\ncolor: #007616;\r\npadding: 5px;\r\n}\r\n.warning *,\r\n.error *\r\n{\r\nmargin:0;\r\n}\r\n.recaptcha_input_area input\r\n{\r\nheight:initial !important;\r\n}\r\n.wdform_grading input {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell input[type=\"text\"] {\r\n	width: 100px;\r\n}\r\n.wdform-matrix-cell select {\r\n	width: 60px;\r\n}\r\n.wdform_section .wdform_column:last-child {\r\n	padding-right: 0px !important;\r\n}\r\n.wdform_preload {\r\n	display: none;\r\n	content: url([SITE_ROOT]/images/01/03/next_hoverbg.png) url([SITE_ROOT]/images/01/03/previous_hover.png) url([SITE_ROOT]/images/01/03/next_hover.png);\r\n}\r\n.wdform_grading {\r\n	padding: 3px 0px;\r\n}\r\n.wdform-matrix-table {\r\n	display: table;\r\n	border-spacing: 0px;\r\n}\r\n.wdform-matrix-column {\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-matrix-cell {\r\n	text-align: center;\r\n	display: table-cell;\r\n	padding: 6px 10px;\r\n}\r\n.wdform-matrix-head>div {\r\n	display: table-cell;\r\n	text-align: center;\r\n}\r\n.wdform-matrix-head {\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row0 {\r\n	background: #DFDFDF;\r\n	display: table-row;\r\n}\r\n.wdform-matrix-row1 {\r\n	background: #E9E9E9;\r\n	display: table-row;\r\n}\r\n.selected-text {\r\n	text-align: left;\r\n}\r\n.wdform-quantity {\r\n	width: 30px;\r\n	margin: 2px 0px;\r\n}\r\n.wdform_scale_rating label {\r\n	vertical-align: middle;\r\n}\r\n.ui-corner-all {\r\n	border-radius: 3px;\r\n}\r\n.ui-widget-content {\r\n	border: 0px;\r\n	background: transparent;\r\n}\r\na.ui-spinner-button:hover{\r\n	background: #006C14 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-spinner-button:active{\r\n	background: #006C14 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-spinner-button:focus{\r\n	background: #006C14 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-slider-handle:hover{\r\n	background: #006C14 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-slider-handle:active{\r\n	background: #006C14 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\na.ui-slider-handle:focus{\r\n	background: #006C14 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\nui-state-hover {\r\n	background: #006C14 !important;\r\n	color: #fff;\r\n	outline: none;\r\n}\r\n.ui-slider {\r\n	height: 6px;\r\n	background: #fff;\r\n	margin: 7px 0px;\r\n}\r\na.ui-slider-handle {\r\n	border-radius: 10px;\r\n	border: 2px solid #fff;\r\n	background: #A4A4A4;\r\n}\r\n.ui-slider-horizontal .ui-slider-handle {\r\n	top: -8px !important;\r\n}\r\n.ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-content .ui-state-default{\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-widget-header .ui-state-default {\r\n	border: 1px solid #d3d3d3;\r\n	background: #DFDDDD;\r\n	font-weight: normal;\r\n	color: #555555;\r\n}\r\n.ui-slider-range {\r\n	background: #A4A4A4 !important;\r\n}\r\n.wdform-page-and-images {\r\n	width: 100%;\r\n	border: 0px !important;\r\n}\r\n.paypal-property {\r\n	display: inline-block;\r\n	margin-right: 15px;\r\n	vertical-align: middle;\r\n}\r\n.sel-wrap {\r\n	display: inline-block;\r\n	vertical-align: middle;\r\n	width:100%;\r\n}\r\n.sel-wrap select {\r\n	position: absolute;\r\n z-index:-1;\r\n width: 0px !important;\r\n}\r\n.sel-imul {\r\n	display: inline-block;\r\n}\r\n.sel-imul .sel-selected {\r\n	cursor: pointer;\r\n	position: relative;\r\n	display: inline-block;\r\n	border-radius: 7px;\r\n	padding: 2px 0px 2px 2px;\r\n	font-size: 13px;\r\n	height: 26px;\r\n	line-height: 26px;\r\n	overflow: hidden;\r\n	background: #fff;\r\n	border: 1px solid #ccc;\r\n	background-position: right 2px center;\r\n	width: 100%;\r\n}\r\n.sel-imul.act .sel-selected {\r\n	background: #fff;\r\n}\r\n.sel-selected .sel-arraw {\r\n	height: 28px;\r\n	width: 32px;\r\n	background: url([SITE_ROOT]/images/01/01.png) 50% 50% no-repeat;\r\n	position: absolute;\r\n	top: 0px;\r\n	right: 0px;\r\n	padding: 1px;\r\n}\r\n.sel-imul:hover .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul.act .sel-selected .sel-arraw {\r\n// background-color:#e0e0e0;\r\n// border-left:1px solid #bbb;\r\n}\r\n.sel-imul .sel-options {\r\n	background: #fff;\r\n	border: 1px solid #dbdbdb;\r\n	border-top: none;\r\n	position: absolute;\r\n	width: inherit;\r\n	display: none;\r\n	z-index: 10;\r\n	max-height: 200px;\r\n	overflow-y: auto;\r\n	overflow-x: hidden;\r\n}\r\n.sel-options .sel-option {\r\n	padding: 3px 4px;\r\n	font-size: 13px;\r\n	border: 1px solid #fff;\r\n	border-right: none;\r\n	border-left: none;\r\n	text-align: left;\r\n}\r\n.sel-options .sel-option:hover {\r\n	border-color: #dbdbdb;\r\n	cursor: pointer;\r\n}\r\n.sel-options .sel-option.sel-ed {\r\n	background: #dbdbdb;\r\n	border-color: #dbdbdb;\r\n}\r\ninput[type=text] {\r\n	margin: 0px;\r\n}\r\ninput[type=password] {\r\n	margin: 0px;\r\n}\r\ninput[type=url] {\r\n	margin: 0px;\r\n}\r\ninput[type=email] {\r\n	margin: 0px;\r\n}\r\ninput.text {\r\n	margin: 0px;\r\n}\r\ninput.title {\r\n	margin: 0px;\r\n}\r\ntextarea {\r\n	margin: 0px;\r\n}\r\nselect {\r\n	margin: 0px;\r\n}\r\n.form-error {\r\n	border-color: red !important;\r\n}\r\n.form-error:focus {\r\n	border-color: red !important;\r\n}\r\n.wdform-page-and-images:after {\r\n	width: 100%;\r\n	content: \"\";\r\n	display: block;\r\n	height: 17px;\r\n	background: url([SITE_ROOT]/images/01/0.png) no-repeat center center;\r\n	position: relative;\r\n	background-size: cover;\r\n	top: -17px;\r\n	left: -50px;\r\n	padding-left: 100px;\r\n}\r\n.wdform-field {\r\n	display: table-cell;\r\n	padding: 5px 0px;\r\n}\r\n.wdform-label-section{\r\n	text-align: left;\r\n	display: table-cell;\r\n}\r\n.wdform-element-section {\r\n	text-align: left;\r\n	display: table-cell;\r\n	min-width: 140px;\r\n}\r\n.file-upload input {\r\n	position: absolute;\r\n	visibility: hidden;\r\n}\r\n.file-upload-status {\r\n	margin-left: 10px;\r\n	max-width: 200px;\r\n	font-weight: bold;\r\n	font-size: 16px;\r\n	color: #888;\r\n	background: #fff;\r\n	position: absolute;\r\n	border-radius: 7px;\r\n	height: 27px;\r\n	border: 1px solid #ccc;\r\n	padding-left: 5px;\r\n	padding-right: 5px;\r\n	white-space: nowrap;\r\n	overflow: hidden;\r\n	direction: rtl;\r\n//text-overflow: ellipsis;\r\n}\r\n.file-picker {\r\n	width: 38px;\r\n	height: 34px;\r\n	background: url([SITE_ROOT]/images/01/upload.png);\r\n	display: inline-block;\r\n}\r\ndiv.wdform-page-button {\r\n	color: #414141;\r\n	cursor: pointer;\r\n	display: inline-block;\r\n	height: 36px;\r\n	line-height: 36px;\r\n	background: url([SITE_ROOT]/images/01/nextbg.png) no-repeat right center;\r\n	-webkit-background-size: cover;\r\n	-moz-background-size: cover;\r\n	-o-background-size: cover;\r\n	background-size: cover;\r\n	border-style: solid;\r\n	padding: 0px 15px;\r\n	vertical-align: middle;\r\n	border-color: transparent;\r\n}\r\ndiv.wdform-page-button:hover {\r\n	background: url([SITE_ROOT]/images/01/03/next_hoverbg.png) no-repeat right center;\r\n	-webkit-background-size: cover;\r\n	-moz-background-size: cover;\r\n	-o-background-size: cover;\r\n	background-size: cover;\r\ncolor:#fff;\r\n}\r\n.next-page div.wdform-page-button {\r\n	border-width: 0px 18px 0px 0px;\r\n	-moz-border-image: url([SITE_ROOT]/images/01/next.png) 0 36 0 0 stretch;\r\n	-webkit-border-image: url([SITE_ROOT]/images/01/next.png) 0 36 0 0 stretch;\r\n	-o-border-image: url([SITE_ROOT]/images/01/next.png) 0 36 0 0 stretch;\r\n	border-image: url([SITE_ROOT]/images/01/next.png) 0 36 0 0 stretch;\r\n	box-shadow: inset 51px 0px 8px -50px #636363;\r\n}\r\n.next-page div.wdform-page-button:hover {\r\n	-moz-border-image: url([SITE_ROOT]/images/01/03/next_hover.png) 0 36 0 0 stretch;\r\n	-webkit-border-image: url([SITE_ROOT]/images/01/03/next_hover.png) 0 36 0 0 stretch;\r\n	-o-border-image: url([SITE_ROOT]/images/01/03/next_hover.png) 0 36 0 0 stretch;\r\n	border-image: url([SITE_ROOT]/images/01/03/next_hover.png) 0 36 0 0 stretch;\r\n}\r\n.next-page:before {\r\n	content: \"\";\r\n	height: 56px;\r\n	vertical-align: middle;\r\n	background: url([SITE_ROOT]/images/01/shadow.png) no-repeat left center;\r\n	background-size: contain;\r\n	width: 7px;\r\n	display: inline-block;\r\n	position: relative;\r\n	left: 7px;\r\n}\r\n.previous-page div.wdform-page-button {\r\n	border-width: 0px 0px 0px 18px;\r\n	-moz-border-image: url([SITE_ROOT]/images/01/previous.png) 0 0 0 36 stretch;\r\n	-webkit-border-image: url([SITE_ROOT]/images/01/previous.png) 0 0 0 36 stretch;\r\n	-o-border-image: url([SITE_ROOT]/images/01/previous.png) 0 0 0 36 stretch;\r\n	border-image: url([SITE_ROOT]/images/01/previous.png) 0 0 0 36 stretch;\r\n	box-shadow: inset -51px 0px 8px -50px #636363;\r\n}\r\n.previous-page div.wdform-page-button:hover {\r\n	-moz-border-image: url([SITE_ROOT]/images/01/03/previous_hover.png) 0 0 0 36 stretch;\r\n	-webkit-border-image: url([SITE_ROOT]/images/01/03/previous_hover.png) 0 0 0 36 stretch;\r\n	-o-border-image: url([SITE_ROOT]/images/01/03/previous_hover.png) 0 0 0 36 stretch;\r\n	border-image: url([SITE_ROOT]/images/01/03/previous_hover.png) 0 0 0 36 stretch;\r\n}\r\n.previous-page:after {\r\n	content: \"\";\r\n	height: 56px;\r\n	vertical-align: middle;\r\n	background: url([SITE_ROOT]/images/01/shadow1.png) no-repeat right center;\r\n	background-size: contain;\r\n	width: 7px;\r\n	display: inline-block;\r\n	position: relative;\r\n	left: -7px;\r\n}\r\n.button-submit {\r\nbackground: #006C14 ;\r\nbackground: -moz-linear-gradient(left, #006C14 0%, #018819 20%, #018819 80%, #006C14 100%);\r\nbackground: -webkit-gradient(linear, left top, right top, color-stop(0%, #006C14 ), color-stop(20%, #018819 ), color-stop(80%, #018819 ), color-stop(100%, #006C14 ));\r\nbackground: -webkit-linear-gradient(left, #006C14 0%, #018819 20%, #018819 80%, #006C14 100%);\r\nbackground: -o-linear-gradient(left, #006C14 0%, #018819 20%, #018819 80%, #006C14 100%);\r\nbackground: -ms-linear-gradient(left, #006C14 0%, #018819 20%, #018819 80%, #006C14 100%);\r\nbackground: linear-gradient(to right, #006C14 0%, #018819 20%, #018819 80%, #006C14 100%);\r\ncursor: pointer;\r\nfont-size: 17px;\r\nborder-radius: 7px;\r\nmin-width: 80px;\r\nmin-height: 34px;\r\ncolor: #fff;\r\nborder: 1px solid #0DBB2C;\r\nmargin: 5px;\r\nbox-shadow: 0px 0px 1px 1px #006C14;\r\nfont-family: Segoe UI;\r\n	}\r\n.button-reset {\r\n	background: transparent;\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 7px;\r\n	min-width: 80px;\r\n	min-height: 34px;\r\n	color: #787878;\r\n	border: 1px solid #c9c9c9;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}\r\n.wdform_page {\r\n	background: #D8E5DB;\r\n	padding: 15px;\r\n	border-radius: 0px;\r\n	font-family: Segoe UI;\r\n	border-top: 1px solid #006C14;\r\n}\r\n.wdform_column {\r\n	border-right: none !important;\r\n	padding-right: 30px !important;\r\n	float: left;\r\n	border-spacing: 2px;\r\n	border-collapse: separate !important;\r\n}\r\n.wdform-field-section-break2 {\r\n	background: url([SITE_ROOT]/images/01/shadow.png) no-repeat left center;\r\n	background-size: contain;\r\n}\r\n.wdform_section_break2 {\r\n	margin: 16px 10px 16px 0px;\r\n	display: inline-block;\r\n	background: #006312 ; /* Old browsers */\r\n	background: -moz-linear-gradient(left, #006312 1%, #047519 20%, #057C1C 80%, #069140 100%); /* FF3.6+ */\r\n	background: -webkit-gradient(linear, left top, right top, color-stop(1%, #006312 ), color-stop(20%, #047519 ), color-stop(80%, #057C1C ), color-stop(100%, #069140 )); /* Chrome,Safari4+ */\r\n	background: -webkit-linear-gradient(left, #006312 1%, #047519 20%, #057C1C 80%, #069140 100%); /* Chrome10+,Safari5.1+ */\r\n	background: -o-linear-gradient(left, #006312 1%, #047519 20%, #057C1C 80%, #069140 100%); /* Opera 11.10+ */\r\n	background: -ms-linear-gradient(left, #006312 1%, #047519 20%, #057C1C 80%, #069140 100%); /* IE10+ */\r\nbackground: linear-gradient(to right, #006312 1%, #047519 20%, #057C1C 80%, #069140 100%); /* W3C */\r\n	text-align: left;\r\n	padding: 7px 30px 10px 10px;\r\n	border-top-left-radius: 0px;\r\n	border-top-right-radius: 10px;\r\n	border-bottom-right-radius: 10px;\r\n	border-bottom-left-radius: 0px;\r\n	-moz-box-shadow: inset 51px 0px 8px -50px #636363, 4px 0px 7px 0px rgba(0, 0, 0, 0.23);\r\n	-webkit-box-shadow: inset 51px 0px 8px -50px #636363, 4px 0px 7px 0px rgba(0, 0, 0, 0.23);\r\n	box-shadow: inset 51px 0px 8px -50px #636363, 4px 0px 7px 0px rgba(0, 0, 0, 0.23);\r\ncolor:#fff;\r\nfont-size:18px;\r\n}\r\n\r\n.wdform_section_break {\r\n	margin: 16px 0px;\r\nfont-size:18px;\r\n}\r\n.wdform_section {\r\n	display: table-row;\r\n}\r\nselect {\r\n	border-radius: 7px;\r\n	height: 32px;\r\n	overflow: hidden;\r\n	border: 1px solid #ccc;\r\n	padding: 2px;\r\n	outline: none;\r\n}\r\ninput[type=\"text\"]{\r\n	border-radius: 7px;\r\n	height: 30px;\r\n	border: 1px solid #ccc;\r\n	padding:0 3px !important;\r\n}\r\ninput[type=\"password\"]{\r\n	border-radius: 7px;\r\n	height: 30px;\r\n	border: 1px solid #ccc;\r\n	padding:0 3px !important;\r\n}\r\ntextarea {\r\n	border-radius: 7px;\r\n	height: 30px;\r\n	border: 1px solid #ccc;\r\n	padding:0 3px !important;\r\n}\r\ninput[type=\"text\"]:focus{\r\n	border-color: #006C14;\r\n	outline: none;\r\n}\r\n\r\ninput[type=\"password\"]:focus{\r\n	border-color: #006C14;\r\n	outline: none;\r\n}\r\n\r\ntextarea:focus{\r\n	border-color: #006C14;\r\n	outline: none;\r\n}\r\n\r\n\r\n.input_deactive {\r\n	color: #999999;\r\n	font-style: italic;\r\n}\r\n.input_active {\r\n	color: #000000;\r\n	font-style: normal;\r\n}\r\n.am_pm_select {\r\n	width: 70px;\r\n	vertical-align: middle;\r\n}\r\n.checkbox-div input[type=checkbox] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.checkbox-div {\r\n	width: 15px;\r\n	height: 16px;\r\n	background: #fff;\r\n	border: 1px solid #ccc;\r\n	border-radius: 5px;\r\n	position: relative;\r\n	display: inline-block;\r\n}\r\n.checkbox-div label {\r\n	cursor: pointer;\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)\";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: \"\";\r\n	position: absolute;\r\n	width: 16px;\r\n	height: 13px;\r\n	background: url([SITE_ROOT]/images/01/checkbox.png);\r\n	border-radius: 2px;\r\n	top: 0px;\r\n	left: 2px;\r\n}\r\n.checkbox-div label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .checkbox-div label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.checkbox-div input[type=checkbox]:checked + label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.wdform-calendar-button,\r\n.wdform-calendar-button:hover {\r\n  display:inline-block;\r\n	background: transparent url([SITE_ROOT]/images/01/date.png) no-repeat left 50% !important;\r\n	border: 0px;\r\n	color: transparent;\r\n	width: 37px;\r\n	height: 30px;\r\n	position: relative;\r\n	left: -35px;\r\n	vertical-align: top;\r\n}\r\n.wdform-calendar-button:focus {\r\n outline:none; \r\n}\r\n.wdform-calendar-button:focus {\r\n	outline:none;\r\n}\r\n.radio-div input[type=radio] {\r\n	position : absolute;\r\n	z-index: -1;\r\n}\r\n.forlabs {\r\n	float: right;\r\n	margin-right: 20px;\r\n}\r\n.radio-div {\r\n	width: 15px;\r\n	height: 16px;\r\n	background: #fff;\r\n	border: 1px solid #ccc;\r\n	border-radius: 5px;\r\n	position: relative;\r\n	display: inline-block;\r\n}\r\n.radio-div label {\r\n	cursor: pointer;\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)\";\r\n	filter: alpha(opacity=0);\r\n	opacity: 0;\r\n	content: \"\";\r\n	position: absolute;\r\n	width: 9px;\r\n	height: 10px;\r\n	background: #615F60;\r\n	border-radius: 2px;\r\n	top: 3px;\r\n	left: 3px;\r\n}\r\n.radio-div label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div .wdform-ch-rad-label:hover {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.wdform-ch-rad-label:hover + .radio-div label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)\";\r\n	filter: alpha(opacity=30);\r\n	opacity: 0.3;\r\n}\r\n.radio-div input[type=radio]:checked + label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\";\r\n	filter: alpha(opacity=100);\r\n	opacity: 1;\r\n}\r\n.if-ie-div-label {\r\n	-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\" !important;\r\n	filter: alpha(opacity=100) !important;\r\n	opacity: 1 !important;\r\n}\r\n.wdform-ch-rad-label {\r\n	display: inline;\r\n	margin: -4px 5px 5px 5px;\r\n	float: left;\r\n	color: #000;\r\n	cursor: pointer\r\n}\r\ntextarea {\r\n	padding-top: 5px;\r\n}\r\n.wdform-date {\r\n  display:inline-block;\r\n	width: 105px\r\n}\r\n.wdform_footer {\r\n	border-top: 1px solid #D8D6D7;\r\n	padding-top: 5px;\r\n	margin-top: 15px;\r\n}\r\n.page-numbers {\r\n	vertical-align: middle;\r\n}\r\n.time_box {\r\n	text-align: right;\r\n	width: 30px;\r\n	vertical-align: middle\r\n}\r\n.mini_label {\r\n	font-size: 10px;\r\n	font-family: \"Lucida Grande\", Tahoma, Arial, Verdana, sans-serif;\r\n	color: #000;\r\n}\r\n.wdform-label {\r\n	border: none;\r\n	color: #000;\r\n	vertical-align: top;\r\n	line-height: 17px;\r\n}\r\n.wdform_colon {\r\n	color: #000\r\n}\r\n.wdform_separator {\r\n	font-style: bold;\r\n	vertical-align: middle;\r\n	color: #000;\r\n}\r\n.wdform_line {\r\n	color: #000\r\n}\r\n.wdform-required {\r\n	border: none;\r\n	color: red;\r\n	vertical-align: top;\r\n}\r\n.captcha_img {\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	cursor: pointer;\r\n	border-radius: 7px;\r\n}\r\n.captcha_refresh {\r\n	width: 30px;\r\n	height: 30px;\r\n	border-width: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n	cursor: pointer;\r\n	background-image: url([SITE_ROOT]/images/refresh_black.png);\r\n}\r\n.captcha_input {\r\n	height: 20px;\r\n	border-width: 1px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	vertical-align: middle;\r\n}\r\n.file_upload {\r\n	border: 0px solid white;\r\n	border-radius: 0px;\r\n	margin: 0px;\r\n	padding: 0px;\r\n	color: black;\r\n	background-color: white;\r\n}\r\n.page_deactive {\r\n	font-size: 12px;\r\n color: #006C14;\r\n	cursor: pointer;\r\n	background-color: #7FB589;\r\n	margin: 1px;\r\n	display: inline-block;\r\n	height: 20px;\r\n	text-align: center;\r\n	vertical-align: bottom;\r\n	padding-top: 5px;\r\n	padding: 5px 30px 0px 30px;\r\n}\r\n.page_active {\r\n	color: #fff;\r\n	cursor: pointer;\r\n	background-color: #006C14;\r\n	margin: 1px;\r\n	display: inline-block;\r\n	vertical-align: bottom;\r\n	height: 25px;\r\n	text-align: center;\r\n	padding: 5px 30px 0px 30px;\r\n}\r\n.page_percentage_active {\r\n	padding: 0px;\r\n	margin: 0px;\r\n	border-spacing: 0px;\r\n	height: 25px;\r\n	line-height: 25px;\r\n	border-top-left-radius: 17px;\r\n	font-size: 15px;\r\n	float: left;\r\n	text-align: right !important;\r\n	z-index: 1;\r\n	position: relative;\r\n	background: #008118 ; /* Old browsers */\r\n	background: -moz-linear-gradient(left, #008118 0%, #089723 67%, #069C22 100%); /* FF3.6+ */\r\n	background: -webkit-gradient(linear, left top, right top, color-stop(0%, #008118 ), color-stop(67%, #089723 ), color-stop(100%, #069C22 )); /* Chrome,Safari4+ */\r\n	background: -webkit-linear-gradient(left, #008118 0%, #089723 67%, #069C22 100%); /* Chrome10+,Safari5.1+ */\r\n	background: -o-linear-gradient(left, #008118 0%, #089723 67%, #069C22 100%); /* Opera 11.10+ */\r\n	background: -ms-linear-gradient(left, #008118 0%, #089723 67%, #069C22 100%); /* IE10+ */\r\nbackground: linear-gradient(to right, #008118 0%, #089723 67%, #069C22 100%);\r\n	vertical-align: middle;\r\n}\r\n.page_percentage_deactive {\r\n	height: 25px;\r\n	line-height: 25px;\r\n	background-color: #7FB589;\r\n	text-align: left !important;\r\n	margin-bottom: 1px;\r\n	border-top-left-radius: 17px;\r\n	border-top-right-radius: 17px;\r\n}\r\n.page_numbers {\r\n	font-size: 14px;\r\n	color: #000;\r\n}\r\n.phone_area_code {\r\n	width: 50px;\r\n}\r\n.phone_number {\r\n	width: 100px;\r\n}\r\nbutton {\r\n	cursor: pointer;\r\n}\r\n.other_input {\r\n	border-radius: 0px;\r\n	border-width: 1px;\r\n	height: 16px;\r\n	font-size: 12px;\r\n	padding: 1px;\r\n	margin: 1px;\r\n	margin-left: 25px;\r\n	z-index: 100;\r\n	position: absolute;\r\n}\r\n.wdform_page_navigation {\r\n	text-align: right !important;\r\n	margin-bottom: 0px;\r\n}\r\n.wdform_page_navigation span:first-child {\r\n	border-top-left-radius: 17px;\r\n}\r\n.wdform_percentage_arrow {\r\ndisplay: inline-block;\r\nwidth: 21px;\r\nheight: 25px;\r\nbackground-color: #069B22;\r\nposition: relative;\r\nleft: -15px;\r\nz-index: 0;\r\nvertical-align: middle;\r\n-moz-transform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(-10deg) skewY(0deg);\r\n-webkit-transform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(-25deg) skewY(0deg);\r\n-o-transform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(-10deg) skewY(0deg);\r\n-ms-transform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(-10deg) skewY(0deg);\r\ntransform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(-10deg) skewY(0deg);\r\n}\r\n.wdform_percentage_text {\r\n	margin: 3px -14px 3px 9px;\r\n	color: #FFFFFF;\r\n	font-weight: bold;\r\n}\r\n.wdform_percentage_title {\r\n	color: #000000;\r\n	font-style: italic;\r\n	margin: 0px 0px 0px 40px;\r\n	display: inline-block;\r\n	line-height: 25px;\r\n	height: 25px;\r\n	vertical-align: middle;\r\n}\r\n.wdform_map {\r\n	border: 6px solid #fff;\r\n}\r\n.wdform_button button {\r\n	background: #e4e4e4; /* Old browsers */\r\n	background: -moz-linear-gradient(top, #e4e4e4 0%, #cccccc 100%); /* FF3.6+ */\r\n	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #e4e4e4), color-stop(100%, #cccccc)); /* Chrome,Safari4+ */\r\n	background: -webkit-linear-gradient(top, #e4e4e4 0%, #cccccc 100%); /* Chrome10+,Safari5.1+ */\r\n	background: -o-linear-gradient(top, #e4e4e4 0%, #cccccc 100%); /* Opera 11.10+ */\r\n	background: -ms-linear-gradient(top, #e4e4e4 0%, #cccccc 100%); /* IE10+ */\r\n	background: linear-gradient(to bottom, #e4e4e4 0%, #cccccc 100%); /* W3C */\r\n	cursor: pointer;\r\n	font-size: 17px;\r\n	border-radius: 7px;\r\n	min-width: 80px;\r\n	min-height: 27px;\r\n	color: #787878;\r\n	border: 0px;\r\n	margin: 5px;\r\n	box-shadow: 0px 0px 2px #c9c9c9;\r\n	font-family: Segoe UI;\r\n}", "0");

/* INSERT TABLE DATA: wp_formmaker_views */
INSERT INTO `wp_formmaker_views` VALUES("1", "276");

/* INSERT TABLE DATA: wp_huge_it_reslider_sliders */
INSERT INTO `wp_huge_it_reslider_sliders` VALUES("1", "First Slider", "simple", "{\"autoplay\":1,\"effect\":{\"type\":3,\"duration\":1500,\"interval\":1000},\"thumbnails\":{\"show\":0,\"positioning\":0},\"custom\":{\"type\":\"text\"},\"title\":{\"show\":1,\"position\":\"1\",\"style\":{\"width\":213,\"height\":61,\"left\":\"571.375px\",\"top\":\"14.7031px\",\"color\":\"FFFFFF\",\"opacity\":0,\"font\":{\"size\":18},\"border\":{\"color\":\"FFFFFF\",\"width\":1,\"radius\":2},\"background\":{\"color\":\"FFFFFF\",\"hover\":\"30FF4F\"}}},\"description\":{\"show\":1,\"position\":\"1\",\"style\":{\"width\":768,\"height\":116,\"left\":\"16.375px\",\"top\":\"345.703px\",\"color\":\"FFFFFF\",\"opacity\":80,\"font\":{\"size\":14},\"border\":{\"color\":\"3478FF\",\"width\":0,\"radius\":2},\"background\":{\"color\":\"000000\",\"hover\":\"000000\"}}},\"arrows\":{\"show\":2,\"type\":1,\"style\":{\"background\":{\"width\":\"49\",\"height\":\"49\",\"left\":\"91px 46px\",\"right\":\"-44px 1px\",\"hover\":{\"left\":\"91px 46px\",\"right\":\"-44px 1px\"}}}},\"bullets\":{\"show\":0,\"type\":\"0\",\"position\":0,\"autocenter\":\"0\",\"rows\":1,\"s_x\":10,\"s_y\":10,\"orientation\":1,\"style\":{\"background\":{\"width\":\"60\",\"height\":\"60\",\"color\":{\"hover\":\"646464\",\"active\":\"30FF4F\",\"link\":\"CCCCCC\"}},\"position\":{\"top\":\"16px\",\"left\":\"10px\"}}}}", "2016-05-02 10:58:58", NULL, "{\"background\":\"blue;\",\"border\":\"1px solid red;\",\"color\":\"yellow\",\"width\":\"800\",\"height\":\"480\",\"marginLeft\":\"0\",\"marginRight\":\"0\",\"marginTop\":\"0\",\"marginBottom\":\"0\"}", "{}");

/* INSERT TABLE DATA: wp_huge_itslider_images */
INSERT INTO `wp_huge_itslider_images` VALUES("7", "", "1", "", "http://reda.selfip.net/wp-content/uploads/2017/02/home_slider_01.jpg", "", "", "on", "", "", "", "0", "2", "1");
INSERT INTO `wp_huge_itslider_images` VALUES("8", "", "1", "", "http://reda.selfip.net/wp-content/uploads/2017/02/home_slider_02.jpg", "", "", "on", "", "", "", "0", "2", "1");

/* INSERT TABLE DATA: wp_huge_itslider_params */
INSERT INTO `wp_huge_itslider_params` VALUES("89", "slider_crop_image", "Slider crop image", "Slider crop image", "resize");
INSERT INTO `wp_huge_itslider_params` VALUES("90", "slider_title_color", "Slider title color", "Slider title color", "000000");
INSERT INTO `wp_huge_itslider_params` VALUES("91", "slider_title_font_size", "Slider title font size", "Slider title font size", "13");
INSERT INTO `wp_huge_itslider_params` VALUES("92", "slider_description_color", "Slider description color", "Slider description color", "ffffff");
INSERT INTO `wp_huge_itslider_params` VALUES("93", "slider_description_font_size", "Slider description font size", "Slider description font size", "13");
INSERT INTO `wp_huge_itslider_params` VALUES("94", "slider_title_position", "Slider title position", "Slider title position", "right-top");
INSERT INTO `wp_huge_itslider_params` VALUES("95", "slider_description_position", "Slider description position", "Slider description position", "right-bottom");
INSERT INTO `wp_huge_itslider_params` VALUES("96", "slider_title_border_size", "Slider Title border size", "Slider Title border size", "0");
INSERT INTO `wp_huge_itslider_params` VALUES("97", "slider_title_border_color", "Slider title border color", "Slider title border color", "ffffff");
INSERT INTO `wp_huge_itslider_params` VALUES("98", "slider_title_border_radius", "Slider title border radius", "Slider title border radius", "4");
INSERT INTO `wp_huge_itslider_params` VALUES("99", "slider_description_border_size", "Slider description border size", "Slider description border size", "0");
INSERT INTO `wp_huge_itslider_params` VALUES("100", "slider_description_border_color", "Slider description border color", "Slider description border color", "ffffff");
INSERT INTO `wp_huge_itslider_params` VALUES("101", "slider_description_border_radius", "Slider description border radius", "Slider description border radius", "0");
INSERT INTO `wp_huge_itslider_params` VALUES("102", "slider_slideshow_border_size", "Slider border size", "Slider border size", "0");
INSERT INTO `wp_huge_itslider_params` VALUES("103", "slider_slideshow_border_color", "Slider border color", "Slider border color", "ffffff");
INSERT INTO `wp_huge_itslider_params` VALUES("104", "slider_slideshow_border_radius", "Slider border radius", "Slider border radius", "0");
INSERT INTO `wp_huge_itslider_params` VALUES("105", "slider_navigation_type", "Slider navigation type", "Slider navigation type", "1");
INSERT INTO `wp_huge_itslider_params` VALUES("106", "slider_navigation_position", "Slider navigation position", "Slider navigation position", "bottom");
INSERT INTO `wp_huge_itslider_params` VALUES("107", "slider_title_background_color", "Slider title background color", "Slider title background color", "ffffff");
INSERT INTO `wp_huge_itslider_params` VALUES("108", "slider_description_background_color", "Slider description background color", "Slider description background color", "000000");
INSERT INTO `wp_huge_itslider_params` VALUES("109", "slider_title_transparent", "Slider title has background", "Slider title has background", "on");
INSERT INTO `wp_huge_itslider_params` VALUES("110", "slider_description_transparent", "Slider description has background", "Slider description has background", "on");
INSERT INTO `wp_huge_itslider_params` VALUES("111", "slider_slider_background_color", "Slider slider background color", "Slider slider background color", "ffffff");
INSERT INTO `wp_huge_itslider_params` VALUES("112", "slider_dots_position", "slider dots position", "slider dots position", "top");
INSERT INTO `wp_huge_itslider_params` VALUES("113", "slider_active_dot_color", "slider active dot color", "", "ffffff");
INSERT INTO `wp_huge_itslider_params` VALUES("114", "slider_dots_color", "slider dots color", "", "000000");
INSERT INTO `wp_huge_itslider_params` VALUES("115", "slider_description_width", "Slider description width", "Slider description width", "70");
INSERT INTO `wp_huge_itslider_params` VALUES("116", "slider_description_height", "Slider description height", "Slider description height", "50");
INSERT INTO `wp_huge_itslider_params` VALUES("117", "slider_description_background_transparency", "slider description background transparency", "slider description background transparency", "70");
INSERT INTO `wp_huge_itslider_params` VALUES("118", "slider_description_text_align", "description text-align", "description text-align", "justify");
INSERT INTO `wp_huge_itslider_params` VALUES("119", "slider_title_width", "slider title width", "slider title width", "30");
INSERT INTO `wp_huge_itslider_params` VALUES("120", "slider_title_height", "slider title height", "slider title height", "50");
INSERT INTO `wp_huge_itslider_params` VALUES("121", "slider_title_background_transparency", "slider title background transparency", "slider title background transparency", "70");
INSERT INTO `wp_huge_itslider_params` VALUES("122", "slider_title_text_align", "title text-align", "title text-align", "right");
INSERT INTO `wp_huge_itslider_params` VALUES("123", "slider_title_has_margin", "title has margin", "title has margin", "on");
INSERT INTO `wp_huge_itslider_params` VALUES("124", "slider_description_has_margin", "description has margin", "description has margin", "on");
INSERT INTO `wp_huge_itslider_params` VALUES("125", "slider_show_arrows", "Slider show left right arrows", "Slider show left right arrows", "on");
INSERT INTO `wp_huge_itslider_params` VALUES("126", "loading_icon_type", "Slider loading icon type", "Slider loading icon type", "1");
INSERT INTO `wp_huge_itslider_params` VALUES("127", "slider_thumb_count_slides", "Slide thumbs count", "Slide thumbs count", "3");
INSERT INTO `wp_huge_itslider_params` VALUES("128", "slider_dots_position_new", "Slide Dots Position", "Slide Dots Position", "dotstop");
INSERT INTO `wp_huge_itslider_params` VALUES("129", "slider_thumb_back_color", "Thumbnail Background Color", "Thumbnail Background Color", "FFFFFF");
INSERT INTO `wp_huge_itslider_params` VALUES("130", "slider_thumb_passive_color", "Passive Thumbnail Color", "Passive Thumbnail Color", "FFFFFF");
INSERT INTO `wp_huge_itslider_params` VALUES("131", "slider_thumb_passive_color_trans", "Passive Thumbnail Color Transparency", "Passive Thumbnail Color Transparency", "50");
INSERT INTO `wp_huge_itslider_params` VALUES("132", "slider_thumb_height", "Slider Thumb Height", "Slider Thumb Height", "100");

/* INSERT TABLE DATA: wp_huge_itslider_sliders */
INSERT INTO `wp_huge_itslider_sliders` VALUES("1", "home-slider", "500", "1020", "on", "fade", "2700", "800", "center", "1", "300", "off", "nonav", "off", "off");

/* INSERT TABLE DATA: wp_options */
INSERT INTO `wp_options` VALUES("1", "siteurl", "http://reda.selfip.net", "yes");
INSERT INTO `wp_options` VALUES("2", "home", "http://reda.selfip.net", "yes");
INSERT INTO `wp_options` VALUES("3", "blogname", "Reda Technology", "yes");
INSERT INTO `wp_options` VALUES("4", "blogdescription", "", "yes");
INSERT INTO `wp_options` VALUES("5", "users_can_register", "0", "yes");
INSERT INTO `wp_options` VALUES("6", "admin_email", "tsae.ualxela@gmail.com", "yes");
INSERT INTO `wp_options` VALUES("7", "start_of_week", "1", "yes");
INSERT INTO `wp_options` VALUES("8", "use_balanceTags", "0", "yes");
INSERT INTO `wp_options` VALUES("9", "use_smilies", "1", "yes");
INSERT INTO `wp_options` VALUES("10", "require_name_email", "1", "yes");
INSERT INTO `wp_options` VALUES("11", "comments_notify", "1", "yes");
INSERT INTO `wp_options` VALUES("12", "posts_per_rss", "10", "yes");
INSERT INTO `wp_options` VALUES("13", "rss_use_excerpt", "0", "yes");
INSERT INTO `wp_options` VALUES("14", "mailserver_url", "mail.example.com", "yes");
INSERT INTO `wp_options` VALUES("15", "mailserver_login", "login@example.com", "yes");
INSERT INTO `wp_options` VALUES("16", "mailserver_pass", "password", "yes");
INSERT INTO `wp_options` VALUES("17", "mailserver_port", "110", "yes");
INSERT INTO `wp_options` VALUES("18", "default_category", "1", "yes");
INSERT INTO `wp_options` VALUES("19", "default_comment_status", "open", "yes");
INSERT INTO `wp_options` VALUES("20", "default_ping_status", "open", "yes");
INSERT INTO `wp_options` VALUES("21", "default_pingback_flag", "1", "yes");
INSERT INTO `wp_options` VALUES("22", "posts_per_page", "10", "yes");
INSERT INTO `wp_options` VALUES("23", "date_format", "Y-m-d", "yes");
INSERT INTO `wp_options` VALUES("24", "time_format", "g:i a", "yes");
INSERT INTO `wp_options` VALUES("25", "links_updated_date_format", "jS F Y g:i a", "yes");
INSERT INTO `wp_options` VALUES("26", "comment_moderation", "0", "yes");
INSERT INTO `wp_options` VALUES("27", "moderation_notify", "1", "yes");
INSERT INTO `wp_options` VALUES("28", "permalink_structure", "/%year%/%monthnum%/%day%/%postname%/", "yes");
INSERT INTO `wp_options` VALUES("29", "rewrite_rules", "a:106:{s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:47:\"fmemailverification/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"fmemailverification/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"fmemailverification/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"fmemailverification/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"fmemailverification/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:53:\"fmemailverification/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:36:\"fmemailverification/([^/]+)/embed/?$\";s:52:\"index.php?fmemailverification=$matches[1]&embed=true\";s:40:\"fmemailverification/([^/]+)/trackback/?$\";s:46:\"index.php?fmemailverification=$matches[1]&tb=1\";s:48:\"fmemailverification/([^/]+)/page/?([0-9]{1,})/?$\";s:59:\"index.php?fmemailverification=$matches[1]&paged=$matches[2]\";s:55:\"fmemailverification/([^/]+)/comment-page-([0-9]{1,})/?$\";s:59:\"index.php?fmemailverification=$matches[1]&cpage=$matches[2]\";s:44:\"fmemailverification/([^/]+)(?:/([0-9]+))?/?$\";s:58:\"index.php?fmemailverification=$matches[1]&page=$matches[2]\";s:36:\"fmemailverification/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:46:\"fmemailverification/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:66:\"fmemailverification/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"fmemailverification/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"fmemailverification/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:42:\"fmemailverification/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:58:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:68:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:88:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:64:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:53:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/embed/?$\";s:91:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:77:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:61:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(?:/([0-9]+))?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:53:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}", "yes");
INSERT INTO `wp_options` VALUES("30", "hack_file", "0", "yes");
INSERT INTO `wp_options` VALUES("31", "blog_charset", "UTF-8", "yes");
INSERT INTO `wp_options` VALUES("32", "moderation_keys", "", "no");
INSERT INTO `wp_options` VALUES("33", "active_plugins", "a:5:{i:0;s:37:\"collapse-content/collapse-content.php\";i:1;s:25:\"duplicator/duplicator.php\";i:2;s:25:\"form-maker/form-maker.php\";i:3;s:23:\"slider-image/slider.php\";i:4;s:23:\"slider-wd/slider-wd.php\";}", "yes");
INSERT INTO `wp_options` VALUES("34", "category_base", "", "yes");
INSERT INTO `wp_options` VALUES("35", "ping_sites", "http://rpc.pingomatic.com/", "yes");
INSERT INTO `wp_options` VALUES("36", "comment_max_links", "2", "yes");
INSERT INTO `wp_options` VALUES("37", "gmt_offset", "", "yes");
INSERT INTO `wp_options` VALUES("38", "default_email_category", "1", "yes");
INSERT INTO `wp_options` VALUES("39", "recently_edited", "a:5:{i:0;s:74:\"/home/redahkco/reda.selfip.net/wp-content/themes/reda_security/contact.php\";i:2;s:77:\"/home/redahkco/reda.selfip.net/wp-content/themes/reda_security/about_reda.php\";i:3;s:82:\"/home/redahkco/reda.selfip.net/wp-content/themes/reda_security/all_text_layout.php\";i:4;s:72:\"/home/redahkco/reda.selfip.net/wp-content/themes/reda_security/style.css\";i:5;s:69:\"/home/redahkco/reda.selfip.net/wp-content/plugins/akismet/akismet.php\";}", "no");
INSERT INTO `wp_options` VALUES("40", "template", "reda_security", "yes");
INSERT INTO `wp_options` VALUES("41", "stylesheet", "reda_security", "yes");
INSERT INTO `wp_options` VALUES("42", "comment_whitelist", "1", "yes");
INSERT INTO `wp_options` VALUES("43", "blacklist_keys", "", "no");
INSERT INTO `wp_options` VALUES("44", "comment_registration", "0", "yes");
INSERT INTO `wp_options` VALUES("45", "html_type", "text/html", "yes");
INSERT INTO `wp_options` VALUES("46", "use_trackback", "0", "yes");
INSERT INTO `wp_options` VALUES("47", "default_role", "subscriber", "yes");
INSERT INTO `wp_options` VALUES("48", "db_version", "38590", "yes");
INSERT INTO `wp_options` VALUES("49", "uploads_use_yearmonth_folders", "1", "yes");
INSERT INTO `wp_options` VALUES("50", "upload_path", "", "yes");
INSERT INTO `wp_options` VALUES("51", "blog_public", "1", "yes");
INSERT INTO `wp_options` VALUES("52", "default_link_category", "2", "yes");
INSERT INTO `wp_options` VALUES("53", "show_on_front", "posts", "yes");
INSERT INTO `wp_options` VALUES("54", "tag_base", "", "yes");
INSERT INTO `wp_options` VALUES("55", "show_avatars", "1", "yes");
INSERT INTO `wp_options` VALUES("56", "avatar_rating", "G", "yes");
INSERT INTO `wp_options` VALUES("57", "upload_url_path", "", "yes");
INSERT INTO `wp_options` VALUES("58", "thumbnail_size_w", "150", "yes");
INSERT INTO `wp_options` VALUES("59", "thumbnail_size_h", "150", "yes");
INSERT INTO `wp_options` VALUES("60", "thumbnail_crop", "1", "yes");
INSERT INTO `wp_options` VALUES("61", "medium_size_w", "300", "yes");
INSERT INTO `wp_options` VALUES("62", "medium_size_h", "300", "yes");
INSERT INTO `wp_options` VALUES("63", "avatar_default", "mystery", "yes");
INSERT INTO `wp_options` VALUES("64", "large_size_w", "1024", "yes");
INSERT INTO `wp_options` VALUES("65", "large_size_h", "1024", "yes");
INSERT INTO `wp_options` VALUES("66", "image_default_link_type", "none", "yes");
INSERT INTO `wp_options` VALUES("67", "image_default_size", "", "yes");
INSERT INTO `wp_options` VALUES("68", "image_default_align", "", "yes");
INSERT INTO `wp_options` VALUES("69", "close_comments_for_old_posts", "0", "yes");
INSERT INTO `wp_options` VALUES("70", "close_comments_days_old", "14", "yes");
INSERT INTO `wp_options` VALUES("71", "thread_comments", "1", "yes");
INSERT INTO `wp_options` VALUES("72", "thread_comments_depth", "5", "yes");
INSERT INTO `wp_options` VALUES("73", "page_comments", "0", "yes");
INSERT INTO `wp_options` VALUES("74", "comments_per_page", "50", "yes");
INSERT INTO `wp_options` VALUES("75", "default_comments_page", "newest", "yes");
INSERT INTO `wp_options` VALUES("76", "comment_order", "asc", "yes");
INSERT INTO `wp_options` VALUES("77", "sticky_posts", "a:0:{}", "yes");
INSERT INTO `wp_options` VALUES("78", "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("79", "widget_text", "a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("80", "widget_rss", "a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("81", "uninstall_plugins", "a:0:{}", "no");
INSERT INTO `wp_options` VALUES("82", "timezone_string", "Asia/Hong_Kong", "yes");
INSERT INTO `wp_options` VALUES("83", "page_for_posts", "0", "yes");
INSERT INTO `wp_options` VALUES("84", "page_on_front", "0", "yes");
INSERT INTO `wp_options` VALUES("85", "default_post_format", "0", "yes");
INSERT INTO `wp_options` VALUES("86", "link_manager_enabled", "0", "yes");
INSERT INTO `wp_options` VALUES("87", "finished_splitting_shared_terms", "1", "yes");
INSERT INTO `wp_options` VALUES("88", "site_icon", "0", "yes");
INSERT INTO `wp_options` VALUES("89", "medium_large_size_w", "768", "yes");
INSERT INTO `wp_options` VALUES("90", "medium_large_size_h", "0", "yes");
INSERT INTO `wp_options` VALUES("91", "initial_db_version", "36686", "yes");
INSERT INTO `wp_options` VALUES("92", "wp_user_roles", "a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:61:{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: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("93", "WPLANG", "en_GB", "yes");
INSERT INTO `wp_options` VALUES("94", "widget_search", "a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("95", "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("96", "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("97", "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("98", "widget_meta", "a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("99", "sidebars_widgets", "a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:18:\"orphaned_widgets_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:13:\"array_version\";i:3;}", "yes");
INSERT INTO `wp_options` VALUES("100", "widget_pages", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("101", "widget_calendar", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("102", "widget_tag_cloud", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("103", "widget_nav_menu", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("104", "cron", "a:4:{i:1489142807;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:1489142819;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;}}}i:1489144145;a:1:{s:30:\"wp_scheduled_auto_draft_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("139", "auto_core_update_notified", "a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:22:\"tsae.ualxela@gmail.com\";s:7:\"version\";s:5:\"4.7.3\";s:9:\"timestamp\";i:1488854225;}", "no");
INSERT INTO `wp_options` VALUES("145", "theme_mods_twentyfifteen", "a:2:{s:18:\"nav_menu_locations\";a:0:{}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1473938203;s:4:\"data\";a:2:{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\";}}}}", "yes");
INSERT INTO `wp_options` VALUES("153", "recently_activated", "a:0:{}", "yes");
INSERT INTO `wp_options` VALUES("154", "current_theme", "reda_security", "yes");
INSERT INTO `wp_options` VALUES("155", "theme_mods_reda_security", "a:3:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:2;}s:18:\"custom_css_post_id\";i:-1;}", "yes");
INSERT INTO `wp_options` VALUES("156", "theme_switched", "", "yes");
INSERT INTO `wp_options` VALUES("193", "db_upgraded", "", "yes");
INSERT INTO `wp_options` VALUES("205", "nav_menu_options", "a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}", "yes");
INSERT INTO `wp_options` VALUES("234", "widget_hugeit_slider_widget", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("243", "wds_theme_version", "1.0.0", "no");
INSERT INTO `wp_options` VALUES("244", "wds_version", "1.1.73", "no");
INSERT INTO `wp_options` VALUES("245", "wds_version_1.0.46", "1", "no");
INSERT INTO `wp_options` VALUES("246", "widget_wdslider", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("247", "wds_admin_notice", "a:1:{s:14:\"new_year_promo\";a:2:{s:5:\"start\";s:10:\"12/31/2015\";s:3:\"int\";i:0;}}", "yes");
INSERT INTO `wp_options` VALUES("339", "category_children", "a:0:{}", "yes");
INSERT INTO `wp_options` VALUES("375", "duplicator_version_plugin", "1.1.34", "yes");
INSERT INTO `wp_options` VALUES("402", "slider_image_version", "3.2", "yes");
INSERT INTO `wp_options` VALUES("403", "slider_image_imege_hover_preview", "on", "yes");
INSERT INTO `wp_options` VALUES("415", "wd_form_maker_version", "1.10.8", "no");
INSERT INTO `wp_options` VALUES("416", "fm_settings", "a:3:{s:10:\"public_key\";s:0:\"\";s:11:\"private_key\";s:0:\"\";s:13:\"csv_delimiter\";s:1:\",\";}", "yes");
INSERT INTO `wp_options` VALUES("417", "widget_form_maker_widget", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("418", "fm_emailverification", "1", "yes");
INSERT INTO `wp_options` VALUES("419", "fm_admin_notice", "a:2:{s:15:\"two_week_review\";a:3:{s:5:\"start\";s:8:\"3/7/2017\";s:3:\"int\";i:14;s:9:\"dismissed\";i:0;}s:16:\"one_week_support\";a:2:{s:5:\"start\";s:8:\"2/7/2017\";s:3:\"int\";i:7;}}", "yes");
INSERT INTO `wp_options` VALUES("449", "can_compress_scripts", "1", "no");
INSERT INTO `wp_options` VALUES("470", "duplicator_settings", "a:10:{s:7:\"version\";s:6:\"1.1.34\";s:18:\"uninstall_settings\";b:1;s:15:\"uninstall_files\";b:1;s:16:\"uninstall_tables\";b:1;s:13:\"package_debug\";b:0;s:17:\"package_mysqldump\";b:0;s:22:\"package_mysqldump_path\";s:0:\"\";s:24:\"package_phpdump_qrylimit\";s:3:\"100\";s:17:\"package_zip_flush\";b:0;s:20:\"storage_htaccess_off\";b:0;}", "yes");
INSERT INTO `wp_options` VALUES("477", "_site_transient_timeout_browser_cb20ebbdf8ad5a426d5ed721d0677dad", "1486719516", "no");
INSERT INTO `wp_options` VALUES("478", "_site_transient_browser_cb20ebbdf8ad5a426d5ed721d0677dad", "a:9:{s:8:\"platform\";s:9:\"Macintosh\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:12:\"55.0.2883.95\";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;}", "no");
INSERT INTO `wp_options` VALUES("593", "_site_transient_timeout_browser_cd07c4a7a86f684d711f0467bdfe13bf", "1487946857", "no");
INSERT INTO `wp_options` VALUES("594", "_site_transient_browser_cd07c4a7a86f684d711f0467bdfe13bf", "a:9:{s:8:\"platform\";s:9:\"Macintosh\";s:4:\"name\";s:6:\"Safari\";s:7:\"version\";s:6:\"10.0.1\";s:10:\"update_url\";s:28:\"http://www.apple.com/safari/\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/safari.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/safari.png\";s:15:\"current_version\";s:1:\"5\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}", "no");
INSERT INTO `wp_options` VALUES("611", "_site_transient_timeout_available_translations", "1487352938", "no");
INSERT INTO `wp_options` VALUES("612", "_site_transient_available_translations", "a:108:{s:2:\"af\";a:8:{s:8:\"language\";s:2:\"af\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:38:06\";s:12:\"english_name\";s:9:\"Afrikaans\";s:11:\"native_name\";s:9:\"Afrikaans\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/af.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"af\";i:2;s:3:\"afr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Gaan voort\";}}s:3:\"ary\";a:8:{s:8:\"language\";s:3:\"ary\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:42:35\";s:12:\"english_name\";s:15:\"Moroccan Arabic\";s:11:\"native_name\";s:31:\"العربية المغربية\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/ary.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:3;s:3:\"ary\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"المتابعة\";}}s:2:\"ar\";a:8:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:49:08\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/ar.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:2;s:3:\"ara\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"المتابعة\";}}s:2:\"as\";a:8:{s:8:\"language\";s:2:\"as\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-22 18:59:07\";s:12:\"english_name\";s:8:\"Assamese\";s:11:\"native_name\";s:21:\"অসমীয়া\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/as.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"as\";i:2;s:3:\"asm\";i:3;s:3:\"asm\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:0:\"\";}}s:2:\"az\";a:8:{s:8:\"language\";s:2:\"az\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-06 00:09:27\";s:12:\"english_name\";s:11:\"Azerbaijani\";s:11:\"native_name\";s:16:\"Azərbaycan dili\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/az.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:2;s:3:\"aze\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Davam\";}}s:3:\"azb\";a:8:{s:8:\"language\";s:3:\"azb\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-09-12 20:34:31\";s:12:\"english_name\";s:17:\"South Azerbaijani\";s:11:\"native_name\";s:29:\"گؤنئی آذربایجان\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/azb.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:3;s:3:\"azb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:3:\"bel\";a:8:{s:8:\"language\";s:3:\"bel\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-09-01 08:27:29\";s:12:\"english_name\";s:10:\"Belarusian\";s:11:\"native_name\";s:29:\"Беларуская мова\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/bel.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"be\";i:2;s:3:\"bel\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Працягнуць\";}}s:5:\"bg_BG\";a:8:{s:8:\"language\";s:5:\"bg_BG\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:53:38\";s:12:\"english_name\";s:9:\"Bulgarian\";s:11:\"native_name\";s:18:\"Български\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/bg_BG.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bg\";i:2;s:3:\"bul\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Напред\";}}s:5:\"bn_BD\";a:8:{s:8:\"language\";s:5:\"bn_BD\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-04 16:58:43\";s:12:\"english_name\";s:7:\"Bengali\";s:11:\"native_name\";s:15:\"বাংলা\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/bn_BD.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"bn\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:23:\"এগিয়ে চল.\";}}s:2:\"bo\";a:8:{s:8:\"language\";s:2:\"bo\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-09-05 09:44:12\";s:12:\"english_name\";s:7:\"Tibetan\";s:11:\"native_name\";s:21:\"བོད་ཡིག\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/bo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bo\";i:2;s:3:\"tib\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:24:\"མུ་མཐུད།\";}}s:5:\"bs_BA\";a:8:{s:8:\"language\";s:5:\"bs_BA\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-09-04 20:20:28\";s:12:\"english_name\";s:7:\"Bosnian\";s:11:\"native_name\";s:8:\"Bosanski\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/bs_BA.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bs\";i:2;s:3:\"bos\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:2:\"ca\";a:8:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:54:07\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/ca.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ca\";i:2;s:3:\"cat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:3:\"ceb\";a:8:{s:8:\"language\";s:3:\"ceb\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-02 17:25:51\";s:12:\"english_name\";s:7:\"Cebuano\";s:11:\"native_name\";s:7:\"Cebuano\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/ceb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"ceb\";i:3;s:3:\"ceb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Padayun\";}}s:5:\"cs_CZ\";a:8:{s:8:\"language\";s:5:\"cs_CZ\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-12 08:46:26\";s:12:\"english_name\";s:5:\"Czech\";s:11:\"native_name\";s:12:\"Čeština‎\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/cs_CZ.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"cs\";i:2;s:3:\"ces\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:11:\"Pokračovat\";}}s:2:\"cy\";a:8:{s:8:\"language\";s:2:\"cy\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:49:29\";s:12:\"english_name\";s:5:\"Welsh\";s:11:\"native_name\";s:7:\"Cymraeg\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/cy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"cy\";i:2;s:3:\"cym\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Parhau\";}}s:5:\"da_DK\";a:8:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:49:25\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/da_DK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"da\";i:2;s:3:\"dan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Forts&#230;t\";}}s:5:\"de_CH\";a:8:{s:8:\"language\";s:5:\"de_CH\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:40:03\";s:12:\"english_name\";s:20:\"German (Switzerland)\";s:11:\"native_name\";s:17:\"Deutsch (Schweiz)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/de_CH.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:14:\"de_CH_informal\";a:8:{s:8:\"language\";s:14:\"de_CH_informal\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:39:59\";s:12:\"english_name\";s:30:\"German (Switzerland, Informal)\";s:11:\"native_name\";s:21:\"Deutsch (Schweiz, Du)\";s:7:\"package\";s:73:\"https://downloads.wordpress.org/translation/core/4.7.2/de_CH_informal.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:12:\"de_DE_formal\";a:8:{s:8:\"language\";s:12:\"de_DE_formal\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:40:17\";s:12:\"english_name\";s:15:\"German (Formal)\";s:11:\"native_name\";s:13:\"Deutsch (Sie)\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/translation/core/4.7.2/de_DE_formal.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:5:\"de_DE\";a:8:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:40:21\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/de_DE.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:3:\"dzo\";a:8:{s:8:\"language\";s:3:\"dzo\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-06-29 08:59:03\";s:12:\"english_name\";s:8:\"Dzongkha\";s:11:\"native_name\";s:18:\"རྫོང་ཁ\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/dzo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"dz\";i:2;s:3:\"dzo\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:0:\"\";}}s:2:\"el\";a:8:{s:8:\"language\";s:2:\"el\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-27 13:41:24\";s:12:\"english_name\";s:5:\"Greek\";s:11:\"native_name\";s:16:\"Ελληνικά\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/el.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"el\";i:2;s:3:\"ell\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Συνέχεια\";}}s:5:\"en_GB\";a:8:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:51:11\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/en_GB.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_NZ\";a:8:{s:8:\"language\";s:5:\"en_NZ\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:54:30\";s:12:\"english_name\";s:21:\"English (New Zealand)\";s:11:\"native_name\";s:21:\"English (New Zealand)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/en_NZ.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_CA\";a:8:{s:8:\"language\";s:5:\"en_CA\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:49:34\";s:12:\"english_name\";s:16:\"English (Canada)\";s:11:\"native_name\";s:16:\"English (Canada)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/en_CA.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_AU\";a:8:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-27 00:40:28\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/en_AU.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_ZA\";a:8:{s:8:\"language\";s:5:\"en_ZA\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:53:43\";s:12:\"english_name\";s:22:\"English (South Africa)\";s:11:\"native_name\";s:22:\"English (South Africa)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/en_ZA.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"eo\";a:8:{s:8:\"language\";s:2:\"eo\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:47:07\";s:12:\"english_name\";s:9:\"Esperanto\";s:11:\"native_name\";s:9:\"Esperanto\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/eo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eo\";i:2;s:3:\"epo\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Daŭrigi\";}}s:5:\"es_MX\";a:8:{s:8:\"language\";s:5:\"es_MX\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:42:28\";s:12:\"english_name\";s:16:\"Spanish (Mexico)\";s:11:\"native_name\";s:19:\"Español de México\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/es_MX.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"es\";i:2;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_ES\";a:8:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:41:05\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/es_ES.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"es\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_GT\";a:8:{s:8:\"language\";s:5:\"es_GT\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:54:37\";s:12:\"english_name\";s:19:\"Spanish (Guatemala)\";s:11:\"native_name\";s:21:\"Español de Guatemala\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/es_GT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"es\";i:2;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CO\";a:8:{s:8:\"language\";s:5:\"es_CO\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:54:37\";s:12:\"english_name\";s:18:\"Spanish (Colombia)\";s:11:\"native_name\";s:20:\"Español de Colombia\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/es_CO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"es\";i:2;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_VE\";a:8:{s:8:\"language\";s:5:\"es_VE\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:53:56\";s:12:\"english_name\";s:19:\"Spanish (Venezuela)\";s:11:\"native_name\";s:21:\"Español de Venezuela\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/es_VE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"es\";i:2;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CL\";a:8:{s:8:\"language\";s:5:\"es_CL\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-28 20:09:49\";s:12:\"english_name\";s:15:\"Spanish (Chile)\";s:11:\"native_name\";s:17:\"Español de Chile\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/es_CL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"es\";i:2;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_PE\";a:8:{s:8:\"language\";s:5:\"es_PE\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-09-09 09:36:22\";s:12:\"english_name\";s:14:\"Spanish (Peru)\";s:11:\"native_name\";s:17:\"Español de Perú\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/es_PE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"es\";i:2;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_AR\";a:8:{s:8:\"language\";s:5:\"es_AR\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:41:31\";s:12:\"english_name\";s:19:\"Spanish (Argentina)\";s:11:\"native_name\";s:21:\"Español de Argentina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/es_AR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"es\";i:2;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:2:\"et\";a:8:{s:8:\"language\";s:2:\"et\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-27 16:37:11\";s:12:\"english_name\";s:8:\"Estonian\";s:11:\"native_name\";s:5:\"Eesti\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/et.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"et\";i:2;s:3:\"est\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Jätka\";}}s:2:\"eu\";a:8:{s:8:\"language\";s:2:\"eu\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:54:33\";s:12:\"english_name\";s:6:\"Basque\";s:11:\"native_name\";s:7:\"Euskara\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/eu.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eu\";i:2;s:3:\"eus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Jarraitu\";}}s:5:\"fa_IR\";a:8:{s:8:\"language\";s:5:\"fa_IR\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:42:24\";s:12:\"english_name\";s:7:\"Persian\";s:11:\"native_name\";s:10:\"فارسی\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/fa_IR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fa\";i:2;s:3:\"fas\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:2:\"fi\";a:8:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:42:25\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/fi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fi\";i:2;s:3:\"fin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Jatka\";}}s:5:\"fr_FR\";a:8:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:53:51\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/fr_FR.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"fr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:5:\"fr_BE\";a:8:{s:8:\"language\";s:5:\"fr_BE\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:40:32\";s:12:\"english_name\";s:16:\"French (Belgium)\";s:11:\"native_name\";s:21:\"Français de Belgique\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/fr_BE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fr\";i:2;s:3:\"fra\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:5:\"fr_CA\";a:8:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:40:30\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/fr_CA.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fr\";i:2;s:3:\"fra\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:2:\"gd\";a:8:{s:8:\"language\";s:2:\"gd\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-08-23 17:41:37\";s:12:\"english_name\";s:15:\"Scottish Gaelic\";s:11:\"native_name\";s:9:\"Gàidhlig\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/gd.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"gd\";i:2;s:3:\"gla\";i:3;s:3:\"gla\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"Lean air adhart\";}}s:5:\"gl_ES\";a:8:{s:8:\"language\";s:5:\"gl_ES\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:40:27\";s:12:\"english_name\";s:8:\"Galician\";s:11:\"native_name\";s:6:\"Galego\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/gl_ES.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"gl\";i:2;s:3:\"glg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:2:\"gu\";a:8:{s:8:\"language\";s:2:\"gu\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:39:07\";s:12:\"english_name\";s:8:\"Gujarati\";s:11:\"native_name\";s:21:\"ગુજરાતી\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/gu.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"gu\";i:2;s:3:\"guj\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:31:\"ચાલુ રાખવું\";}}s:3:\"haz\";a:8:{s:8:\"language\";s:3:\"haz\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2015-12-05 00:59:09\";s:12:\"english_name\";s:8:\"Hazaragi\";s:11:\"native_name\";s:15:\"هزاره گی\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.4.2/haz.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"haz\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:5:\"he_IL\";a:8:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:39:45\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/he_IL.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"he\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"המשך\";}}s:5:\"hi_IN\";a:8:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:39:41\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/hi_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hi\";i:2;s:3:\"hin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"जारी\";}}s:2:\"hr\";a:8:{s:8:\"language\";s:2:\"hr\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:54:13\";s:12:\"english_name\";s:8:\"Croatian\";s:11:\"native_name\";s:8:\"Hrvatski\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/hr.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hr\";i:2;s:3:\"hrv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:5:\"hu_HU\";a:8:{s:8:\"language\";s:5:\"hu_HU\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:48:39\";s:12:\"english_name\";s:9:\"Hungarian\";s:11:\"native_name\";s:6:\"Magyar\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/hu_HU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hu\";i:2;s:3:\"hun\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Folytatás\";}}s:2:\"hy\";a:8:{s:8:\"language\";s:2:\"hy\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-12-03 16:21:10\";s:12:\"english_name\";s:8:\"Armenian\";s:11:\"native_name\";s:14:\"Հայերեն\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/hy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hy\";i:2;s:3:\"hye\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Շարունակել\";}}s:5:\"id_ID\";a:8:{s:8:\"language\";s:5:\"id_ID\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:39:27\";s:12:\"english_name\";s:10:\"Indonesian\";s:11:\"native_name\";s:16:\"Bahasa Indonesia\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/id_ID.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"id\";i:2;s:3:\"ind\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Lanjutkan\";}}s:5:\"is_IS\";a:8:{s:8:\"language\";s:5:\"is_IS\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-27 15:18:24\";s:12:\"english_name\";s:9:\"Icelandic\";s:11:\"native_name\";s:9:\"Íslenska\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/is_IS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"is\";i:2;s:3:\"isl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Áfram\";}}s:5:\"it_IT\";a:8:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:39:22\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/it_IT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"it\";i:2;s:3:\"ita\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:2:\"ja\";a:8:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:39:17\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/ja.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"ja\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"続ける\";}}s:5:\"ka_GE\";a:8:{s:8:\"language\";s:5:\"ka_GE\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:40:24\";s:12:\"english_name\";s:8:\"Georgian\";s:11:\"native_name\";s:21:\"ქართული\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/ka_GE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ka\";i:2;s:3:\"kat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"გაგრძელება\";}}s:3:\"kab\";a:8:{s:8:\"language\";s:3:\"kab\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:39:13\";s:12:\"english_name\";s:6:\"Kabyle\";s:11:\"native_name\";s:9:\"Taqbaylit\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/kab.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"kab\";i:3;s:3:\"kab\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Kemmel\";}}s:2:\"km\";a:8:{s:8:\"language\";s:2:\"km\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-12-07 02:07:59\";s:12:\"english_name\";s:5:\"Khmer\";s:11:\"native_name\";s:27:\"ភាសាខ្មែរ\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/km.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"km\";i:2;s:3:\"khm\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"បន្ត\";}}s:5:\"ko_KR\";a:8:{s:8:\"language\";s:5:\"ko_KR\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:39:53\";s:12:\"english_name\";s:6:\"Korean\";s:11:\"native_name\";s:9:\"한국어\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/ko_KR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ko\";i:2;s:3:\"kor\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"계속\";}}s:3:\"ckb\";a:8:{s:8:\"language\";s:3:\"ckb\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:48:25\";s:12:\"english_name\";s:16:\"Kurdish (Sorani)\";s:11:\"native_name\";s:13:\"كوردی‎\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/ckb.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ku\";i:3;s:3:\"ckb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"به‌رده‌وام به‌\";}}s:2:\"lo\";a:8:{s:8:\"language\";s:2:\"lo\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-12 09:59:23\";s:12:\"english_name\";s:3:\"Lao\";s:11:\"native_name\";s:21:\"ພາສາລາວ\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/lo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lo\";i:2;s:3:\"lao\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"ຕໍ່​ໄປ\";}}s:5:\"lt_LT\";a:8:{s:8:\"language\";s:5:\"lt_LT\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:54:34\";s:12:\"english_name\";s:10:\"Lithuanian\";s:11:\"native_name\";s:15:\"Lietuvių kalba\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/lt_LT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lt\";i:2;s:3:\"lit\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Tęsti\";}}s:2:\"lv\";a:8:{s:8:\"language\";s:2:\"lv\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-27 07:09:15\";s:12:\"english_name\";s:7:\"Latvian\";s:11:\"native_name\";s:16:\"Latviešu valoda\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/lv.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lv\";i:2;s:3:\"lav\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Turpināt\";}}s:5:\"mk_MK\";a:8:{s:8:\"language\";s:5:\"mk_MK\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:54:41\";s:12:\"english_name\";s:10:\"Macedonian\";s:11:\"native_name\";s:31:\"Македонски јазик\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/mk_MK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mk\";i:2;s:3:\"mkd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Продолжи\";}}s:5:\"ml_IN\";a:8:{s:8:\"language\";s:5:\"ml_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-27 03:43:32\";s:12:\"english_name\";s:9:\"Malayalam\";s:11:\"native_name\";s:18:\"മലയാളം\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/ml_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ml\";i:2;s:3:\"mal\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"തുടരുക\";}}s:2:\"mn\";a:8:{s:8:\"language\";s:2:\"mn\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-12 07:29:35\";s:12:\"english_name\";s:9:\"Mongolian\";s:11:\"native_name\";s:12:\"Монгол\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/mn.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mn\";i:2;s:3:\"mon\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:24:\"Үргэлжлүүлэх\";}}s:2:\"mr\";a:8:{s:8:\"language\";s:2:\"mr\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:42:37\";s:12:\"english_name\";s:7:\"Marathi\";s:11:\"native_name\";s:15:\"मराठी\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/mr.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mr\";i:2;s:3:\"mar\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"सुरु ठेवा\";}}s:5:\"ms_MY\";a:8:{s:8:\"language\";s:5:\"ms_MY\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:54:49\";s:12:\"english_name\";s:5:\"Malay\";s:11:\"native_name\";s:13:\"Bahasa Melayu\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/ms_MY.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ms\";i:2;s:3:\"msa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Teruskan\";}}s:5:\"my_MM\";a:8:{s:8:\"language\";s:5:\"my_MM\";s:7:\"version\";s:6:\"4.1.14\";s:7:\"updated\";s:19:\"2015-03-26 15:57:42\";s:12:\"english_name\";s:17:\"Myanmar (Burmese)\";s:11:\"native_name\";s:15:\"ဗမာစာ\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.1.14/my_MM.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"my\";i:2;s:3:\"mya\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:54:\"ဆက်လက်လုပ်ဆောင်ပါ။\";}}s:5:\"nb_NO\";a:8:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:42:31\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/nb_NO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nb\";i:2;s:3:\"nob\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Fortsett\";}}s:5:\"ne_NP\";a:8:{s:8:\"language\";s:5:\"ne_NP\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:48:31\";s:12:\"english_name\";s:6:\"Nepali\";s:11:\"native_name\";s:18:\"नेपाली\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/ne_NP.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ne\";i:2;s:3:\"nep\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:43:\"जारी राख्नुहोस्\";}}s:5:\"nl_BE\";a:8:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:49:13\";s:12:\"english_name\";s:15:\"Dutch (Belgium)\";s:11:\"native_name\";s:20:\"Nederlands (België)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/nl_BE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nl_NL\";a:8:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:48:48\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/nl_NL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:12:\"nl_NL_formal\";a:8:{s:8:\"language\";s:12:\"nl_NL_formal\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-10-14 13:24:10\";s:12:\"english_name\";s:14:\"Dutch (Formal)\";s:11:\"native_name\";s:20:\"Nederlands (Formeel)\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/translation/core/4.7.2/nl_NL_formal.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nn_NO\";a:8:{s:8:\"language\";s:5:\"nn_NO\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:40:57\";s:12:\"english_name\";s:19:\"Norwegian (Nynorsk)\";s:11:\"native_name\";s:13:\"Norsk nynorsk\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/nn_NO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nn\";i:2;s:3:\"nno\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Hald fram\";}}s:3:\"oci\";a:8:{s:8:\"language\";s:3:\"oci\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-02 13:47:38\";s:12:\"english_name\";s:7:\"Occitan\";s:11:\"native_name\";s:7:\"Occitan\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/oci.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"oc\";i:2;s:3:\"oci\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Contunhar\";}}s:5:\"pa_IN\";a:8:{s:8:\"language\";s:5:\"pa_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-16 05:19:43\";s:12:\"english_name\";s:7:\"Punjabi\";s:11:\"native_name\";s:18:\"ਪੰਜਾਬੀ\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/pa_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pa\";i:2;s:3:\"pan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"ਜਾਰੀ ਰੱਖੋ\";}}s:5:\"pl_PL\";a:8:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:42:18\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/pl_PL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pl\";i:2;s:3:\"pol\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Kontynuuj\";}}s:2:\"ps\";a:8:{s:8:\"language\";s:2:\"ps\";s:7:\"version\";s:6:\"4.1.14\";s:7:\"updated\";s:19:\"2015-03-29 22:19:48\";s:12:\"english_name\";s:6:\"Pashto\";s:11:\"native_name\";s:8:\"پښتو\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.1.14/ps.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ps\";i:2;s:3:\"pus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:19:\"دوام ورکړه\";}}s:5:\"pt_PT\";a:8:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:42:15\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/pt_PT.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"pt_BR\";a:8:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:54:53\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/pt_BR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pt\";i:2;s:3:\"por\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:3:\"rhg\";a:8:{s:8:\"language\";s:3:\"rhg\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-16 13:03:18\";s:12:\"english_name\";s:8:\"Rohingya\";s:11:\"native_name\";s:8:\"Ruáinga\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/rhg.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"rhg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:0:\"\";}}s:5:\"ro_RO\";a:8:{s:8:\"language\";s:5:\"ro_RO\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:42:11\";s:12:\"english_name\";s:8:\"Romanian\";s:11:\"native_name\";s:8:\"Română\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/ro_RO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ro\";i:2;s:3:\"ron\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuă\";}}s:5:\"ru_RU\";a:8:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:09:16\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/ru_RU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ru\";i:2;s:3:\"rus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продолжить\";}}s:3:\"sah\";a:8:{s:8:\"language\";s:3:\"sah\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-21 02:06:41\";s:12:\"english_name\";s:5:\"Sakha\";s:11:\"native_name\";s:14:\"Сахалыы\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/sah.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"sah\";i:3;s:3:\"sah\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Салҕаа\";}}s:5:\"si_LK\";a:8:{s:8:\"language\";s:5:\"si_LK\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-12 06:00:52\";s:12:\"english_name\";s:7:\"Sinhala\";s:11:\"native_name\";s:15:\"සිංහල\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/si_LK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"si\";i:2;s:3:\"sin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:44:\"දිගටම කරගෙන යන්න\";}}s:5:\"sk_SK\";a:8:{s:8:\"language\";s:5:\"sk_SK\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:41:00\";s:12:\"english_name\";s:6:\"Slovak\";s:11:\"native_name\";s:11:\"Slovenčina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/sk_SK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sk\";i:2;s:3:\"slk\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Pokračovať\";}}s:5:\"sl_SI\";a:8:{s:8:\"language\";s:5:\"sl_SI\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:49:04\";s:12:\"english_name\";s:9:\"Slovenian\";s:11:\"native_name\";s:13:\"Slovenščina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/sl_SI.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sl\";i:2;s:3:\"slv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Nadaljuj\";}}s:2:\"sq\";a:8:{s:8:\"language\";s:2:\"sq\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:40:49\";s:12:\"english_name\";s:8:\"Albanian\";s:11:\"native_name\";s:5:\"Shqip\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/sq.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sq\";i:2;s:3:\"sqi\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Vazhdo\";}}s:5:\"sr_RS\";a:8:{s:8:\"language\";s:5:\"sr_RS\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:41:03\";s:12:\"english_name\";s:7:\"Serbian\";s:11:\"native_name\";s:23:\"Српски језик\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/sr_RS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sr\";i:2;s:3:\"srp\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:14:\"Настави\";}}s:5:\"sv_SE\";a:8:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:40:55\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/sv_SE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sv\";i:2;s:3:\"swe\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Fortsätt\";}}s:3:\"szl\";a:8:{s:8:\"language\";s:3:\"szl\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-09-24 19:58:14\";s:12:\"english_name\";s:8:\"Silesian\";s:11:\"native_name\";s:17:\"Ślōnskŏ gŏdka\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/szl.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"szl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:13:\"Kōntynuować\";}}s:5:\"ta_IN\";a:8:{s:8:\"language\";s:5:\"ta_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-27 03:22:47\";s:12:\"english_name\";s:5:\"Tamil\";s:11:\"native_name\";s:15:\"தமிழ்\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/ta_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ta\";i:2;s:3:\"tam\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:24:\"தொடரவும்\";}}s:2:\"te\";a:8:{s:8:\"language\";s:2:\"te\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:47:39\";s:12:\"english_name\";s:6:\"Telugu\";s:11:\"native_name\";s:18:\"తెలుగు\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/te.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"te\";i:2;s:3:\"tel\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"కొనసాగించు\";}}s:2:\"th\";a:8:{s:8:\"language\";s:2:\"th\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:48:43\";s:12:\"english_name\";s:4:\"Thai\";s:11:\"native_name\";s:9:\"ไทย\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/th.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"th\";i:2;s:3:\"tha\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"ต่อไป\";}}s:2:\"tl\";a:8:{s:8:\"language\";s:2:\"tl\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-12-30 02:38:08\";s:12:\"english_name\";s:7:\"Tagalog\";s:11:\"native_name\";s:7:\"Tagalog\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/tl.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tl\";i:2;s:3:\"tgl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Magpatuloy\";}}s:5:\"tr_TR\";a:8:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:48:59\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/tr_TR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tr\";i:2;s:3:\"tur\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Devam\";}}s:5:\"tt_RU\";a:8:{s:8:\"language\";s:5:\"tt_RU\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-20 20:20:50\";s:12:\"english_name\";s:5:\"Tatar\";s:11:\"native_name\";s:19:\"Татар теле\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/tt_RU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tt\";i:2;s:3:\"tat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:17:\"дәвам итү\";}}s:3:\"tah\";a:8:{s:8:\"language\";s:3:\"tah\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-06 18:39:39\";s:12:\"english_name\";s:8:\"Tahitian\";s:11:\"native_name\";s:10:\"Reo Tahiti\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/tah.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"ty\";i:2;s:3:\"tah\";i:3;s:3:\"tah\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:0:\"\";}}s:5:\"ug_CN\";a:8:{s:8:\"language\";s:5:\"ug_CN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-12-05 09:23:39\";s:12:\"english_name\";s:6:\"Uighur\";s:11:\"native_name\";s:9:\"Uyƣurqə\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/ug_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ug\";i:2;s:3:\"uig\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:26:\"داۋاملاشتۇرۇش\";}}s:2:\"uk\";a:8:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-27 19:24:08\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/uk.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"uk\";i:2;s:3:\"ukr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продовжити\";}}s:2:\"ur\";a:8:{s:8:\"language\";s:2:\"ur\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:36:52\";s:12:\"english_name\";s:4:\"Urdu\";s:11:\"native_name\";s:8:\"اردو\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/ur.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ur\";i:2;s:3:\"urd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:19:\"جاری رکھیں\";}}s:5:\"uz_UZ\";a:8:{s:8:\"language\";s:5:\"uz_UZ\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:54:02\";s:12:\"english_name\";s:5:\"Uzbek\";s:11:\"native_name\";s:11:\"O‘zbekcha\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/uz_UZ.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"uz\";i:2;s:3:\"uzb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:11:\"Davom etish\";}}s:2:\"vi\";a:8:{s:8:\"language\";s:2:\"vi\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:48:35\";s:12:\"english_name\";s:10:\"Vietnamese\";s:11:\"native_name\";s:14:\"Tiếng Việt\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/vi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"vi\";i:2;s:3:\"vie\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Tiếp tục\";}}s:5:\"zh_HK\";a:8:{s:8:\"language\";s:5:\"zh_HK\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:55:14\";s:12:\"english_name\";s:19:\"Chinese (Hong Kong)\";s:11:\"native_name\";s:16:\"香港中文版	\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/zh_HK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"繼續\";}}s:5:\"zh_CN\";a:8:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:54:45\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/zh_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"继续\";}}s:5:\"zh_TW\";a:8:{s:8:\"language\";s:5:\"zh_TW\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:55:10\";s:12:\"english_name\";s:16:\"Chinese (Taiwan)\";s:11:\"native_name\";s:12:\"繁體中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/zh_TW.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"繼續\";}}}", "no");
INSERT INTO `wp_options` VALUES("613", "fresh_site", "0", "yes");
INSERT INTO `wp_options` VALUES("700", "_site_transient_timeout_poptags_40cd750bba9870f18aada2478b24840a", "1487689489", "no");
INSERT INTO `wp_options` VALUES("701", "_site_transient_poptags_40cd750bba9870f18aada2478b24840a", "a:100:{s:6:\"widget\";a:3:{s:4:\"name\";s:6:\"widget\";s:4:\"slug\";s:6:\"widget\";s:5:\"count\";s:4:\"6191\";}s:6:\"plugin\";a:3:{s:4:\"name\";s:6:\"plugin\";s:4:\"slug\";s:6:\"plugin\";s:5:\"count\";s:4:\"3803\";}s:4:\"post\";a:3:{s:4:\"name\";s:4:\"Post\";s:4:\"slug\";s:4:\"post\";s:5:\"count\";s:4:\"3796\";}s:5:\"admin\";a:3:{s:4:\"name\";s:5:\"admin\";s:4:\"slug\";s:5:\"admin\";s:5:\"count\";s:4:\"3327\";}s:5:\"posts\";a:3:{s:4:\"name\";s:5:\"posts\";s:4:\"slug\";s:5:\"posts\";s:5:\"count\";s:4:\"2897\";}s:9:\"shortcode\";a:3:{s:4:\"name\";s:9:\"shortcode\";s:4:\"slug\";s:9:\"shortcode\";s:5:\"count\";s:4:\"2614\";}s:7:\"sidebar\";a:3:{s:4:\"name\";s:7:\"sidebar\";s:4:\"slug\";s:7:\"sidebar\";s:5:\"count\";s:4:\"2254\";}s:11:\"woocommerce\";a:3:{s:4:\"name\";s:11:\"woocommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:5:\"count\";s:4:\"2254\";}s:6:\"google\";a:3:{s:4:\"name\";s:6:\"google\";s:4:\"slug\";s:6:\"google\";s:5:\"count\";s:4:\"2171\";}s:4:\"page\";a:3:{s:4:\"name\";s:4:\"page\";s:4:\"slug\";s:4:\"page\";s:5:\"count\";s:4:\"2148\";}s:7:\"twitter\";a:3:{s:4:\"name\";s:7:\"twitter\";s:4:\"slug\";s:7:\"twitter\";s:5:\"count\";s:4:\"2109\";}s:6:\"images\";a:3:{s:4:\"name\";s:6:\"images\";s:4:\"slug\";s:6:\"images\";s:5:\"count\";s:4:\"2075\";}s:8:\"comments\";a:3:{s:4:\"name\";s:8:\"comments\";s:4:\"slug\";s:8:\"comments\";s:5:\"count\";s:4:\"2012\";}s:5:\"image\";a:3:{s:4:\"name\";s:5:\"image\";s:4:\"slug\";s:5:\"image\";s:5:\"count\";s:4:\"1972\";}s:8:\"facebook\";a:3:{s:4:\"name\";s:8:\"Facebook\";s:4:\"slug\";s:8:\"facebook\";s:5:\"count\";s:4:\"1804\";}s:3:\"seo\";a:3:{s:4:\"name\";s:3:\"seo\";s:4:\"slug\";s:3:\"seo\";s:5:\"count\";s:4:\"1699\";}s:9:\"wordpress\";a:3:{s:4:\"name\";s:9:\"wordpress\";s:4:\"slug\";s:9:\"wordpress\";s:5:\"count\";s:4:\"1674\";}s:6:\"social\";a:3:{s:4:\"name\";s:6:\"social\";s:4:\"slug\";s:6:\"social\";s:5:\"count\";s:4:\"1497\";}s:7:\"gallery\";a:3:{s:4:\"name\";s:7:\"gallery\";s:4:\"slug\";s:7:\"gallery\";s:5:\"count\";s:4:\"1414\";}s:5:\"email\";a:3:{s:4:\"name\";s:5:\"email\";s:4:\"slug\";s:5:\"email\";s:5:\"count\";s:4:\"1313\";}s:5:\"links\";a:3:{s:4:\"name\";s:5:\"links\";s:4:\"slug\";s:5:\"links\";s:5:\"count\";s:4:\"1308\";}s:7:\"widgets\";a:3:{s:4:\"name\";s:7:\"widgets\";s:4:\"slug\";s:7:\"widgets\";s:5:\"count\";s:4:\"1178\";}s:5:\"pages\";a:3:{s:4:\"name\";s:5:\"pages\";s:4:\"slug\";s:5:\"pages\";s:5:\"count\";s:4:\"1154\";}s:9:\"ecommerce\";a:3:{s:4:\"name\";s:9:\"ecommerce\";s:4:\"slug\";s:9:\"ecommerce\";s:5:\"count\";s:4:\"1105\";}s:5:\"media\";a:3:{s:4:\"name\";s:5:\"media\";s:4:\"slug\";s:5:\"media\";s:5:\"count\";s:4:\"1043\";}s:6:\"jquery\";a:3:{s:4:\"name\";s:6:\"jquery\";s:4:\"slug\";s:6:\"jquery\";s:5:\"count\";s:4:\"1037\";}s:7:\"content\";a:3:{s:4:\"name\";s:7:\"content\";s:4:\"slug\";s:7:\"content\";s:5:\"count\";s:4:\"1002\";}s:5:\"video\";a:3:{s:4:\"name\";s:5:\"video\";s:4:\"slug\";s:5:\"video\";s:5:\"count\";s:4:\"1000\";}s:5:\"login\";a:3:{s:4:\"name\";s:5:\"login\";s:4:\"slug\";s:5:\"login\";s:5:\"count\";s:3:\"986\";}s:10:\"responsive\";a:3:{s:4:\"name\";s:10:\"responsive\";s:4:\"slug\";s:10:\"responsive\";s:5:\"count\";s:3:\"977\";}s:4:\"ajax\";a:3:{s:4:\"name\";s:4:\"AJAX\";s:4:\"slug\";s:4:\"ajax\";s:5:\"count\";s:3:\"946\";}s:3:\"rss\";a:3:{s:4:\"name\";s:3:\"rss\";s:4:\"slug\";s:3:\"rss\";s:5:\"count\";s:3:\"919\";}s:10:\"e-commerce\";a:3:{s:4:\"name\";s:10:\"e-commerce\";s:4:\"slug\";s:10:\"e-commerce\";s:5:\"count\";s:3:\"887\";}s:10:\"javascript\";a:3:{s:4:\"name\";s:10:\"javascript\";s:4:\"slug\";s:10:\"javascript\";s:5:\"count\";s:3:\"879\";}s:8:\"security\";a:3:{s:4:\"name\";s:8:\"security\";s:4:\"slug\";s:8:\"security\";s:5:\"count\";s:3:\"878\";}s:10:\"buddypress\";a:3:{s:4:\"name\";s:10:\"buddypress\";s:4:\"slug\";s:10:\"buddypress\";s:5:\"count\";s:3:\"846\";}s:5:\"share\";a:3:{s:4:\"name\";s:5:\"Share\";s:4:\"slug\";s:5:\"share\";s:5:\"count\";s:3:\"802\";}s:7:\"youtube\";a:3:{s:4:\"name\";s:7:\"youtube\";s:4:\"slug\";s:7:\"youtube\";s:5:\"count\";s:3:\"801\";}s:5:\"photo\";a:3:{s:4:\"name\";s:5:\"photo\";s:4:\"slug\";s:5:\"photo\";s:5:\"count\";s:3:\"797\";}s:4:\"spam\";a:3:{s:4:\"name\";s:4:\"spam\";s:4:\"slug\";s:4:\"spam\";s:5:\"count\";s:3:\"785\";}s:6:\"slider\";a:3:{s:4:\"name\";s:6:\"slider\";s:4:\"slug\";s:6:\"slider\";s:5:\"count\";s:3:\"779\";}s:9:\"analytics\";a:3:{s:4:\"name\";s:9:\"analytics\";s:4:\"slug\";s:9:\"analytics\";s:5:\"count\";s:3:\"777\";}s:4:\"link\";a:3:{s:4:\"name\";s:4:\"link\";s:4:\"slug\";s:4:\"link\";s:5:\"count\";s:3:\"777\";}s:3:\"css\";a:3:{s:4:\"name\";s:3:\"CSS\";s:4:\"slug\";s:3:\"css\";s:5:\"count\";s:3:\"765\";}s:4:\"feed\";a:3:{s:4:\"name\";s:4:\"feed\";s:4:\"slug\";s:4:\"feed\";s:5:\"count\";s:3:\"762\";}s:4:\"form\";a:3:{s:4:\"name\";s:4:\"form\";s:4:\"slug\";s:4:\"form\";s:5:\"count\";s:3:\"758\";}s:8:\"category\";a:3:{s:4:\"name\";s:8:\"category\";s:4:\"slug\";s:8:\"category\";s:5:\"count\";s:3:\"749\";}s:5:\"embed\";a:3:{s:4:\"name\";s:5:\"embed\";s:4:\"slug\";s:5:\"embed\";s:5:\"count\";s:3:\"743\";}s:6:\"search\";a:3:{s:4:\"name\";s:6:\"search\";s:4:\"slug\";s:6:\"search\";s:5:\"count\";s:3:\"739\";}s:6:\"custom\";a:3:{s:4:\"name\";s:6:\"custom\";s:4:\"slug\";s:6:\"custom\";s:5:\"count\";s:3:\"732\";}s:6:\"photos\";a:3:{s:4:\"name\";s:6:\"photos\";s:4:\"slug\";s:6:\"photos\";s:5:\"count\";s:3:\"717\";}s:4:\"menu\";a:3:{s:4:\"name\";s:4:\"menu\";s:4:\"slug\";s:4:\"menu\";s:5:\"count\";s:3:\"662\";}s:9:\"slideshow\";a:3:{s:4:\"name\";s:9:\"slideshow\";s:4:\"slug\";s:9:\"slideshow\";s:5:\"count\";s:3:\"661\";}s:6:\"button\";a:3:{s:4:\"name\";s:6:\"button\";s:4:\"slug\";s:6:\"button\";s:5:\"count\";s:3:\"658\";}s:5:\"stats\";a:3:{s:4:\"name\";s:5:\"stats\";s:4:\"slug\";s:5:\"stats\";s:5:\"count\";s:3:\"653\";}s:5:\"theme\";a:3:{s:4:\"name\";s:5:\"theme\";s:4:\"slug\";s:5:\"theme\";s:5:\"count\";s:3:\"642\";}s:9:\"dashboard\";a:3:{s:4:\"name\";s:9:\"dashboard\";s:4:\"slug\";s:9:\"dashboard\";s:5:\"count\";s:3:\"639\";}s:6:\"mobile\";a:3:{s:4:\"name\";s:6:\"mobile\";s:4:\"slug\";s:6:\"mobile\";s:5:\"count\";s:3:\"635\";}s:7:\"comment\";a:3:{s:4:\"name\";s:7:\"comment\";s:4:\"slug\";s:7:\"comment\";s:5:\"count\";s:3:\"626\";}s:4:\"tags\";a:3:{s:4:\"name\";s:4:\"tags\";s:4:\"slug\";s:4:\"tags\";s:5:\"count\";s:3:\"622\";}s:10:\"categories\";a:3:{s:4:\"name\";s:10:\"categories\";s:4:\"slug\";s:10:\"categories\";s:5:\"count\";s:3:\"607\";}s:10:\"statistics\";a:3:{s:4:\"name\";s:10:\"statistics\";s:4:\"slug\";s:10:\"statistics\";s:5:\"count\";s:3:\"606\";}s:6:\"editor\";a:3:{s:4:\"name\";s:6:\"editor\";s:4:\"slug\";s:6:\"editor\";s:5:\"count\";s:3:\"598\";}s:4:\"user\";a:3:{s:4:\"name\";s:4:\"user\";s:4:\"slug\";s:4:\"user\";s:5:\"count\";s:3:\"598\";}s:3:\"ads\";a:3:{s:4:\"name\";s:3:\"ads\";s:4:\"slug\";s:3:\"ads\";s:5:\"count\";s:3:\"595\";}s:12:\"social-media\";a:3:{s:4:\"name\";s:12:\"social media\";s:4:\"slug\";s:12:\"social-media\";s:5:\"count\";s:3:\"588\";}s:5:\"users\";a:3:{s:4:\"name\";s:5:\"users\";s:4:\"slug\";s:5:\"users\";s:5:\"count\";s:3:\"572\";}s:4:\"list\";a:3:{s:4:\"name\";s:4:\"list\";s:4:\"slug\";s:4:\"list\";s:5:\"count\";s:3:\"565\";}s:12:\"contact-form\";a:3:{s:4:\"name\";s:12:\"contact form\";s:4:\"slug\";s:12:\"contact-form\";s:5:\"count\";s:3:\"563\";}s:9:\"affiliate\";a:3:{s:4:\"name\";s:9:\"affiliate\";s:4:\"slug\";s:9:\"affiliate\";s:5:\"count\";s:3:\"560\";}s:6:\"simple\";a:3:{s:4:\"name\";s:6:\"simple\";s:4:\"slug\";s:6:\"simple\";s:5:\"count\";s:3:\"553\";}s:9:\"marketing\";a:3:{s:4:\"name\";s:9:\"marketing\";s:4:\"slug\";s:9:\"marketing\";s:5:\"count\";s:3:\"550\";}s:7:\"plugins\";a:3:{s:4:\"name\";s:7:\"plugins\";s:4:\"slug\";s:7:\"plugins\";s:5:\"count\";s:3:\"547\";}s:4:\"shop\";a:3:{s:4:\"name\";s:4:\"shop\";s:4:\"slug\";s:4:\"shop\";s:5:\"count\";s:3:\"544\";}s:9:\"multisite\";a:3:{s:4:\"name\";s:9:\"multisite\";s:4:\"slug\";s:9:\"multisite\";s:5:\"count\";s:3:\"544\";}s:3:\"api\";a:3:{s:4:\"name\";s:3:\"api\";s:4:\"slug\";s:3:\"api\";s:5:\"count\";s:3:\"528\";}s:7:\"picture\";a:3:{s:4:\"name\";s:7:\"picture\";s:4:\"slug\";s:7:\"picture\";s:5:\"count\";s:3:\"525\";}s:7:\"contact\";a:3:{s:4:\"name\";s:7:\"contact\";s:4:\"slug\";s:7:\"contact\";s:5:\"count\";s:3:\"515\";}s:3:\"url\";a:3:{s:4:\"name\";s:3:\"url\";s:4:\"slug\";s:3:\"url\";s:5:\"count\";s:3:\"494\";}s:10:\"newsletter\";a:3:{s:4:\"name\";s:10:\"newsletter\";s:4:\"slug\";s:10:\"newsletter\";s:5:\"count\";s:3:\"479\";}s:10:\"navigation\";a:3:{s:4:\"name\";s:10:\"navigation\";s:4:\"slug\";s:10:\"navigation\";s:5:\"count\";s:3:\"475\";}s:4:\"html\";a:3:{s:4:\"name\";s:4:\"html\";s:4:\"slug\";s:4:\"html\";s:5:\"count\";s:3:\"472\";}s:6:\"events\";a:3:{s:4:\"name\";s:6:\"events\";s:4:\"slug\";s:6:\"events\";s:5:\"count\";s:3:\"471\";}s:8:\"pictures\";a:3:{s:4:\"name\";s:8:\"pictures\";s:4:\"slug\";s:8:\"pictures\";s:5:\"count\";s:3:\"467\";}s:8:\"tracking\";a:3:{s:4:\"name\";s:8:\"tracking\";s:4:\"slug\";s:8:\"tracking\";s:5:\"count\";s:3:\"462\";}s:10:\"shortcodes\";a:3:{s:4:\"name\";s:10:\"shortcodes\";s:4:\"slug\";s:10:\"shortcodes\";s:5:\"count\";s:3:\"459\";}s:8:\"calendar\";a:3:{s:4:\"name\";s:8:\"calendar\";s:4:\"slug\";s:8:\"calendar\";s:5:\"count\";s:3:\"451\";}s:4:\"meta\";a:3:{s:4:\"name\";s:4:\"meta\";s:4:\"slug\";s:4:\"meta\";s:5:\"count\";s:3:\"447\";}s:8:\"lightbox\";a:3:{s:4:\"name\";s:8:\"lightbox\";s:4:\"slug\";s:8:\"lightbox\";s:5:\"count\";s:3:\"444\";}s:11:\"advertising\";a:3:{s:4:\"name\";s:11:\"advertising\";s:4:\"slug\";s:11:\"advertising\";s:5:\"count\";s:3:\"444\";}s:3:\"tag\";a:3:{s:4:\"name\";s:3:\"tag\";s:4:\"slug\";s:3:\"tag\";s:5:\"count\";s:3:\"437\";}s:9:\"thumbnail\";a:3:{s:4:\"name\";s:9:\"thumbnail\";s:4:\"slug\";s:9:\"thumbnail\";s:5:\"count\";s:3:\"436\";}s:6:\"paypal\";a:3:{s:4:\"name\";s:6:\"paypal\";s:4:\"slug\";s:6:\"paypal\";s:5:\"count\";s:3:\"436\";}s:12:\"notification\";a:3:{s:4:\"name\";s:12:\"notification\";s:4:\"slug\";s:12:\"notification\";s:5:\"count\";s:3:\"436\";}s:5:\"popup\";a:3:{s:4:\"name\";s:5:\"popup\";s:4:\"slug\";s:5:\"popup\";s:5:\"count\";s:3:\"433\";}s:6:\"upload\";a:3:{s:4:\"name\";s:6:\"upload\";s:4:\"slug\";s:6:\"upload\";s:5:\"count\";s:3:\"428\";}s:4:\"news\";a:3:{s:4:\"name\";s:4:\"News\";s:4:\"slug\";s:4:\"news\";s:5:\"count\";s:3:\"427\";}s:16:\"custom-post-type\";a:3:{s:4:\"name\";s:16:\"custom post type\";s:4:\"slug\";s:16:\"custom-post-type\";s:5:\"count\";s:3:\"425\";}s:8:\"linkedin\";a:3:{s:4:\"name\";s:8:\"linkedin\";s:4:\"slug\";s:8:\"linkedin\";s:5:\"count\";s:3:\"423\";}s:7:\"sharing\";a:3:{s:4:\"name\";s:7:\"sharing\";s:4:\"slug\";s:7:\"sharing\";s:5:\"count\";s:3:\"423\";}}", "no");
INSERT INTO `wp_options` VALUES("710", "wpsm_cc_default_Settings", "s:350:\"a:11:{s:10:\"op_cl_icon\";s:3:\"yes\";s:13:\"enable_toggle\";s:2:\"no\";s:16:\"enable_ac_border\";s:3:\"yes\";s:15:\"acc_op_cl_align\";s:4:\"left\";s:18:\"acc_title_icon_clr\";s:7:\"#6b6b6b\";s:17:\"acc_desc_font_clr\";s:7:\"#7a7a7a\";s:10:\"title_size\";s:2:\"22\";s:8:\"des_size\";s:2:\"18\";s:11:\"font_family\";s:7:\"Verdana\";s:13:\"expand_option\";s:1:\"1\";s:10:\"custom_css\";s:0:\"\";}\";", "yes");
INSERT INTO `wp_options` VALUES("718", "_site_transient_update_themes", "O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1489134362;s:7:\"checked\";a:4:{s:13:\"reda_security\";s:3:\"1.0\";s:13:\"twentyfifteen\";s:3:\"1.7\";s:14:\"twentyfourteen\";s:3:\"1.9\";s:14:\"twentythirteen\";s:3:\"2.1\";}s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}}", "no");
INSERT INTO `wp_options` VALUES("792", "_site_transient_update_core", "O:8:\"stdClass\":4:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:65:\"https://downloads.wordpress.org/release/en_GB/wordpress-4.7.3.zip\";s:6:\"locale\";s:5:\"en_GB\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:65:\"https://downloads.wordpress.org/release/en_GB/wordpress-4.7.3.zip\";s:10:\"no_content\";b:0;s:11:\"new_bundled\";b:0;s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"4.7.3\";s:7:\"version\";s:5:\"4.7.3\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"4.7\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1489134361;s:15:\"version_checked\";s:5:\"4.7.3\";s:12:\"translations\";a:0:{}}", "no");
INSERT INTO `wp_options` VALUES("793", "_site_transient_timeout_browser_08622865acebb06636778b786a1aad5e", "1489475264", "no");
INSERT INTO `wp_options` VALUES("794", "_site_transient_browser_08622865acebb06636778b786a1aad5e", "a:9:{s:8:\"platform\";s:9:\"Macintosh\";s:4:\"name\";s:6:\"Safari\";s:7:\"version\";s:6:\"10.0.3\";s:10:\"update_url\";s:28:\"http://www.apple.com/safari/\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/safari.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/safari.png\";s:15:\"current_version\";s:1:\"5\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}", "no");
INSERT INTO `wp_options` VALUES("818", "_site_transient_timeout_theme_roots", "1489134775", "no");
INSERT INTO `wp_options` VALUES("819", "_site_transient_theme_roots", "a:4:{s:13:\"reda_security\";s:7:\"/themes\";s:13:\"twentyfifteen\";s:7:\"/themes\";s:14:\"twentyfourteen\";s:7:\"/themes\";s:14:\"twentythirteen\";s:7:\"/themes\";}", "no");
INSERT INTO `wp_options` VALUES("821", "_transient_timeout_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca", "1489177468", "no");
INSERT INTO `wp_options` VALUES("822", "_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:49:\"\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:4:{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:26:\"https://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:\"Mon, 06 Mar 2017 19:27: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:\"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:40:\"https://wordpress.org/?v=4.8-alpha-40259\";s: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:36:\"\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:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"WordPress 4.7.3 Security and Maintenance 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:84:\"https://wordpress.org/news/2017/03/wordpress-4-7-3-security-and-maintenance-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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 06 Mar 2017 17:53: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: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:34:\"https://wordpress.org/news/?p=4696\";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:396:\"WordPress 4.7.3 is now available. This is a security release for all previous versions and we strongly encourage you to update your sites immediately. WordPress versions 4.7.2 and earlier are affected by six security issues: Cross-site scripting (XSS) via media file metadata.  Reported by Chris Andrè Dale, Yorick Koster, and Simon P. Briggs. Control characters can trick redirect [&#8230;]\";s: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:\"James Nylen\";s: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:6135:\"<p>WordPress 4.7.3 is now available. This is a <strong>security release</strong> for all previous versions and we strongly encourage you to update your sites immediately.</p>\n<p>WordPress versions 4.7.2 and earlier are affected by six security issues:</p>\n<ol>\n<li>Cross-site scripting (XSS) via media file metadata.  Reported by <a href=\"https://www.securesolutions.no/\">Chris Andrè Dale</a>, <a href=\"https://twitter.com/yorickkoster\">Yorick Koster</a>, and Simon P. Briggs.</li>\n<li>Control characters can trick redirect URL validation.  Reported by <a href=\"http://www.danielchatfield.com/\">Daniel Chatfield</a>.</li>\n<li>Unintended files can be deleted by administrators using the plugin deletion functionality.  Reported by <a href=\"http://b.360.cn/\">xuliang</a>.</li>\n<li>Cross-site scripting (XSS) via video URL in YouTube embeds.  Reported by <a href=\"https://twitter.com/marcs0h\">Marc Montpas</a>.</li>\n<li>Cross-site scripting (XSS) via taxonomy term names.  Reported by <a href=\"https://profiles.wordpress.org/deltamgm2\">Delta</a>.</li>\n<li>Cross-site request forgery (CSRF) in Press This leading to excessive use of server resources.  Reported by Sipke Mellema.</li>\n</ol>\n<p>Thank you to the reporters for practicing <a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">responsible disclosure</a>.</p>\n<p>In addition to the security issues above, WordPress 4.7.3 contains 39 maintenance fixes to the 4.7 release series. For more information, see the <a href=\"https://codex.wordpress.org/Version_4.7.3\">release notes</a> or consult the <a href=\"https://core.trac.wordpress.org/query?status=closed&amp;milestone=4.7.3&amp;group=component&amp;col=id&amp;col=summary&amp;col=component&amp;col=status&amp;col=owner&amp;col=type&amp;col=priority&amp;col=keywords&amp;order=priority\">list of changes</a>.</p>\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 4.7.3</a> or venture over to Dashboard → Updates and simply click “Update Now.” Sites that support automatic background updates are already beginning to update to WordPress 4.7.3.</p>\n<p>Thanks to everyone who contributed to 4.7.3: <a href=\"https://profiles.wordpress.org/aaroncampbell/\">Aaron D. Campbell</a>, <a href=\"https://profiles.wordpress.org/adamsilverstein/\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/xknown/\">Alex Concha</a>, <a href=\"https://profiles.wordpress.org/afercia/\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/asalce/\">asalce</a>, <a href=\"https://profiles.wordpress.org/blobfolio/\">blobfolio</a>, <a href=\"https://profiles.wordpress.org/gitlost/\">bonger</a>, <a href=\"https://profiles.wordpress.org/boonebgorges/\">Boone Gorges</a>, <a href=\"https://profiles.wordpress.org/bor0/\">Boro Sitnikovski</a>, <a href=\"https://profiles.wordpress.org/bradyvercher/\">Brady Vercher</a>, <a href=\"https://profiles.wordpress.org/drrobotnik/\">Brandon Lavigne</a>, <a href=\"https://profiles.wordpress.org/bhargavbhandari90/\">Bunty</a>, <a href=\"https://profiles.wordpress.org/ccprog/\">ccprog</a>, <a href=\"https://profiles.wordpress.org/ketuchetan/\">chetansatasiya</a>, <a href=\"https://profiles.wordpress.org/davidakennedy/\">David A. Kennedy</a>, <a href=\"https://profiles.wordpress.org/dlh/\">David Herrera</a>, <a href=\"https://profiles.wordpress.org/dhanendran/\">Dhanendran</a>, <a href=\"https://profiles.wordpress.org/dd32/\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling (ocean90)</a>, <a href=\"https://profiles.wordpress.org/drivingralle/\">Drivingralle</a>, <a href=\"https://profiles.wordpress.org/iseulde/\">Ella Van Dorpe</a>, <a href=\"https://profiles.wordpress.org/pento/\">Gary Pendergast</a>, <a href=\"https://profiles.wordpress.org/iandunn/\">Ian Dunn</a>, <a href=\"https://profiles.wordpress.org/ipstenu/\">Ipstenu (Mika Epstein)</a>, <a href=\"https://profiles.wordpress.org/jnylen0/\">James Nylen</a>, <a href=\"https://profiles.wordpress.org/jazbek/\">jazbek</a>, <a href=\"https://profiles.wordpress.org/jeremyfelt/\">Jeremy Felt</a>, <a href=\"https://profiles.wordpress.org/jpry/\">Jeremy Pry</a>, <a href=\"https://profiles.wordpress.org/joehoyle/\">Joe Hoyle</a>, <a href=\"https://profiles.wordpress.org/joemcgill/\">Joe McGill</a>, <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/johnjamesjacoby/\">John James Jacoby</a>, <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/ryelle/\">Kelly Dwan</a>, <a href=\"https://profiles.wordpress.org/markoheijnen/\">Marko Heijnen</a>, <a href=\"https://profiles.wordpress.org/matheusgimenez/\">MatheusGimenez</a>, <a href=\"https://profiles.wordpress.org/mnelson4/\">Mike Nelson</a>, <a href=\"https://profiles.wordpress.org/mikeschroder/\">Mike Schroder</a>, <a href=\"https://profiles.wordpress.org/codegeass/\">Muhammet Arslan</a>, <a href=\"https://profiles.wordpress.org/celloexpressions/\">Nick Halsey</a>, <a href=\"https://profiles.wordpress.org/swissspidy/\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/pbearne/\">Paul Bearne</a>, <a href=\"https://profiles.wordpress.org/pavelevap/\">pavelevap</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/rachelbaker/\">Rachel Baker</a>, <a href=\"https://profiles.wordpress.org/reldev/\">reldev</a>, <a href=\"https://profiles.wordpress.org/sanchothefat/\">Robert O&#8217;Rourke</a>, <a href=\"https://profiles.wordpress.org/welcher/\">Ryan Welcher</a>, <a href=\"https://profiles.wordpress.org/sanketparmar/\">Sanket Parmar</a>, <a href=\"https://profiles.wordpress.org/seanchayes/\">Sean Hayes</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/netweb/\">Stephen Edgar</a>, <a href=\"https://profiles.wordpress.org/triplejumper12/\">triplejumper12</a>, <a href=\"https://profiles.wordpress.org/westonruter/\">Weston Ruter</a>, and <a href=\"https://profiles.wordpress.org/wpfo/\">wpfo</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:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4696\";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:39:\"\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:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"WordPress 4.7.2 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:68:\"https://wordpress.org/news/2017/01/wordpress-4-7-2-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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 26 Jan 2017 19:34: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:\"category\";a:3:{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:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"4.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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4676\";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:357:\"WordPress 4.7.2 is now available. This is a security release for all previous versions and we strongly encourage you to update your sites immediately. WordPress versions 4.7.1 and earlier are affected by three security issues: The user interface for assigning taxonomy terms in Press This is shown to users who do not have permissions to use it. [&#8230;]\";s: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:\"Aaron D. Campbell\";s: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:2142:\"<p>WordPress 4.7.2 is now available. This is a <strong>security release</strong> for all previous versions and we strongly encourage you to update your sites immediately.</p>\n<p>WordPress versions 4.7.1 and earlier are affected by three security issues:</p>\n<ol>\n<li>The user interface for assigning taxonomy terms in Press This is shown to users who do not have permissions to use it. Reported by David Herrera of <a href=\"https://www.alleyinteractive.com/\">Alley Interactive</a>.</li>\n<li><code>WP_Query</code> is vulnerable to a SQL injection (SQLi) when passing unsafe data. WordPress core is not directly vulnerable to this issue, but we&#8217;ve added hardening to prevent plugins and themes from accidentally causing a vulnerability. Reported by <a href=\"https://github.com/mjangda\">Mo Jangda</a> (batmoo).</li>\n<li>A cross-site scripting (XSS) vulnerability was discovered in the posts list table. Reported by <a href=\"https://iandunn.name/\">Ian Dunn</a> of the WordPress Security Team.</li>\n<li>An unauthenticated privilege escalation vulnerability was discovered in a REST API endpoint. Reported by <a href=\"https://twitter.com/MarcS0h\">Marc-Alexandre Montpas</a> of Sucuri Security. *</li>\n</ol>\n<p>Thank you to the reporters of these issues for practicing <a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">responsible disclosure</a>.</p>\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 4.7.2</a> or venture over to Dashboard → Updates and simply click “Update Now.” Sites that support automatic background updates are already beginning to update to WordPress 4.7.2.</p>\n<p>Thanks to everyone who contributed to 4.7.2.</p>\n<p>* Update: An additional serious vulnerability was fixed in this release and public disclosure was delayed. For more information on this vulnerability, additional mitigation steps taken, and an explanation for why disclosure was delayed, please read <a href=\"https://make.wordpress.org/core/2017/02/01/disclosure-of-additional-security-fix-in-wordpress-4-7-2/\">Disclosure of Additional Security Fix in WordPress 4.7.2</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:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4676\";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:39:\"\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:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"WordPress 4.7.1 Security and Maintenance 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:84:\"https://wordpress.org/news/2017/01/wordpress-4-7-1-security-and-maintenance-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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 11 Jan 2017 03:53: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:8:\"category\";a:3:{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:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"4.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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4650\";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:375:\"WordPress 4.7 has been downloaded over 10 million times since its release on December 6, 2016 and we are pleased to announce the immediate availability of WordPress 4.7.1. This is a security release for all previous versions and we strongly encourage you to update your sites immediately. WordPress versions 4.7 and earlier are affected by eight security issues: [&#8230;]\";s: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:\"Aaron D. Campbell\";s: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:6520:\"<p>WordPress 4.7 has been <a href=\"https://wordpress.org/download/counter/\">downloaded over 10 million times</a> since its release on December 6, 2016 and we are pleased to announce the immediate availability of WordPress 4.7.1. This is a <strong>security release</strong> for all previous versions and we strongly encourage you to update your sites immediately.</p>\n<p>WordPress versions 4.7 and earlier are affected by eight security issues:</p>\n<ol>\n<li>Remote code execution (RCE) in PHPMailer &#8211; <em>No specific issue appears to affect WordPress</em> or any of the major plugins we investigated but, out of an abundance of caution, we updated PHPMailer in this release. This issue was fixed in PHPMailer thanks to <a href=\"https://legalhackers.com/\">Dawid Golunski</a> and <a href=\"https://twitter.com/Zenexer\">Paul Buonopane</a>.</li>\n<li>The REST API exposed user data for all users who had authored a post of a public post type. WordPress 4.7.1 limits this to only post types which have specified that they should be shown within the REST API. Reported by <a href=\"https://poststatus.com/\">Krogsgard</a> and <a href=\"https://ithemes.com/\">Chris Jean</a>.</li>\n<li>Cross-site scripting (XSS) via the plugin name or version header on <code>update-core.php</code>. Reported by <a href=\"https://dominikschilling.de/\">Dominik Schilling</a> of the WordPress Security Team.</li>\n<li>Cross-site request forgery (CSRF) bypass via uploading a Flash file. Reported by <a href=\"https://twitter.com/Abdulahhusam\">Abdullah Hussam</a>.</li>\n<li>Cross-site scripting (XSS) via theme name fallback. Reported by <a href=\"https://pentest.blog/\">Mehmet Ince</a>.</li>\n<li>Post via email checks <code>mail.example.com</code> if default settings aren&#8217;t changed. Reported by John Blackbourn of the WordPress Security Team.</li>\n<li>A cross-site request forgery (CSRF) was discovered in the accessibility mode of widget editing. Reported by <a href=\"https://dk.linkedin.com/in/ronni-skansing-36143b65\">Ronnie Skansing</a>.</li>\n<li>Weak cryptographic security for multisite activation key. Reported by <a href=\"https://itsjack.cc/\">Jack</a>.</li>\n</ol>\n<p>Thank you to the reporters for practicing <a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">responsible disclosure</a>.</p>\n<p>In addition to the security issues above, WordPress 4.7.1 fixes 62 bugs from 4.7. For more information, see the <a href=\"https://codex.wordpress.org/Version_4.7.1\">release notes</a> or consult the <a href=\"https://core.trac.wordpress.org/query?milestone=4.7.1\">list of changes</a>.</p>\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 4.7.1</a> or venture over to Dashboard → Updates and simply click “Update Now.” Sites that support automatic background updates are already beginning to update to WordPress 4.7.1.</p>\n<p>Thanks to everyone who contributed to 4.7.1: <a href=\"https://profiles.wordpress.org/aaroncampbell/\">Aaron D. Campbell</a>, <a href=\"https://profiles.wordpress.org/jorbin/\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/adamsilverstein/\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/afercia/\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/gitlost/\">bonger</a>, <a href=\"https://profiles.wordpress.org/boonebgorges/\">Boone Gorges</a>, <a href=\"https://profiles.wordpress.org/chandrapatel/\">Chandra Patel</a>, <a href=\"https://profiles.wordpress.org/christian1012/\">Christian Chung</a>, <a href=\"https://profiles.wordpress.org/dlh/\">David Herrera</a>, <a href=\"https://profiles.wordpress.org/dshanske/\">David Shanske</a>, <a href=\"https://profiles.wordpress.org/dd32/\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling (ocean90)</a>, <a href=\"https://profiles.wordpress.org/dreamon11/\">DreamOn11</a>, <a href=\"https://profiles.wordpress.org/chopinbach/\">Edwin Cromley</a>, <a href=\"https://profiles.wordpress.org/iseulde/\">Ella van Dorpe</a>, <a href=\"https://profiles.wordpress.org/pento/\">Gary Pendergast</a>, <a href=\"https://profiles.wordpress.org/hristo-sg/\">Hristo Pandjarov</a>, <a href=\"https://profiles.wordpress.org/jnylen0/\">James Nylen</a>, <a href=\"https://profiles.wordpress.org/jblz/\">Jeff Bowen</a>, <a href=\"https://profiles.wordpress.org/jeremyfelt/\">Jeremy Felt</a>, <a href=\"https://profiles.wordpress.org/jpry/\">Jeremy Pry</a>, <a href=\"https://profiles.wordpress.org/joehoyle/\">Joe Hoyle</a>, <a href=\"https://profiles.wordpress.org/joemcgill/\">Joe McGill</a>, <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/kkoppenhaver/\">Keanan Koppenhaver</a>, <a href=\"https://profiles.wordpress.org/obenland/\">Konstantin Obenland</a>, <a href=\"https://profiles.wordpress.org/laurelfulford/\">laurelfulford</a>, <a href=\"https://profiles.wordpress.org/tyxla/\">Marin Atanasov</a>, <a href=\"https://profiles.wordpress.org/mattyrob/\">mattyrob</a>, <a href=\"https://profiles.wordpress.org/monikarao/\">monikarao</a>, <a href=\"https://profiles.wordpress.org/natereist/\">Nate Reist</a>, <a href=\"https://profiles.wordpress.org/celloexpressions/\">Nick Halsey</a>, <a href=\"https://profiles.wordpress.org/nikschavan/\">Nikhil Chavan</a>, <a href=\"https://profiles.wordpress.org/nullvariable/\">nullvariable</a>, <a href=\"https://profiles.wordpress.org/sirbrillig/\">Payton Swick</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/presskopp/\">Presskopp</a>, <a href=\"https://profiles.wordpress.org/rachelbaker/\">Rachel Baker</a>, <a href=\"https://profiles.wordpress.org/rmccue/\">Ryan McCue</a>, <a href=\"https://profiles.wordpress.org/sanketparmar/\">Sanket Parmar</a>, <a href=\"https://profiles.wordpress.org/sebastianpisula/\">Sebastian Pisula</a>, <a href=\"https://profiles.wordpress.org/sfpt/\">sfpt</a>, <a href=\"https://profiles.wordpress.org/shazahm1hotmailcom/\">shazahm1</a>, <a href=\"https://profiles.wordpress.org/sstoqnov/\">Stanimir Stoyanov</a>, <a href=\"https://profiles.wordpress.org/stevenkword/\">Steven Word</a>, <a href=\"https://profiles.wordpress.org/szaqal21/\">szaqal21</a>, <a href=\"https://profiles.wordpress.org/timph/\">timph</a>, <a href=\"https://profiles.wordpress.org/voldemortensen/\">voldemortensen</a>, <a href=\"https://profiles.wordpress.org/vortfu/\">vortfu</a>, and <a href=\"https://profiles.wordpress.org/westonruter/\">Weston Ruter</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:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4650\";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:36:\"\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:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"WordPress 4.7 “Vaughan”\";s: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:43:\"https://wordpress.org/news/2016/12/vaughan/\";s: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, 06 Dec 2016 19:27: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: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:34:\"https://wordpress.org/news/?p=4596\";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:240:\"Version 4.7 of WordPress, named “Vaughan” in honor of legendary jazz vocalist Sarah \"Sassy\" Vaughan, is available for download or update in your WordPress dashboard. New features in 4.7 help you get your site set up the way you want it.\";s: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:\"enclosure\";a:3:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:60:\"https://wordpress.org/news/files/2016/12/starter-content.mp4\";s:6:\"length\";s:7:\"3736020\";s:4:\"type\";s:9:\"video/mp4\";}}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:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:59:\"https://wordpress.org/news/files/2016/12/edit-shortcuts.mp4\";s:6:\"length\";s:7:\"1127483\";s:4:\"type\";s:9:\"video/mp4\";}}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:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:58:\"https://wordpress.org/news/files/2016/12/video-headers.mp4\";s:6:\"length\";s:7:\"1549803\";s:4:\"type\";s:9:\"video/mp4\";}}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:\"Helen Hou-Sandi\";s: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:45502:\"<p>Version 4.7 of WordPress, named “Vaughan” in honor of legendary jazz vocalist Sarah &#8220;Sassy&#8221; Vaughan, is available for download or update in your WordPress dashboard. New features in 4.7 help you get your site set up the way you want it.</p>\n<div id=\"v-AHz0Ca46-1\" class=\"video-player\"><video id=\"v-AHz0Ca46-1-video\" width=\"632\" height=\"354\" poster=\"https://videos.files.wordpress.com/AHz0Ca46/wp4-7-vaughan-r8-mastered_scruberthumbnail_0.jpg\" controls=\"true\" preload=\"metadata\" dir=\"ltr\" lang=\"en\"><source src=\"https://videos.files.wordpress.com/AHz0Ca46/wp4-7-vaughan-r8-mastered_dvd.mp4\" type=\"video/mp4; codecs=&quot;avc1.64001E, mp4a.40.2&quot;\" /><source src=\"https://videos.files.wordpress.com/AHz0Ca46/wp4-7-vaughan-r8-mastered_fmt1.ogv\" type=\"video/ogg; codecs=&quot;theora, vorbis&quot;\" /><div><img alt=\"Introducing WordPress 4.7\" src=\"https://i1.wp.com/videos.files.wordpress.com/AHz0Ca46/wp4-7-vaughan-r8-mastered_scruberthumbnail_0.jpg?resize=632%2C354&#038;ssl=1\" data-recalc-dims=\"1\" /></div><p>Introducing WordPress 4.7</p></video></div>\n<hr />\n<h2 style=\"text-align:center\">Presenting Twenty Seventeen</h2>\n<p>A brand new default theme brings your site to life with immersive featured images and video headers.</p>\n<p><img class=\"alignnone wp-image-4618 size-large\" src=\"https://i2.wp.com/wordpress.org/news/files/2016/12/4.7-—-Twenty-Seventeen-1.jpg?resize=632%2C356&#038;ssl=1\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2016/12/4.7-—-Twenty-Seventeen-1.jpg?resize=1024%2C576&amp;ssl=1 1024w, https://i2.wp.com/wordpress.org/news/files/2016/12/4.7-—-Twenty-Seventeen-1.jpg?resize=300%2C169&amp;ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2016/12/4.7-—-Twenty-Seventeen-1.jpg?resize=768%2C432&amp;ssl=1 768w, https://i2.wp.com/wordpress.org/news/files/2016/12/4.7-—-Twenty-Seventeen-1.jpg?w=1600&amp;ssl=1 1600w, https://i2.wp.com/wordpress.org/news/files/2016/12/4.7-—-Twenty-Seventeen-1.jpg?w=1264&amp;ssl=1 1264w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></p>\n<p>Twenty Seventeen focuses on business sites and features a customizable front page with multiple sections. Personalize it with widgets, navigation, social menus, a logo, custom colors, and more. Our default theme for 2017 works great in many languages, on any device, and for a wide range of users.</p>\n<hr />\n<h2 style=\"text-align:center\">Your Site, Your Way</h2>\n<p>WordPress 4.7 adds new features to the customizer to help take you through the initial setup of a theme, with non-destructive live previews of all your changes in one uninterrupted workflow.</p>\n<h3>Theme Starter Content</h3>\n<div style=\"width: 632px;\" class=\"wp-video\"><!--[if lt IE 9]><script>document.createElement(\'video\');</script><![endif]-->\n<video class=\"wp-video-shortcode\" id=\"video-4596-1\" width=\"632\" height=\"346\" loop=\"1\" autoplay=\"1\" preload=\"metadata\" controls=\"controls\"><source type=\"video/mp4\" src=\"https://wordpress.org/news/files/2016/12/starter-content.mp4?_=1\" /><a href=\"https://wordpress.org/news/files/2016/12/starter-content.mp4\">https://wordpress.org/news/files/2016/12/starter-content.mp4</a></video></div>\n<p>To help give you a solid base to build from, individual themes can provide starter content that appears when you go to customize your brand new site. This can range from placing a business information widget in the best location to providing a sample menu with social icon links to a static front page complete with beautiful images. Don’t worry &#8211; nothing new will appear on the live site until you’re ready to save and publish your initial theme setup.</p>\n<div style=\"float: left;width: 48%;margin: 0\">\n<h3>Edit Shortcuts</h3>\n<div style=\"width: 300px;\" class=\"wp-video\"><video class=\"wp-video-shortcode\" id=\"video-4596-2\" width=\"300\" height=\"173\" poster=\"https://wordpress.org/news/files/2016/12/4.7-—-Edit-Shortcuts.jpg\" loop=\"1\" autoplay=\"1\" preload=\"metadata\" controls=\"controls\"><source type=\"video/mp4\" src=\"https://wordpress.org/news/files/2016/12/edit-shortcuts.mp4?_=2\" /><a href=\"https://wordpress.org/news/files/2016/12/edit-shortcuts.mp4\">https://wordpress.org/news/files/2016/12/edit-shortcuts.mp4</a></video></div>\n<p>Visible icons appear to show you which parts of your site can be customized while live previewing. Click on a shortcut and get straight to editing. Paired with starter content, getting started with customizing your site is faster than ever.</p>\n</div>\n<div style=\"float: right;width: 48%;margin: 0\">\n<h3>Video Headers</h3>\n<div style=\"width: 300px;\" class=\"wp-video\"><video class=\"wp-video-shortcode\" id=\"video-4596-3\" width=\"300\" height=\"173\" poster=\"https://wordpress.org/news/files/2016/12/4.7-—-Header-Video.jpg\" loop=\"1\" autoplay=\"1\" preload=\"metadata\" controls=\"controls\"><source type=\"video/mp4\" src=\"https://wordpress.org/news/files/2016/12/video-headers.mp4?_=3\" /><a href=\"https://wordpress.org/news/files/2016/12/video-headers.mp4\">https://wordpress.org/news/files/2016/12/video-headers.mp4</a></video></div>\n<p>Sometimes a big atmospheric video as a moving header image is just what you need to showcase your wares; go ahead and try it out with Twenty Seventeen. Need some video inspiration? Try searching for sites with video headers available for download and use.</p>\n</div>\n<div style=\"clear: both\"></div>\n<div style=\"float: left;width: 48%;margin: 0\">\n<h3>Smoother Menu Building</h3>\n<p><img class=\"wp-image-4606 size-medium alignright\" src=\"https://i1.wp.com/wordpress.org/news/files/2016/12/4.7-—-Nav.jpg?resize=300%2C158&#038;ssl=1\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2016/12/4.7-—-Nav.jpg?resize=300%2C158&amp;ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2016/12/4.7-—-Nav.jpg?w=760&amp;ssl=1 760w\" sizes=\"(max-width: 300px) 100vw, 300px\" data-recalc-dims=\"1\" /></p>\n<p>Many menus for sites contain links to the pages of your site, but what happens when you don’t have any pages yet? Now you can add new pages while building menus instead of leaving the customizer and abandoning your changes. Once you’ve published your customizations, you’ll have new pages ready for you to fill with content.</p>\n</div>\n<div style=\"float: right;width: 48%;margin: 0\">\n<h3>Custom CSS</h3>\n<p><img class=\"wp-image-4607 size-medium alignright\" src=\"https://i1.wp.com/wordpress.org/news/files/2016/12/4.7-—-CSS.jpg?resize=300%2C158&#038;ssl=1\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2016/12/4.7-—-CSS.jpg?resize=300%2C158&amp;ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2016/12/4.7-—-CSS.jpg?w=760&amp;ssl=1 760w\" sizes=\"(max-width: 300px) 100vw, 300px\" data-recalc-dims=\"1\" /></p>\n<p>Sometimes you just need a few visual tweaks to make your site perfect. WordPress 4.7 allows you to add custom CSS and instantly see how your changes affect your site. The live preview allows you to work quickly without page refreshes slowing you down.</p>\n</div>\n<div style=\"clear: both\"></div>\n<hr />\n<div style=\"float: left;width: 48%;margin: 0\">\n<h3>PDF Thumbnail Previews</h3>\n<p><img class=\"wp-image-4609 size-medium alignright\" src=\"https://i1.wp.com/wordpress.org/news/files/2016/12/4.7-—-PDF.jpg?resize=300%2C158&#038;ssl=1\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2016/12/4.7-—-PDF.jpg?resize=300%2C158&amp;ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2016/12/4.7-—-PDF.jpg?w=760&amp;ssl=1 760w\" sizes=\"(max-width: 300px) 100vw, 300px\" data-recalc-dims=\"1\" /></p>\n<p>Managing your document collection is easier with WordPress 4.7. Uploading PDFs will generate thumbnail images so you can more easily distinguish between all your documents.</p>\n</div>\n<div style=\"float: right;width: 48%;margin: 0\">\n<h3>Dashboard in your language</h3>\n<p><img class=\"wp-image-4608 size-medium alignright\" src=\"https://i2.wp.com/wordpress.org/news/files/2016/12/4.7-—-Language.jpg?resize=300%2C158&#038;ssl=1\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2016/12/4.7-—-Language.jpg?resize=300%2C158&amp;ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2016/12/4.7-—-Language.jpg?w=760&amp;ssl=1 760w\" sizes=\"(max-width: 300px) 100vw, 300px\" data-recalc-dims=\"1\" /></p>\n<p>Just because your site is in one language doesn’t mean that everybody helping manage it prefers that language for their admin. Add more languages to your site and a user language option will show up in your user’s profiles.</p>\n</div>\n<div style=\"clear: both\"></div>\n<hr />\n<h2 style=\"text-align:center\">Introducing REST API Content Endpoints</h2>\n<p>WordPress 4.7 comes with REST API endpoints for posts, comments, terms, users, meta, and settings.</p>\n<p><img class=\"size-large wp-image-4600 alignnone\" src=\"https://i2.wp.com/wordpress.org/news/files/2016/12/4.7-—-API.jpg?resize=632%2C205&#038;ssl=1\" alt=\"\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2016/12/4.7-—-API.jpg?resize=1024%2C332&amp;ssl=1 1024w, https://i2.wp.com/wordpress.org/news/files/2016/12/4.7-—-API.jpg?resize=300%2C97&amp;ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2016/12/4.7-—-API.jpg?resize=768%2C249&amp;ssl=1 768w, https://i2.wp.com/wordpress.org/news/files/2016/12/4.7-—-API.jpg?w=1264&amp;ssl=1 1264w, https://i2.wp.com/wordpress.org/news/files/2016/12/4.7-—-API.jpg?w=1896&amp;ssl=1 1896w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></p>\n<p>Content endpoints provide machine-readable external access to your WordPress site with a clear, standards-driven interface, paving the way for new and innovative methods of interacting with sites through plugins, themes, apps, and beyond. Ready to get started with development? <a href=\"https://developer.wordpress.org/rest-api/reference/\">Check out the REST API reference.</a></p>\n<hr />\n<h2 style=\"text-align:center\">Even More Developer Happiness <img src=\"https://s.w.org/images/core/emoji/2.2.1/72x72/1f60a.png\" alt=\"😊\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></h2>\n<h3><a href=\"https://make.wordpress.org/core/2016/11/03/post-type-templates-in-4-7/\">Post Type Templates</a></h3>\n<p>By opening up the page template functionality to all post types, theme developers have even more flexibility with the WordPress template hierarchy.</p>\n<h3>More Theme API Goodies</h3>\n<p>WordPress 4.7 includes <a href=\"https://make.wordpress.org/core/2016/09/09/new-functions-hooks-and-behaviour-for-theme-developers-in-wordpress-4-7/\">new functions, hooks, and behavior</a> for theme developers.</p>\n<h3><a href=\"https://make.wordpress.org/core/2016/10/04/custom-bulk-actions/\">Custom Bulk Actions</a></h3>\n<p>List tables, now with more than bulk edit and delete.</p>\n<h3><a href=\"https://make.wordpress.org/core/2016/09/08/wp_hook-next-generation-actions-and-filters/\"><code>WP_Hook</code></a></h3>\n<p>The code that lies beneath actions and filters has been overhauled and modernized, fixing bugs along the way.</p>\n<h3>Settings Registration API</h3>\n<p>register_setting() <a href=\"https://make.wordpress.org/core/2016/10/26/registering-your-settings-in-wordpress-4-7/\">has been enhanced</a> to include type, description, and REST API visibility.</p>\n<h3><a href=\"https://make.wordpress.org/core/2016/10/12/customize-changesets-technical-design-decisions/\">Customize Changesets</a></h3>\n<p>Customize changesets make changes in the customizer persistent, like autosave drafts. They also make exciting new features like starter content possible.</p>\n<hr />\n<h2 style=\"text-align:center\">The Squad</h2>\n<p>This release was led by <a href=\"https://helen.blog\">Helen Hou-Sandí</a>, backed up by <a href=\"https://profiles.wordpress.org/jbpaul17\">Jeff Paul</a> and <a href=\"http://aaron.jorb.in/\">Aaron Jorbin</a> as Release Deputies, and with the help of these fine individuals. There are 482 contributors with props in this release—the most ever—with 205 of them contributing for the first time. Pull up some sassy Sarah Vaughan on your music service of choice, and check out some of their profiles:</p>\n<a href=\"https://profiles.wordpress.org/aaroncampbell\">Aaron D. Campbell</a>, <a href=\"https://profiles.wordpress.org/abrightclearweb\">abrightclearweb</a>, <a href=\"https://profiles.wordpress.org/ibachal\">Achal Jain</a>, <a href=\"https://profiles.wordpress.org/achbed\">achbed</a>, <a href=\"https://profiles.wordpress.org/acmethemes\">Acme Themes</a>, <a href=\"https://profiles.wordpress.org/adamsilverstein\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/adammacias\">adammacias</a>, <a href=\"https://profiles.wordpress.org/mrahmadawais\">Ahmad Awais</a>, <a href=\"https://profiles.wordpress.org/ahmadawais\">ahmadawais</a>, <a href=\"https://profiles.wordpress.org/airesvsg\">airesvsg</a>, <a href=\"https://profiles.wordpress.org/ajoah\">ajoah</a>, <a href=\"https://profiles.wordpress.org/akibjorklund\">Aki Bj&#246;rklund</a>, <a href=\"https://profiles.wordpress.org/akshayvinchurkar\">akshayvinchurkar</a>, <a href=\"https://profiles.wordpress.org/schlessera\">Alain Schlesser</a>, <a href=\"https://profiles.wordpress.org/xknown\">Alex Concha</a>, <a href=\"https://profiles.wordpress.org/xavortm\">Alex Dimitrov</a>, <a href=\"https://profiles.wordpress.org/ironpaperweight\">Alex Hon</a>, <a href=\"https://profiles.wordpress.org/alex27\">alex27</a>, <a href=\"https://profiles.wordpress.org/allancole\">allancole</a>, <a href=\"https://profiles.wordpress.org/arush\">Amanda Rush</a>, <a href=\"https://profiles.wordpress.org/afercia\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/andrewp-2\">Andreas Panag</a>, <a href=\"https://profiles.wordpress.org/nacin\">Andrew Nacin</a>, <a href=\"https://profiles.wordpress.org/azaozz\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/rarst\">Andrey \"Rarst\" Savchenko</a>, <a href=\"https://profiles.wordpress.org/andizer\">Andy Meerwaldt</a>, <a href=\"https://profiles.wordpress.org/kelderic\">Andy Mercer</a>, <a href=\"https://profiles.wordpress.org/andy\">Andy Skelton</a>, <a href=\"https://profiles.wordpress.org/aniketpant\">Aniket Pant</a>, <a href=\"https://profiles.wordpress.org/anilbasnet\">Anil Basnet</a>, <a href=\"https://profiles.wordpress.org/ankit-k-gupta\">Ankit K Gupta</a>, <a href=\"https://profiles.wordpress.org/ahortin\">Anthony Hortin</a>, <a href=\"https://profiles.wordpress.org/antisilent\">antisilent</a>, <a href=\"https://profiles.wordpress.org/atimmer\">Anton Timmermans</a>, <a href=\"https://profiles.wordpress.org/zuige\">Antti Kuosmanen</a>, <a href=\"https://profiles.wordpress.org/apokalyptik\">apokalyptik</a>, <a href=\"https://profiles.wordpress.org/artoliukkonen\">artoliukkonen</a>, <a href=\"https://profiles.wordpress.org/ideag\">Arunas Liuiza</a>, <a href=\"https://profiles.wordpress.org/attitude\">attitude</a>, <a href=\"https://profiles.wordpress.org/backermann\">backermann</a>, <a href=\"https://profiles.wordpress.org/b-07\">Bappi</a>, <a href=\"https://profiles.wordpress.org/bcole808\">Ben Cole</a>, <a href=\"https://profiles.wordpress.org/kau-boy\">Bernhard Kau</a>, <a href=\"https://profiles.wordpress.org/binarymoon\">binarymoon</a>, <a href=\"https://profiles.wordpress.org/birgire\">Birgir Erlendsson (birgire)</a>, <a href=\"https://profiles.wordpress.org/bjornw\">BjornW</a>, <a href=\"https://profiles.wordpress.org/bobbingwide\">bobbingwide</a>, <a href=\"https://profiles.wordpress.org/boblinthorst\">boblinthorst</a>, <a href=\"https://profiles.wordpress.org/boboudreau\">boboudreau</a>, <a href=\"https://profiles.wordpress.org/gitlost\">bonger</a>, <a href=\"https://profiles.wordpress.org/boonebgorges\">Boone B. Gorges</a>, <a href=\"https://profiles.wordpress.org/bradyvercher\">Brady Vercher</a>, <a href=\"https://profiles.wordpress.org/brainstormforce\">Brainstorm Force</a>, <a href=\"https://profiles.wordpress.org/kraftbj\">Brandon Kraft</a>, <a href=\"https://profiles.wordpress.org/brianhogg\">Brian Hogg</a>, <a href=\"https://profiles.wordpress.org/krogsgard\">Brian Krogsgard</a>, <a href=\"https://profiles.wordpress.org/bronsonquick\">Bronson Quick</a>, <a href=\"https://profiles.wordpress.org/sixhours\">Caroline Moore</a>, <a href=\"https://profiles.wordpress.org/caseypatrickdriscoll\">Casey Driscoll</a>, <a href=\"https://profiles.wordpress.org/caspie\">Caspie</a>, <a href=\"https://profiles.wordpress.org/chandrapatel\">Chandra Patel</a>, <a href=\"https://profiles.wordpress.org/chaos-engine\">Chaos Engine</a>, <a href=\"https://profiles.wordpress.org/cheeserolls\">cheeserolls</a>, <a href=\"https://profiles.wordpress.org/chesio\">chesio</a>, <a href=\"https://profiles.wordpress.org/ketuchetan\">chetansatasiya</a>, <a href=\"https://profiles.wordpress.org/choongsavvii\">choong</a>, <a href=\"https://profiles.wordpress.org/chouby\">Chouby</a>, <a href=\"https://profiles.wordpress.org/chredd\">chredd</a>, <a href=\"https://profiles.wordpress.org/chrisjean\">Chris Jean</a>, <a href=\"https://profiles.wordpress.org/cmmarslender\">Chris Marslender</a>, <a href=\"https://profiles.wordpress.org/chris_d2d\">Chris Smith</a>, <a href=\"https://profiles.wordpress.org/chrisvanpatten\">Chris Van Patten</a>, <a href=\"https://profiles.wordpress.org/chriswiegman\">Chris Wiegman</a>, <a href=\"https://profiles.wordpress.org/chriscct7\">chriscct7</a>, <a href=\"https://profiles.wordpress.org/chriseverson\">chriseverson</a>, <a href=\"https://profiles.wordpress.org/christian1012\">Christian Chung</a>, <a href=\"https://profiles.wordpress.org/cwpnolen\">Christian Nolen</a>, <a href=\"https://profiles.wordpress.org/needle\">Christian Wach</a>, <a href=\"https://profiles.wordpress.org/christophherr\">Christoph Herr</a>, <a href=\"https://profiles.wordpress.org/clarionwpdeveloper\">Clarion Technologies</a>, <a href=\"https://profiles.wordpress.org/claudiosanches\">Claudio Sanches</a>, <a href=\"https://profiles.wordpress.org/claudiosmweb\">Claudio Sanches</a>, <a href=\"https://profiles.wordpress.org/claudiolabarbera\">ClaudioLaBarbera</a>, <a href=\"https://profiles.wordpress.org/codemovementpk\">codemovement.pk</a>, <a href=\"https://profiles.wordpress.org/coderkevin\">coderkevin</a>, <a href=\"https://profiles.wordpress.org/codfish\">codfish</a>, <a href=\"https://profiles.wordpress.org/coreymcollins\">coreymcollins</a>, <a href=\"https://profiles.wordpress.org/curdin\">Curdin Krummenacher</a>, <a href=\"https://profiles.wordpress.org/cgrymala\">Curtiss Grymala</a>, <a href=\"https://profiles.wordpress.org/cdog\">Cătălin Dogaru</a>, <a href=\"https://profiles.wordpress.org/danhgilmore\">danhgilmore</a>, <a href=\"https://profiles.wordpress.org/danielbachhuber\">Daniel Bachhuber </a>, <a href=\"https://profiles.wordpress.org/danielkanchev\">Daniel Kanchev</a>, <a href=\"https://profiles.wordpress.org/danielpietrasik\">Daniel Pietrasik</a>, <a href=\"https://profiles.wordpress.org/mte90\">Daniele Scasciafratte</a>, <a href=\"https://profiles.wordpress.org/dllh\">Daryl L. L. Houston (dllh)</a>, <a href=\"https://profiles.wordpress.org/davepullig\">Dave Pullig</a>, <a href=\"https://profiles.wordpress.org/goto10\">Dave Romsey (goto10)</a>, <a href=\"https://profiles.wordpress.org/davidakennedy\">David A. Kennedy</a>, <a href=\"https://profiles.wordpress.org/turtlepod\">David Chandra Purnama</a>, <a href=\"https://profiles.wordpress.org/dlh\">David Herrera</a>, <a href=\"https://profiles.wordpress.org/dglingren\">David Lingren</a>, <a href=\"https://profiles.wordpress.org/davidmosterd\">David Mosterd</a>, <a href=\"https://profiles.wordpress.org/dshanske\">David Shanske</a>, <a href=\"https://profiles.wordpress.org/davidbhayes\">davidbhayes</a>, <a href=\"https://profiles.wordpress.org/folletto\">Davide \'Folletto\' Casali</a>, <a href=\"https://profiles.wordpress.org/deeptiboddapati\">deeptiboddapati</a>, <a href=\"https://profiles.wordpress.org/delphinus\">delphinus</a>, <a href=\"https://profiles.wordpress.org/deltafactory\">deltafactory</a>, <a href=\"https://profiles.wordpress.org/denis-de-bernardy\">Denis de Bernardy</a>, <a href=\"https://profiles.wordpress.org/valendesigns\">Derek Herman</a>, <a href=\"https://profiles.wordpress.org/pcfreak30\">Derrick Hammer</a>, <a href=\"https://profiles.wordpress.org/derrickkoo\">Derrick Koo</a>, <a href=\"https://profiles.wordpress.org/dimchik\">dimchik</a>, <a href=\"https://profiles.wordpress.org/dineshc\">Dinesh Chouhan</a>, <a href=\"https://profiles.wordpress.org/dd32\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/dipeshkakadiya\">dipeshkakadiya</a>, <a href=\"https://profiles.wordpress.org/dmsnell\">dmsnell</a>, <a href=\"https://profiles.wordpress.org/ocean90\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/dotancohen\">Dotan Cohen</a>, <a href=\"https://profiles.wordpress.org/dougwollison\">Doug Wollison</a>, <a href=\"https://profiles.wordpress.org/doughamlin\">doughamlin</a>, <a href=\"https://profiles.wordpress.org/dreamon11\">DreamOn11</a>, <a href=\"https://profiles.wordpress.org/drewapicture\">Drew Jaynes</a>, <a href=\"https://profiles.wordpress.org/duncanjbrown\">duncanjbrown</a>, <a href=\"https://profiles.wordpress.org/dungengronovius\">dungengronovius</a>, <a href=\"https://profiles.wordpress.org/dylanauty\">DylanAuty</a>, <a href=\"https://profiles.wordpress.org/hurtige\">Eddie Hurtig</a>, <a href=\"https://profiles.wordpress.org/oso96_2000\">Eduardo Reveles</a>, <a href=\"https://profiles.wordpress.org/chopinbach\">Edwin Cromley</a>, <a href=\"https://profiles.wordpress.org/electricfeet\">ElectricFeet</a>, <a href=\"https://profiles.wordpress.org/eliorivero\">Elio Rivero</a>, <a href=\"https://profiles.wordpress.org/iseulde\">Ella Iseulde Van Dorpe</a>, <a href=\"https://profiles.wordpress.org/elyobo\">elyobo</a>, <a href=\"https://profiles.wordpress.org/enodekciw\">enodekciw</a>, <a href=\"https://profiles.wordpress.org/enshrined\">enshrined</a>, <a href=\"https://profiles.wordpress.org/ericlewis\">Eric Andrew Lewis</a>, <a href=\"https://profiles.wordpress.org/pushred\">Eric Lanehart</a>, <a href=\"https://profiles.wordpress.org/eherman24\">Evan Herman</a>, <a href=\"https://profiles.wordpress.org/flixos90\">Felix Arntz</a>, <a href=\"https://profiles.wordpress.org/fencer04\">Fencer04</a>, <a href=\"https://profiles.wordpress.org/florianbrinkmann\">Florian Brinkmann</a>, <a href=\"https://profiles.wordpress.org/mista-flo\">Florian TIAR</a>, <a href=\"https://profiles.wordpress.org/foliovision\">FolioVision</a>, <a href=\"https://profiles.wordpress.org/fomenkoandrey\">fomenkoandrey</a>, <a href=\"https://profiles.wordpress.org/frank-klein\">Frank Klein</a>, <a href=\"https://profiles.wordpress.org/fjarrett\">Frankie Jarrett</a>, <a href=\"https://profiles.wordpress.org/frankiet\">frankiet</a>, <a href=\"https://profiles.wordpress.org/akeif\">Fred</a>, <a href=\"https://profiles.wordpress.org/frozzare\">Fredrik Forsmo</a>, <a href=\"https://profiles.wordpress.org/fuscata\">fuscata</a>, <a href=\"https://profiles.wordpress.org/gma992\">Gabriel Maldonado</a>, <a href=\"https://profiles.wordpress.org/voldemortensen\">Garth Mortensen</a>, <a href=\"https://profiles.wordpress.org/garyj\">Gary Jones</a>, <a href=\"https://profiles.wordpress.org/pento\">Gary Pendergast</a>, <a href=\"https://profiles.wordpress.org/geekysoft\">Geeky Software</a>, <a href=\"https://profiles.wordpress.org/georgestephanis\">George Stephanis</a>, <a href=\"https://profiles.wordpress.org/goranseric\">Goran &#352;erić</a>, <a href=\"https://profiles.wordpress.org/grahamarmfield\">Graham Armfield</a>, <a href=\"https://profiles.wordpress.org/grantderepas\">Grant Derepas</a>, <a href=\"https://profiles.wordpress.org/tivnet\">Gregory Karpinsky (@tivnet)</a>, <a href=\"https://profiles.wordpress.org/hardeepasrani\">Hardeep Asrani</a>, <a href=\"https://profiles.wordpress.org/henrywright\">Henry Wright</a>, <a href=\"https://profiles.wordpress.org/hiddenpearls\">hiddenpearls</a>, <a href=\"https://profiles.wordpress.org/hnle\">Hinaloe</a>, <a href=\"https://profiles.wordpress.org/hristo-sg\">Hristo Pandjarov</a>, <a href=\"https://profiles.wordpress.org/hugobaeta\">Hugo Baeta</a>, <a href=\"https://profiles.wordpress.org/polevaultweb\">Iain Poulson</a>, <a href=\"https://profiles.wordpress.org/iandunn\">Ian Dunn</a>, <a href=\"https://profiles.wordpress.org/ianedington\">Ian Edington</a>, <a href=\"https://profiles.wordpress.org/idealien\">idealien</a>, <a href=\"https://profiles.wordpress.org/igmoweb\">Ignacio Cruz Moreno</a>, <a href=\"https://profiles.wordpress.org/imath\">imath</a>, <a href=\"https://profiles.wordpress.org/imnok\">Imnok</a>, <a href=\"https://profiles.wordpress.org/implenton\">implenton</a>, <a href=\"https://profiles.wordpress.org/ionutst\">Ionut Stanciu</a>, <a href=\"https://profiles.wordpress.org/ipstenu\">Ipstenu (Mika Epstein)</a>, <a href=\"https://profiles.wordpress.org/ivdimova\">ivdimova</a>, <a href=\"https://profiles.wordpress.org/jdgrimes\">J.D. Grimes</a>, <a href=\"https://profiles.wordpress.org/jakept\">Jacob Peattie</a>, <a href=\"https://profiles.wordpress.org/whyisjake\">Jake Spurlock</a>, <a href=\"https://profiles.wordpress.org/jnylen0\">James Nylen</a>, <a href=\"https://profiles.wordpress.org/jamesacero\">jamesacero</a>, <a href=\"https://profiles.wordpress.org/japh\">Japh</a>, <a href=\"https://profiles.wordpress.org/jaredcobb\">Jared Cobb</a>, <a href=\"https://profiles.wordpress.org/jayarjo\">jayarjo</a>, <a href=\"https://profiles.wordpress.org/jdolan\">jdolan</a>, <a href=\"https://profiles.wordpress.org/jdoubleu\">jdoubleu</a>, <a href=\"https://profiles.wordpress.org/jblz\">Jeff Bowen</a>, <a href=\"https://profiles.wordpress.org/cheffheid\">Jeffrey de Wit</a>, <a href=\"https://profiles.wordpress.org/jeremyfelt\">Jeremy Felt</a>, <a href=\"https://profiles.wordpress.org/jpry\">Jeremy Pry</a>, <a href=\"https://profiles.wordpress.org/jimt\">jimt</a>, <a href=\"https://profiles.wordpress.org/jipmoors\">Jip Moors</a>, <a href=\"https://profiles.wordpress.org/jmusal\">jmusal</a>, <a href=\"https://profiles.wordpress.org/joedolson\">Joe Dolson</a>, <a href=\"https://profiles.wordpress.org/joehoyle\">Joe Hoyle</a>, <a href=\"https://profiles.wordpress.org/joemcgill\">Joe McGill</a>, <a href=\"https://profiles.wordpress.org/joelcj91\">Joel James</a>, <a href=\"https://profiles.wordpress.org/johanmynhardt\">johanmynhardt</a>, <a href=\"https://profiles.wordpress.org/johnbillion\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/zyphonic\">John Dittmar</a>, <a href=\"https://profiles.wordpress.org/johnjamesjacoby\">John James Jacoby</a>, <a href=\"https://profiles.wordpress.org/johnpbloch\">John P. Bloch</a>, <a href=\"https://profiles.wordpress.org/johnregan3\">John Regan</a>, <a href=\"https://profiles.wordpress.org/johnpgreen\">johnpgreen</a>, <a href=\"https://profiles.wordpress.org/kenshino\">Jon (Kenshino)</a>, <a href=\"https://profiles.wordpress.org/jonathanbardo\">Jonathan Bardo</a>, <a href=\"https://profiles.wordpress.org/jbrinley\">Jonathan Brinley</a>, <a href=\"https://profiles.wordpress.org/daggerhart\">Jonathan Daggerhart</a>, <a href=\"https://profiles.wordpress.org/desrosj\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/spacedmonkey\">Jonny Harris</a>, <a href=\"https://profiles.wordpress.org/jonnyauk\">jonnyauk</a>, <a href=\"https://profiles.wordpress.org/jordesign\">jordesign</a>, <a href=\"https://profiles.wordpress.org/jorritschippers\">JorritSchippers</a>, <a href=\"https://profiles.wordpress.org/joefusco\">Joseph Fusco</a>, <a href=\"https://profiles.wordpress.org/jjeaton\">Josh Eaton</a>, <a href=\"https://profiles.wordpress.org/shelob9\">Josh Pollock</a>, <a href=\"https://profiles.wordpress.org/joshcummingsdesign\">joshcummingsdesign</a>, <a href=\"https://profiles.wordpress.org/joshkadis\">joshkadis</a>, <a href=\"https://profiles.wordpress.org/joyously\">Joy</a>, <a href=\"https://profiles.wordpress.org/jrf\">jrf</a>, <a href=\"https://profiles.wordpress.org/jrgould\">JRGould</a>, <a href=\"https://profiles.wordpress.org/juanfra\">Juanfra Aldasoro</a>, <a href=\"https://profiles.wordpress.org/juhise\">Juhi Saxena</a>, <a href=\"https://profiles.wordpress.org/nukaga\">Junko Nukaga</a>, <a href=\"https://profiles.wordpress.org/justinbusa\">Justin Busa</a>, <a href=\"https://profiles.wordpress.org/justinsainton\">Justin Sainton</a>, <a href=\"https://profiles.wordpress.org/jshreve\">Justin Shreve</a>, <a href=\"https://profiles.wordpress.org/jtsternberg\">Justin Sternberg</a>, <a href=\"https://profiles.wordpress.org/kadamwhite\">K.Adam White</a>, <a href=\"https://profiles.wordpress.org/kacperszurek\">kacperszurek</a>, <a href=\"https://profiles.wordpress.org/trepmal\">Kailey (trepmal)</a>, <a href=\"https://profiles.wordpress.org/kalenjohnson\">KalenJohnson</a>, <a href=\"https://profiles.wordpress.org/codebykat\">Kat Hagan</a>, <a href=\"https://profiles.wordpress.org/kkoppenhaver\">Keanan Koppenhaver</a>, <a href=\"https://profiles.wordpress.org/keesiemeijer\">keesiemeijer</a>, <a href=\"https://profiles.wordpress.org/kellbot\">kellbot</a>, <a href=\"https://profiles.wordpress.org/ryelle\">Kelly Dwan</a>, <a href=\"https://profiles.wordpress.org/khag7\">Kevin Hagerty</a>, <a href=\"https://profiles.wordpress.org/kwight\">Kirk Wight</a>, <a href=\"https://profiles.wordpress.org/kitchin\">kitchin</a>, <a href=\"https://profiles.wordpress.org/ixkaito\">Kite</a>, <a href=\"https://profiles.wordpress.org/kjbenk\">kjbenk</a>, <a href=\"https://profiles.wordpress.org/knutsp\">Knut Sparhell</a>, <a href=\"https://profiles.wordpress.org/koenschipper\">koenschipper</a>, <a href=\"https://profiles.wordpress.org/kokarn\">kokarn</a>, <a href=\"https://profiles.wordpress.org/kovshenin\">Konstantin Kovshenin</a>, <a href=\"https://profiles.wordpress.org/obenland\">Konstantin Obenland</a>, <a href=\"https://profiles.wordpress.org/kouratoras\">Konstantinos Kouratoras</a>, <a href=\"https://profiles.wordpress.org/kuchenundkakao\">kuchenundkakao</a>, <a href=\"https://profiles.wordpress.org/kuldipem\">kuldipem</a>, <a href=\"https://profiles.wordpress.org/laurelfulford\">Laurel Fulford</a>, <a href=\"https://profiles.wordpress.org/leewillis77\">Lee Willis</a>, <a href=\"https://profiles.wordpress.org/leobaiano\">Leo Baiano</a>, <a href=\"https://profiles.wordpress.org/littlebigthing\">LittleBigThings (Csaba)</a>, <a href=\"https://profiles.wordpress.org/lucasstark\">Lucas Stark</a>, <a href=\"https://profiles.wordpress.org/lukecavanagh\">Luke Cavanagh</a>, <a href=\"https://profiles.wordpress.org/lgedeon\">Luke Gedeon</a>, <a href=\"https://profiles.wordpress.org/lukepettway\">lukepettway</a>, <a href=\"https://profiles.wordpress.org/lyubomir_popov\">lyubomir_popov</a>, <a href=\"https://profiles.wordpress.org/mageshp\">mageshp</a>, <a href=\"https://profiles.wordpress.org/mahesh901122\">Mahesh Waghmare</a>, <a href=\"https://profiles.wordpress.org/mangeshp\">Mangesh Parte</a>, <a href=\"https://profiles.wordpress.org/manishsongirkar36\">Manish Songirkar</a>, <a href=\"https://profiles.wordpress.org/mantismamita\">mantismamita</a>, <a href=\"https://profiles.wordpress.org/mbootsman\">Marcel Bootsman</a>, <a href=\"https://profiles.wordpress.org/tyxla\">Marin Atanasov</a>, <a href=\"https://profiles.wordpress.org/mariovalney\">Mario Valney</a>, <a href=\"https://profiles.wordpress.org/clorith\">Marius L. J.</a>, <a href=\"https://profiles.wordpress.org/markjaquith\">Mark Jaquith</a>, <a href=\"https://profiles.wordpress.org/mrwweb\">Mark Root-Wiley</a>, <a href=\"https://profiles.wordpress.org/mapk\">Mark Uraine</a>, <a href=\"https://profiles.wordpress.org/markoheijnen\">Marko Heijnen</a>, <a href=\"https://profiles.wordpress.org/markshep\">markshep</a>, <a href=\"https://profiles.wordpress.org/matrixik\">matrixik</a>, <a href=\"https://profiles.wordpress.org/mjbanks\">Matt Banks</a>, <a href=\"https://profiles.wordpress.org/jaworskimatt\">Matt Jaworski</a>, <a href=\"https://profiles.wordpress.org/mattking5000\">Matt King</a>, <a href=\"https://profiles.wordpress.org/matt\">Matt Mullenweg</a>, <a href=\"https://profiles.wordpress.org/veraxus\">Matt van Andel</a>, <a href=\"https://profiles.wordpress.org/mattwiebe\">Matt Wiebe</a>, <a href=\"https://profiles.wordpress.org/mattheu\">Matthew Haines-Young</a>, <a href=\"https://profiles.wordpress.org/mattyrob\">mattyrob</a>, <a href=\"https://profiles.wordpress.org/maxcutler\">Max Cutler</a>, <a href=\"https://profiles.wordpress.org/maximeculea\">Maxime Culea</a>, <a href=\"https://profiles.wordpress.org/mayukojpn\">Mayo Moriyama</a>, <a href=\"https://profiles.wordpress.org/mbelchev\">mbelchev</a>, <a href=\"https://profiles.wordpress.org/mckernanin\">mckernanin</a>, <a href=\"https://profiles.wordpress.org/melchoyce\">Mel Choyce</a>, <a href=\"https://profiles.wordpress.org/mhowell\">mhowell</a>, <a href=\"https://profiles.wordpress.org/michaelarestad\">Michael Arestad</a>, <a href=\"https://profiles.wordpress.org/michael-arestad\">Michael Arestad</a>, <a href=\"https://profiles.wordpress.org/michalzuber\">michalzuber</a>, <a href=\"https://profiles.wordpress.org/mauteri\">Mike Auteri</a>, <a href=\"https://profiles.wordpress.org/mihai2u\">Mike Crantea</a>, <a href=\"https://profiles.wordpress.org/mdgl\">Mike Glendinning</a>, <a href=\"https://profiles.wordpress.org/mikehansenme\">Mike Hansen</a>, <a href=\"https://profiles.wordpress.org/mikelittle\">Mike Little</a>, <a href=\"https://profiles.wordpress.org/mikeschroder\">Mike Schroder</a>, <a href=\"https://profiles.wordpress.org/mikeviele\">Mike Viele</a>, <a href=\"https://profiles.wordpress.org/dimadin\">Milan Dinić</a>, <a href=\"https://profiles.wordpress.org/modemlooper\">modemlooper</a>, <a href=\"https://profiles.wordpress.org/batmoo\">Mohammad Jangda</a>, <a href=\"https://profiles.wordpress.org/deremohan\">Mohan Dere</a>, <a href=\"https://profiles.wordpress.org/monikarao\">monikarao</a>, <a href=\"https://profiles.wordpress.org/morettigeorgiev\">morettigeorgiev</a>, <a href=\"https://profiles.wordpress.org/morganestes\">Morgan Estes</a>, <a href=\"https://profiles.wordpress.org/mor10\">Morten Rand-Hendriksen</a>, <a href=\"https://profiles.wordpress.org/mt8biz\">moto hachi ( mt8.biz )</a>, <a href=\"https://profiles.wordpress.org/mrbobbybryant\">mrbobbybryant</a>, <a href=\"https://profiles.wordpress.org/nnaimov\">Naim Naimov</a>, <a href=\"https://profiles.wordpress.org/natereist\">Nate Reist</a>, <a href=\"https://profiles.wordpress.org/natewr\">NateWr</a>, <a href=\"https://profiles.wordpress.org/nathanrice\">nathanrice</a>, <a href=\"https://profiles.wordpress.org/nazgul\">Nazgul</a>, <a href=\"https://profiles.wordpress.org/greatislander\">Ned Zimmerman</a>, <a href=\"https://profiles.wordpress.org/krstarica\">net</a>, <a href=\"https://profiles.wordpress.org/celloexpressions\">Nick Halsey </a>, <a href=\"https://profiles.wordpress.org/nikeo\">Nicolas GUILLAUME</a>, <a href=\"https://profiles.wordpress.org/nikschavan\">Nikhil Chavan</a>, <a href=\"https://profiles.wordpress.org/nikv\">Nikhil Vimal</a>, <a href=\"https://profiles.wordpress.org/nbachiyski\">Nikolay Bachiyski</a>, <a href=\"https://profiles.wordpress.org/rabmalin\">Nilambar Sharma</a>, <a href=\"https://profiles.wordpress.org/noplanman\">noplanman</a>, <a href=\"https://profiles.wordpress.org/nullvariable\">nullvariable</a>, <a href=\"https://profiles.wordpress.org/odie2\">odie2</a>, <a href=\"https://profiles.wordpress.org/odysseygate\">odyssey</a>, <a href=\"https://profiles.wordpress.org/hideokamoto\">Okamoto Hidetaka</a>, <a href=\"https://profiles.wordpress.org/orvils\">orvils</a>, <a href=\"https://profiles.wordpress.org/oskosk\">oskosk</a>, <a href=\"https://profiles.wordpress.org/ottok\">Otto Kek&#228;l&#228;inen</a>, <a href=\"https://profiles.wordpress.org/ovann86\">ovann86</a>, <a href=\"https://profiles.wordpress.org/swissspidy\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/patilvikasj\">patilvikasj</a>, <a href=\"https://profiles.wordpress.org/pbearne\">Paul Bearne</a>, <a href=\"https://profiles.wordpress.org/paulwilde\">Paul Wilde</a>, <a href=\"https://profiles.wordpress.org/sirbrillig\">Payton Swick</a>, <a href=\"https://profiles.wordpress.org/pdufour\">pdufour</a>, <a href=\"https://profiles.wordpress.org/piewp\">Perdaan</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/phh\">phh</a>, <a href=\"https://profiles.wordpress.org/php\">php</a>, <a href=\"https://profiles.wordpress.org/delawski\">Piotr Delawski</a>, <a href=\"https://profiles.wordpress.org/pippinsplugins\">pippinsplugins</a>, <a href=\"https://profiles.wordpress.org/pjgalbraith\">pjgalbraith</a>, <a href=\"https://profiles.wordpress.org/pkevan\">pkevan</a>, <a href=\"https://profiles.wordpress.org/pratikchaskar\">Pratik</a>, <a href=\"https://profiles.wordpress.org/pressionate\">Pressionate</a>, <a href=\"https://profiles.wordpress.org/presskopp\">Presskopp</a>, <a href=\"https://profiles.wordpress.org/procodewp\">procodewp</a>, <a href=\"https://profiles.wordpress.org/quasel\">quasel</a>, <a href=\"https://profiles.wordpress.org/rachelbaker\">Rachel Baker</a>, <a href=\"https://profiles.wordpress.org/rahulsprajapati\">Rahul Prajapati</a>, <a href=\"https://profiles.wordpress.org/superpoincare\">Ramanan</a>, <a href=\"https://profiles.wordpress.org/ramiy\">Rami Yushuvaev</a>, <a href=\"https://profiles.wordpress.org/ramiabraham\">ramiabraham</a>, <a href=\"https://profiles.wordpress.org/ranh\">ranh</a>, <a href=\"https://profiles.wordpress.org/redsand\">Red Sand Media Group</a>, <a href=\"https://profiles.wordpress.org/youknowriad\">Riad Benguella</a>, <a href=\"https://profiles.wordpress.org/rianrietveld\">Rian Rietveld</a>, <a href=\"https://profiles.wordpress.org/iamfriendly\">Richard Tape</a>, <a href=\"https://profiles.wordpress.org/rpayne7264\">Robert D Payne</a>, <a href=\"https://profiles.wordpress.org/iamjolly\">Robert Jolly</a>, <a href=\"https://profiles.wordpress.org/rnoakes3rd\">Robert Noakes</a>, <a href=\"https://profiles.wordpress.org/d4z_c0nf\">Rocco Aliberti</a>, <a href=\"https://profiles.wordpress.org/rodrigosprimo\">Rodrigo Primo</a>, <a href=\"https://profiles.wordpress.org/rommelxcastro\">Rommel Castro</a>, <a href=\"https://profiles.wordpress.org/fronaldaraujo\">Ronald Ara&#250;jo</a>, <a href=\"https://profiles.wordpress.org/magicroundabout\">Ross Wintle</a>, <a href=\"https://profiles.wordpress.org/guavaworks\">Roy Sivan</a>, <a href=\"https://profiles.wordpress.org/ryankienstra\">Ryan Kienstra</a>, <a href=\"https://profiles.wordpress.org/rmccue\">Ryan McCue</a>, <a href=\"https://profiles.wordpress.org/ryanplas\">Ryan Plas</a>, <a href=\"https://profiles.wordpress.org/welcher\">Ryan Welcher</a>, <a href=\"https://profiles.wordpress.org/salcode\">Sal Ferrarello</a>, <a href=\"https://profiles.wordpress.org/samikeijonen\">Sami Keijonen</a>, <a href=\"https://profiles.wordpress.org/solarissmoke\">Samir Shah</a>, <a href=\"https://profiles.wordpress.org/samuelsidler\">Samuel Sidler</a>, <a href=\"https://profiles.wordpress.org/sandesh055\">Sandesh</a>, <a href=\"https://profiles.wordpress.org/smyoon315\">Sang-Min Yoon</a>, <a href=\"https://profiles.wordpress.org/sanketparmar\">Sanket Parmar</a>, <a href=\"https://profiles.wordpress.org/pollyplummer\">Sarah Gooding</a>, <a href=\"https://profiles.wordpress.org/sayedwp\">Sayed Taqui</a>, <a href=\"https://profiles.wordpress.org/schrapel\">schrapel</a>, <a href=\"https://profiles.wordpress.org/coffee2code\">Scott Reilly</a>, <a href=\"https://profiles.wordpress.org/wonderboymusic\">Scott Taylor</a>, <a href=\"https://profiles.wordpress.org/scrappyhuborg\">scrappy@hub.org</a>, <a href=\"https://profiles.wordpress.org/scribu\">scribu</a>, <a href=\"https://profiles.wordpress.org/seancjones\">seancjones</a>, <a href=\"https://profiles.wordpress.org/sebastianpisula\">Sebastian Pisula</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/sgr33n\">Sergio De Falco</a>, <a href=\"https://profiles.wordpress.org/sfpt\">sfpt</a>, <a href=\"https://profiles.wordpress.org/shayanys\">shayanys</a>, <a href=\"https://profiles.wordpress.org/shazahm1hotmailcom\">shazahm1</a>, <a href=\"https://profiles.wordpress.org/shprink\">shprink</a>, <a href=\"https://profiles.wordpress.org/simonlampen\">simonlampen</a>, <a href=\"https://profiles.wordpress.org/skippy\">skippy</a>, <a href=\"https://profiles.wordpress.org/smerriman\">smerriman</a>, <a href=\"https://profiles.wordpress.org/snacking\">snacking</a>, <a href=\"https://profiles.wordpress.org/soean\">Soeren Wrede</a>, <a href=\"https://profiles.wordpress.org/solal\">solal</a>, <a href=\"https://profiles.wordpress.org/sstoqnov\">Stanimir Stoyanov</a>, <a href=\"https://profiles.wordpress.org/metodiew\">Stanko Metodiev</a>, <a href=\"https://profiles.wordpress.org/sharkomatic\">Steph</a>, <a href=\"https://profiles.wordpress.org/sswells\">Steph Wells</a>, <a href=\"https://profiles.wordpress.org/sillybean\">Stephanie Leary</a>, <a href=\"https://profiles.wordpress.org/netweb\">Stephen Edgar</a>, <a href=\"https://profiles.wordpress.org/stephenharris\">Stephen Harris</a>, <a href=\"https://profiles.wordpress.org/stevenkword\">Steven Word</a>, <a href=\"https://profiles.wordpress.org/stevenlinx\">stevenlinx</a>, <a href=\"https://profiles.wordpress.org/stubgo\">stubgo</a>, <a href=\"https://profiles.wordpress.org/sudar\">Sudar Muthu</a>, <a href=\"https://profiles.wordpress.org/patilswapnilv\">Swapnil V. Patil</a>, <a href=\"https://profiles.wordpress.org/swapnild\">swapnild</a>, <a href=\"https://profiles.wordpress.org/szaqal21\">szaqal21</a>, <a href=\"https://profiles.wordpress.org/takahashi_fumiki\">Takahashi Fumiki</a>, <a href=\"https://profiles.wordpress.org/miyauchi\">Takayuki Miyauchi</a>, <a href=\"https://profiles.wordpress.org/karmatosed\">Tammie Lister</a>, <a href=\"https://profiles.wordpress.org/tapsboy\">tapsboy</a>, <a href=\"https://profiles.wordpress.org/tlovett1\">Taylor Lovett</a>, <a href=\"https://profiles.wordpress.org/team\">team</a>, <a href=\"https://profiles.wordpress.org/tg29359\">tg29359</a>, <a href=\"https://profiles.wordpress.org/tharsheblows\">tharsheblows</a>, <a href=\"https://profiles.wordpress.org/the\">the</a>, <a href=\"https://profiles.wordpress.org/themeshaper\">themeshaper</a>, <a href=\"https://profiles.wordpress.org/thenbrent\">thenbrent</a>, <a href=\"https://profiles.wordpress.org/thomaswm\">thomaswm</a>, <a href=\"https://profiles.wordpress.org/tfrommen\">Thorsten Frommen</a>, <a href=\"https://profiles.wordpress.org/tierra\">tierra</a>, <a href=\"https://profiles.wordpress.org/tnash\">Tim Nash</a>, <a href=\"https://profiles.wordpress.org/timmydcrawford\">Timmy Crawford</a>, <a href=\"https://profiles.wordpress.org/timothyblynjacobs\">Timothy Jacobs</a>, <a href=\"https://profiles.wordpress.org/timph\">timph</a>, <a href=\"https://profiles.wordpress.org/tkama\">Tkama</a>, <a href=\"https://profiles.wordpress.org/tnegri\">tnegri</a>, <a href=\"https://profiles.wordpress.org/tomauger\">Tom Auger</a>, <a href=\"https://profiles.wordpress.org/tjnowell\">Tom J Nowell</a>, <a href=\"https://profiles.wordpress.org/tomdxw\">tomdxw</a>, <a href=\"https://profiles.wordpress.org/toro_unit\">Toro_Unit (Hiroshi Urabe)</a>, <a href=\"https://profiles.wordpress.org/zodiac1978\">Torsten Landsiedel</a>, <a href=\"https://profiles.wordpress.org/transl8or\">transl8or</a>, <a href=\"https://profiles.wordpress.org/traversal\">traversal</a>, <a href=\"https://profiles.wordpress.org/wpsmith\">Travis Smith</a>, <a href=\"https://profiles.wordpress.org/nmt90\">Triet Minh</a>, <a href=\"https://profiles.wordpress.org/trishasalas\">Trisha Salas</a>, <a href=\"https://profiles.wordpress.org/tristangemus\">tristangemus</a>, <a href=\"https://profiles.wordpress.org/truongwp\">Truong Giang</a>, <a href=\"https://profiles.wordpress.org/tsl143\">tsl143</a>, <a href=\"https://profiles.wordpress.org/tywayne\">Ty Carlson</a>, <a href=\"https://profiles.wordpress.org/grapplerulrich\">Ulrich</a>, <a href=\"https://profiles.wordpress.org/utkarshpatel\">Utkarsh</a>, <a href=\"https://profiles.wordpress.org/valeriutihai\">Valeriu Tihai</a>, <a href=\"https://profiles.wordpress.org/vishalkakadiya\">Vishal Kakadiya</a>, <a href=\"https://profiles.wordpress.org/vortfu\">vortfu</a>, <a href=\"https://profiles.wordpress.org/vrundakansara-1\">Vrunda Kansara</a>, <a href=\"https://profiles.wordpress.org/webbgaraget\">webbgaraget</a>, <a href=\"https://profiles.wordpress.org/webmandesign\">WebMan Design &#124; Oliver Juhas</a>, <a href=\"https://profiles.wordpress.org/websupporter\">websupporter</a>, <a href=\"https://profiles.wordpress.org/westonruter\">Weston Ruter</a>, <a href=\"https://profiles.wordpress.org/earnjam\">William Earnhardt</a>, <a href=\"https://profiles.wordpress.org/williampatton\">williampatton</a>, <a href=\"https://profiles.wordpress.org/wolly\">Wolly aka Paolo Valenti</a>, <a href=\"https://profiles.wordpress.org/wraithkenny\">WraithKenny</a>, <a href=\"https://profiles.wordpress.org/yale01\">yale01</a>, <a href=\"https://profiles.wordpress.org/yoavf\">Yoav Farhi</a>, <a href=\"https://profiles.wordpress.org/yogasukma\">Yoga Sukma</a>, <a href=\"https://profiles.wordpress.org/oxymoron\">Zach Wills</a>, <a href=\"https://profiles.wordpress.org/tollmanz\">Zack Tollman</a>, <a href=\"https://profiles.wordpress.org/vanillalounge\">Ze Fontainhas</a>, <a href=\"https://profiles.wordpress.org/zhildzik\">zhildzik</a>, and <a href=\"https://profiles.wordpress.org/zsusag\">zsusag</a>.\n<p>&nbsp;<br />\nSpecial thanks go to <a href=\"https://ramiabraham.com/\">Rami Abraham</a> for producing the release video and the many fine haiku we saw in the <a href=\"https://wordpress.org/news/2016/10/wordpress-4-7-beta-1/\">beta</a> and <a href=\"https://wordpress.org/news/2016/11/wordpress-4-7-release-candidate/\">RC</a> announcement posts.</p>\n<p>Finally, thanks to all the community translators who worked on WordPress 4.7. Their efforts bring WordPress 4.7 fully translated to 52 languages at release time with more on the way. Additionally, the WordPress 4.7 release video has been captioned into 44 languages.</p>\n<p>If you want to follow along or help out, check out <a href=\"https://make.wordpress.org/\">Make WordPress</a> and our <a href=\"https://make.wordpress.org/core/\">core development blog</a>. Thanks for choosing WordPress &#8211; we hope you enjoy!</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:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4596\";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:33:\"\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:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Moving Toward SSL\";s: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:53:\"https://wordpress.org/news/2016/12/moving-toward-ssl/\";s: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 Dec 2016 17:20: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:8:\"category\";a:1:{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:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4588\";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:327:\"We’re at a turning point: 2017 is going to be the year that we’re going to see features in WordPress which require hosts to have HTTPS available. Just as JavaScript is a near necessity for smoother user experiences and more modern PHP versions are critical for performance, SSL just makes sense as the next hurdle [&#8230;]\";s: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:1627:\"<p>We’re at a turning point: 2017 is going to be the year that we’re going to see features in WordPress which require hosts to have HTTPS available. Just as JavaScript is a near necessity for smoother user experiences and more modern PHP versions are critical for performance, SSL just makes sense as the next hurdle our users are going to face.</p>\n<p>SSL basically means the link between your browser and the server is encrypted. SSL used to be difficult to implement, and often expensive or slow. Modern browsers, and the incredible success of projects like <a href=\"https://letsencrypt.org/\">Let&#8217;s Encrypt</a> have made getting a certificate to secure your site fast, free, and something we think every host should support by default, especially in a post-Snowden era. Google also weighs <a href=\"https://security.googleblog.com/2014/08/https-as-ranking-signal_6.html\">SSL as a search engine ranking factor</a> and will begin <a href=\"http://motherboard.vice.com/read/google-will-soon-shame-all-websites-that-are-unencrypted-chrome-https\">flagging unencrypted sites in Chrome</a>.</p>\n<p>First, early in 2017, we will only promote hosting partners that provide a SSL certificate by default in their accounts. Later we will begin to assess which features, such as API authentication, would benefit the most from SSL and make them only enabled when SSL is there.</p>\n<p>Separately, I also think the performance improvements in PHP7 are particularly impressive, and major kudos to everyone who worked on that. We will consider whether hosts use PHP7 by default for new accounts next year as well.</p>\n<p>&nbsp;</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:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4588\";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:33:\"\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:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"WordPress 4.7 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:67:\"https://wordpress.org/news/2016/11/wordpress-4-7-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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 24 Nov 2016 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: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:34:\"https://wordpress.org/news/?p=4579\";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:328:\"The release candidate for WordPress 4.7 is now available. RC means we think we’re done, but with millions of users and thousands of plugins and themes, it’s possible we’ve missed something. We hope to ship WordPress 4.7 on Tuesday, December 6, but we need your help to get there. If you haven’t tested 4.7 yet, [&#8230;]\";s: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:\"Helen Hou-Sandi\";s: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:4331:\"<p>The release candidate for WordPress 4.7 is now available.</p>\n<p>RC means we think we’re done, but with millions of users and thousands of plugins and themes, it’s possible we’ve missed something. We hope to ship WordPress 4.7 on <strong>Tuesday, December 6</strong>, but we need <em>your</em> help to get there. If you haven’t tested 4.7 yet, now is the time! To test WordPress 4.7, you can use the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin or you can <a href=\"https://wordpress.org/wordpress-4.7-RC1.zip\">download the release candidate here</a> (zip).</p>\n<p>WordPress 4.7 is a jam-packed release, with a number of features focused on getting a theme set up for the first time. Highlights include a <a href=\"http://2017.wordpress.net/\">new default theme</a>, video headers, custom CSS, customizer edit shortcuts, PDF thumbnail previews, user admin languages, REST API content endpoints, post type templates, and more.</p>\n<p>We’ve made <a href=\"https://core.trac.wordpress.org/log/trunk/src?action=stop_on_copy&amp;mode=stop_on_copy&amp;rev=39353&amp;stop_rev=39263&amp;limit=200&amp;verbose=on&amp;sfp_email=&amp;sfph_mail=\">quite a few refinements</a> since releasing Beta 4 a week ago, including usability and accessibility enhancements for video headers, media and page template support in starter content, and polishing of how custom CSS can be migrated to and extended by plugins and themes. The REST API endpoints saw a number of bugfixes and notably now have anonymous comment off by default.</p>\n<p>Not sure where to start with testing? Try setting up a fresh site on a new installation with Twenty Seventeen (hint: head into customizing your site before touching any pages or widgets) and taking notes on what you enjoyed and what got you stuck. For more details about what&#8217;s new in version 4.7, check out the <a href=\"https://wordpress.org/news/2016/10/wordpress-4-7-beta-1/\">Beta 1</a>, <a href=\"https://wordpress.org/news/2016/11/wordpress-4-7-beta-2/\">Beta 2</a>, <a href=\"https://wordpress.org/news/2016/11/wordpress-4-7-beta-3/\">Beta 3</a>, and <a href=\"https://wordpress.org/news/2016/11/wordpress-4-7-beta-4/\">Beta 4</a> blog posts.</p>\n<p><strong>Think you’ve found a bug?</strong> Please post to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta support forum</a>. If any known issues come up, you’ll be able to <a href=\"https://core.trac.wordpress.org/report/5\">find them here</a>.</p>\n<p><strong>Developers</strong>, please test your plugins and themes against WordPress 4.7 and update your plugin’s <em>Tested up to</em> version in the readme to 4.7. If you find compatibility problems please be sure to post to the support forums so we can figure those out before the final release – we work hard to avoid breaking things. An in-depth field guide to developer-focused changes is coming soon on the <a href=\"https://make.wordpress.org/core/\">core development blog</a>.</p>\n<p>Do you speak a language other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help us translate WordPress into more than 100 languages!</a> And if you haven&#8217;t yet done so, now is a great time to <a href=\"https://wordpressdotorg.polldaddy.com/s/wordpress-2016-survey\">take the Annual WordPress Survey</a> and send it on to your friends.</p>\n<p>Happy testing! And now for another <a href=\"https://profiles.wordpress.org/ramiabraham\">Rami Abraham</a> haiku break.</p>\n<p><em>Select your language</em><br />\n<em>Then let your users choose theirs</em><br />\n<em><code>get_user_locale()</code></em></p>\n<p><em>Theme authors rejoice</em><br />\n<em>Any option may employ</em><br />\n<em>Selective refresh</em></p>\n<p><em>Custom header video</em><br />\n<em>Make sure to <code>add_theme_support</code></em><br />\n<em>Bling above the fold</em></p>\n<p><em>A new template dawns</em><br />\n<em>A hierarchy member</em><br />\n<em>Post-type templates live</em></p>\n<p><em>PDF updates</em><br />\n<em>Pack a parade of polish</em><br />\n<em>Prettier previews</em></p>\n<p><em>Template Post Type: New</em><br />\n<em>Template Post Type: And Useful</em><br />\n<em>Template Post Type: Thing</em></p>\n<p><em>Let lists live lively</em><br />\n<em>Laud <code>wp_list_sort()</code></em><br />\n<em>Less laconic lists</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:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4579\";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:33:\"\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:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 4.7 Beta 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:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2016/11/wordpress-4-7-beta-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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 16 Nov 2016 01:51:52 +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:34:\"https://wordpress.org/news/?p=4576\";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:329:\"WordPress 4.7 Beta 4 is now available! This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.7, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can [&#8230;]\";s: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:\"Helen Hou-Sandi\";s: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:2019:\"<p>WordPress 4.7 Beta 4 is now available!</p>\n<p><strong>This software is still in development,</strong> so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.7, try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href=\"https://wordpress.org/wordpress-4.7-beta4.zip\">download the beta here</a> (zip).</p>\n<p>For more information on what’s new in 4.7, check out the <a href=\"https://wordpress.org/news/2016/10/wordpress-4-7-beta-1/\">Beta 1,</a> <a href=\"https://wordpress.org/news/2016/11/wordpress-4-7-beta-2/\">Beta 2</a>, and <a href=\"https://wordpress.org/news/2016/11/wordpress-4-7-beta-3/\">Beta 3</a> blog posts, along with <a href=\"https://make.wordpress.org/core/tag/4-7+dev-notes/\">in-depth developer guides on make/core</a>. We’ve made <a href=\"https://core.trac.wordpress.org/log/trunk/src?action=stop_on_copy&amp;mode=stop_on_copy&amp;rev=39262&amp;stop_rev=39201&amp;limit=200&amp;verbose=on&amp;sfp_email=&amp;sfph_mail=\">about 60 changes</a> in the last few days for beta 4, including tweaks to Twenty Seventeen, custom CSS, and the REST API content endpoints.</p>\n<p>Do you speak a language other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help us translate WordPress into more than 100 languages!</a></p>\n<p><strong>If you think you’ve found a bug</strong>, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, <a href=\"https://make.wordpress.org/core/reports/\">file one on WordPress Trac</a>, where you can also find <a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a>.</p>\n<p><em>We are almost there<br />\nPlease test your plugins and themes<br />\nRC coming soon<br />\n</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:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4576\";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:33:\"\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:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"WordCamp US 2017-2018 in Nashville\";s: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:\"https://wordpress.org/news/2016/11/wordcamp-us-2017-2018-in-nashville/\";s: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, 15 Nov 2016 23:24:17 +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:\"WordCamp\";s: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:34:\"https://wordpress.org/news/?p=4571\";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:330:\"The title says it all. We had some great applications for cities to host WordCamp US after we finish up in Philadelphia this year, and the city chosen for 2017-2018 is Nashville, Tennessee. Based on the other great applications we got I&#8217;m also excited about the pipeline of communities that could host it in future [&#8230;]\";s: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:1022:\"<p><img class=\"aligncenter\" src=\"https://i0.wp.com/wpdotorg.files.wordpress.com/2008/07/27492741871_c6fcebcad3_k-e1479248587522.jpg?resize=632%2C253&#038;ssl=1\" data-recalc-dims=\"1\" /></p>\n<p>The title says it all. We had some great applications for cities to host <a href=\"http://us.wordcamp.org/\">WordCamp US</a> after we finish up in Philadelphia this year, and the city chosen for 2017-2018 is <strong>Nashville, Tennessee</strong>.</p>\n<p>Based on the other great applications we got I&#8217;m also excited about the pipeline of communities that could host it in future years as WordCamp US travels across the United States and gives us an opportunity to learn and love a new city, as we have with Philadelphia.</p>\n<p>By the way, if you haven&#8217;t yet, now is a great time to <a href=\"https://wordpressdotorg.polldaddy.com/s/wordpress-2016-survey\">take the Annual WordPress Survey</a> and ask your friends to as well.</p>\n<p><a href=\"https://www.flickr.com/photos/143951935@N07/27492741871\">Photo Credit</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:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4571\";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:39:\"\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:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 4.7 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:56:\"https://wordpress.org/news/2016/11/wordpress-4-7-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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 11 Nov 2016 03:30:52 +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:3:\"4.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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4566\";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:329:\"WordPress 4.7 Beta 3 is now available! This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.7, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can [&#8230;]\";s: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:\"Helen Hou-Sandi\";s: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:3120:\"<p>WordPress 4.7 Beta 3 is now available!</p>\n<p><strong>This software is still in development,</strong> so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.7, try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href=\"https://wordpress.org/wordpress-4.7-beta3.zip\">download the beta here</a> (zip).</p>\n<p>For more information on what’s new in 4.7, check out the <a href=\"https://wordpress.org/news/2016/10/wordpress-4-7-beta-1/\">Beta 1</a> and <a href=\"https://wordpress.org/news/2016/11/wordpress-4-7-beta-2/\">Beta 2</a> blog posts, along with <a href=\"https://make.wordpress.org/core/tag/4-7+dev-notes/\">in-depth field guides on make/core</a>. Some of the changes in Beta 3 include:</p>\n<ul>\n<li><strong>REST API:</strong> The <code>unfiltered_html</code> capability is now respected and <code>rest_base</code> has been added to response objects of <code>wp/v2/taxonomies</code> and <code>wp/v2/types</code>, while <code>get_allowed_query_vars()</code> and the <code>rest_get_post</code> filter have been removed.</li>\n<li><strong>Roles/Capabilities:</strong> Added meta-caps for comment, term, and user meta, which are currently only used in the REST API.</li>\n<li><strong>I18N:</strong> Added the ability to change user&#8217;s locale back to site&#8217;s locale. (<a href=\"https://core.trac.wordpress.org/ticket/38632\">#38632</a>)</li>\n<li><strong>Custom CSS:</strong> Renamed the <code>unfiltered_css</code> meta capability to <code>edit_css</code> and added revisions support to the <code>custom_css</code> post type.</li>\n<li><strong>Edit shortcuts:</strong> Theme authors should take a look at <a href=\"https://make.wordpress.org/core/2016/11/10/visible-edit-shortcuts-in-the-customizer-preview/\">the developer guide to the customizer preview&#8217;s visible edit shortcuts</a> and update their themes to take advantage of them if not already implementing selective refresh.</li>\n<li><strong>Various bug fixes:</strong> We’ve made <a href=\"https://core.trac.wordpress.org/log/trunk/src?action=stop_on_copy&amp;mode=stop_on_copy&amp;rev=39200&amp;stop_rev=39143&amp;limit=200&amp;verbose=on&amp;sfp_email=&amp;sfph_mail=\">over 50 changes</a> in the last week.</li>\n</ul>\n<p>Do you speak a language other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help us translate WordPress into more than 100 languages!</a></p>\n<p><strong>If you think you’ve found a bug</strong>, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, <a href=\"https://make.wordpress.org/core/reports/\">file one on WordPress Trac</a>, where you can also find <a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a>.</p>\n<p><em>Building the future</em><br />\n<em>A global community</em><br />\n<em>Stronger together</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:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4566\";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:39:\"\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:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 4.7 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:56:\"https://wordpress.org/news/2016/11/wordpress-4-7-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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 04 Nov 2016 17:39:07 +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:3:\"4.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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4552\";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:329:\"WordPress 4.7 Beta 2 is now available! This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.7, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can [&#8230;]\";s: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:\"Helen Hou-Sandi\";s: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:4240:\"<p>WordPress 4.7 Beta 2 is now available!</p>\n<p><strong>This software is still in development,</strong> so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.7, try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href=\"https://wordpress.org/wordpress-4.7-beta2.zip\">download the beta here</a> (zip).</p>\n<p>Notable changes since WordPress 4.7 Beta 1:</p>\n<ul>\n<li><strong>Twenty Seventeen:</strong> The theme wasn&#8217;t being installed on upgrades &#8211; sorry about that! Now you should see it if you&#8217;re upgrading an existing site. There are also plenty of fixes, especially for the header and small screen views.</li>\n<li><strong>Edit shortcuts:</strong> These are always visible while editing (hide them on bigger screens by collapsing the controls) and should now work properly in Firefox. (<a href=\"https://core.trac.wordpress.org/ticket/27403\">#27403</a> and <a href=\"https://core.trac.wordpress.org/ticket/38532\">#38532</a>)</li>\n<li><strong>REST API endpoints:</strong> There have been a number of changes over the past week; your attention is requested on the following:\n<ul>\n<li>The <code>DELETE</code> response format has changed and may need to be accounted for. (<a href=\"https://core.trac.wordpress.org/ticket/38494\">#38494</a>)</li>\n<li>Enabled querying by multiple post statuses. (<a href=\"https://core.trac.wordpress.org/ticket/38420\">#38420</a>)</li>\n<li>Return an error when JSON decoding fails. (<a href=\"https://core.trac.wordpress.org/ticket/38547\">#38547</a>)</li>\n</ul>\n</li>\n<li><strong>More developer notes</strong>\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2016/10/28/fine-grained-capabilities-for-taxonomy-terms-in-4-7/\">Fine grained capabilities for taxonomy terms</a></li>\n<li><a href=\"https://make.wordpress.org/core/2016/10/29/wp_taxonomy-in-4-7/\"><code>WP_Taxonomy</code></a></li>\n<li><a href=\"https://make.wordpress.org/core/2016/11/02/wp_list_sort-and-wp_list_util-in-4-7/\"><code>wp_list_sort()</code> and <code>WP_List_Util</code></a></li>\n<li><a href=\"https://make.wordpress.org/core/2016/11/03/post-type-templates-in-4-7/\">Post type templates</a></li>\n<li><a href=\"https://make.wordpress.org/core/2016/11/03/new-post-type-labels-in-4-7/\">New post type labels</a></li>\n<li><a href=\"https://make.wordpress.org/core/2016/11/03/attributes-for-resource-hints-in-4-7/\">Attributes for resource hints</a></li>\n</ul>\n</li>\n<li><strong>Various bug fixes:</strong> We’ve made <a href=\"https://core.trac.wordpress.org/log/trunk/src?action=stop_on_copy&amp;mode=stop_on_copy&amp;rev=39142&amp;stop_rev=38995&amp;limit=200&amp;verbose=on&amp;sfp_email=&amp;sfph_mail=\">almost 150 changes</a> in the last week.</li>\n</ul>\n<p>For more of what’s new in version 4.7, <a href=\"https://wordpress.org/news/2016/10/wordpress-4-7-beta-1/\">check out the Beta 1 blog post</a>.</p>\n<p>If you want a more in-depth view of what major changes have made it into 4.7, <a href=\"https://make.wordpress.org/core/tag/4-7/\">check out posts tagged with 4.7 on the main development blog</a>, or look at a <a href=\"https://core.trac.wordpress.org/query?status=closed&amp;resolution=fixed&amp;milestone=4.7&amp;group=component&amp;order=priority\">list of everything</a> that’s changed. There will be more developer notes to come, so keep an eye out for those as well.</p>\n<p>Do you speak a language other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help us translate WordPress into more than 100 languages!</a></p>\n<p><strong>If you think you’ve found a bug</strong>, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, <a href=\"https://make.wordpress.org/core/reports/\">file one on WordPress Trac</a>, where you can also find <a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a>.</p>\n<p>Happy testing!</p>\n<p><em>Ya es la hora</em><br />\n<em> Time for another beta</em><br />\n请您帮下忙!</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:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4552\";s: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:32:\"https://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:30:\"com-wordpress:feed-additions:1\";a:1:{s:4:\"site\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"14607090\";s: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\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:9:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Fri, 10 Mar 2017 08:24:27 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:25:\"strict-transport-security\";s:11:\"max-age=360\";s:6:\"x-olaf\";s:3:\"⛄\";s:13:\"last-modified\";s:29:\"Mon, 06 Mar 2017 19:27:21 GMT\";s:4:\"link\";s:63:\"<https://wordpress.org/news/wp-json/>; rel=\"https://api.w.org/\"\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:11:\"HIT lax 250\";}}s:5:\"build\";s:14:\"20170203093618\";}", "no");
INSERT INTO `wp_options` VALUES("823", "_transient_timeout_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca", "1489177468", "no");
INSERT INTO `wp_options` VALUES("824", "_transient_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca", "1489134268", "no");
INSERT INTO `wp_options` VALUES("825", "_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9", "1489177469", "no");
INSERT INTO `wp_options` VALUES("826", "_transient_feed_d117b5738fbd35bd8c0391cda1f2b5d9", "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:74:\"WPTavern: WeFoster Launches Hosting Platform Catered to Online Communities\";s: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:29:\"https://wptavern.com/?p=67151\";s: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:\"https://wptavern.com/wefoster-launches-hosting-platform-catered-to-online-communities\";s: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:5536:\"<p><a href=\"https://wefoster.co/\">WeFoster</a>, co-founded by <a href=\"https://wefoster.co/profiles/marion/profile/\">Marion Gooding</a> and <a href=\"https://wefoster.co/profiles/bowromir/profile/\">Bowe Frankema</a>, is a new managed hosting platform fine-tuned specifically for online communities.</p>\n<p>The duo came up with the idea for WeFoster <a href=\"https://wefoster.co/about/\">two years ago</a> at WordCamp London 2015. &#8220;Bowe and I sat down and thought of ideas on how we could contribute to the open source community,&#8221; Gooding said. &#8220;We eventually decided on BuddyPress and to build a business around it. We brainstormed on the basic premise of growing awareness, interest, and the user base of BuddyPress.&#8221;</p>\n<p>While BuddyPress is at the core of what WeFoster does, it isn&#8217;t limited to it. The hosting provider caters to all kinds of community building tools whether its <a href=\"https://www.peepso.com/\">Peepso</a>, <a href=\"https://s2member.com/\">s2Member</a>, or <a href=\"https://www.memberpress.com/\">Memberpress</a>.</p>\n<p>One of the things that sets WeFoster apart is its community creation wizard. Customers are asked a series of questions related to their community. For example, one of the questions asks if you&#8217;d like to have discussion forums. If you answer yes, bbPress will automatically be installed in the background. This process replaces the need to manually search and install a variety of plugins after installing WordPress.</p>\n<img />WeFoster Community Creation Wizard\n<p>When creating a community, customers can select from a set of partner templates. Partner templates are pre-configured WordPress installations setup specifically around a product. Partner templates include a white labeled dashboard allowing partners to brand it to match their product. Partners also receive a variety of other perks.</p>\n<p>The partner program is not an affiliate program and partners are hand selected. The team is looking for partners that are in line with the company&#8217;s vision of building better communities. For more information and to apply to be a partner, check out the <a href=\"https://wefoster.co/platform/partners/\">partner application</a> page.</p>\n<h2>WeFoster Uses Google&#8217;s Cloud Platform</h2>\n<p>WeFoster is built on <a href=\"https://cloud.google.com/\">Google&#8217;s Cloud Platform</a> enabling each site to be hosted in a container separate from others. The technology stack consists of PHP7, Nginx, Redis/Memcached, and MariaDB. If for whatever reason you need to downgrade to PHP 5.6, you can do so at the click of a button.</p>\n<img />Switching PHP Versions\n<p>WeFoster uses a custom caching solution dubbed CommunityCaching that it claims loads sites up to six times faster than traditional shared hosts and almost twice as fast as Managed WordPress hosts.</p>\n<p>The host is also a certified CloudFlare partner taking advantage of CloudFlare&#8217;s data centers located across the world. The partnership provides access to free SSL certificates. All sites created on WeFoster have SSL enabled by default and are served over the <a href=\"https://www.cloudflare.com/http2/what-is-http2/\">HTTP/2 protocol</a>.</p>\n<p>Sites are actively monitored for malware and are backed up to Amazon Secure Storage. Site owners can restore to any point in time since backups are stored indefinitely.</p>\n<h2>Tools for Developers</h2>\n<p>Although WeFoster has focused on eliminating technical hurdles experienced by those who manage online communities, the company didn&#8217;t forget about developers. Each site has a developer section that includes a code editor, database manager, an area for debugging, and other related tools. The code editor is a full-featured IDE that works in the browser. This eliminates the need use an FTP client to upload files to the web server.</p>\n<img />Developer Tools\n<p>Those who manage sites using a command line interface will be happy to know that WeFoster supports <a href=\"http://wp-cli.org/\">WP-CLI</a>.</p>\n<img />WP-CLI Support\n<h2>The WeFoster Community Hub</h2>\n<p>In addition to hosting communities, WeFoster itself <a href=\"https://wefoster.co/platform/community-features/\">is a community</a>. The WeFoster community hub is a place where community builders share advice, network with other builders, and gain access to exclusive resources. Prospecting developers can join the <a href=\"https://wefoster.co/profiles/type/developers/\">developer directory</a> and be part of <a href=\"https://wefoster.co/platform/community-care/\">Community Care</a>. Community Care enables community managers to submit tasks that are then completed by one or more experts from the developer directory for a fee.</p>\n<h2>Co-Founders Give a Guided Tour</h2>\n<p>WeFoster offers a <a href=\"https://wefoster.co/platform/launch\">seven-day free trial</a> for all <a href=\"https://wefoster.co/platform/pricing/\">its plans</a> and will migrate existing communities for free. Prices start at $29 per month for the Village plan and go as high as $249 for the Metropolis plan. If at the end of the trial period you decide not to use the service, remove your payment information so you don&#8217;t get charged.</p>\n<p>What I&#8217;ve highlighted above is only scratching the surface as to what WeFoster offers. To learn and see how it works, watch this 47 minute video where Gooding and Frankema give a guided tour and explain the thought process behind many of its features.</p>\n<div class=\"embed-wrap\"></div>\n<div id=\"epoch-width-sniffer\"></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, 10 Mar 2017 06:23: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:13:\"Jeff Chandler\";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:118:\"WPTavern: Stack Overflow Jobs Data Shows ReactJS Skills in High Demand, WordPress Market Oversaturated with Developers\";s: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:29:\"https://wptavern.com/?p=67202\";s: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:128:\"https://wptavern.com/stack-overflow-jobs-data-shows-reactjs-skills-in-high-demand-wordpress-market-oversaturated-with-developers\";s: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:4805:\"<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2016/07/stack-overflow.png?ssl=1\"><img /></a></p>\n<p>Stack Overflow published its analysis of <a href=\"https://stackoverflow.blog/2017/03/09/developer-hiring-trends-2017/\" target=\"_blank\">2017 hiring trends</a> based on the targeting options employers selected when posting to <a href=\"http://stackoverflow.com/jobs\" target=\"_blank\">Stack Overflow Jobs</a>. The report, which compares data from 200 companies since 2015, ranks ReactJS, Docker, and Ansible at the top of the fastest growing skills in demand. When comparing the percentage change from 2015 to 2016, technologies like AJAX, Backbone.js, jQuery, and WordPress are less in demand.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/03/ChangesinDemand.png?ssl=1\"><img /></a></p>\n<p>Stack Overflow also measured the demand relative to the available developers in different tech skills. The demand for backend, mobile, and database engineers is higher than the number of qualified candidates available. WordPress is last among the oversaturated fields with a surplus of developers relative to available positions.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/03/HighDemand.png?ssl=1\"><img /></a></p>\n<p>In looking at these results, it&#8217;s important to consider the inherent biases within the Stack Overflow ecosystem. In 2016, the site surveyed more than 56,000 developers but noted that the survey was &#8220;biased against devs who don&#8217;t speak English.&#8221; The average age of respondents was 29.6 years old and 92.8% of them were male. </p>\n<p>For two years running, Stack Overflow survey respondents have <a href=\"https://wptavern.com/stack-overflow-survey-results-show-wordpress-is-trending-up-despite-being-ranked-among-most-dreaded-technologies\" target=\"_blank\">ranked WordPress among the most dreaded technologies</a> that they would prefer not to use. This may be one reason why employers wouldn&#8217;t be looking to advertise positions on the site&#8217;s job board, which is the primary source of the data for this report.</p>\n<p>Many IT career forecasts focus more generally on job descriptions and highest paying positions. Stack Overflow is somewhat unique in that it identifies trends in specific tech skills, pulling this data out of how employers are tagging their listings for positions. It presents demand in terms of number of skilled developers relative to available positions, a slightly more complicated approach than measuring demand based on advertised salary. However, Stack Overflow&#8217;s data presentation could use some refining. </p>\n<p>One commenter, Bruce Van Horn, <a href=\"https://stackoverflow.blog/2017/03/09/developer-hiring-trends-2017/#comment-3194770754\" target=\"_blank\">noted</a> that jobs tagged as &#8220;Full Stack Developer&#8221; already assume many of the skills that are listed separately: </p>\n<blockquote><p>I wonder how many of these skills are no longer listed because they are &#8220;table stakes&#8221;. You used to have to put CSS, jQuery, and JSON on the job description. I wouldn&#8217;t expect to have to put that on a Full Stack Developer description today &#8211; if you don&#8217;t know those then you aren&#8217;t a Full Stack Web Developer, and I&#8217;m more interested in whether you know the shiny things like React, Redux, and Angular2.</p></blockquote>\n<p>It would be interesting to know what is meant by tagging &#8220;WordPress&#8221; as a skill &#8211; whether it is the general ability to work within the WordPress ecosystem of tools or if it refers to specific skills like PHP. Browsing a few jobs on Stack Overflow, <a href=\"http://stackoverflow.com/jobs?sort=i&q=wordpress\" target=\"_blank\">WordPress positions</a> vary in the skills they require, such as React.js, Angular, PHP, HTML, CSS, and other technologies. This is a reflection of the diversity of technology that can be leveraged in creating WordPress-powered sites and applications, and several of these skills are listed independently of WordPress in the data. </p>\n<p>Regardless of how much credibility you give Stack Overflow&#8217;s analysis of hiring trends, the report&#8217;s recommendation for those working in technologies oversaturated with developers is a good one: &#8220;Consider brushing up on some technologies that offer higher employer demand and less competition.&#8221; WordPress&#8217; code base is currently <a href=\"https://www.openhub.net/p/wordpress/analyses/latest/languages_summary\" target=\"_blank\">59% PHP and 27% JavaScript</a>. The percentage of PHP has grown over time, but newer features and improvements to core are also being built in JavaScript. These are both highly portable skills that are in demand on the web.</p>\n<div id=\"epoch-width-sniffer\"></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, 09 Mar 2017 23:16: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";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:45:\"WPTavern: Google Launches Invisible reCAPTCHA\";s: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:29:\"https://wptavern.com/?p=67177\";s: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:\"https://wptavern.com/google-launches-invisible-recaptcha\";s: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:4216:\"<p>Three years ago Google introduced its new <a href=\"https://wptavern.com/googles-new-recaptcha-api-replaces-distorted-text-with-a-checkbox\" target=\"_blank\">reCAPTCHA v2 API</a>, replacing distorted text challenges with a simple &#8220;I&#8217;m not a robot&#8221; checkbox for validating users. This was a welcome improvement over the fuzzy text in a box that frustrated and infuriated real humans.</p>\n<a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2014/12/recaptcha.png?ssl=1\"><img /></a>reCAPTCHA v1\n<a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2014/12/nocaptcha.gif?ssl=1\"><img /></a>reCAPTCHA v2 photo credit: <a href=\"http://googleonlinesecurity.blogspot.com/2014/12/are-you-robot-introducing-no-captcha.html\">Google Online Security Blog</a>\n<p>reCAPTCHA v1 is no longer supported as of May 2016 and most sites have moved on to use v2. WordPress.org was one of the early adopters of reCAPTCHA v2 and still uses it to validate users on its <a href=\"https://login.wordpress.org/register\" target=\"_blank\">registration form</a>. </p>\n<p>The evolution of reCAPTCHA technology continues, as Google <a href=\"https://www.google.com/recaptcha/admin\" target=\"_blank\">opened up registration</a> for its new Invisible reCAPTCHA today. With the exception of the &#8220;Protected by reCAPTCHA&#8221; badge on forms, the newest implementation is invisible. It doesn&#8217;t require the user to click anything. Invisible reCAPTCHA validates users in the background and is invoked when the user clicks on an existing button on the site. It can also be invoked by a JavaScript API call. If it deems the traffic to be suspicious, it will require the user to solve a captcha. </p>\n<h3>Invisible reCaptcha for WordPress</h3>\n<p><a href=\"https://wordpress.org/plugins/invisible-recaptcha/\" target=\"_blank\">Invisible reCaptcha for WordPress</a> is the first plugin to implement the new API. It was launched in December 2016, shortly after Invisible reCAPTCHA went into beta. The settings page lets users paste in the site key and secret key Google issues after <a href=\"https://www.google.com/recaptcha/admin\" target=\"_blank\">registering on the reCAPTCHA site</a>.   </p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/03/invisible-recaptcha-settings.png?ssl=1\"><img /></a></p>\n<p>Invisible reCaptcha for WordPress has options to enable protection on the WordPress login, registration, comments, and forgot password forms. It is compatible with WooCommerce for protecting the login, registration, product review, lost password, and reset password forms. The plugin also works with Contact Form 7 to protect form submission.</p>\n<p>On the frontend users will see the &#8220;Protected by reCAPTCHA&#8221; badge. I&#8217;m not fond of the sticky badge on the right side of the viewport that slides out on hover, as it seems too obtrusive. It looks better in the context of the form, and the plugin offers an option to display it inline and add custom CSS.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/03/invisible-recaptcha-plugin-frontend.png?ssl=1\"><img /></a></p>\n<p>After testing the plugin and seeing Invisible reCAPTCHA in action, I was impressed with how easy it was to set up. It took less than a minute to get my site added at Google and the plugin configured. However, I was disappointed that the captcha is not truly invisible. Google&#8217;s overt branding on what is meant to be an invisible product makes it only a slight improvement over the v2 checkbox implementation in terms of what the user sees when interacting with the form. It is possible to hide the badge using CSS but this may violate reCAPTCHA&#8217;s policies, as the badge links to Google&#8217;s terms and privacy documents.</p>\n<p><a href=\"https://wordpress.org/plugins/invisible-recaptcha/\" target=\"_blank\">Invisible reCaptcha for WordPress</a> is free on WordPress.org and should greatly reduce the spam coming through WordPress forms. The plugin is compatible with Multisite and can be activated network-wide or on a single site. Detailed instructions for extending it to protect any plugin or custom form are available on WordPress.org.</p>\n<div id=\"epoch-width-sniffer\"></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, 09 Mar 2017 05:13: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:13:\"Sarah Gooding\";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:101:\"WPTavern: WPWeekly Episode 266 – Clef Is Shutting Down, Configuring User Avatars, and WPCampus 2017\";s: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:58:\"https://wptavern.com?p=67181&preview=true&preview_id=67181\";s: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:\"https://wptavern.com/wpweekly-episode-266-clef-is-shutting-down-configuring-user-avatars-and-wpcampus-2017\";s: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:4263:\"<p>In this episode, <a href=\"http://marcuscouch.com/\">Marcus Couch</a> and I discuss the stories that are making headlines including, Clef shutting down, WordPress 4.7.3, and WordPress.com&#8217;s new add-on for Chrome. I shared two lessons I recently learned from managing a site that has open registration and uses BuddyPress. We also share details of WPCampus 2017.</p>\n<h2>Stories Discussed:</h2>\n<p><a href=\"https://wptavern.com/wordpress-4-7-3-patches-six-security-vulnerabilities-immediate-update-advised\">WordPress 4.7.3 Patches Six Security Vulnerabilities, Immediate Update Advised</a><br />\n<a href=\"https://wptavern.com/clef-is-shutting-down-june-6th\">Clef is Shutting Down June 6th</a><br />\n<a href=\"https://wptavern.com/wordpress-com-releases-chrome-add-on-for-google-docs\">WordPress.com Releases Chrome Add-On for Google Docs</a><br />\n<a href=\"https://wptavern.com/freemius-launches-insights-for-wordpress-themes\">Freemius Launches Insights for WordPress Themes</a><br />\n<a href=\"https://wptavern.com/configuring-a-user-avatar-in-wordpress-is-not-as-easy-as-it-should-be\">Configuring a User Avatar in WordPress Is Not as Easy as It Should Be</a><br />\n<a href=\"https://wptavern.com/buddypress-core-contributors-working-on-a-way-to-safely-edit-a-groups-permalink\">BuddyPress Core Contributors Working on a Way to Safely Edit a Group’s Permalink</a><br />\n<a href=\"https://wptavern.com/wpcampus-2017-to-take-place-july-14-15-in-buffalo-ny\">WPCampus 2017 to Take Place July 14-15 in Buffalo, NY</a></p>\n<h2>What&#8217;s on WordPress.tv:</h2>\n<p><a href=\"http://wordpress.tv/2017/03/06/wordpress-community-interview-with-jenny-beaumont/\">WordPress Community Interview With Jenny Beaumont </a></p>\n<p>Jenny Beaumont is a multicultural, multidisciplinary maker and writer of things. She is a leader of people and of projects, who values communication above all else as a means to successful collaboration. Jenny and Paolo Belcastro, are the co-organizers of WordCamp Europe. She is the team lead of the local WordPress Community.</p>\n<p><a href=\"http://wordpress.tv/2017/03/05/rob-ruiz-admin-experience-the-new-ux/\">Rob Ruiz: Admin Experience – The New UX</a></p>\n<p>This presentation is part of WordCamp Omaha 2016. Too often, User Experience is only considered on the front-end of a WordPress site design. Although that is very important, too many WP Designers/Developers stop there. This video goes over tricks and methods to make updating and administrating WordPress sites much more user-friendly for the admin/site-owner/client.</p>\n<p><a href=\"http://wordpress.tv/2016/10/27/chris-klosowski-democratizing-inspiration/\">Chris Klosowski: Democratizing Inspiration</a></p>\n<p>This presentation is part of WordCamp Phoenix 2016. All businesses and stories start as an idea. WordPress is a democratized platform for that inspiration, where ideas are empowered to evolve into meaningful products and stories that shape and create the world we want.</p>\n<h2>Plugins Picked By Marcus:</h2>\n<p><a href=\"https://wordpress.org/plugins/clone-menu/\">WP Clone Menu</a> enables you to clone menus using existing menus.</p>\n<p><a href=\"https://wordpress.org/plugins/list-images-to-optimize/\">WordPress List Images to Optimize</a> gives users an idea of which ones need to be optimized or re-uploaded.</p>\n<p><a href=\"https://wordpress.org/plugins/wp-raffle/\">WP Raffle</a> fully automates an online raffle. Simply install, start the appropriate raffle and prizes, and this plugin does the rest; picking the winners at the designated raffle draw date.</p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, March 15th 3:00 P.M. Eastern</p>\n<p><strong>Subscribe To WPWeekly Via Itunes: </strong><a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\" target=\"_blank\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via RSS: </strong><a href=\"https://wptavern.com/feed/podcast\" target=\"_blank\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via Stitcher Radio: </strong><a href=\"http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr\" target=\"_blank\">Click here to subscribe</a></p>\n<p><strong>Listen To Episode #266:</strong><br />\n</p>\n<div id=\"epoch-width-sniffer\"></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, 09 Mar 2017 02:49:36 +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:13:\"Jeff Chandler\";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:73:\"WPTavern: Google is Retiring Its Adsense for WordPress Plugin in May 2017\";s: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:29:\"https://wptavern.com/?p=66886\";s: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:84:\"https://wptavern.com/google-is-retiring-its-adsense-for-wordpress-plugin-in-may-2017\";s: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:3035:\"<p>Google <a href=\"https://support.google.com/adsense/answer/3380626?hl=en-GB\" target=\"_blank\">announced</a> that it is retiring its <a href=\"https://wordpress.org/plugins/google-publisher/\" target=\"_blank\">official Adsense plugin</a>, previously known as the Google Publisher plugin. For the past three years it has allowed WordPress users to easily add Adsense ads to their sites, enable mobile-specific ad layouts, and manage ads with a point-and-click interface. </p>\n<p>&#8220;After reviewing the AdSense Plugin for WordPress, we&#8217;ve decided that in the future we can support WordPress publishers better with new innovative features like our automatic ad formats and other upcoming initiatives,&#8221; Google said. &#8220;As a result, we will be deprecating the AdSense Plugin for WordPress in May 2017.&#8221;</p>\n<p>Google published the following timeline for sunsetting the plugin:</p>\n<ul>\n<li>Early March 2017: New publishers will not be able to sign up for AdSense by using the plugin.</li>\n<li>Early April 2017: Existing publishers will not be able to change their ad settings or ad units through the plugin.</li>\n<li>Early May 2017: Google will no longer provide support for the plugin.</li>\n</ul>\n<p>Although Google&#8217;s Adsense plugin was used by more than 200,000 WordPress sites, the company has not provided support for the plugin for the past two years. It has been poorly reviewed throughout its three-year listing on WordPress.org and is currently hovering at 2.7/5 stars.</p>\n<p>This change will also affect <a href=\"https://wordpress.org/plugins/search.php?type=term&q=google+adsense\" target=\"_blank\">dozens of other Google Adsense plugins</a>, as Google is changing its ad display recommendations and does not endorse or support using any other WordPress plugins for this purpose.</p>\n<p>Affected publishers received an email with information on how to display ads without the plugin. Google recommends deactivating and removing the plugin, followed by using the QuickStart option or creating and placing ad units by inserting the ad code into text widgets. Those who are manually placing ads using widgets will need to make sure they comply with Google&#8217;s detailed <a href=\"https://support.google.com/adsense/answer/1346295\" target=\"_blank\">ad placement policies</a>. </p>\n<p>The new <a href=\"https://support.google.com/adsense/answer/7171740\" target=\"_blank\">QuickStart</a> method is a <a href=\"https://support.google.com/adsense/answer/6245304\" target=\"_blank\">page-level ad format</a> that automatically displays ads at &#8220;optimal times&#8221; when Adsense deems they will perform well and provide a good experience for visitors. These ads can be turned on by placing the QuickStart code within the  tag. It&#8217;s easier to set up but not nearly as flexible as placing ads in text widgets, which can be conditionally displayed or hidden on pages, categories, tags, and post types using widget visibility rules offered in Jetpack or another plugin.</p>\n<div id=\"epoch-width-sniffer\"></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:\"Wed, 08 Mar 2017 21:23:17 +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:13:\"Sarah Gooding\";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:37:\"Matt: WordPress Collaborative Editing\";s: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:22:\"https://ma.tt/?p=47145\";s: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:\"https://ma.tt/2017/03/wordpress-collaborative-editing/\";s: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:2390:\"<p>I&#8217;m really excited about the <a href=\"https://en.blog.wordpress.com/2017/03/07/introducing-wordpress-com-for-google-docs-a-new-way-forward-for-collaborative-editing/\">new Google Docs integration that just launched</a> &#8212; basically it builds a beautiful bridge between what is probably the best collaborative document editor on the planet right now, <a href=\"https://www.google.com/docs/about/\">Google&#8217;s</a>, and let&#8217;s you one-click bring a document there into a WordPress draft with all the formatting, links, and everything brought over. There&#8217;s even a clever feature that if you are copying and pasting from Docs it&#8217;ll tell you about the integration.</p>\n<p>I think this is highly complementary to the work we&#8217;re doing with the new Editor in core WordPress. Why? Google Docs represents the web pinnacle of the WordPerfect / Word legacy of editing &#8220;pages&#8221;, what I&#8217;ll call a document editor. It runs on the web, but it&#8217;s not native to the web in that its fundamental paradigm is still about the document itself. With the new WordPress Editor the blocks will be all about bringing together building blocks from all over &#8212; maps, videos, galleries, forms, images &#8212; and making them like Legos you can use to build a rich, web-native post or page.</p>\n<p>We&#8217;re going to look into some collaborative features, but Google&#8217;s annotations, comments, and real-time co-editing are years ahead there. So if you&#8217;re drafting something that looks closer to something in the 90s you could print out, <a href=\"https://en.blog.wordpress.com/2017/03/07/introducing-wordpress-com-for-google-docs-a-new-way-forward-for-collaborative-editing/\">Docs will be the best place to start and collaborate</a> (and better than Medium). If you want to built a richer experience, something that really only makes sense on an interactive screen, that&#8217;s what the new WordPress editor will be for.</p>\n<p>One final note, the <a href=\"https://chrome.google.com/webstore/detail/wordpresscom-for-google-d/baibkfjlahbcogbckhjljjenalhamjbp\">Docs web store</a> makes it tricky to use different Google accounts to add integrations like this one. To make it easy, open up a Google Doc under the account you want to use, then go to Add-ons -&gt; Get add-ons… -&gt; search for “Automattic&#8221; and you&#8217;ll be all set.</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, 08 Mar 2017 20:12:25 +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: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:22:\"HeroPress: Coming Home\";s: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:56:\"https://heropress.com/?post_type=heropress-essays&p=1634\";s: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:41:\"https://heropress.com/essays/coming-home/\";s: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:13077:\"<img width=\"960\" height=\"480\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/03/030817-min-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: I love that the WordPress community wants everyone to feel welcome and included,\" /><p>When I was 17, I attended the school for graphical design and printing. I remember one time a teacher yelling at me: ‘With an attitude like that, you won’t get very far in life’.</p>\n<p>I don’t know why this pops into my mind at the very moment I started to writing this piece for HeroPress. I guess I always wanted to do things my way. I have had pretty strong thoughts about how and why I wanted to do things in life, both personally and work wise.</p>\n<p>I’ve felt a great love for the DIY and making industry all my life, and was surrounded by people in small alternative ecosystems in my early twenties. Doing printing, music, squatting, cooking… those were the days. After a while, I sort of drifted apart. My career and life seemed to go a different way from what I actually loved. However, I did some small DIY internet projects on the computer that I got halfway through the nineties. I built some blogs and figured out how to do html. I was all on the side though, never professional.</p>\n<h3>A New Beginning</h3>\n<p>Around 2002, I really wanted to go away from what I had and dream, make plans and start a new life. So I ditched my management job, husband and newly built house. With a new love in my life, I bought a 150 year old farmhouse in a rural part of the Netherlands. We were busy doing it up and dreamt about starting our own business someday. Not to depend on a time &amp; place based 9-5 job anymore.</p>\n<p>In 2007, we started our own webshop in organic gardening and sustainable, handmade garden tools. I experimented with code, Open Source Systems and SEO. I did graphical design, e-mail marketing, text writing, photography… we grew and grew and grew. And then we hit the ground. We got struck by the crisis and everything fell apart.</p>\n<p>It made me rethink my career and 2011 was the start for me working with WordPress. I had built websites , but never designed a website with a content management system (besides the webshop). I knew WordPress from the dot com blog I had, so after comparing a few systems and asking for advice on Twitter, I decided to have WordPress as a basis for my future work.</p>\n<p>At the time, I didn’t know what WordPress was. I mean, what WordPress really was. Basically it was the software I chose to work with, but that was that. I spent a lot of time finding out about the plugins, themes and adjusting code and css.</p>\n<blockquote><p>But I never knew about the WordPress community that was there, and I wish I had.</p></blockquote>\n<p>Although I’ve learned a great deal from my research and mistakes, it would have been so much easier having the supportive community around in the early days of my life as a web designer.</p>\n<p>It took me quite a while to find out about the WordPress community. I had discovered WordPress support, but never realised these were all hardworking people like me, giving back some time and knowledge to the community without getting paid for it. I guess the anonymity of the internet was part of the reason for me not knowing. At some point I heard about these web developer and design conferences in general, not WordPress specific. It never occurred to me to go there, because I thought I wouldn’t fit in. I didn’t see myself as a real professional, because nearly all my knowledge was self taught. (Later on, I found out that’s the story of nearly everyone I met within the WordPress community). Besides that, designing websites was just part of my job. I also did graphical design, print work, marketing and copywriting. Another reason to feel like a fool among all these smart guys speaking code to each other!</p>\n<h3>A Revelation</h3>\n<p>Only in 2015 things changed. One of my friends told me about Meetups and was surprised I hadn’t heard of it, since I was her geeky friend. But I had been so busy with keeping my head up after breaking up with my boyfriend, building my company, starting a part time study (I decided to get my bachelor on Media, Information an Communication). In the meantime, I had moved to a new part of the Netherlands again. Looking at local Meetups, I found a WordPress Meetup in Rotterdam, approx. 15 minutes by train from where I lived. On a Monday evening, I decided to go there, not knowing anyone attending. I’m not a shy person at all, but sometimes stepping into a new network can be tough, even for extroverts like me.</p>\n<a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/03/rotterdam_meetup-min.jpg\"><img class=\"size-large wp-image-1636\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/03/rotterdam_meetup-min-1024x633.jpg\" alt=\"Scene from the back of the room, Monique with her hand up to ask a question.\" width=\"960\" height=\"593\" /></a>Asking a question at the Rotterdam meetup.\n<p>Arriving in the pouring rain, I stepped into the elevator bringing me to the right floor. A friendly women called Marleen stepped in with me and we started talking. We had a good click right away and chatted all evening. She then told me I should go to WordCamp Netherlands later on that year, convincing me I would fit in and it wouldn’t be all development and code boys, but all kinds of people like bloggers, marketeers, teachers or entrepreneurs.</p>\n<blockquote><p>So October 2015 I went to my first WordCamp ever and had a really good time. It definitely was an eye opener.</p></blockquote>\n<p>Finishing my thesis (and moving houses again!), I was too busy looking around, so unfortunately I couldn’t attend any other Meetups after that, but I was determined to go to the next Dutch WordCamp. I started following their Twitter to stay updated. At some point I saw them mentioning a WordCamp Europe. By that time, I hadn’t really figured out this whole WordCamp thing (and certainly hadn’t realised the impact it would have on me later).</p>\n<p>But what? WordCamp Europe? Vienna? End of June? Well that would be a great graduation present after three years of hard work! So I bought myself a ticket. And started to look forward going to a lovely city. As the date got closer, I realised this was much bigger than I expected. Wow, are there really people flying in from all over the world to be here? So it’s not just a Europe-thing? I was getting more and more impressed (and excited) by the day.</p>\n<h3>WordCamp Europe 2017</h3>\n<p>To have some pre-travelling fun, I started following the WordCamp Europe hashtag (<a href=\"https://twitter.com/search?q=%23wceu\">#wceu</a>) on Twitter. Soon, I found out there were all these warmup events and I hooked up with some Dutch WordPressers for a cycling trip through Vienna in the scorching heat. For three hours, we chased our guide Franz through Vienna and I had the best time of my life. Immediately I felt at home with this group that I had never met before, apart from speaking to one of them briefly on WordCamp Netherlands. Apparently they had done a bike tour in Sevilla the year before, and as real Dutchies, they thought to continue the tradition.</p>\n<p>For the next few days, we sort of met on and off, having dinner or drinks with other people they knew. I was impressed with WordCamp itself as well. I don’t think I’ve ever been to an event organised this well. The catering was great, the talks were great and the weather was perfect. The social on Saturday night was unforgettable. All volunteers were so dedicated and the atmosphere all through the event was the best ever. After returning I was so enthusiastic about being part of this, but it was difficult to describe how I really felt. I guess you have to be part of it to know what WordPress really is.</p>\n<blockquote><p>Because WordPress in fact ís the community. I seriously doubt it would exist without the community.</p></blockquote>\n<p>What I found truly amazing about it, is that there is so much respect. People make an effort to make the WordCamps accessible for everyone. Disabled, bad eyesight or hearing: WordCamps are accessible for wheelchairs, have live subtitles on the talks or someone who knows sign language. Children? Of course there’s a child care department, so parents can enjoy the talks as well. Crazy diets? Not one diet is too crazy for WordCamp. Event managers should definitely attend a WordCamp or sign up as a volunteer because they could learn a great deal.</p>\n<p>I love that the WordPress community wants everybody to feel welcome and included. And this is what I thought of when this remark of my teacher popped into my mind. Ever since I was a child, I have a great feeling for justice. I want people to be equal and not being judged on whatever. That’s my attitude he had problems with, because he thought I should adapt to what big bosses would tell me in life and that they would never accept the different opinion I had. Within the WordPress community, I feel that people live by this rule of justice (the code of conduct I think helps a great deal) and it goes without saying. I believe this is very very welcome in times like these and I feel happy that I’ve discovered the WordPress community. It really felt like coming home and meeting people on WordCamps help me keep faith in humanity.</p>\n<a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/03/wordcamp_netherlands2-min.jpg\"><img class=\"size-large wp-image-1638\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/03/wordcamp_netherlands2-min-1024x536.jpg\" alt=\"WordCamp Netherlands Volunteers\" width=\"960\" height=\"503\" /></a>WordCamp Netherlands Volunteers\n<p>I went to the Dutch WordCamp last October, this time giving back a little bit by volunteering. And at the time of writing, I’m looking forward to my next WordCamp which will be in London from 17-19 March. It will be great to go to one of my favourite cities, but I’m excited to go to this WordCamp for more than one reason: I applied and got selected as as speaker! Not that I’m so keen on standing on that stage, but because it’s a great opportunity to for me to share knowledge and learn. Because that’s what WordCamps are for aren’t they?</p>\n<h3>Your Turn</h3>\n<p>So this is a shout out to all WordPress newbies: get your arse over to the nearest WordCamp, you won’t regret it! We were all newbies once too, and we’re all still learning everyday and willing to teach you. We could probably learn from your expertise too!</p>\n<p>At the same time it’s a shout out to the WordPress community too: make it as easy as possible for new people to attend WordCamps. Invite them, buy tickets for them. Make them aware of the added value of the lively WordPress community both offline and online. Maybe it could become part of WordPress news in new installs? A link to all the great resources on <a href=\"http://wordpress.tv/\">WordPress.tv</a> and support, and a notification of <a href=\"https://central.wordcamp.org/\">upcoming WordCamps</a>? I definitely have intentions of visiting as many WordCamps as possible in the years coming, so hopefully I&#8217;ll meet you at one of them!</p>\n<div class=\"rtsocial-container rtsocial-container-align-right rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: Coming Home\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=Coming%20Home&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Fcoming-home%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: Coming Home\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Fcoming-home%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-linkedin-horizontal\"><div class=\"rtsocial-linkedin-horizontal-button\"><a class=\"rtsocial-linkedin-button\" href=\"https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Fessays%2Fcoming-home%2F&title=Coming+Home\" rel=\"nofollow\" target=\"_blank\" title=\"Share: Coming Home\"></a></div></div><div class=\"rtsocial-pinterest-horizontal\"><div class=\"rtsocial-pinterest-horizontal-button\"><a class=\"rtsocial-pinterest-button\" href=\"https://pinterest.com/pin/create/button/?url=https://heropress.com/essays/coming-home/&media=https://heropress.com/wp-content/uploads/2017/03/030817-min-150x150.jpg&description=Coming Home\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: Coming Home\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/essays/coming-home/\" title=\"Coming Home\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/coming-home/\">Coming Home</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</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:\"Wed, 08 Mar 2017 12: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:17:\"Monique Dubbelman\";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:40:\"WPTavern: Clef is Shutting Down June 6th\";s: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:29:\"https://wptavern.com/?p=66963\";s: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:\"https://wptavern.com/clef-is-shutting-down-june-6th\";s: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:3854:\"<p><a href=\"https://getclef.com/\">Clef</a>, a two-factor authentication service founded in 2013 <a href=\"https://blog.getclef.com/discontinuing-support-for-clef-6c89febef5f3#.9b7u28s9p\">has announced</a> that it is discontinuing its product. Clef is most well known for removing the burden of remembering usernames and passwords by replacing them with a 300 character key using mobile cryptography.</p>\n<p>The service&#8217;s <a href=\"https://wordpress.org/plugins/wpclef\">WordPress plugin</a> is active on more than 1M sites and has been removed from the directory. Clef will continue operating until June 6th, 2017. After June 6th, the mobile app will stop functioning and be removed from the Google Play and Apple App stores.</p>\n<p>Users are highly encouraged to transition to a different two-factor authentication provider as soon as possible. Clef has published a <a href=\"http://support.getclef.com/article/136-transitioning-away-from-clef-for-two-factor-authentication\">transition guide</a> to help users switch to <a href=\"https://wordpress.org/plugins/two-factor/\">Two-Factor</a>, <a href=\"https://www.authy.com/integrations/wordpress/\">Authy</a>, or <a href=\"https://wordpress.org/plugins/google-authenticator/installation/\">Google Authenticator</a>.</p>\n<p>The announcement offers few details as to why the service is shutting down. Brennen Byrne, Clef&#8217;s CEO, says the team is joining another company and that more details will be published soon.</p>\n<p>Users and customers reacted to the news by expressing disappointment and sadness in the comments, &#8220;I am very very sad for that,&#8221; Furio Detti said. &#8220;And I must admit a bit disappointed — Clef was clever, clean, quick.&#8221;</p>\n<p>&#8220;I need no more and no other. I’d like to know if the shutdown could be a sign of bad luck in business or a changing of strategy to improve the product. I tried many systems, but CLEF was the very best, the others, almost annoying crap.&#8221;</p>\n<p>Others questioned how the company reached the point of shutting down, &#8220;Has something gone wrong or incredibly right?,&#8221; John Walker asked. &#8220;How can something so useful and reassuring be canned?&#8221;</p>\n<p>&#8220;WordPress installer states over 1 million active users. That’s a lot of websites to just drop without tangible explanation.&#8221;</p>\n<p>The decision to sunset the product was not an easy one, &#8220;We&#8217;ve considered a lot of options for how we can satisfy our responsibility to the folks who have used our product for a long time, but ultimately we felt like this was the only responsible option we could take,&#8221; Byrne said.</p>\n<p>The service offered commercial business plans, including a $1,000 a month plan but couldn&#8217;t find a business model that worked, &#8220;We&#8217;ve been so happy to build a product that people loved and which had widespread adoption in the WordPress community, but we haven&#8217;t been able to find a business model which made the company sustainable,&#8221; he said.</p>\n<p>It&#8217;s evident by the comments that Clef offered something unique. Whether it was the <a href=\"https://medium.com/@friendly_amy/im-so-sad-to-see-it-go-f978154fda9e?source=responses---------24----------\">user experience</a>, <a href=\"https://medium.com/@zachatkinson85/this-is-very-unfortunate-a27f79d2e7dd?source=responses---------4----------\">ease of use</a>, or <a href=\"https://medium.com/@rogerioleme/too-bad-i-always-enjoyed-the-clef-authenticator-dee40dd7ebf3?source=responses---------3-32---------\">working like magic</a>, the service has a devoted fanbase that love the product.</p>\n<p>Please spread the word that Clef is shutting down as potentially thousands of users may not discover it until their keycodes stop working on June 6th.</p>\n<div id=\"epoch-width-sniffer\"></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:\"Wed, 08 Mar 2017 09:05:17 +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:13:\"Jeff Chandler\";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:62:\"WPTavern: WordPress.com Releases Chrome Add-On for Google Docs\";s: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:29:\"https://wptavern.com/?p=66941\";s: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:\"https://wptavern.com/wordpress-com-releases-chrome-add-on-for-google-docs\";s: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:3597:\"<p>WordPress.com <a href=\"https://en.blog.wordpress.com/2017/03/07/introducing-wordpress-com-for-google-docs-a-new-way-forward-for-collaborative-editing/\" target=\"_blank\">released</a> its new Chrome <a href=\"https://chrome.google.com/webstore/detail/wordpresscom-for-google-d/baibkfjlahbcogbckhjljjenalhamjbp\" target=\"_blank\">Add-on for Google Docs</a> today. The free add-on allows users to edit documents collaboratively in Google Docs and then send the document directly to any WordPress.com site as a draft post. The add-on can also connect to Jetpack-enabled sites, offering the same functionality for self-hosted WordPress users.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/03/wp-google-docs.jpg?ssl=1\"><img /></a></p>\n<p>After installing the add-on from the Google Chrome Store, users will be asked to give permission for it to send posts to WordPress.com. Clicking on the Add-ons menu within the document will open a sidebar where you can add sites. When the document is ready to send to one of your sites, you can click on the &#8220;Save Draft&#8221; button. You&#8217;ll be given a preview link to check out how it looks on the site. </p>\n<p>Ordinarily, copying and pasting content from Google Docs into WordPress results in a messy draft that lacks the same formatting. The new add-on was created to tackle this problem. It duplicates the document&#8217;s images and formatting into WordPress, cutting out a lot of secondary formatting that used to be required.</p>\n<p>&#8220;Collaboration has been a big area of interest for us, and we want to investigate a lot of different approaches,&#8221; Automattic representative Mark Armstrong said. &#8220;Google Docs made perfect sense because it&#8217;s where a lot of people already do collaborative editing. If we could streamline that process for publishing a Google Doc on WordPress, that would help so many people. We&#8217;ve been testing it with publishers and heard a lot of great feedback.&#8221; </p>\n<p>Armstrong didn&#8217;t have any data for how often users paste content from Google docs to WordPress.com, but making content more portable between the two platforms is an often requested feature. The WordPress Plugin Directory has <a href=\"https://wordpress.org/plugins/search.php?q=Google+Docs\" target=\"_blank\">several plugins for embedding Google documents inside content</a> via a shortcode embed or oEmbed, demonstrating that thousands of users are already interested in bringing content over from Google Docs to WordPress.</p>\n<p>After testing the add-on with a sample document that includes special formatting and images, I found that it is a great improvement over the clunky copy and paste experience. Sending posts to WordPress.com is fairly seamless and works as advertised. </p>\n<p>In testing with multiple Jetpack-enabled sites I received some errors when authenticating, which may be due to a security limitation of my host. We had the same issue with the Tavern and were not able to fully test it for self-hosted WordPress sites, but are continuing to investigate the issue. However, other Jetpack-enabled sites are reportedly working with the add-on as expected, according to Armstrong.</p>\n<p>Heavy users of Google Docs and WordPress are excited by the prospect of having the two platforms play nicely together. It saves users quite a bit of time and the new tool will do a lot to bridge the gap for those who rely on Google Docs for collaborative editing. It&#8217;s the next best thing to having collaborative editing built into WordPress. </p>\n<div id=\"epoch-width-sniffer\"></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, 07 Mar 2017 22:14: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:13:\"Sarah Gooding\";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:88:\"WPTavern: WordPress 4.7.3 Patches Six Security Vulnerabilities, Immediate Update Advised\";s: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:29:\"https://wptavern.com/?p=67001\";s: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:98:\"https://wptavern.com/wordpress-4-7-3-patches-six-security-vulnerabilities-immediate-update-advised\";s: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:2298:\"<p><a href=\"https://wordpress.org/news/2017/03/wordpress-4-7-3-security-and-maintenance-release/\" target=\"_blank\">WordPress 4.7.3</a> is now available with patches for six security vulnerabilities that affect version 4.7.2 and all previous versions. WordPress.org is strongly encouraging users to update their sites immediately. </p>\n<p>The release includes fixes for three XSS vulnerabilities that affect media file metadata, video URLs in YouTube embeds, and taxonomy term names. It also includes patches for three other security issues:</p>\n<ul>\n<li>Control characters can trick redirect URL validation</li>\n<li>Unintended files can be deleted by administrators using the plugin deletion functionality</li>\n<li>Cross-site request forgery (CSRF) in Press This leading to excessive use of server resources</li>\n</ul>\n<p>These vulnerabilities were responsibly disclosed by a variety of different sources contributing to WordPress security.</p>\n<p>Version 4.7.3 is also a maintenance release with fixes for <a href=\"https://core.trac.wordpress.org/query?status=closed&milestone=4.7.3&group=component&col=id&col=summary&col=component&col=status&col=owner&col=type&col=priority&col=keywords&order=priority\" target=\"_blank\">39 issues</a>. This includes a fix for an annoying bug that popped up after 4.7.1 where certain <a href=\"https://core.trac.wordpress.org/ticket/39550\" target=\"_blank\">non-image files failed to upload</a>, giving an error message that said: &#8220;Sorry, this file type is not permitted for security reasons.&#8221; Those who were negatively impacted have been waiting on this fix for two months.</p>\n<p>WordPress sites that haven&#8217;t been updated have been subject to a rash of exploits during the last month after a <a href=\"https://wptavern.com/wordpress-rest-api-vulnerability-is-being-actively-exploited-hundreds-of-thousands-of-sites-defaced\" target=\"_blank\">WP REST API vulnerability was disclosed</a>. Now that the patched vulnerabilities in 4.7.3 are public, it is only a matter of time before hackers begin exploiting sites that do not update. If you have auto-updates on, your site has probably already updated by now. If for some reason you have auto-updates disabled, you will want to manually update as soon as possible.</p>\n<div id=\"epoch-width-sniffer\"></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, 07 Mar 2017 20:39: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";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:23:\"Matt: The Job Interview\";s: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:22:\"https://ma.tt/?p=47141\";s: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:\"https://ma.tt/2017/03/the-job-interview/\";s: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:358:\"<p>Inc. writes <a href=\"http://www.inc.com/marcel-schwantes/science-81-percent-of-people-lie-in-job-interviews-heres-what-top-companies-are-.html\">The Job Interview Will Soon Be Dead. Here&#8217;s What the Top Companies Are Replacing It With</a>, and looks at how our brains mislead us in interviews and how Menlo Innovations and Automattic approach it.</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:\"Tue, 07 Mar 2017 11:46:15 +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: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:64:\"WPTavern: NRKbeta Open Sources Comment Quiz Plugin 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:29:\"https://wptavern.com/?p=66935\";s: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:\"https://wptavern.com/nrkbeta-open-sources-comment-quiz-plugin-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:3418:\"<p><a href=\"https://nrkbeta.no\" target=\"_blank\">NRKbeta</a>, the Norwegian Broadcasting Corporation&#8217;s media and technology site, is <a href=\"https://nrkbeta.no/2017/02/13/et-eksperiment-for-et-enda-bedre-kommentarfelt/\" target=\"_blank\">experimenting with a new way of keeping comments on topic</a>. A new plugin on the WordPress-powered site aims to ensure commenters have read the article by requiring them to complete a short, three-question quiz before opening the comment form. Visitors who get the questions wrong cannot contribute to the discussion.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/03/Quiz-1450x1001-e1488844634864.jpg?ssl=1\"><img /></a></p>\n<p>The custom plugin was created to narrow the commenting field to those who are operating on a common basis of understanding of the article. It prevents commenters from skimming the article and then going on a rant.</p>\n<p>The NRKbeta team <a href=\"https://github.com/nrkbeta/nrkbetaquiz\" target=\"_blank\">open sourced the plugin on GitHub</a> today. It&#8217;s also in the review queue for the WordPress Plugin Directory and will be available for a one-click install after it passes review.</p>\n<p><a href=\"https://wordpress.org/plugins/quiz/\" target=\"_blank\">Quiz</a> is an another WordPress.org plugin that performs a similar function. Despite not having been updated for two years, the plugin is active on more than 2,000 sites. Post authors can create a question for each post in the &#8220;Comment Quiz&#8221; meta box. The plugin was also designed to help reduce spam comments.</p>\n<p>NRKbeta&#8217;s new Comment Quiz plugin takes a slightly different format, offering multiple choice in the form of radio buttons as well as the ability to add multiple questions. The comment form automatically slides into view after the visitor answers correctly.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/03/comment-quiz-plugin.png?ssl=1\"><img /></a></p>\n<p>The idea of quizzing visitors before allowing them to comment gained quite a bit of interest after NRKbeta announced the experiment, but the publication is still experimenting to see how the quizzes affect commenting. Ensuring that readers have fully read the article comes at the expense of well-intentioned commenters who are now subjected to a time-wasting test. The plugin puts the burden of proof on the commenter in hopes of fewer rants and off-topic responses getting through.</p>\n<p>Some visitors may perceive the quiz as infantilizing potential commenters while others may see it as a mild annoyance. The quiz is a simple hurdle, easy to bypass by guessing until you land on the correct answer. It amounts to more of a speed bump than a true test of having read the article. It doesn&#8217;t take into account that many commenters who are prone to trolling and ranting off topic can be quite motivated and not significantly inconvenienced by a short quiz.</p>\n<p>If the questions are written to condition the commenter for a desired response, then it does little to promote free thinking. This seems like an expensive trade-off for fewer rants in the moderation queue. It all depends on how the publication implements the plugin. Hopefully NRKbeta will report back on how effective the Comment Quiz plugin was at deterring undesirable off-topic responses while retaining level-headed commenters.</p>\n<div id=\"epoch-width-sniffer\"></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, 07 Mar 2017 05:15: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:13:\"Sarah Gooding\";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:79:\"WPTavern: Configuring a User Avatar in WordPress Is Not as Easy as It Should Be\";s: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:29:\"https://wptavern.com/?p=66954\";s: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:\"https://wptavern.com/configuring-a-user-avatar-in-wordpress-is-not-as-easy-as-it-should-be\";s: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:3135:\"<p>I maintain a website with active user registration and a common support question I&#8217;m asked is, &#8220;How do I change my profile picture?&#8221; The answer is not easy as it should be. WordPress&#8217; profile image system is powered by <a href=\"http://gravatar.com/\">Gravatar</a>, an Automattic owned service. It replaced the old method of uploading a profile picture in <a href=\"https://wordpress.org/news/2008/03/wordpress-25-brecker/\">WordPress 2.5 &#8220;Brecker&#8221;</a>.</p>\n<p>The longer I maintain the site, the <a href=\"https://twitter.com/jeffr0/status/837833604218617856\">more frustrated I get</a> that Gravatar is the default way users create and manage their profile image. In the past, I&#8217;ve written how <a href=\"https://wptavern.com/managing-gravatars-in-wordpress-is-a-jarring-user-experience\">managing Gravatars in WordPress</a> is a bad user experience and not much has changed. Many of the people requesting support simply want an Upload button or link that enables them to upload an image and use it as their avatar.</p>\n<p>One way to replace Gravatar is with the<a href=\"https://wordpress.org/plugins/wp-user-avatars/\"> WP User Avatars</a> plugin developed by <a href=\"https://profiles.wordpress.org/johnjamesjacoby/\">John James Jacoby</a>. WP User Avatars is part of the <a href=\"https://profiles.wordpress.org/stuttter/\">Stutter collection</a> of plugins that replaces Gravatar and adds the ability for registered users to upload an image from their machine. Alternatively, users can click the Choose from Media button to choose an image from the Media Library. Existing profile images are preserved.</p>\n<img />WP User Avatar Interface\n<p>I tested the plugin on WordPress 4.7.3 and didn&#8217;t encounter any issues. It&#8217;s worth noting that according to the <a href=\"https://wordpress.org/plugins/wp-user-avatars/faq/\">plugin&#8217;s FAQ</a>, it doesn&#8217;t work well with multisite.</p>\n<p>There has recently been some discussion on a<a href=\"https://core.trac.wordpress.org/ticket/16020\"> six-year-old trac ticket</a> requesting upload functionality for custom avatars. Some have even suggested that <a class=\"ext-link\" href=\"https://wordpress.org/plugins/simple-local-avatars/\">Simple Local Avatars</a>, <a class=\"ext-link\" href=\"https://wordpress.org/plugins/wp-user-avatar/\">WP User Avatar</a> or <a class=\"ext-link\" href=\"https://wordpress.org/plugins/add-local-avatar/\">Add Local Avatar</a> could be merged into core to provide the functionality. All three plugins combined are active on nearly 300K sites.</p>\n<p>The site I administer is the first I&#8217;ve managed in my WordPress career that has open registration. Interacting with registered users who are often new to WordPress has opened my eyes to how bad of an experience configuring an avatar is. Relying on a third-party service as core functionality to manage profile images doesn&#8217;t make any sense.</p>\n<p>Let us know what your experience is like configuring an avatar in WordPress. If you use a plugin that adds local avatar support, share a link to it in the comments.</p>\n<div id=\"epoch-width-sniffer\"></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, 06 Mar 2017 22:35: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:13:\"Jeff Chandler\";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:92:\"WPTavern: BuddyPress Core Contributors Working on a Way to Safely Edit a Group’s Permalink\";s: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:29:\"https://wptavern.com/?p=66940\";s: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:100:\"https://wptavern.com/buddypress-core-contributors-working-on-a-way-to-safely-edit-a-groups-permalink\";s: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:3656:\"<p>This past weekend while managing a site that runs BuddyPress, I ran into a situation where I needed to change a group&#8217;s slug or permalink. Editing the permalink for a post or page in WordPress is easy but BuddyPress doesn&#8217;t have the same functionality. As you can see in the screenshot below, an edit button to change a group&#8217;s permalink doesn&#8217;t exist.</p>\n<img />No Way to Edit a Group&#8217;s Permalink\n<p>Changing the permalink of a post in WordPress automatically creates a redirect so the previous URL doesn&#8217;t generate a 404 error. BuddyPress doesn&#8217;t offer the same convenience. According to John James Jacoby, BuddyPress lead developer, groups do not have a canonical redirection, or keep track of their slug history.</p>\n<p>In my scenario, I had two choices. I could either change the slug and break a number of links or delete the group and recreate it with the slug of my choice. Since the group already has more than 300 members and a handful of posts, I chose the first option.</p>\n<p>After a cursory search of Google on how to change a group&#8217;s slug, I came across many results that referenced the <a href=\"https://wordpress.org/plugins/bp-edit-group-slug/\">BP Edit Group Slug</a> plugin created by Jacoby that had not been updated in seven years. As recently as two months ago, a <a href=\"https://buddypress.org/support/topic/changing-the-groups-slug-2/#post-262550\">thread on the BuddyPress support forums</a> confirmed that the plugin was broken and generated a lot of errors.</p>\n<p>After speaking to Jacoby on Slack and linking him to the forum thread, he graciously spent two hours of his time to update the plugin. I can confirm that it works as advertised with BuddyPress 2.8.1. To change a group&#8217;s slug after activation the plugin, visit the Group&#8217;s management page on the front-end of the site.</p>\n<img />Editing a Group&#8217;s Slug\n<p>Eight years ago, <a href=\"https://buddypress.trac.wordpress.org/ticket/281\">a ticket was created</a> on BuddyPress trac requesting the ability to change a Group&#8217;s slug. The ticket was eventually closed and labeled wontfix by <a href=\"https://profiles.wordpress.org/boonebgorges/\">Boone Gorges</a>, BuddyPress lead developer, &#8220;Adding it as a core feature is likely to introduce lots of problems, because changed group slugs break all existing links to the content,&#8221; Gorges said. &#8220;We don&#8217;t have a graceful fallback system for changed permalinks, like WP posts do. For now, let&#8217;s leave this to a plugin. If we ever overhaul groups to have a different storage mechanism, we can revisit.&#8221;</p>\n<p>In the BuddyPress Slack channel, David Cavins offered the following idea on how the feature could work, &#8220;We could probably add a step after the lookup fails that looks in another place, like <code>group_meta</code> for key = <code>previous_slug</code> and value = <code>slug that missed a group</code>,&#8221; he said. Both Gorges and Jacoby approved the idea and encouraged Cavins to work on it for BuddyPress core.</p>\n<p>Until the feature is added to core, perhaps a note could be added to the BuddyPress group creation screen for step three that emphasizes how important it is to make sure the permalink is correct.</p>\n<img />BuddyPress Group Creation Step Three\n<p>I was willing to sacrifice broken links in order to have the correct slug for my Group but it&#8217;s a lesson I learned the hard way. I&#8217;m hopeful that others don&#8217;t make the same mistake and that BuddyPress one day has a graceful fallback system for tracking permalink changes.</p>\n<div id=\"epoch-width-sniffer\"></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, 06 Mar 2017 22:16:07 +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:13:\"Jeff Chandler\";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:89:\"WPTavern: Initial Customizer Survey Results Reveal Majority of Respondents Don’t Use It\";s: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:29:\"https://wptavern.com/?p=66809\";s: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:97:\"https://wptavern.com/initial-customizer-survey-results-reveal-majority-of-respondents-dont-use-it\";s: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:5605:\"<p>In January 2017, WordPress core design contributors posted a survey titled <a href=\"https://make.wordpress.org/design/2017/01/27/what-are-you-using-the-customizer-for/\" target=\"_blank\">What are you using the Customizer for?</a> The link was published on the Make WordPress Design blog and wasn&#8217;t widely shared, so it only received 50 replies. Responses were anonymous, but most seem to have come from the WordPress developer community.</p>\n<p>Despite the small sample number, the design team deemed the <a href=\"https://make.wordpress.org/design/2017/03/01/customizer-survey-results/\" target=\"_blank\">initial results</a> important enough to share with the community. Responses on the first question show that 53% never or rarely use the Customizer and 7.8% tend to only use it when setting up a site for the first time. Those who do use it (39.3%) range in frequency from monthly, weekly, and daily.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/03/customizer-survey-results-1.png?ssl=1\"><img /></a></p>\n<p>More than half of respondents (53.6%) do not add plugins to extend the Customizer. Those who do are adding plugins for theme options (12.5%), colors (5.4%), layout (7.1%), and other (21.4%). The majority of respondents indicated they use themes that add new functionality to the Customizer (53.9%) and those specified include colors, layout, typography, theme options, and design features.</p>\n<p>When asked if is there anything in the Customizer they cannot live without, 53.2% of respondents said no. This isn&#8217;t surprising given that most of them seem to be developers who are likely familiar with adding custom CSS or making edits to a child theme. Only 6.4% said they could not live without live previews. When asked if there was anything in the Customizer they never use, 31.3% of respondents said &#8220;Everything,&#8221; 20.8% said &#8220;No,&#8221; and the others identified specific features.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/03/customizer-survey-results-2.png?ssl=1\"><img /></a></p>\n<p>The negative comments on the questions are a general indicator of the lingering dissatisfaction with the Customizer. For those who use the feature regularly, one strong theme in their comments is that the separation between what settings are available in the Customizer versus the backend is confusing:</p>\n<blockquote><p>Setting up theme styling, redesigning, setting up sites, etc. Very useful for quick changes like a new header image to change up the look. Wish you could edit everything there instead of going elsewhere to edit content too.</p></blockquote>\n<blockquote><p>I don’t like it and wish that I didn’t have to use it. Most often if there is a setting I had to use the customizer for, I will either forget that something was set in the customizer and end up hunting around for it for a long time before remembering that’s where it was. More often than not the “preview” functionality doesn’t work and you have to save the settings anyway. Also there doesn’t seem to be any consistent logic as to what features should be in the customizer, and theme authors just put whatever they feel like putting in there.</p></blockquote>\n<blockquote><p>What would be great, it is to incorporate more settings in the Customizer in order to avoid the back and forth to set up the site (date format, title, tagline, posts per page, …).</p></blockquote>\n<p>Many users don&#8217;t understand the separation between content and presentation and don&#8217;t approach the Customizer with this mindset. Therefore, the Customizer&#8217;s omissions create a disjointed experience for users who are new to WordPress.</p>\n<blockquote><p>Absolutely! Most of my clients complain about the footer and why is it so difficult to modify something so basic as this sentence: “Proudly powered by WordPress”… It is really nonsense having so many options in customizer and still having to create a child theme only to be able to edit the standard footer sentence… That doesn’t make any sense, really!”</p></blockquote>\n<p>These kinds of frustrations are likely to continue until the Customizer can unify the content and theme editing experience. Currently, the bulk of content editing happens in the admin, but Customizer contributors are working towards adding <a href=\"https://wptavern.com/customize-posts-plugin-and-selective-refresh-are-paving-the-way-for-front-end-editing-powered-by-the-customizer\" target=\"_blank\">frontend editing powered by the Customizer</a>.</p>\n<p>It is difficult to know how to place this data, since the survey didn&#8217;t ask for any information about the respondents&#8217; WordPress background. However, the large number of negative responses underscore the importance of having the Customizer as one of the three focuses for WordPress core development in 2017.</p>\n<p>Customizer component co-maintainer Weston Ruter said he&#8217;s &#8220;not really surprised&#8221; by the negative feedback in the survey, as there are lots of passionate opinions about the Customizer.</p>\n<p>&#8220;Everyone should agree that the Customizer isn&#8217;t a finished product, but the answer to that is to make it a focus and make it the live preview interface that WP needs, not rip it out,&#8221; Ruter said. &#8220;And that focus is what 2017 includes.&#8221;</p>\n<p>The <a href=\"http://13233232.polldaddy.com/s/what-are-you-using-customizer-for\" target=\"_blank\">survey is still open</a>, if you want to contribute more data for the design team to consider.</p>\n<div id=\"epoch-width-sniffer\"></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, 06 Mar 2017 19:06: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:13:\"Sarah Gooding\";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:58:\"Dev Blog: WordPress 4.7.3 Security and Maintenance 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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4696\";s: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:84:\"https://wordpress.org/news/2017/03/wordpress-4-7-3-security-and-maintenance-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6090:\"<p>WordPress 4.7.3 is now available. This is a <strong>security release</strong> for all previous versions and we strongly encourage you to update your sites immediately.</p>\n<p>WordPress versions 4.7.2 and earlier are affected by six security issues:</p>\n<ol>\n<li>Cross-site scripting (XSS) via media file metadata.  Reported by <a href=\"https://www.securesolutions.no/\">Chris Andrè Dale</a>, <a href=\"https://twitter.com/yorickkoster\">Yorick Koster</a>, and Simon P. Briggs.</li>\n<li>Control characters can trick redirect URL validation.  Reported by <a href=\"http://www.danielchatfield.com/\">Daniel Chatfield</a>.</li>\n<li>Unintended files can be deleted by administrators using the plugin deletion functionality.  Reported by <a href=\"http://b.360.cn/\">xuliang</a>.</li>\n<li>Cross-site scripting (XSS) via video URL in YouTube embeds.  Reported by <a href=\"https://twitter.com/marcs0h\">Marc Montpas</a>.</li>\n<li>Cross-site scripting (XSS) via taxonomy term names.  Reported by <a href=\"https://profiles.wordpress.org/deltamgm2\">Delta</a>.</li>\n<li>Cross-site request forgery (CSRF) in Press This leading to excessive use of server resources.  Reported by Sipke Mellema.</li>\n</ol>\n<p>Thank you to the reporters for practicing <a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">responsible disclosure</a>.</p>\n<p>In addition to the security issues above, WordPress 4.7.3 contains 39 maintenance fixes to the 4.7 release series. For more information, see the <a href=\"https://codex.wordpress.org/Version_4.7.3\">release notes</a> or consult the <a href=\"https://core.trac.wordpress.org/query?status=closed&milestone=4.7.3&group=component&col=id&col=summary&col=component&col=status&col=owner&col=type&col=priority&col=keywords&order=priority\">list of changes</a>.</p>\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 4.7.3</a> or venture over to Dashboard → Updates and simply click “Update Now.” Sites that support automatic background updates are already beginning to update to WordPress 4.7.3.</p>\n<p>Thanks to everyone who contributed to 4.7.3: <a href=\"https://profiles.wordpress.org/aaroncampbell/\">Aaron D. Campbell</a>, <a href=\"https://profiles.wordpress.org/adamsilverstein/\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/xknown/\">Alex Concha</a>, <a href=\"https://profiles.wordpress.org/afercia/\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/asalce/\">asalce</a>, <a href=\"https://profiles.wordpress.org/blobfolio/\">blobfolio</a>, <a href=\"https://profiles.wordpress.org/gitlost/\">bonger</a>, <a href=\"https://profiles.wordpress.org/boonebgorges/\">Boone Gorges</a>, <a href=\"https://profiles.wordpress.org/bor0/\">Boro Sitnikovski</a>, <a href=\"https://profiles.wordpress.org/bradyvercher/\">Brady Vercher</a>, <a href=\"https://profiles.wordpress.org/drrobotnik/\">Brandon Lavigne</a>, <a href=\"https://profiles.wordpress.org/bhargavbhandari90/\">Bunty</a>, <a href=\"https://profiles.wordpress.org/ccprog/\">ccprog</a>, <a href=\"https://profiles.wordpress.org/ketuchetan/\">chetansatasiya</a>, <a href=\"https://profiles.wordpress.org/davidakennedy/\">David A. Kennedy</a>, <a href=\"https://profiles.wordpress.org/dlh/\">David Herrera</a>, <a href=\"https://profiles.wordpress.org/dhanendran/\">Dhanendran</a>, <a href=\"https://profiles.wordpress.org/dd32/\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling (ocean90)</a>, <a href=\"https://profiles.wordpress.org/drivingralle/\">Drivingralle</a>, <a href=\"https://profiles.wordpress.org/iseulde/\">Ella Van Dorpe</a>, <a href=\"https://profiles.wordpress.org/pento/\">Gary Pendergast</a>, <a href=\"https://profiles.wordpress.org/iandunn/\">Ian Dunn</a>, <a href=\"https://profiles.wordpress.org/ipstenu/\">Ipstenu (Mika Epstein)</a>, <a href=\"https://profiles.wordpress.org/jnylen0/\">James Nylen</a>, <a href=\"https://profiles.wordpress.org/jazbek/\">jazbek</a>, <a href=\"https://profiles.wordpress.org/jeremyfelt/\">Jeremy Felt</a>, <a href=\"https://profiles.wordpress.org/jpry/\">Jeremy Pry</a>, <a href=\"https://profiles.wordpress.org/joehoyle/\">Joe Hoyle</a>, <a href=\"https://profiles.wordpress.org/joemcgill/\">Joe McGill</a>, <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/johnjamesjacoby/\">John James Jacoby</a>, <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/ryelle/\">Kelly Dwan</a>, <a href=\"https://profiles.wordpress.org/markoheijnen/\">Marko Heijnen</a>, <a href=\"https://profiles.wordpress.org/matheusgimenez/\">MatheusGimenez</a>, <a href=\"https://profiles.wordpress.org/mnelson4/\">Mike Nelson</a>, <a href=\"https://profiles.wordpress.org/mikeschroder/\">Mike Schroder</a>, <a href=\"https://profiles.wordpress.org/codegeass/\">Muhammet Arslan</a>, <a href=\"https://profiles.wordpress.org/celloexpressions/\">Nick Halsey</a>, <a href=\"https://profiles.wordpress.org/swissspidy/\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/pbearne/\">Paul Bearne</a>, <a href=\"https://profiles.wordpress.org/pavelevap/\">pavelevap</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/rachelbaker/\">Rachel Baker</a>, <a href=\"https://profiles.wordpress.org/reldev/\">reldev</a>, <a href=\"https://profiles.wordpress.org/sanchothefat/\">Robert O&#8217;Rourke</a>, <a href=\"https://profiles.wordpress.org/welcher/\">Ryan Welcher</a>, <a href=\"https://profiles.wordpress.org/sanketparmar/\">Sanket Parmar</a>, <a href=\"https://profiles.wordpress.org/seanchayes/\">Sean Hayes</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/netweb/\">Stephen Edgar</a>, <a href=\"https://profiles.wordpress.org/triplejumper12/\">triplejumper12</a>, <a href=\"https://profiles.wordpress.org/westonruter/\">Weston Ruter</a>, and <a href=\"https://profiles.wordpress.org/wpfo/\">wpfo</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:\"Mon, 06 Mar 2017 17:53: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"James Nylen\";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:66:\"Post Status: Making a living without client work, with Carrie Dils\";s: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://poststatus.com/?p=34997\";s: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:\"https://poststatus.com/making-living-without-client-work-carrie-dils/\";s: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:3358:\"<p>Welcome to the Post Status <a href=\"https://poststatus.com/category/draft\">Draft podcast</a>, which you can find <a href=\"https://itunes.apple.com/us/podcast/post-status-draft-wordpress/id976403008\">on iTunes</a>, <a href=\"https://play.google.com/music/m/Ih5egfxskgcec4qadr3f4zfpzzm?t=Post_Status__Draft_WordPress_Podcast\">Google Play</a>, <a href=\"http://www.stitcher.com/podcast/krogsgard/post-status-draft-wordpress-podcast\">Stitcher</a>, and <a href=\"http://simplecast.fm/podcasts/1061/rss\">via RSS</a> for your favorite podcatcher. Post Status Draft is hosted by Brian Krogsgard and this episode&#8217;s special guest, Carrie Dils.</p>\n<p><span>Carrie Dils has been self-employed for a long time. After years of client work, she now makes her full-time living through multiple different channels, but is not currently doing client services. In this episode, Brian and Carrie talk about various methods for generating revenue, and some helpful tools to do so.</span></p>\n<!--[if lt IE 9]><script>document.createElement(\'audio\');</script><![endif]-->\n<a href=\"https://audio.simplecast.com/61980.mp3\">https://audio.simplecast.com/61980.mp3</a>\n<p><a href=\"https://audio.simplecast.com/61980.mp3\">Direct Download</a></p>\n<h3>Links</h3>\n<ul>\n<li><a href=\"http://waitbutwhy.com/2013/10/why-procrastinators-procrastinate.html\">Why Procrastinators Procrastinate</a></li>\n<li><a href=\"https://convertkit.com\">ConvertKit</a></li>\n<li><a href=\"https://mailchimp.com\">Mailchimp</a></li>\n<li><a href=\"https://chimpessentials.com/\">Chimp Essentials Mailchimp course</a></li>\n<li><a href=\"https://officehours.fm/podcast/136-2/\">Paul Jarvis on Carrie&#8217;s podcast</a></li>\n<li><a href=\"https://pjrvs.com/signup/\">Sunday Dispatches</a></li>\n<li><a href=\"http://www.nerdmarketing.com/\">Nerd Marketing</a></li>\n<li><a href=\"https://amylynnandrews.com/\">Amy Lynn Andrews</a></li>\n<li><a href=\"https://en.todoist.com/\">Todoist</a></li>\n<li><a href=\"https://simplenote.com/\">Simplenote</a></li>\n<li><a href=\"http://gettingthingsdone.com/\">Getting Things Done</a></li>\n<li><a href=\"https://1password.com/\">1Password</a></li>\n<li><a href=\"https://poststatus.com/art-self-employed-web-consultant-draft-podcast/\">Interview with Diane Kinney</a></li>\n</ul>\n<h3>Links to Carrie&#8217;s Work</h3>\n<ul>\n<li><span><a href=\"https://carriedils.com/business-lessons/\">Experience as an Uber driver</a> </span></li>\n<li><span><a href=\"https://officehours.fm\">Office Hours</a> </span></li>\n<li><span><a href=\"https://carriedils.com/blog/\">Carrie’s blog</a> </span></li>\n<li><a href=\"https://carriedils.com/courses/\"><span>WordPress courses </span></a></li>\n<li><span><a href=\"https://store.carriedils.com/downloads/utility-pro/\">Utility Pro theme</a> </span></li>\n<li><span><a href=\"http://realworldfreelancing.com/\">Real World Freelancing book</a> </span></li>\n</ul>\n<h3>Sponsor: Prospress</h3>\n<p><span><a href=\"https://prospress.com/\">Prospress</a>  makes the WooCommerce Subscriptions plugin, that enables you to turn your online business into a recurring revenue business. Whether you want to ship a box or setup digital subscriptions like I have on Post Status, Prospress has you covered. Check out <a href=\"https://prospress.com/\">Prospress.com</a> for more, and thanks to Prospress for being a Post Status partner.</span></p>\n<p><em>Photo by Karyn Kelbaugh</em></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:\"Mon, 06 Mar 2017 15:44: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:14:\"Katie Richards\";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:11:\"\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:27:\"HeroPress: HeroPress at 100\";s: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:29:\"https://heropress.com/?p=1639\";s: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:39:\"https://heropress.com/heropress-at-100/\";s: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:5332:\"<img width=\"960\" height=\"547\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/03/heropress_media-1024x583.png\" class=\"attachment-large size-large wp-post-image\" alt=\"HeroPress Media Thumbnails\" /><p>March 8th we&#8217;ll have 100 HeroPress essays published. This seems like an auspicious time to look back at what we&#8217;ve built.</p>\n<p>Since the first one I&#8217;ve only missed maybe 2 weeks. One essay has been taken down for security reasons. Only once has anyone really stood me up, and only four times or so has anyone asked for more time at the last second. In those times someone always stepped up.</p>\n<p>A goal of mine has always been diversity, across a number of vectors. I did pretty poorly in the first few months and ended up with diversity debt. Here are some stats as of the 100th post:</p>\n<table border=\"1\">\n<tbody>\n<tr>\n<th>Men</th>\n<th>Women</th>\n<th>Americans</th>\n<th>Non-Americans</th>\n</tr>\n<tr>\n<td>55</td>\n<td>44</td>\n<td>34</td>\n<td>66</td>\n</tr>\n</tbody>\n</table>\n<p>That said, if you look at the last 50, the numbers look much more diverse:</p>\n<table border=\"1\">\n<tbody>\n<tr>\n<th>Men</th>\n<th>Women</th>\n<th>Americans</th>\n<th>Non-Americans</th>\n</tr>\n<tr>\n<td>22</td>\n<td>26</td>\n<td>16</td>\n<td>34</td>\n</tr>\n</tbody>\n</table>\n<p>I have the next 8 contributors planned out, and they continue to enhance the diversity of HeroPress.</p>\n<h3>Sponsorship</h3>\n<p>Last June XWP started sponsoring HeroPress. As I&#8217;ve mentioned many times before, I&#8217;m wary of mixing money with HeroPress, because I never want to make money from the stories of these people I admire and respect so much. That said, the sponsorship makes it easier for me to spend the time away from my family working on HeroPress. Some wise people have told me that using money appropriately won&#8217;t lose me any real friends, so there we are.</p>\n<p>If you&#8217;re interested in talking to me about sponsorship, just send me an email, topher at this domain.</p>\n<h3>The Future</h3>\n<p>I don&#8217;t have any plans for changing the way essays work. I have people lined up through the end of April. I&#8217;ve recently found some new ways to find WordPressers in places I couldn&#8217;t access before, and I&#8217;m excited about the new places we&#8217;re going to hear about.</p>\n<p>I&#8217;ve been talking for months about doing a podcast. It would simply be me and someone far away from me talking about how they work and live. I hesitate to talk to Americans, because I already know how they live and work, but on the other hand, people outside America might be interested. We&#8217;ll see what happens after some research.</p>\n<p>I have some ideas about scholarships and software accessibility programs, but I&#8217;m still putting those together. I&#8217;ve recently been contacted by another organization that wants to work together on a scholarship, and that sounds exciting.  Again, we&#8217;ll see what happens.</p>\n<h3>Thanks</h3>\n<p>I&#8217;d like to thanks everyone that&#8217;s been involved in making HeroPress great.  At this point there are too many to name. Those of you that have tweeted, blogged, podcasted, and generally spread the word are amazing. Thanks to those that have written essays especially.  Without contributors HeroPress wouldn&#8217;t exist at all.</p>\n<p>Thanks to those that have facilitated getting me to WordCamps like Pune, Europe, and US.</p>\n<p>Lastly, thanks to those that have committed to the future of HeroPress. I&#8217;m looking forward to all the things to come.</p>\n<div class=\"rtsocial-container rtsocial-container-align-right rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: HeroPress at 100\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=HeroPress%20at%20100&via=heropress&url=https%3A%2F%2Fheropress.com%2Fheropress-at-100%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: HeroPress at 100\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fheropress-at-100%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-linkedin-horizontal\"><div class=\"rtsocial-linkedin-horizontal-button\"><a class=\"rtsocial-linkedin-button\" href=\"https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Fheropress-at-100%2F&title=HeroPress+at+100\" rel=\"nofollow\" target=\"_blank\" title=\"Share: HeroPress at 100\"></a></div></div><div class=\"rtsocial-pinterest-horizontal\"><div class=\"rtsocial-pinterest-horizontal-button\"><a class=\"rtsocial-pinterest-button\" href=\"https://pinterest.com/pin/create/button/?url=https://heropress.com/heropress-at-100/&media=https://heropress.com/wp-content/uploads/2017/03/heropress_media-150x150.png&description=HeroPress at 100\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: HeroPress at 100\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/heropress-at-100/\" title=\"HeroPress at 100\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/heropress-at-100/\">HeroPress at 100</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</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:\"Sun, 05 Mar 2017 16: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:\"\";}}}}}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:108:\"WPTavern: Web Annotations are Now a W3C Standard, Paving the Way for Decentralized Annotation Infrastructure\";s: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:29:\"https://wptavern.com/?p=66802\";s: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:118:\"https://wptavern.com/web-annotations-are-now-a-w3c-standard-paving-the-way-for-decentralized-annotation-infrastructure\";s: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:13734:\"<a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2016/02/writing.jpg?ssl=1\"><img /></a>photo credit: <a href=\"https://stocksnap.io/photo/8Y0EDX4VP9\">Green Chameleon</a>\n<p><a href=\"https://www.w3.org/blog/news/archives/6156\" target=\"_blank\">Web annotations</a> became a W3C standard last week but the world hardly noticed. For years, most conversations on the web have happened in the form of comments. Annotations are different in that they usually reference specific parts of a document and add context. They are often critical or explanatory in nature.</p>\n<p>One of the key differences between comments and web annotations, according to the new standard, is that annotations were designed to be decentralized, creating &#8220;a new layer of interactivity and linking on top of the Web.&#8221; Comments are published by the publisher at the same location as the original content, but web annotation content is owned by the reader. Annotations don&#8217;t have to be published on the original content. The reader has the choice to publish using an &#8220;annotation service&#8221; or their own website.</p>\n<p>Doug Schepers, former Developer Relations Lead at W3C, described the difference between annotating and commenting on an <a href=\"http://thewebahead.net/60\" target=\"_blank\">episode on The Web Ahead podcast</a>:</p>\n<blockquote><p>When a comment is at the bottom of a page, it&#8217;s so abstracted out from the rest. They get off track, they start talking about other things that have nothing to do with the original article. If it&#8217;s an even vaguely political topic, you&#8217;ve got the partisans jumping in, yelling at one another, how they&#8217;re all idiots. You lose track with the content of the article. There&#8217;s this viscerality, this immediacy, of actually commenting on something in its context.</p></blockquote>\n<p>Do people want to annotate the web? Popular implementations of this concept, such as <a href=\"https://genius.com/web-annotator\" target=\"_blank\">Genius Web Annotator</a> and Medium&#8217;s annotation-style commenting, show that people enjoy interacting on the web in this way. The W3C Web Annotation Working Group&#8217;s goal in standardizing the technology behind web annotations was to produce a set of specifications for &#8220;interoperable, sharable, distributed Web Annotation architecture,&#8221; enabling healthy competition between services and discouraging publisher lock-in.</p>\n<p>Decentralization is critical to unlocking the full potential of annotations on the web. If commenters have control of their own content, they have the freedom to publish it wherever they like. Open comments sections can sometimes offer the illusion of discourse, but are ultimately under the control of the publisher. This is obvious if you&#8217;ve ever seen a controversial blog post, which should undoubtedly have comments with varying viewpoints, but the only comments published are those in agreement with the author.</p>\n<p>&#8220;This notion that whoever controls the original source also controls the dialog &#8211; that&#8217;s dangerous,&#8221; Schepers said. &#8220;This is why I like the idea of annotations. It&#8217;s inherent in the idea of annotations, this indie web aspect of, &#8216;I want to control what I say, what channels it goes out to.&#8217; I can&#8217;t control who puts it into a different channel but I can control what channels I try to put it out into. I can actively publish in multiple channels.&#8221;</p>\n<h3>Hypothesis Plugin Brings Web Annotations to WordPress</h3>\n<p><a href=\"https://hypothes.is\" target=\"_blank\">Hypothesis</a> is a non-profit organization that is building an open platform for annotation on the web, based on the <a href=\"http://annotatorjs.org/\" target=\"_blank\">Annotator.js</a> library. It allows readers to highlight text and select whether they want to annotate it or highlight it.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/03/hypothesis-annotations.png?ssl=1\"><img /></a></p>\n<p>The Hypothes.is community has an ecosystem of <a href=\"https://hypothes.is/tools-plug-ins-and-integrations/\" target=\"_blank\">tools and integrations</a> for various technologies and publishing platforms, including WordPress. The <a href=\"https://wordpress.org/plugins/hypothesis/\" target=\"_blank\">Hypothesis plugin on WordPress.org</a> offers the same functionality that you see on the Hypothesis website with the ability to select text and have a sidebar slide out for taking notes. Annotation requires an account with Hypothesis. You can test it by pasting any link into the tool on the <a href=\"https://hypothes.is/\" target=\"_blank\">Hypothesis</a> homepage.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/03/annotating.png?ssl=1\"><img /></a></p>\n<p>The mission of the Hypothesis project is &#8220;to bring a new layer to the web&#8221; that enables conversations on top of the world&#8217;s collected knowledge. The project also allows you to publish annotations privately, creating your own personal notebook of observations as you surf the web.</p>\n<p>The Hypothesis plugin allows users to customize the defaults and behavior and control where it&#8217;s loaded (front page, blog page, posts, pages, etc.) Highlights can be on or off by default and the sidebar can be collapsed or open. Annotations can also be enabled on PDFs in the Media Library. Hypotheses can be allowed/disallowed on a list of specific posts or pages, which is helpful for sites where the author may only want annotation on scholarly material.</p>\n<p><a href=\"https://github.com/kshaffer/hypothesis_aggregator\" target=\"_blank\">Hypothesis Aggregator</a> is another plugin for WordPress that offers a shortcode with different parameters for displaying annotations from the service. It allows site owners to display a collection of annotations from a certain user or topic.</p>\n<p><code>[hypothesis user = \'kris.shaffer\']</p>\n<p>[hypothesis tags = \'IndieWeb\']</p>\n<p>[hypothesis text = \"Domain of One\'s Own\"]</p>\n<p>[hypothesis user = \'kris.shaffer\' tags = \'IndieEdTech\']</code></p>\n<p>The output includes a link to the original content, the highlighted text, the annotation, and the person who curated it.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/03/hypothesis-aggregator.png?ssl=1\"><img /></a></p>\n<p>Kris Shaffer, the plugin&#8217;s author, is considering adding support for multiple tags (in both AND and OR configurations) as well as the ability to embed a single annotation in a post, like users can with a tweet.</p>\n<p>The Hypothesis network of annotators is growing, along with the vast collection of knowledge that is getting linked and added every day. The service just completed a record month with nearly 6,000 annotators contributing content.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">A record month <a href=\"https://twitter.com/hypothes_is\">@hypothes_is</a> in February: almost 6K active annotators made 112,385 <a href=\"https://twitter.com/hashtag/annotations?src=hash\">#annotations</a>. Did you help? <a href=\"https://t.co/R2DZaf6D7i\">https://t.co/R2DZaf6D7i</a> <a href=\"https://t.co/HWNVUXUS9s\">pic.twitter.com/HWNVUXUS9s</a></p>\n<p>&mdash; Hypothes.is (@hypothes_is) <a href=\"https://twitter.com/hypothes_is/status/836993180486684672\">March 1, 2017</a></p></blockquote>\n<p></p>\n<p>Members of the Hypothesis team are principal contributors to the Annotator project and the organization was also deeply involved in the effort to make web annotations a W3C standard. The Hypothesis community tools are quite frequently used in the context of scholarly or academic dialogue, but the app aims to bring annotation to all types of websites, including news, blogs, scientific articles, books, terms of service, ballot initiatives, legislation, and more.</p>\n<p>In a <a href=\"https://www.youtube.com/watch?v=2jTctBbX_kw\" target=\"_blank\">presentation</a> at the Personal Democracy Forum in 2013, Dan Whaley, founder and CEO of Hypothesis, described the organization&#8217;s motivation behind annotating all of the web&#8217;s collective knowledge:</p>\n<blockquote><p>Think back 1,000 years, reflect on the key documents produced over that time, like the Magna Carta in 1215 or the Declaration of Independence, for which we only have the document itself. What we&#8217;re missing are the notes passed between co-authors in the drafting, the reviews by others providing feedback on early versions. We lack the perception by the public immediately after and most of the fine-grained citations, quotations, and reuse in the intervening years. Those incessant arguments about why the founding fathers chose this or that particular phrasing &#8211; what if we had a much better idea, the direct record of their internal deliberations? There&#8217;s no shortage of things to annotate, and there&#8217;s more knowledge being created per minute now than ever before &#8211; laws, scientific articles, news, books, tweets, data &#8230;but our tools are crude, balkanized, ill-preserved, and even then only available on a small minority of what&#8217;s important.</p></blockquote>\n<p>The idea of web annotations is to capture the surrounding conversation that doesn&#8217;t necessarily fit into traditional comments, preserving it in a way that is open, sharable, and cooperates nicely with other technologies using the web&#8217;s standard.</p>\n<h3>What Does the W3C Standard Mean for the Future of Annotations?</h3>\n<p>Web annotation seems to promote more critical thinking and collaboration but it&#8217;s doubtful that it would ever fully replace commenting systems. The two serve different purposes and it&#8217;s more likely that annotations will serve to supplement conversations on the web. Not everyone is fond of the current implementations of annotation UI, which require visitors to keep clicking on things as they are reading.</p>\n<p>Despite being first being introduced to the web in the Mosaic browser prototype in 1993, annotation tools are still in their infancy. In a <a href=\"https://genius.com/Marc-andreessen-why-andreessen-horowitz-is-investing-in-rap-genius-annotated\" target=\"_blank\">post</a> announcing Andreessen Horowitz&#8217;s $15 million investment in Rap Genius, Marc Andreesen describes how the technology was almost built into the first web browser:</p>\n<p>&#8220;Only a handful of people know that the big missing feature from the web browser – the feature that was supposed to be in from the start but didn&#8217;t make it – is the ability to annotate any page on the Internet with commentary and additional information.&#8221;</p>\n<p>The implementation was pulled not too long after, because they didn&#8217;t have the capabilities required to host all the annotations and have it scale. For the past 24 years, various companies and organizations have taken a stab at bringing this feature back to the web &#8211; all with varying approaches that don&#8217;t necessarily play well together. That&#8217;s why the W3C standard is an important development.</p>\n<p>&#8220;While Hypothesis and others are already enabling annotation to take place over any page on the Web, a standard means that there is additional incentive for browser vendors to include this functionality natively,&#8221; Dan Whaley <a href=\"https://hypothes.is/blog/annotation-is-now-a-web-standard/\" target=\"_blank\">said</a>. &#8220;The more that these new collaborative layers are present without any additional action on the part of the user, the more their use will grow.&#8221;</p>\n<p>Whaley also said the new W3C standard should send a strong signal to those who have developed proprietary annotation implementations, such as Genius, Readcube, Medium, and Amazon (Kindle).</p>\n<p>&#8220;These technical recommendations have the weight of the web community behind them and can be relied upon,&#8221; Whaley said. &#8220;Our hope is that the standard will not only encourage others to adopt its technical approach, but also ultimately to open their platforms.&#8221;</p>\n<p>In an ideal world, Doug Schepers sees annotation as a feature that is &#8220;baked straight into the web,&#8221; where all users can choose where their content is published. Annotation services would then offer the ability for users to choose which syndicators and aggregators the content is going out to. Publishers in turn would have the ability to consume annotation content and bring it back through their commenting system if they feel it adds value.</p>\n<p>&#8220;We can refine things over time,&#8221; Schepers said. &#8220;We can improve our culture over time. It sounds kind of lofty and maybe sort of abstract, but I think that&#8217;s what annotations can help us do. It can actually increase the growth of ideas and not the suppression of ideas. It can improve how we create our culture in a more conscious way, in a way that includes more critical thinking.&#8221;</p>\n<p>Schepers said it&#8217;s too soon to know how the future will unfold for web annotations and whether or not browsers will be interested in supporting them natively. Annotations may be relegated to live in script libraries forever if they don&#8217;t catch on with browsers. Like any new layer of interaction on the web, it&#8217;s worth building to see how the initial idea evolves based on where the users take it.</p>\n<p>&#8220;I don&#8217;t know what&#8217;s going to happen with annotations,&#8221; Schepers said. &#8220;That&#8217;s what I&#8217;m excited by. I can think of all sorts of things that might happen with annotations if we truly enable this, but I&#8217;m more looking forward to the things that I didn&#8217;t see coming at all.&#8221;</p>\n<div id=\"epoch-width-sniffer\"></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, 03 Mar 2017 23:02: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";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:63:\"WPTavern: WPCampus 2017 to Take Place July 14-15 in Buffalo, NY\";s: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:29:\"https://wptavern.com/?p=66607\";s: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:\"https://wptavern.com/wpcampus-2017-to-take-place-july-14-15-in-buffalo-ny\";s: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:6398:\"<img />WPCampus Date\n<p><span class=\"st\">After the inaugural </span> WPCampus concluded <a href=\"https://2016.wpcampus.org/\">in 2016</a>, organizers <a href=\"https://wptavern.com/wpcampus-is-accepting-applications-to-host-the-event-in-2017\">put out a call</a> for campuses across the country to host the event in 2017. The WPCampus planning committee has <a href=\"https://2017.wpcampus.org/2017/02/23/announcing-second-annual-wpcampus-conference/\">announced</a> that <a href=\"https://2017.wpcampus.org/\">WPCampus 2017</a> will be held July 14-15, at <a href=\"https://2017.wpcampus.org/venue/\">Canisius College</a> in Buffalo, New York.</p>\n<p>In addition to announcing the date, the committee is accepting <a href=\"https://2017.wpcampus.org/call-for-speakers/\">speaker submissions</a> and <a href=\"https://2017.wpcampus.org/sponsors/\">looking for sponsors</a>. Speaker submissions will be accepted until March 24th, 2017.</p>\n<p>Rachel Carden, a Senior Software Engineer for Disney Interactive, came up with the idea for WPCampus in a Tweet published in August, 2015. Since then, the community has grown to more than 500 members.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">Ooh. Dream with me: \"<a href=\"https://twitter.com/hashtag/WordCampus?src=hash\">#WordCampus</a>: A WordCamp for folks using <a href=\"https://twitter.com/hashtag/WordPress?src=hash\">#WordPress</a> in Higher Education.\" I like it. <a href=\"https://twitter.com/hashtag/heweb?src=hash\">#heweb</a> <a href=\"https://t.co/m1zEkpkP4B\">https://t.co/m1zEkpkP4B</a></p>\n<p>&mdash; Rachel Carden (@bamadesigner) <a href=\"https://twitter.com/bamadesigner/status/628324358126235648\">August 3, 2015</a></p></blockquote>\n<p></p>\n<h2>Interview With Rachel Carden</h2>\n<p><strong>What did you learn from organizing the first WPCampus that will improve the second event?</strong></p>\n<p>Most of the lessons learned from WPCampus 2016 involved logistics. A brand new community planning a brand new event with very minimal people &#8216;on the ground&#8217; was challenging but, clearly, not impossible.</p>\n<p>Most of the changes we’ve implemented have been on how to make the time we spend planning more efficient, especially since we are an entirely volunteer-driven organization spread out all over the world.</p>\n<p>Overall, our first event was a success but there’s always little notes you take away for the next go round, like &#8216;make sure we take the group photo BEFORE everyone leaves&#8217; and highlighted at the top of the list: &#8216;make sure we have candy again.&#8217;</p>\n<p>Ultimately, our main priority is to ensure attendees aren’t worrying about the &#8216;where&#8217;, &#8216;what&#8217;, and &#8216;how&#8217; so they can instead focus on learning, networking, and making the most out of our short time together. This means taking notice of how we can improve communication, signage, etc.</p>\n<p>&#8216;The secret of all victory lies in the organization of the non-obvious&#8217; could not be more true. The biggest question we asked ourselves after WPCampus 2016 was &#8216;how can we create more opportunities for diverse interaction and discussion?&#8217;</p>\n<p>Our planning team has some great ideas and we’re excited to experiment a little, to see how a conference might be able to drive development outside the usual sessions and lightning talks. We’re really excited for what’s in store for our next event.</p>\n<p><strong>Will there be another WordPress in higher education survey?</strong></p>\n<p>I hope so! If not, it won’t be for lack of desire. Last <a href=\"https://wptavern.com/wpcampus-survey-results-indicate-misconceptions-of-wordpress-are-slowing-its-growth-in-higher-education\">year’s survey</a> offered an incredible amount of insight and data into how WordPress is being used in higher education. It would be great to see what has changed. Stay tuned!</p>\n<p><strong>Why was Canisius College chosen for the event?</strong></p>\n<p>We had some amazing universities apply and invite us all to their campus. An honor for which we are most grateful and appreciative. As was the case with WPCampus 2016, it was really hard to pick just one but ultimately, it comes down to what we believe is best overall for our attendees.</p>\n<p>We even have a grading matrix because, of course we do, we’re in higher education. Canisius College is a beautiful campus in a great location, especially since a majority of the WPCampus community is located in the eastern U.S. and Canada.</p>\n<p>The team at Canisius has also been extremely supportive and is working hard to make sure we have a great time in their top-notch facilities. Buffalo is also a great city with amazing architecture, food, and scenery that we’re excited to explore.</p>\n<h2>WPCampus Is Aiming for Sessions With a Variety of Perspectives</h2>\n<p>For a glimpse into what WPCampus <a href=\"https://2017.wpcampus.org/about/\">is all about</a>, check out these recaps from those who attended the event in 2016. You can also watch most of the sessions from the event via the <a href=\"https://2016.wpcampus.org/schedule/\">schedule page</a>.</p>\n<ul>\n<li><a href=\"https://calderawp.com/2016/07/wpcampus-2016-recap/\">WPCampus 2016 Recap</a></li>\n<li><a href=\"https://www.thewpcrowd.com/wordpress/wordcamps/wpcampus-2016/\">WPCampus 2016: WordPress in Higher Education</a></li>\n<li><a href=\"https://wpdistrict.sitelock.com/blog/wp-campus-a-wordpress-event-focused-on-higher-education/\">WPCampus – A WordPress Event Focused on Higher Education</a></li>\n<li><a href=\"http://davidbisset.com/wpcampus-review/\">WPCampus Review</a></li>\n</ul>\n<p>Registration is not yet available but will open soon.</p>\n<p>&#8220;We aim for our session topics to be a good mix of WordPress in higher ed as well as solely higher ed and solely WordPress,&#8221; Carden said.</p>\n<p>&#8220;We recognize the value and inspiration in all perspectives. We hope the general WordPress community, and other higher ed communities, will see the value in investing in WPCampus and its mission to advance higher education by lending their time, knowledge and experience.&#8221;</p>\n<p>To receive updates related to the event, you can follow <a href=\"https://twitter.com/wpcampusorg\">WPCampus</a> on Twitter or keep an eye on the <a href=\"https://2017.wpcampus.org/announcements/\">announcements page</a>.</p>\n<div id=\"epoch-width-sniffer\"></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, 03 Mar 2017 17:24: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";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:28:\"Matt: Henry Crown Fellowship\";s: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:22:\"https://ma.tt/?p=47132\";s: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:45:\"https://ma.tt/2017/03/henry-crown-fellowship/\";s: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:645:\"<p>I&#8217;m very excited to have been selected to join the <a href=\"http://agln.aspeninstitute.org/fellowships/henrycrown/classes/XXI\">Henry Crown Fellowship Class of 2017</a>. Many, many folks I admire including Reed Hastings, Kim Polese, Cory Booker, Aileen Lee, Stephen DeBerry, Deven Parekh, Chris Sacca, Tim Ferriss, Reid Hoffman, Scott Heiferman, Troy Carter, Bre Pettis, Lupe Fiasco, and Alexa von Tobel have been through the program in previous years, and several of those people have spoken highly of it to me. I&#8217;m excited to meet and get to know the rest of the 2017 class, and embark on a learning journey alongside them.</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, 03 Mar 2017 16: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: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: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:83:\"WPTavern: Do You Enjoy WordPress Meetups? Let the Community Marketing Team Know Why\";s: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:29:\"https://wptavern.com/?p=66806\";s: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:\"https://wptavern.com/do-you-enjoy-wordpress-meetups-let-the-community-marketing-team-know-why\";s: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:2722:\"<p>When Matt Mullenweg, co-founder of the WordPress project, delivers his annual <a href=\"https://ma.tt/2016/12/state-of-the-word-2016/\">State of The Word presentation</a>, he always gives props to meetup organizers and attendees. In 2016, there were 3,193 meetup events in 58 countries attended by 62,566 people. <a href=\"https://www.meetup.com/topics/wordpress/\">Meetups</a> are one of the cornerstones of the community and for many are the gateway to discovering WordPress.</p>\n<p>In an effort to raise awareness of the project and its community, the Community Marketing team, a subgroup of the <a href=\"https://make.wordpress.org/marketing/\">Marketing team</a>, is asking volunteers to <a href=\"https://make.wordpress.org/community/2017/03/01/meetup-video-testimonials-we-need-your-help/\">record video testimonials</a> at WordCamps and meetups in March and April. The team wants to hear stories from users on why they use WordPress and how they&#8217;ve benefited from attending meetups.</p>\n<p>Other questions to consider asking include:</p>\n<ul>\n<li>How long have you been using WordPress.</li>\n<li>What brought you to the Meetup?</li>\n<li>How has coming to this Meetup affected you?</li>\n</ul>\n<p>Videos should be 1-5 minutes in length and <a href=\"http://wordpress.tv/submit-video/\">uploaded to WordPress.tv</a> under the Testimonies category. Ideal recording conditions are a quiet room with decent lighting and good audio. Recordings can be planned or spontaneous and minimal post production editing is encouraged. Also consider making the videos more accessible by adding <a href=\"https://wordpress.tv/using-amara-org-to-caption-or-subtitle-a-wordpress-tv-video/\">captions and translations</a>.</p>\n<p>The idea has received positive feedback with meetup attendees and organizers stating their <a href=\"https://make.wordpress.org/community/2017/03/01/meetup-video-testimonials-we-need-your-help/#comment-23138\">intention to participate</a>. For an example on how to record WordPress testimonials, check out this video by Troy Dean where he interviews attendees at <a href=\"http://wordpress.tv/event/wordcamp-sunshine-coast-2016/\">WordCamp Sunshine Coast</a> 2016.</p>\n<div class=\"embed-wrap\"></div>\n<p>If there&#8217;s not a <a href=\"https://www.meetup.com/topics/wordpress/\">WordPress meetup</a> in your area, consider organizing one yourself using <a href=\"https://wptavern.com/guide-to-starting-and-maintaining-a-wordpress-meetup\">our guide</a>. For additional advice, I recommend this <a href=\"http://ithemes.com/publishing/run-wordpress-meetup/\">free ebook by iThemes</a> that includes interviews with several organizers who share their experience managing meetups.</p>\n<div id=\"epoch-width-sniffer\"></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, 02 Mar 2017 23:56: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:13:\"Jeff Chandler\";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:63:\"WPTavern: WordPress.com Announces New Importer for Medium Posts\";s: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:29:\"https://wptavern.com/?p=66836\";s: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:\"https://wptavern.com/wordpress-com-announces-new-importer-for-medium-posts\";s: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:6732:\"<a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2016/08/typewriter.jpg?ssl=1\"><img /></a>photo credit: <a href=\"https://stocksnap.io/photo/4OURRGDU7Z\">Sergey Zolkin</a>\n<p>Medium started 2017 on uncertain footing, <a href=\"https://blog.medium.com/renewing-mediums-focus-98f374a960be#.xij39212w\" target=\"_blank\">laying off a third of its staff</a> in January after admitting that its ad-based business model was not working.</p>\n<p>&#8220;We had started scaling up the teams to sell and support products that were, at best, incremental improvements on the ad-driven publishing model, not the transformative model we were aiming for,&#8221; Medium CEO Ev Williams said. &#8220;To continue on this trajectory put us at risk — even if we were successful, business-wise — of becoming an extension of a broken system. Upon further reflection, it’s clear that the broken system is ad-driven media on the internet.&#8221;</p>\n<p>Williams said that Medium will be taking &#8220;a different, bolder approach&#8221; to this problem of driving payment for quality content but that &#8220;it is too soon to say exactly what this will look like.&#8221; Medium may be <a href=\"https://twitter.com/rrhoover/status/827340315681923072\" target=\"_blank\">experimenting with paid subscriptions</a> in the future, but the company has yet to articulate its next strategy for monetization.</p>\n<h3>WordPress.com Now Offers an Importer Tool for Medium</h3>\n<p>Publishers that don&#8217;t want to stick around for Medium&#8217;s next round of experimentation can now easily migrate to WordPress. Automattic <a href=\"https://en.blog.wordpress.com/2017/03/02/import-your-medium-posts-to-wordpress-com/\" target=\"_blank\">announced</a> a new Medium importer for WordPress.com today and the company also plans to make it available to self-hosted WordPress sites through Jetpack.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/03/wordpressdotcom-medium-importer.png?ssl=1\"><img /></a></p>\n<p>Medium users can export content to a zip file and then upload it into WordPress.com&#8217;s import tool. The import includes posts, tags, images, and videos and takes approximately 15 minutes to complete. Previously, Medium sites could be imported into WordPress using an RSS importer plugin, but there were significant drawbacks to this approach. WordPress.com&#8217;s importer tool takes this into account.</p>\n<p>&#8220;Using the provided RSS file from Medium&#8217;s export archive was not sufficient, because some of the post data, like embeds, is missing,&#8221; Automattic developer Marko Andrijašević said. &#8220;Because of that, we are combining the data available in RSS and exported HTML files to accurately reproduce the post&#8217;s content.&#8221;</p>\n<p>Medium hasn&#8217;t made it easy for publishers to leave with their full content and has changed the format of its exports multiple times in the past. Andrijašević said this is one of the reasons it took WordPress.com so long to add an importer, along with the fact that the provided data in the exported archive was not sufficient to import everything correctly.</p>\n<p>&#8220;We’ll have Jetpack support coming soon for self-hosted sites,&#8221; Andrijašević said. &#8220;One other workaround for self-hosted site owners would be to use the Medium importer on WordPress.com, and then generate a WXR (WordPress eXtended RSS) file with our exporter. The WXR can then be used with WordPress importer on any self-hosted site.&#8221;</p>\n<p>In addition to its uncertain future and unsightly permalinks, Medium gives users plenty of other reasons to be wary of the platform. <a href=\"https://www.buzzfeed.com/charliewarzel/when-you-launch-your-publication-the-same-day-medium-changes\" target=\"_blank\">Publishers were not notified in advance</a> about the company&#8217;s &#8220;renewed focus&#8221; and its plan to abandon the advertising model. Medium&#8217;s product is its users&#8217; content and the company&#8217;s <a href=\"https://medium.com/policy/medium-terms-of-service-9db0094a1e0f#.c309bw63n\" target=\"_blank\">terms of service</a> state that it can use that content to promote its own products and services, enable advertising, and &#8220;remove any content you post for any reason.&#8221;</p>\n<p>Part of the appeal of Medium is that it removes the burden of site management. Publishers are now expected to navigate things like AMP, FB Instant Articles, social networks, and SEO to drive traffic to their websites. With Medium, publishers are trading site ownership for convenience. If the company is not able to find a workable way to monetize users&#8217; content, it has a very real chance of joining the hundreds of <a href=\"https://indieweb.org/site-deaths\" target=\"_blank\">blogging silos that have died</a> or been bought by a competitor simply to be shut down and have their technology reabsorbed.</p>\n<p>Medium&#8217;s publishing experience is entirely geared towards making the company successful by monetizing the efforts of publishers on its network. In a post titled <a href=\"http://practicaltypography.com/billionaires-typewriter.html\" target=\"_blank\">The Billionaire&#8217;s Typewriter</a>, Matthew But­t­er­ick writes about how the platform&#8217;s limitations on features and customization are designed to &#8220;let Medium extract value from the talent and labor of others.&#8221; He describes digital sharecropping in its shiniest form:</p>\n<blockquote><p>Be­cause in re­turn for that snazzy de­sign, Medium needs you to relinquish con­trol of how your work gets to readers.</p>\n<p>Tempt­ing per­haps. But where does it lead? I fear that writ­ers who limit them­selves to pro­vid­ing “con­tent” for some­one else’s “branded plat­form” are go­ing to end up with as much lever­age as cows on a dairy farm.</p>\n<p>Medium is a new kind of type­writer—the bil­lion­aire’s type­writer. It’s not the only bil­lion­aire’s type­writer. So is the Kin­dle. So is iBooks. So is Twit­ter. <strong>What dis­tin­guishes these new type­writ­ers is not the pos­si­bil­i­ties they make available to writers, but what they take away.</strong></p></blockquote>\n<p>Publishers who want to determine the trajectory and reach of their own work need to migrate to a more stable platform where they have full control of their content. It&#8217;s not yet clear how Medium plans to monetize in the future, but the company will undoubtedly continue reaping the economic rewards of its publishers&#8217; work. Whether you choose open source software or some other avenue, it&#8217;s worth leaving Medium&#8217;s grand experiment in order to own your own work.</p>\n<div id=\"epoch-width-sniffer\"></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, 02 Mar 2017 22:10:11 +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:13:\"Sarah Gooding\";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:63:\"WPTavern: WPWeekly Episode 265 – Interview with Matt Medeiros\";s: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:58:\"https://wptavern.com?p=66822&preview=true&preview_id=66822\";s: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:\"https://wptavern.com/wpweekly-episode-265-interview-with-matt-medeiros\";s: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:3596:\"<p>In this episode, <a href=\"http://marcuscouch.com/\">Marcus Couch</a> and I are joined by <a href=\"http://craftedbymatt.com/\">Matt Medeiros</a>, co-founder of <a href=\"http://slocumstudio.com/\">Slocum Studio</a>. Medeiros developed <a href=\"https://conductorplugin.com/\">Conductor</a>, a WordPress plugin that enables people to display content in blocks, similar to the approach that <a href=\"https://wptavern.com/wordpress-core-editor-team-publishes-ui-prototype-for-gutenberg-an-experimental-block-based-editor\">WordPress core is taking</a>. He shares his thoughts and opinions on core&#8217;s approach and how it might impact the content builder market.</p>\n<p>Since Medeiros co-founded Slocum Studio with his father, Mark Medeiros, we discover what it&#8217;s like to operate a web development agency with a family dynamic. Last but not least, he shares his experience in the <a href=\"https://slocumthemes.com/\">commercial theme market</a> and gives us a first-hand account of what it was like to go through the <a href=\"https://make.wordpress.org/themes/handbook/review/\">theme review process</a>. Based on the experience, Medeiros says he will not submit new themes to the directory.</p>\n<h2>Stories Discussed:</h2>\n<p><a href=\"https://wptavern.com/nextgen-gallery-patches-critical-sql-injection-vulnerability\">NextGEN Gallery Patches Critical SQL Injection Vulnerability</a><br />\n<a href=\"https://wptavern.com/amazon-s3-outage-hits-wordpress-businesses-disrupting-service-and-support\">Amazon S3 Outage Hits WordPress Businesses, Disrupting Services and Support</a><br />\n<a href=\"https://wptavern.com/freemius-launches-insights-for-wordpress-themes\">Freemius Launches Insights for WordPress Themes</a></p>\n<h2>Plugins Picked By Marcus:</h2>\n<p><a href=\"https://wordpress.org/plugins/woo-simple-ads-server/\">WooCommerce Simple Ads Server</a> lets you create ads and campaigns for selling your own WooCommerce products on other websites. It lists all of your WooCommerce products on the back-end with options to create and assign banners for each product. It also provides all the scripts and embed codes necessary for your banners.</p>\n<p><a href=\"https://wordpress.org/plugins/wp-keyword-monitor/\">WP Keyword Monitor</a> uses the official API from Google to track your organic keyword rankings. You can track up to 100 keywords per day. This plugin provides full reports and displays a running graph of your rankings and statistics over time.</p>\n<p><a href=\"https://wordpress.org/plugins/private-uploads/\">Private Uploads</a> protects sensitive uploaded files so that only logged-in users can access them. This plugin moves your designated private files to a separate folder and configures the web server to ask WordPress to authenticate access to files in that folder. It&#8217;s more efficient than similar plugins because it only rubs when serving files in the private folders.</p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, March 8th 3:00 P.M. Eastern</p>\n<p><strong>Subscribe To WPWeekly Via Itunes: </strong><a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\" target=\"_blank\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via RSS: </strong><a href=\"https://wptavern.com/feed/podcast\" target=\"_blank\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via Stitcher Radio: </strong><a href=\"http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr\" target=\"_blank\">Click here to subscribe</a></p>\n<p><strong>Listen To Episode #265:</strong><br />\n</p>\n<div id=\"epoch-width-sniffer\"></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:\"Wed, 01 Mar 2017 23:28: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";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:48:\"HeroPress: WordPress Opened Up a Whole New World\";s: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:56:\"https://heropress.com/?post_type=heropress-essays&p=1620\";s: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:\"https://heropress.com/essays/wordpress-opened-whole-new-world/\";s: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:10886:\"<img width=\"960\" height=\"480\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/03/030117-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: If it hadn\'t been for WordPress, I would never have experience being part of an open-source community.\" /><h3>Before WordPress</h3>\n<p>Several years ago, I went through a tough time in my life. I lost my job and I was desperately in need of a career change. Because of the economic climate in Zimbabwe, I didn&#8217;t see many options, but I felt that IT held the most promising future.</p>\n<p>So I completed an A+ course and obtained a CCNA certification. Unfortunately, in Zimbabwe, skills and certifications were not enough to secure meaningful employment. Being a college drop-out, I didn&#8217;t have the required diploma or degree that employers were looking for.</p>\n<p>That&#8217;s when I enrolled in a diploma in management of information systems. In this course, there was a module called “Programming and Web Design”. I was introduced to HTML, CSS and Javascript, among other programming languages. But it was only an introduction… it wasn&#8217;t enough to be able to create my own website.</p>\n<p>After graduating, I studied online tutorials and learned how to create a website. That was the beginning of my personal website, franksweb.org, a static HTML website that I created from scratch.</p>\n<p>Not long after that, I was hired by an an online design and marketing firm that was looking for a web developer. To my surprise, I found that they only used content management systems (CMS) to create websites. No one was making static HTML websites!</p>\n<p>Joomla! was the preferred CMS at this company. It wasn&#8217;t until I was assigned to create a website for a local recording artist that I discovered WordPress. I was searching for templates that suited the client&#8217;s needs and discovered a template that just happened to be WordPress!</p>\n<p>I had heard of WordPress, even though they didn&#8217;t teach us about content management systems in my diploma course. All I knew was that WordPress was a free blogging service.</p>\n<blockquote><p>I had no idea how much more was possible using WordPress.</p></blockquote>\n<p>I soon discovered the numerous advantages of using WordPress over Joomla! (There&#8217;s a reason why 27% of the web uses WordPress, whereas Joomla! is used by only 3%!) Soon after, I re-designed <a href=\"https://franksweb.org/\" target=\"_blank\">franksweb.org</a> using WordPress. So began my love affair with WordPress.</p>\n<h3>Freelancing</h3>\n<p>After having worked for my employer for a little over one and a half years, receiving a very small salary, the time came for me to move on. My employer had been failing to pay our salaries and owed me a lot of money in back pay (which has never been paid to me to this day). So I had no choice but to leave and I started freelancing.</p>\n<p>Since I started freelancing, all the websites I&#8217;ve created for my clients (except for one) have been WordPress sites. WordPress has empowered me to make a living from creating functional websites that are easy to manage for my clients.</p>\n<p>Here in Zimbabwe, very few web designers and web developers create static HTML websites. The majority use content management systems, and for good reason. Of course, the overwhelming majority are WordPress sites. This is just a testament to how WordPress makes our jobs easier and the potential to make money using WordPress.</p>\n<h3>The WordPress Community</h3>\n<p>One thing that we were taught in my diploma course was the importance of continuous professional development (CPD). That, and the fact that I had a genuine passion for all things WordPress, led me to soak up anything WordPress-related that I could get my hands on. I watched a lot of Morten Rand-Hendriksen&#8217;s tutorials on lynda.com to advance my skills. The WordPress.org website became a permanent tab on my desktop whenever you opened my web browser (my “WordPress Bible”). I also made sure the “WordPress News” box was always open in all my Dashboards so I could keep up with the latest in WordPress.</p>\n<p>One day I saw a <a href=\"https://wptavern.com/\" target=\"_blank\">WPTavern</a> article in my Dashboard calling for applications to participate in the first WordCamp incubator program. I was very interested since Zimbabwe had never had a WordCamp before. I didn’t know of anyone else in Harare who had the same desire but I applied anyway.</p>\n<p>More than a hundred cities applied so I honestly wasn’t expecting my application to be chosen, especially because of the challenges that my country is facing.</p>\n<blockquote><p>I was shocked when I got an email from Rocio Valdivia and Hugh Lashbrooke saying they wanted to interview me for the incubator program.</p></blockquote>\n<p>Later on, I received an email from Andrea Middleton saying my application to be a WordCamp organizer had been accepted! This was a very exciting time for me. It was now going to be possible to experience the things I had read about the WordPress Community here in Zimbabwe, too.</p>\n<a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/03/meetup_at_CSZ-min.jpeg\"><img class=\"size-large wp-image-1627\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/03/meetup_at_CSZ-min-1024x576.jpeg\" alt=\"First meetup at the Computer Society of Zimbabwe, August 20, 2016\" width=\"960\" height=\"540\" /></a>First meetup at the Computer Society of Zimbabwe, August 20, 2016\n<p>The first thing that I needed to do was start a monthly WordPress meetup group in Harare because there was no regular meetup that I was aware of, and therefore no real WordPress Community. It was a struggle but thanks to the guidance and support of WordCamp Central, and the support of the <a href=\"http://www.csz.org.zw/\" target=\"_blank\">Computer Society of Zimbabwe</a>, we were able to have meetups and the membership grew.</p>\n<blockquote><p>Months later, we hosted the very first WordCamp in Zimbabwe: WordCamp Harare 2016.</p></blockquote>\n<p>It was a success and much better than I thought it would be. Along with our monthly meetups, WordCamp did a lot to promote awareness of the WordPress Community. Since then, quite a number of local WordPress users have become active in the WordPress Community. I absolutely love hosting meetups and sharing knowledge about something which I am passionate about.</p>\n<a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/03/wordcamp_at_harare_city_library-min.jpg\"><img class=\"size-large wp-image-1628\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/03/wordcamp_at_harare_city_library-min-1024x678.jpg\" alt=\"First WordCamp Harare at Harare City Library\" width=\"960\" height=\"636\" /></a>First WordCamp Harare at Harare City Library\n<p>On a personal level, working with the WordPress Community opened up a world that I didn&#8217;t know existed within WordPress. I got to know so many amazing people and everyone has been helpful and kind. The WordPress Community is made up of people who are generous and willing to give their time and share knowledge with others. For me, it is very fulfilling to be able to give back to something which I have benefited from so much.</p>\n<p>One of the highlights of WordCamp for me was meeting Job Thomas and Herman Kok, two of our speakers who came from South Africa. They both work for <a href=\"https://automattic.com/\" target=\"_blank\">Automattic</a>, the company that owns WordPress.com, WooCommerce, Jetpack and other WordPress-related products. (Before I became active in the WordPress Community, I had no idea Automattic had an office in South Africa!) Talking to them, I got a strong sense that they were passionate, not only about what they do, but about sharing their knowledge and experience with others.</p>\n<p>I was encouraged and inspired to apply to work for Automattic. The position that I wish to apply for is called “Happiness Engineer”. Basically, your job is customer support. For me, this is a dream job: getting paid to do something that I have a passion for which is share my knowledge of WordPress with others. They say that if you find something that you love to do, you&#8217;ll never work another day in your life. So currently, I spend time helping other users in Automattic product forums in order to gain more direct experience before I apply.</p>\n<p>This past year has been an awesome journey for me. If it wasn&#8217;t for WordPress, I would never have experienced being part of an open-source community and the doors that have opened for me. There are so many awesome people that I never would have gotten to know. WordPress truly changed my life.</p>\n<div class=\"rtsocial-container rtsocial-container-align-right rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: WordPress Opened Up a Whole New World\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=WordPress%20Opened%20Up%20a%20Whole%20New%20World&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Fwordpress-opened-whole-new-world%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: WordPress Opened Up a Whole New World\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Fwordpress-opened-whole-new-world%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-linkedin-horizontal\"><div class=\"rtsocial-linkedin-horizontal-button\"><a class=\"rtsocial-linkedin-button\" href=\"https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Fessays%2Fwordpress-opened-whole-new-world%2F&title=WordPress+Opened+Up+a+Whole+New+World\" rel=\"nofollow\" target=\"_blank\" title=\"Share: WordPress Opened Up a Whole New World\"></a></div></div><div class=\"rtsocial-pinterest-horizontal\"><div class=\"rtsocial-pinterest-horizontal-button\"><a class=\"rtsocial-pinterest-button\" href=\"https://pinterest.com/pin/create/button/?url=https://heropress.com/essays/wordpress-opened-whole-new-world/&media=https://heropress.com/wp-content/uploads/2017/03/030117-150x150.jpg&description=WordPress Opened Up a Whole New World\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: WordPress Opened Up a Whole New World\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/essays/wordpress-opened-whole-new-world/\" title=\"WordPress Opened Up a Whole New World\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/wordpress-opened-whole-new-world/\">WordPress Opened Up a Whole New World</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</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:\"Wed, 01 Mar 2017 12:00: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Thabo Tswana\";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:91:\"WPTavern: HackerOne Launches Free Community Edition for Non-Commercial Open Source Projects\";s: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:29:\"https://wptavern.com/?p=66592\";s: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:102:\"https://wptavern.com/hackerone-launches-free-community-edition-for-non-commercial-open-source-projects\";s: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:5076:\"<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/02/hackerone-logo.png?ssl=1\"><img /></a></p>\n<p><a href=\"https://www.hackerone.com\" target=\"_blank\">HackerOne</a>, the vulnerability coordination and bug bounty platform, has launched a new <a href=\"https://www.hackerone.com/product/community\" target=\"_blank\">Community Edition</a> for open source projects. The company is built around the notion that, &#8220;given enough eyeballs, all vulnerabilities are shallow.&#8221; HackerOne announced a <a href=\"https://www.hackerone.com/blog/The-best-security-initiative-you-can-take-in-2017\" target=\"_blank\">$40 million round of funding</a> earlier this month, which allows the company to expand its market and add new features to the platform.</p>\n<p>Open source projects are one area where HackerOne is expanding its reach. The company participates in the <a href=\"https://internetbugbounty.org/\" target=\"_blank\">Internet Bug Bounty</a> program, which helps secure core internet infrastructure and open source software, but HackerOne is now opening up its own platform.</p>\n<p>&#8220;One of the goals I have had in my work with HackerOne is to build an even closer bridge between HackerOne and the open source community,&#8221; community strategy consultant Jono Bacon said. Bacon <a href=\"http://www.jonobacon.org/2017/02/09/hackerone-professional-free-open-source-projects/\" target=\"_blank\">announced</a> the availability of HackerOne&#8217;s new <a href=\"https://www.hackerone.com/product/community\" target=\"_blank\">Community Edition</a>, which has not yet been formally announced but is already open for applicants.</p>\n<p>The Community Edition has all the same features as HackerOne&#8217;s Professional Edition, including vulnerability submission/coordination, duplicate detection, hacker reputation, analytics, and more. The only difference is that it doesn&#8217;t include paid customer support and program assistance. It also integrates with many popular issue tracking tools, such as JIRA, GitHub, Bugzilla, Zendesk, Track, and others.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/02/hackerone-community-edition.png?ssl=1\"><img /></a></p>\n<p>Although the name &#8220;Community Edition&#8221; might suggest to some that it is self-hosted, HackerOne actually provides it as a SaaS offering with no setup or deployment required.</p>\n<p>Open source projects are eligible if they meet a few requirements:</p>\n<ul>\n<li>Must be open source projects covered by an <a href=\"https://opensource.org/licenses\" target=\"_blank\">OSI license</a></li>\n<li>Be active and at least 3 months old (age is defined by shipped releases/code contributions)</li>\n<li>Include a SECURITY.md in the project root that provides details for how to submit vulnerabilities (<a href=\"https://github.com/discourse/discourse/blob/master/docs/SECURITY.md\" target=\"_blank\">example</a>)</li>\n<li>Display a link to your HackerOne profile from either the primary or secondary navigation on the project&#8217;s website</li>\n<li>Maintain an initial response to new reports of less than a week</li>\n</ul>\n<p>WordPress doesn&#8217;t have its own listing in the HackerOne directory but <a href=\"https://hackerone.com/automattic\" target=\"_blank\">Automattic&#8217;s page</a> says the company also welcomes reports for WordPress, BuddyPress, and bbPress. Automattic has had 446 bugs resolved through its program on HackerOne, which it has maintained for the past three years. A handful of other WordPress-related projects are also listed in the directory, including the <a href=\"https://hackerone.com/wordpoints\" target=\"_blank\">WordPoints</a> plugin, <a href=\"https://hackerone.com/iandunn-projects\" target=\"_blank\">Ian Dunn&#8217;s projects</a>, and <a href=\"https://hackerone.com/flox\" target=\"_blank\">Flox</a>.</p>\n<p>Having a crowd-sourced security program in place is becoming more critical, as breeches are costing companies billions of dollars every year. The World Economic Forum&#8217;s <a href=\"http://www3.weforum.org/docs/GRR/WEF_GRR16.pdf\" target=\"_blank\">2016 Global Risks Report</a> estimated that &#8220;crimes in cyberspace cost the global economy an estimated $445 billion.&#8221;</p>\n<p>Not all organizations listed on HackerOne offer bug bounties, but bounties are a proven method of attracting security talent. Since HackerOne launched, its customers have resolved more than 37,000 vulnerabilities and have paid out more than $13 million in bug bounties. By the end of 2016, HackerOne&#8217;s community of hackers had grown to nearly 100,000.</p>\n<p>The new <a href=\"https://www.hackerone.com/product/community\" target=\"_blank\">Community Edition</a> gives smaller open source projects and organizations exposure to HackerOne&#8217;s network of thousands of security researchers and the tools for managing communication about vulnerabilities. Projects applying for the Community Edition must be non-commercial and able to run an effective security program. Applications are usually answered within one business week.</p>\n<div id=\"epoch-width-sniffer\"></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:\"Wed, 01 Mar 2017 04:56: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:13:\"Sarah Gooding\";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:57:\"WPTavern: Freemius Launches Insights for WordPress 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:29:\"https://wptavern.com/?p=66740\";s: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:\"https://wptavern.com/freemius-launches-insights-for-wordpress-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:8722:\"<p>Freemius Insights <a href=\"https://freemius.com/blog/freemius-insights-wordpress-themes/\">has announced</a> that its <a href=\"https://freemius.com/\">analytics service</a> that was previously <a href=\"https://wptavern.com/freemius-insights-enables-plugin-developers-to-make-data-driven-decisions\">only available to WordPress plugins</a> is now available for themes. The company was founded in 2015 by <a href=\"https://twitter.com/vovafeldman\">Vova Feldman</a> and his team after discovering how much information is not available to developers who host plugins and themes on the official WordPress directories and marketplaces.</p>\n<img />Freemius Insights for Themes\n<p>Freemius Insights for themes gives developers an opportunity to collect a large variety of data, including, email addresses, PHP, plugin, WordPress version distribution, and more. When a user installs a theme that uses Freemius, an opt-in prompt is displayed that notifies them that data will be sent to Freemius.com to help improve the product. Selecting Skip prevents data from reaching Freemius.com.</p>\n<img />Freemius Opt-in Prompt\n<p>Feldman says that he and his team have worked closely with the <a href=\"https://make.wordpress.org/themes/\">WordPress Theme Review Team</a> to ensure that Freemius Insights does not violate the theme directory <a href=\"https://make.wordpress.org/themes/handbook/review/required/\">requirements.</a> One of the most informative features that Freemius Insights provides is the ability for users to provide feedback if they decide to switch to a different theme.</p>\n<p>When a user switches away from a product using Freemius, a prompt is shown with randomly displayed questions asking for feedback. These responses are saved and can be viewed at a later time in the Freemius dashboard. If a user switches themes because it doesn&#8217;t have a specific feature and it&#8217;s added at some point, a developer can go back and notify them that the feature exists.</p>\n<h2>Data Collection Leads to Description, Settings, and Documentation Improvements for FooBox</h2>\n<p>Adam Warner, Co-founder of <a href=\"https://fooplugins.com\">FooPlugins.com</a>, added Freemius Insights to <a href=\"https://wordpress.org/plugins/foobox-image-lightbox/\">FooBox</a>, an image lightbox plugin after noticing that other plugins were collecting opt-in usage data. His team realized they needed the data but didn&#8217;t have the resources to build a custom solution in a reasonable amount of time.</p>\n<p>Warner shares what he discovered with the data collected by Freemius. &#8220;Install, uninstall, deactivation, and feedback data is some of the most important data we&#8217;ve obtained,&#8221; he responded.</p>\n<p>&#8220;Not long after we discovered that of those who deactivated the plugin, the two top reasons were &#8216;expected something else&#8217; and &#8216;didn&#8217;t understand how it works.&#8217; That is valuable insight that we might not have had otherwise and allowed us to revamp our plugin description on .org and in the plugin settings.&#8221;</p>\n<p>One of the main reasons for collecting data is to improve the product. Based on the data collected, improvements to FooBox were geared towards documentation and the plugin&#8217;s settings pages, &#8220;After learning from the insights that Freemius provided us, we wrote longer explanations of various settings and what they do, as well as putting in links to documentation and video walkthroughs,&#8221; he said.</p>\n<h2>Freemius Usage Data Ramps Up Priority for NextGEN Gallery Wizard</h2>\n<p>NextGEN Gallery is Freemius&#8217; most popular plugin tracked so I asked Erick Danzer, Founder and CEO of Imagely, makers of NextGEN Gallery, what his team has learned and if any improvements are a direct result of the data collected.</p>\n<p>Since adding Freemius to NextGEN Gallery, the opt-in form has been exposed to about 200K new users. Out of these, 37.5% or 75K users have opted to submit data.</p>\n<p>&#8220;We&#8217;ve learned that 21% of users deactivate or uninstall the plugin entirely,&#8221; Danzer said. &#8220;Conversely, that means we have about a 79% retention rate. It&#8217;s hard to know how that compares to the WordPress ecosystem as a whole, but our sense is that retention rate is not bad (even if we&#8217;d like it to be better). I&#8217;d love to see comparative data across other plugins at some point.&#8221;</p>\n<p>Of those who uninstall the plugin, 20% which is the largest share, do so because they don&#8217;t understand how it works, &#8220;This wasn&#8217;t a surprise. We know that NextGEN Gallery is powerful and thus overwhelming to some users,&#8221; Danzer said. &#8220;But this is the first time we&#8217;ve been able to put actual numbers on that behavior.&#8221;</p>\n<p>Some of the biggest improvements to NextGEN Gallery that are a result of the data that&#8217;s been collected deal with the user interface. &#8220;We now know that 21% of users uninstall and that the biggest reason is too much complexity getting started,&#8221; Danzer said. &#8220;That tells us that if we want to improve our retention rate, we need to make it easier to start.&#8221;</p>\n<p>&#8220;To that end, we&#8217;ve done two things. First, we just released a start-up Gallery Wizard late last fall that walks new users through the process of setting up their first gallery. Second, we&#8217;re about 70% done with an overhaul of the interface to simplify the presentation of options. These are both things we probably would have done anyways, but we upped their priority based on Freemius data.&#8221;</p>\n<h2>Data From Freemius Insights Points to a Common Dead-end With Plugins</h2>\n<p>For more than a year, Freemius Insights has been collecting mountains of data for plugins. Feldman was gracious enough to supply the Tavern with some interesting data. There are more than 750 developers registered to the site and more than 400K users have opted-in to usage tracking. <a href=\"https://wordpress.org/plugins/nextgen-gallery/\">NextGEN Gallery</a> is the service&#8217;s most popular tracked plugin active on more than 1.5M sites.</p>\n<p>Out of the plugins tracked, there have been 114K feedback responses on why users deactivated a plugin. The top five reasons plugins were deactivated are:</p>\n<ul>\n<ul>\n<li>23% Expected something else / didn&#8217;t work as expected</li>\n<li>21% Didn&#8217;t understand how it works</li>\n<li>20% No longer needed</li>\n<li>13% Found a better alternative</li>\n<li>6% Didn’t work</li>\n</ul>\n</ul>\n<p>The most interesting aspect of this data is the second most popular reason why users deactivate a plugin. When users activate a plugin, many don&#8217;t know what the next step is. It could be searching for a link to the settings page or not doing anything at all. Most of the time, users have no idea because the plugin doesn&#8217;t tell them.</p>\n<p><a href=\"https://wordpress.org/plugins/woocommerce/\">WooCommerce</a> is a good example of a plugin that bucks this trend with an <a href=\"https://docs.woocommerce.com/document/woocommerce-onboarding-wizard/\">onboarding wizard</a> that when completed, puts users in a place where they can immediately start selling products.</p>\n<img />WooCommerce Onboarding Wizard\n<p>Not every plugin is as complex as WooCommerce and doesn&#8217;t need a onboarding wizard. For these use cases, developers might consider using <a href=\"https://code.tutsplus.com/articles/integrating-with-wordpress-ui-admin-pointers--wp-26853\">Admin Pointers</a>, a feature that was added in WordPress 3.3. With Admin Pointers you can inform users about a new feature or provide further instructions after a plugin is activated.</p>\n<p>Insights for Themes is free for non-commercial themes however, only two weeks of historical aggregated metrics and the 100 most recent user emails will be collected. In exchange for aggregating the data, Freemius asks that a symbolic attribution that &#8216;freemius&#8217; is a contributor be added to the theme&#8217;s readme.txt file. No email exports or webhooks are included with the free plan.</p>\n<p>Freemius is an example of a service that is filling a huge void of nonexistent data from WordPress.org for plugin and theme authors. A void that <a href=\"https://wptavern.com/solving-the-mystery-of-how-people-actually-use-wordpress\">doesn&#8217;t appear likely</a> to be filled anytime soon. As noted above, the data that is collected, especially direct feedback from users, has surfaced issues that may not have otherwise been discovered.</p>\n<p>If you use Freemius Insights in your plugins or themes, please tell us about your experience and what you&#8217;ve learned from the collected data.</p>\n<div id=\"epoch-width-sniffer\"></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, 28 Feb 2017 22:43: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:13:\"Jeff Chandler\";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:85:\"WPTavern: Amazon S3 Outage Hits WordPress Businesses, Disrupting Services and 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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=66751\";s: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:\"https://wptavern.com/amazon-s3-outage-hits-wordpress-businesses-disrupting-service-and-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5853:\"<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/02/Amazon_Web_Services_logo_AWS.jpg?ssl=1\"><img /></a></p>\n<p>Amazon is currently experiencing &#8220;high error rates with S3 in US-EAST-1,&#8221; causing a massive outage for sites, apps, and services across the web. The <a href=\"https://status.aws.amazon.com/\" target=\"_blank\">AWS service health dashboard</a> was also temporarily affected by the outage. Amazon says it is working at repairing S3 and that they believe they have identified the root cause.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\"><a href=\"https://twitter.com/awscloud\">@awscloud</a> Care to share the architecture of this status page as an anti-pattern?</p>\n<p>&mdash; Thorben Heins (@thorbenheins) <a href=\"https://twitter.com/thorbenheins/status/836657580382502912\">February 28, 2017</a></p></blockquote>\n<p></p>\n<p>The outage is affecting many popular sites, such as Quora, Netflix, Splitwise, Business Insider, Giphy, Trello, IFTTT, many publishers&#8217; image hosting, filesharing in Slack, and the Docker Registry Hub.</p>\n<p>WordPress businesses are also currently affected, especially those that host customer downloads. WooCommerce customers are currently unable to access downloads they purchased. Similarly Envato customers are having difficulty accessing downloads and content.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">Yes, we are affected by <a href=\"https://twitter.com/hashtag/AWS?src=hash\">#AWS</a> <a href=\"https://twitter.com/hashtag/S3?src=hash\">#S3</a> outage too. S3 is having a snag right now&#8230;. Quora, Slack, Envato and millions more are suffering&#8230;</p>\n<p>&mdash; WPBakery (@wpbakery) <a href=\"https://twitter.com/wpbakery/status/836663834437955584\">February 28, 2017</a></p></blockquote>\n<p></p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">We\'re aware of issues with functionality of the <a href=\"https://t.co/dGuVluPt9A\">https://t.co/dGuVluPt9A</a> site, such as My Downloads. This is related to the <a href=\"https://twitter.com/awscloud\">@awscloud</a> outage</p>\n<p>&mdash; WooCommerce (@WooCommerce) <a href=\"https://twitter.com/WooCommerce/status/836663491805216768\">February 28, 2017</a></p></blockquote>\n<p></p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">Amazon S3 has identified high error rate issue that\'s impacting the Envato Market specifically our downloads and content. We are monitoring!</p>\n<p>&mdash; Envato Help (@envato_help) <a href=\"https://twitter.com/envato_help/status/836653583428771840\">February 28, 2017</a></p></blockquote>\n<p></p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">Downloading and updating our premium plugins is possible again, after a short downtime due to problems at S3. Sorry for the inconvenience!</p>\n<p>&mdash; Yoast (@yoast) <a href=\"https://twitter.com/yoast/status/836684468513558529\">February 28, 2017</a></p></blockquote>\n<p></p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">Due to the AWS outage, we are experiencing problems with sales, support, and development.  Please accept our apologies&#8230;we\'ll be back soon!</p>\n<p>&mdash; WP Ninjas, LLC (@wpninjas) <a href=\"https://twitter.com/wpninjas/status/836662320088539136\">February 28, 2017</a></p></blockquote>\n<p></p>\n<p>Joost de Valk, CEO and founder of <a href=\"https://yoast.com/\" target=\"_blank\">Yoast</a>, said the company experienced minor effects from the outage but has already been planning on switching from S3 to a new storage provider.</p>\n<p>“The outage doesn’t seem to have affected our revenue much,&#8221; de Valk said. &#8220;It was slightly annoying and led to some images not working and people not being able to download their plugins for a while, which is always a shame. However, not directly related to this, we’re already looking at ditching S3. That&#8217;s because our new hosting setup at SiteGround combined with CDN from MaxCDN actually negates the need for S3 entirely.&#8221;</p>\n<p>Other companies that have AWS integrated into their support services experienced more disruption due to customers not being able to receive help.</p>\n<p>&#8220;Obviously our website is hosted using AWS technology through Pagely,&#8221; <a href=\"http://wpninjas.com/\" target=\"_blank\">WP Ninjas</a> co-founder James Laws said. &#8220;I’m not sure how they’ve been affected directly, but we have noticed intermittent downtime. Perhaps the biggest impact is that our support service is built on AWS and with it down we are completely unable to provide any support to our users.&#8221;</p>\n<p>Laws said the company has had fairly decent uptime with AWS in the past and that the idea of switching services because of an outage would not be worth the effort.</p>\n<p>&#8220;The truth is that 100% uptime is more a fantasy than anything,&#8221; Laws said. &#8220;The idea of having to move a website or change a support system temporarily or even permanently for a short period of downtime would be pretty daunting. You probably could create contingency plans for something like this, but the technical and administrative costs are not generally worth it in my opinion.&#8221;</p>\n<p>The outage serves as a painful reminder of how dependent the web is on cloud storage providers and how few services have a backup plan for instances like these.</p>\n<p>At 12:52 PM PST Amazon released an update, promising improvements for customers within the hour: &#8220;We are seeing recovery for S3 object retrievals, listing and deletions. We continue to work on recovery for adding new objects to S3 and expect to start seeing improved error rates within the hour.&#8221; The ability to retrieve, list, and delete was fully recovered within half an hour and Amazon continues to work on fixing the ability to add new objects to S3.</p>\n<div id=\"epoch-width-sniffer\"></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, 28 Feb 2017 21:54: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";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:42:\"Donncha: Coming up in WP Super Cache 1.5.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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://odd.blog/?p=89500157\";s: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:\"https://odd.blog/2017/02/28/coming-up-in-wp-super-cache-1-5-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:5618:\"<p>The next version of WP Super Cache will be one with some big changes! There are many small bug fixes and improvements but the one I&#8217;m most excited about is moving the legacy cache files into the supercache directory.</p>\n<p>The legacy cache files were the files created by the old WP-Cache plugin upon which this plugin is based. They&#8217;re really useful as they store the headers sent from the server as well as the page contents. If you&#8217;re serving pages that aren&#8217;t regular html, such as JSON or XML you don&#8217;t want to tell the browser they&#8217;re text/html documents. This caching method is also used for anyone who is logged into your site, or left a comment.<br />\nThere is a problem however. They&#8217;re stored in one directory. If you have many thousands of visitors interacting with your site you may end up with a directory containing thousands of files. The names of the cache files are a hash of the URL, gzip support and browser cookies so one file can match one user, or one file can be used by thousands of anonymous users. In the event that someone left a comment on a popular post the plugin has to search through all those files looking for the pages cached for other users who were also looking at that page. On a busy server that can cause problems.</p>\n<p>So, in <a href=\"https://github.com/Automattic/wp-super-cache/pull/177\">#177</a> I added code that moves the legacy cache files into the supercache directory. That means the files are stored in directories that reflect the URL of the page that was served which makes it very easy to delete the cached files belonging to that page as they&#8217;re all in the same directory!</p>\n<p>The new code will look in the old location for legacy files first as some sites will have a large collection of cached files, but any new cache files will be created in the supercache directory.</p>\n<p>Ian Dunn <a href=\"https://github.com/Automattic/wp-super-cache/pull/121\">submitted code</a> to cache the REST API. It&#8217;s not yet complete but we&#8217;ll be able to build on the changes to the legacy cache to make caching the API more efficient than it would have been before.</p>\n<p>I really need people to help test this. The latest code is running on this site so I&#8217;m very confident in how well it works but just because it works on my odd little server doesn&#8217;t mean it will work right everywhere. If you want to give it a spin, visit <a href=\"https://github.com/Automattic/wp-super-cache\">the plugin Github repository</a> and click on the &#8220;Clone or download&#8221; button. If you don&#8217;t know how to clone a Git respository just grab the zip file and install it on your server, overwriting the files in the plugins/wp-super-cache/ directory. If the changes to where cache files go doesn&#8217;t interest you, some of the changes in this list might:</p>\n<ul>\n<li><a href=\"https://github.com/Automattic/wp-super-cache/commit/b654bcf6d75655e386f22c2fcbad19272b0d75cd\">Don’t output broken warning in robots.txt</li>\n<li><a href=\"https://github.com/Automattic/wp-super-cache/commit/8b63d5d97f246ba4d442e7b5d32a4d08fce4fd22\">Use get_home_url() instead of siteurl because some sites have different homepages</a></li>\n<li><a href=\"https://github.com/Automattic/wp-super-cache/pull/176\">Remove most calls to get_all_supercache_filenames()</a></li>\n<li><a href=\"https://github.com/Automattic/wp-super-cache/pull/145\">Fix bottom border in admin</a></li>\n<li><a href=\"https://github.com/Automattic/wp-super-cache/pull/199\">Use plugins_url() so https links work</a></li>\n<li><a href=\"https://github.com/Automattic/wp-super-cache/pull/55\">Preload from the newest post</a></li>\n<li><a href=\"https://github.com/Automattic/wp-super-cache/pull/101\">Stop caching of wp-admin visits sooner</a></li>\n<li><a href=\"https://github.com/Automattic/wp-super-cache/pull/177\">Store legacy cache files in the supercache directories</a></li>\n<li><a href=\"https://github.com/Automattic/wp-super-cache/pull/100\">Make the headers more informative to tell how a page was served</a></li>\n<li><a href=\"https://github.com/Automattic/wp-super-cache/pull/90\">Properly serve 304 requests</a></li>\n<li><a href=\"https://github.com/Automattic/wp-super-cache/pull/188\">Apply realpath to filenames because of Windows oddities</a></li>\n<li><a href=\"https://github.com/Automattic/wp-super-cache/pull/127\">Don&#8217;t flush(), output buffers don&#8217;t like it</a></li>\n<li><a href=\"https://github.com/Automattic/wp-super-cache/pull/194\">Add more file checks around wp_cache_rebuild_or_delete()</a></li>\n<li><a href=\"https://github.com/Automattic/wp-super-cache/pull/191\">If HTTP_HOST is not defined then disable caching</a></li>\n<li><a href=\"https://github.com/Automattic/wp-super-cache/pull/190\">Only show html comments on html pages</a></li>\n<li><a href=\"https://github.com/Automattic/wp-super-cache/issues/184\">Fix caching of mobile requests</a></li>\n<li><a href=\"https://github.com/Automattic/wp-super-cache/pull/61\">Clear the cache for private posts</a></li>\n</ul>\n\n<p><strong>Related Posts</strong><ul><li> <a href=\"https://odd.blog/2008/10/24/wp-super-cache-084-the-garbage-collector/\" rel=\"bookmark\" title=\"Permanent Link: WP Super Cache 0.8.4, the garbage collector\">WP Super Cache 0.8.4, the garbage collector</a></li><li> <a href=\"https://odd.blog/2009/01/09/wp-super-cache-087/\" rel=\"bookmark\" title=\"Permanent Link: WP Super Cache 0.8.7\">WP Super Cache 0.8.7</a></li><li> <a href=\"https://odd.blog/2010/02/08/wp-super-cache-099/\" rel=\"bookmark\" title=\"Permanent Link: WP Super Cache 0.9.9\">WP Super Cache 0.9.9</a></li></ul></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:\"Tue, 28 Feb 2017 15:05: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:7:\"Donncha\";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:70:\"WPTavern: NextGEN Gallery Patches Critical SQL Injection Vulnerability\";s: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:29:\"https://wptavern.com/?p=66611\";s: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:\"https://wptavern.com/nextgen-gallery-patches-critical-sql-injection-vulnerability\";s: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:2804:\"<p><a href=\"https://blog.sucuri.net/author/slavco/\">Slavco Mihajloski</a>, security researcher at <a href=\"https://sucuri.net/\">Sucuri</a>, <a href=\"https://blog.sucuri.net/2017/02/sql-injection-vulnerability-nextgen-gallery-wordpress.html\">has discovered</a> a critical SQL injection vulnerability in <a href=\"https://wordpress.org/plugins/nextgen-gallery/\">NextGEN Gallery</a>, a popular WordPress plugin that&#8217;s active on more than a million sites.</p>\n<p>Mihajloski gives the vulnerability a 9 out of 10 on Sucuri&#8217;s DREAD scale. Dread stands for Damage, Reproducibility, Exploitability, Affected Users, and Discoverability.</p>\n<p>Each category receives a score between 0 and 10. The <a href=\"https://blog.sucuri.net/2015/03/understanding-wordpress-plugin-vulnerabilities.html\">DREAD score</a> is obtained by adding the totals from each category and then dividing by five. The higher the score, the more severe the vulnerability.</p>\n<p>The SQL injection vulnerability affects NextGEN Gallery versions 2.1.77 and below. Version 2.1.79 is patched and was released four days ago. Those who use NextGEN basic tagcloud gallery or allow visitors to submit posts to be reviewed by contributors are especially at risk.</p>\n<p>&#8220;This vulnerability allows an unauthenticated user to grab data from the victim’s website database, including sensitive user information,&#8221; Mihajloski said.</p>\n<p>&#8220;This issue existed because NextGEN Gallery allowed improperly sanitized user input in a WordPress prepared SQL query, which is basically the same as adding user input inside a raw SQL query. Using this attack vector, an attacker could leak hashed passwords and WordPress secret keys, in certain configurations.&#8221;</p>\n<p>Although 2.1.79 patches the vulnerability, the <a href=\"https://wordpress.org/plugins/nextgen-gallery/changelog/\">plugin&#8217;s changelog</a> doesn&#8217;t indicate a critical security issue was fixed. Eric Danzer, Founder and CEO of Imagely, makers of NextGEN Gallery, <a href=\"https://twitter.com/ErickDanzer/status/836315264002232321\">explained on Twitter</a> why it&#8217;s not mentioned in the changelog.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\"><a href=\"https://twitter.com/perezbox\">@perezbox</a> <a href=\"https://twitter.com/jeffr0\">@jeffr0</a> We just wanted updates underway before drawing attention. We\'ll update changelog for accuracy in a subsequent release.</p>\n<p>&mdash; Erick Danzer (@ErickDanzer) <a href=\"https://twitter.com/ErickDanzer/status/836315264002232321\">February 27, 2017</a></p></blockquote>\n<p></p>\n<p>Users are strongly encouraged to update <a href=\"https://wordpress.org/plugins/nextgen-gallery/\">NextGEN Gallery</a> to version 2.1.79 as soon as possible.</p>\n<div id=\"epoch-width-sniffer\"></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, 27 Feb 2017 23:05: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";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:121:\"WPTavern: Linus Torvalds Shares Lessons from 25 Years of Open Source Project Maintainership, Decries Tech Innovation Hype\";s: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:29:\"https://wptavern.com/?p=66408\";s: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:131:\"https://wptavern.com/linus-torvalds-shares-lessons-from-25-years-of-open-source-project-maintainership-decries-tech-innovation-hype\";s: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:6230:\"<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/02/linus-torvalds-open-source-summit.png?ssl=1\"><img /></a></p>\n<p>Linux creator Linus Torvalds joined Jim Zemlin, executive director of the Linux Foundation, on stage at the <a href=\"http://events.linuxfoundation.org/events/open-source-leadership-summit\" target=\"_blank\">Open Source Leadership Summit</a> for a candid conversation on maintaining open source projects. After 25 years of maintaining the Linux kernal, Torvalds has developed a network of trust that enables the project to iterate quickly with its 2.5 month release cycle.</p>\n<p>The current pace of Linux development sees 10K lines of code added, 8K lines subtracted, and 1800 lines modified every single day. Torvalds described how Linux contributors learned to modularize the code and development model so they can accomplish more in parallel, while working independently. He used to read through all the patches but quickly found himself becoming a bottleneck to progress. Ensuring code quality on the project is no longer about micromanaging all the patches but about finding the people Torvalds can trust.</p>\n<p>&#8220;We have a very strong network and that&#8217;s why we can have 1,000 people involved in every release,&#8221; Torvalds said. &#8220;There&#8217;s this whole human potential there that we use very extensively to make sure the process works. And it&#8217;s taken 25 years to get to where we are on a process level, too.&#8221;</p>\n<p>Torvalds described how the project revolves around individual contributors building a trusted reputation with maintainers and how one moves from casual contributor status to become part of the network of trust.</p>\n<p>&#8220;When people move between companies, the trust does not stay with the company,&#8221; Torvalds said. &#8220;The trust stays with the person. Obviously people do not stay around forever. People come and go. One of the reasons people sometimes think it&#8217;s hard to get into the kernel, is because you think you can just come in and shoot off a patch and go away, but that&#8217;s not how it works. What really takes time is to shoot off a lot of small patches until you reach the point where the maintainers trust you and at that point you have become something more than the guy who sends patches. You&#8217;ve become part of the whole network of trust.&#8221;</p>\n<p>Increasing levels of trust among contributors allows maintainers to oversee a rapid pace of development. Ten years ago, when Torvalds wanted to move an 8-week release schedule, he said everyone knew he was pushing for something unrealistically short. They have been cranking out releases every 2.5 months since then and Torvalds said it &#8220;solved so many things we didn&#8217;t even know needed to be solved.&#8221; Linux maintainers found their way to a successful development model by experimenting until it clicked.</p>\n<p>&#8220;If you want to do something new, something that is really pushing the envelope, nobody can really say &#8216;This is the way to do it,\'&#8221; Torvalds said. &#8220;What you need to do is a lot of trial and error. I often compare software development to biological processes where really it is evolution. It is not intelligent design. I&#8217;m there in the middle of the thing and I can tell you, it is absolutely not intelligent design. You have a lot of people with ideas of where things need to go and then you need to have a marketplace where you can try them out. And that&#8217;s what open source allows &#8211; all these different groups to go off, do their own thing, and then come back and say I did this, and it actually worked.&#8221;</p>\n<p>Zemlin asked him if he ever experienced an &#8220;a-ha moment&#8221; where he realized that Linux was much bigger than what he thought he started. Torvalds said that although a couple of moments have taken him by surprise, the biggest moment was six months after releasing it when it went past being a personal project. He suddenly didn&#8217;t even know the people sending him patches. Twenty five years later, it&#8217;s the people doing the work who still inspire him.</p>\n<p>&#8220;I&#8217;m a huge believer in the 99% perspiration, 1% inspiration thing,&#8221; Torvalds said. &#8220;The innovation that this industry talks about so much is bullshit. Anybody can innovate. Don&#8217;t do this big, &#8216;Think different&#8217; innovation thing. Screw that; it&#8217;s meaningless. 99% of it is &#8216;Get the work done.&#8217; That&#8217;s my least favorite part of the technology news cycle: the constant innovation and new ideas, &#8216;<em>This will revolutionize</em>,&#8217; all that hype &#8211; that&#8217;s not where the real work is. The real work is in the details.&#8221;</p>\n<p>Not all open source projects could be successful with the same model and leadership that Torvalds has brought to Linux development, but the kernel is arguably one of the most active and successful GPL-licensed projects. Zemlin noted that nearly 900 organizations participate in all the different Linux Foundation programs, creating code in almost every aspect of computing from mobile phones to cars to home appliances. It wouldn&#8217;t be possible without Torvalds&#8217; laser focus on continuing the work he started.</p>\n<p>&#8220;I&#8217;m obviously one of those people who likes to concentrate on one project,&#8221; Torvalds said. &#8220;I don&#8217;t like flitting from one idea to another. You need the people who just flutter about and come up with ideas, but they&#8217;re not the really useful ones. They end up being the ones who maybe give the ideas to the ones doing the work. What anybody should take away from this talk &#8211; the people who actually do the work are the ones you should really listen to. These days I don&#8217;t actually do the work anymore &#8211; I merge other people&#8217;s work. But I would like conferences, too, to be less about the visionary innovation thing and more about the day-to-day what are my problems and how do I want to solve them.&#8221;</p>\n<p>Check out the video below to watch the full session with Linus Torvalds and Jim Zemlin:</p>\n<div class=\"embed-wrap\"></div>\n<div id=\"epoch-width-sniffer\"></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, 27 Feb 2017 20:15: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:13:\"Sarah Gooding\";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:84:\"WPTavern: Learn How to Find and Exploit XSS Vulnerabilities with Google’s XSS Game\";s: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:29:\"https://wptavern.com/?p=66571\";s: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:\"https://wptavern.com/learn-how-to-find-and-exploit-xss-vulnerabilities-with-googles-xss-game\";s: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:3105:\"<p>In 2016, Acunetix, a UK-based security firm, found that <a href=\"http://www.acunetix.com/blog/articles/33-websites-webapps-vulnerable-xss/\" target=\"_blank\">33% of websites and web apps are vulnerable to XSS</a>. This number is down 5% from the company&#8217;s findings for the previous year, but it&#8217;s still one of the most common vulnerabilities. In fact, every WordPress security release for the past year has included patches for <a href=\"https://en.wikipedia.org/wiki/Cross-site_scripting\" target=\"_blank\">cross-site scripting</a> (XSS) vulnerabilities, including 4.5.2, 4.5.3, 4.6.1, 4.7.1, 4.7.2, and many other previous releases.</p>\n<p>Google has created a fun and educational <a href=\"https://xss-game.appspot.com/\" target=\"_blank\">XSS game</a> that teaches new bug hunters how to find and exploit XSS vulnerabilities. Each challenge teaches students how to inject a script to pop up an alert() within the training application. The first few levels are fairly easy and it gets progressively more difficult.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/02/xss-game-level-1.png?ssl=1\"><img /></a></p>\n<p>It was designed for developers who work on web apps but do not specialize in security. Google&#8217;s goal with the game is to help developers get better at recognizing the vulnerabilities in their own code:</p>\n<blockquote><p>This security game consists of several levels resembling real-world applications which are vulnerable to XSS &#8211; your task will be to find the problem and attack the apps, similar to what an evil hacker might do. </p>\n<p>XSS bugs are common because they have a nasty habit of popping up wherever a webapp deals with untrusted input. Our motivation is to highlight common coding patterns which lead to XSS to help you spot them in your code.</p></blockquote>\n<p>The intro to the game tempts new recruits to hone their skills with promises to pay mercenaries up to <a href=\"https://www.google.com/about/appsecurity/reward-program/index.html#rewards\" target=\"_blank\">$7,500 for discovering XSS bugs</a> in the Google&#8217;s most sensitive products. It gives a nice introduction to common attack vectors for XSS vulnerabilities and congratulates winners with a cake and a <a href=\"http://Google\'s application security resource\" target=\"_blank\">link to more in-depth XSS documentation</a> from Google&#8217;s collection of application security resources.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/02/xss-game-cake-complete.png?ssl=1\"><img /></a></p>\n<p>The <a href=\"https://xss-game.appspot.com/\" target=\"_blank\">XSS game</a> has been around for a few years and provides a fun way to start your XSS learning if you have a few minutes over the weekend. With the constant stream of security updates for WordPress core, plugins, and themes, it&#8217;s good to get a basic understanding of what many of these patches are for. After a little bit of study and practice, you may be able to find XSS vulnerabilities in applications and help make the internet more secure.</p>\n<div id=\"epoch-width-sniffer\"></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, 25 Feb 2017 19:31: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:13:\"Sarah Gooding\";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:63:\"Post Status: Running a successful regional agency, with Ben May\";s: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://poststatus.com/?p=34480\";s: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:\"https://poststatus.com/running-successful-regional-agency-ben-may/\";s: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:1657:\"<p>Welcome to the Post Status <a href=\"https://poststatus.com/category/draft\">Draft podcast</a>, which you can find <a href=\"https://itunes.apple.com/us/podcast/post-status-draft-wordpress/id976403008\">on iTunes</a>, <a href=\"https://play.google.com/music/m/Ih5egfxskgcec4qadr3f4zfpzzm?t=Post_Status__Draft_WordPress_Podcast\">Google Play</a>, <a href=\"http://www.stitcher.com/podcast/krogsgard/post-status-draft-wordpress-podcast\">Stitcher</a>, and <a href=\"http://simplecast.fm/podcasts/1061/rss\">via RSS</a> for your favorite podcatcher.</p>\n<p><span>In this episode, Brian interviews Ben May to talk about running <a href=\"https://thecode.co/\">The Code Company</a>, a semi-remote agency based in Queensland, Australia. The Code Company works primarily with long term clients and repeat work, and they’ve grown from just Ben to a team of 11 almost entirely by referrals for new customers.</span></p>\n<p><a href=\"https://audio.simplecast.com/61169.mp3\">https://audio.simplecast.com/61169.mp3</a><br />\n<a href=\"https://audio.simplecast.com/61169.mp3\">Direct Download</a></p>\n<h3>Links</h3>\n<ul>\n<li><a href=\"https://thecode.co/\">The Code Company</a></li>\n</ul>\n<h3>Sponsor: WooCommerce</h3>\n<p><span>This episode of the Draft podcast is sponsored by <a href=\"https://woocommerce.com/\">WooCommerce</a>. WooCommerce makes the most widely used eCommerce platform on the web, and has the power and flexibility you need to power your store. For more information on how to run your store with WordPress and WooCommerce, check out <a href=\"https://woocommerce.com/\">their website</a> and thank you to WooCommerce for being a Post Status partner. </span></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, 25 Feb 2017 18:41: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:14:\"Katie Richards\";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:71:\"WPTavern: FOSSA Raises $2.2M to Automate Open Source License Compliance\";s: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:29:\"https://wptavern.com/?p=66487\";s: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:\"https://wptavern.com/fossa-raises-2-2m-to-automate-open-source-license-compliance\";s: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:4631:\"<p>Kevin Wang and his team at <a href=\"http://fossa.io/\" target=\"_blank\">FOSSA</a> have carved out a niche for themselves in the open source product space with the launch of their license compliance and dependency analysis tool. The company <a href=\"https://medium.com/fossa/announcing-fossa-public-beta-funding-8cf56cf8ebc6#.3titvmvwe\" target=\"_blank\">announced a $2.2 million seed round</a> this week after completing a year-long private beta period with Fortune 500 companies. FOSSA continuously scans dependencies and offers reports at each commit to help companies meet the legal obligations of compliance as they are incorporating open source libraries.</p>\n<p>The <a href=\"http://fossa.io/pricing/\" target=\"_blank\">public beta</a> is now free and open to anyone, offering support for up to 5 public/private repos and scanning three levels deep with open source reports. A $499/repo per month commercial option is also available with unlimited scan depth and customizable open source reports.</p>\n<p>&#8220;It’s mind-boggling that in 2017, software companies don’t really know what’s in their code,&#8221; Wang said. &#8220;90% of it now comes from third parties like open source (OSS) codebases. Although it sounds trivial, it’s actually really difficult to keep track of what your developers use. Most of this code isn’t explicitly included — instead it’s brought in automatically by complex tool behavior or one of the million ways developers <a href=\"https://medium.com/fossa/you-cant-get-around-code-scanning-if-you-care-about-open-source-licenses-2db1fde43fb5#.pb9mtykaf\" target=\"_blank\">casually share code</a>.&#8221;</p>\n<p>FOSSA can detect license and policy violations and unlicensed dependencies before an expensive mistake is fully integrated into a project. The real-time feedback forces developers to consider how they are using the libraries they are building into their software.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/02/fossa-example.jpeg?ssl=1\"><img /></a></p>\n<p>Competitors like <a href=\"https://www.whitesourcesoftware.com/\" target=\"_blank\">WhiteSource</a> and <a href=\"https://www.blackducksoftware.com\" target=\"_blank\">Black Duck Software</a>, which offer open source risk management tools, detect and display licenses for components and dependencies for applications but seem more focused on bugs and vulnerability reporting. FOSSA is solely focused on OSS license compliance and automating disclosure and attribution.</p>\n<p>Compliance is becoming increasingly difficult as developers can easily execute a few commands and import dozens of npm modules that inherit licensing obligations from a myriad of different sources. Even governments and large companies with plenty of resources struggle to keep track of all the open source requirements of the software they are using.</p>\n<p>In 2013, <a href=\"https://www.techdirt.com/articles/20131018/13291924928/healthcaregov-violates-open-source-license.shtml\" target=\"_blank\">Healthcare.gov violated an open source license</a> when it used the DataTables jQuery plugin without the required attribution. Last year, <a href=\"http://venturebeat.com/2016/05/10/oracle-vs-google-in-9-billion-retrial-over-use-of-java-in-android/\" target=\"_blank\">Google was embroiled in a court battle with Oracle</a> over the use of Java in Android.</p>\n<p>A tool like FOSSA could have helped Wix catch its <a href=\"https://wptavern.com/wix-removes-gpl-licensed-wordpress-code-from-mobile-app-forks-original-mit-library\" target=\"_blank\">violation of the GPL in 2016</a> when the company used GPL-licensed code from the WordPress mobile app and distributed it in its proprietary app. FOSSA aims to catch licensing issues before they become expensive problems for developers to rework and lawyers to settle.</p>\n<p>A few years before beginning work on FOSSA, Wang built <a href=\"https://tldrlegal.com/\" target=\"_blank\">tl;drLegal</a>, a site that explains software licenses in plain English. The free resource received backing from the Open Source Initiative and has been used by more than a million developers. Wang said he &#8220;sees FOSSA as an attempt to tackle similar problems in a commercial scenario.&#8221;</p>\n<p>FOSSA will be expanding its pricing options later this year. At the moment, the free beta and the $499/month commercial options leave a gaping hole that excludes smaller organizations. Wang replied to pricing questions on ProductHunt, saying that they are targeting enterprise customers first but plan to introduce more options for small teams and individuals.</p>\n<div id=\"epoch-width-sniffer\"></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, 25 Feb 2017 00:21: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";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:92:\"WPTavern: Discourse Creates Encouragement Fund to Pay Contributors for Mission Critical Work\";s: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:29:\"https://wptavern.com/?p=66145\";s: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:\"https://wptavern.com/discourse-creates-encouragement-fund-to-pay-contributors-for-mission-critical-work\";s: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:2486:\"<p><a href=\"https://www.discourse.org\">Discourse</a> is free, open-source discussion software created by Jeff Atwood in 2013.&nbsp;In addition to celebrating its fourth birthday, the team <a href=\"https://blog.discourse.org/2017/02/the-discourse-encouragement-fund/\">announced</a> the Discourse Encouragement Fund. The fund allows the development team to pay contributors for critical work.</p>\n<p>In the course of a year, Discourse has paid 16 different developers a total of $17,000 to work on tasks. All of their work is open source and two of the contributors&nbsp;<a href=\"https://blog.discourse.org/2017/02/discourses-fourth-birthday/\">joined the team</a> as full-time employees.</p>\n<p>Discourse&nbsp;shared its 7-step process for rewarding contributors and the one that&nbsp;sticks out to me is number four: &#8220;We choose who, what and when.&#8221;</p>\n<p>&#8220;At first we tried to put tasks &#8216;up for grabs&#8217;, but this method didn’t work too well,&#8221; Erlend Sogge Heggen, Community Advocate at Discourse said. &#8220;You end up with multiple takers and you have to pick one and let others down.&#8221;</p>\n<p>&#8220;Instead, we approach developers individually, one at a time. Since we’re an open source project we know fairly well who’s capable of what, so we’ll tap our top prospect, present the task and &#8216;bounty&#8217;, and get a yes or no.</p>\n<p>&#8220;If no, we move on to the next good prospect. If we run out of good prospects for a specific task, we’ll either do it ourselves or put it on hold.&#8221;</p>\n<p>Heggen says the program has worked well thus far and will continue indefinitely. &#8220;As much as we’d like to, we can’t put every one of our contributors on a steady payroll,&#8221; he said.</p>\n<p>&#8220;What we can do is remind them that the work they’re doing is valuable, in every sense of the word, and that there is money to be made from specializing in Discourse.&#8221;</p>\n<p>The program is funded by customers who purchase <a href=\"https://discourse.org/buy\">hosting plans</a>, &#8220;The general idea is that paying customers help improve Discourse, both for themselves, and for the greater open source community at large,&#8221; Atwood said.</p>\n<p>Introducing money into an open source project can be <a href=\"http://david.heinemeierhansson.com/2013/the-perils-of-mixing-open-source-and-money.html\">risky </a>but so far, Discourse has found a way to make it work.</p>\n<div id=\"epoch-width-sniffer\"></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, 24 Feb 2017 19:20: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:13:\"Jeff Chandler\";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:53:\"WPTavern: Cloudflare Memory Leak Exposes Private Data\";s: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:29:\"https://wptavern.com/?p=66488\";s: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:\"https://wptavern.com/cloudflare-memory-leak-exposes-private-data\";s: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:5730:\"<p><a href=\"https://www.cloudflare.com/\">Cloudflare</a>, a content distribution network used by many popular sites, <a href=\"https://blog.cloudflare.com/incident-report-on-memory-leak-caused-by-cloudflare-parser-bug/\">published detailed information</a> about a security vulnerability that leaked user information, some of which was private, including passwords, private messages, etc. The vulnerability was <a href=\"https://bugs.chromium.org/p/project-zero/issues/detail?id=1139#c19\">discovered</a> by security researcher <a href=\"https://twitter.com/taviso\">Tavis Ormandy,</a> a member of Google&#8217;s <a href=\"https://googleprojectzero.blogspot.co.uk/\">Project Zero</a> team.</p>\n<p>The issue stems from a memory leak in an HTML parser named cf-html that was created to replace an older parser based on <a href=\"https://en.wikipedia.org/wiki/Ragel\">Ragel.</a></p>\n<p>&#8220;It turned out that the underlying bug that caused the memory leak had been present in our Ragel-based parser for many years but no memory was leaked because of the way the internal NGINX buffers were used,&#8221; John Graham-Cumming, <span class=\"st\">Chief Technology Officer at Cloudflare</span> said. &#8220;Introducing cf-html subtly changed the buffering which enabled the leakage even though there were no problems in cf-html itself.&#8221;</p>\n<p>The earliest date information was leaked was September 22nd, 2016 when <a href=\"https://support.cloudflare.com/hc/en-us/articles/227227647-How-do-I-use-Automatic-HTTPS-Rewrites-\">Automatic HTTP Rewrites</a> were enabled. This was the first of three features introduced that used the parser. The other two are <a href=\"https://support.cloudflare.com/hc/en-us/articles/200170016-What-is-Email-Address-Obfuscation-\">email obfuscation</a> and <a href=\"https://support.cloudflare.com/hc/en-us/articles/200170036-What-does-Server-Side-Excludes-SSE-do-\">Server-side Excludes</a>.</p>\n<p>The greatest period of impact was between February 13th and February 17th. The leaked information ended up in publicly available cached webpages. Cloudflare worked with major search engine providers to have the cached pages scrubbed before publicly announcing details of the bug.</p>\n<p>&#8220;With the help of Google, Yahoo, Bing and others, we found 770 unique URIs that had been cached and which contained leaked memory,&#8221; Graham-Cumming said. &#8220;Those 770 unique URIs covered 161 unique domains. The leaked memory has been purged with the help of the search engines. We also undertook other search expeditions looking for potentially leaked information on sites like Pastebin and did not find anything.&#8221;</p>\n<h2>1Password is Not Affected</h2>\n<p>Earlier reports indicated that 1Password was among the sites affected. Jeffrey Goldberg, a 1Password employee, <a href=\"https://blog.agilebits.com/2017/02/23/three-layers-of-encryption-keeps-you-safe-when-ssltls-fails/\">assured users</a> that the Cloudflare data leak does not affect 1Password.</p>\n<p>&#8220;At the moment, we want to assure and remind everyone that we designed 1Password with the expectation that SSL/TLS can fail,&#8221; Goldberg said. &#8220;Indeed it is for incidents like this that we deliberately made this design.&#8221;</p>\n<p>&#8220;No secrets are transmitted between 1Password clients and 1Password.com when you sign in and use the service. Our sign-in uses <a href=\"https://en.wikipedia.org/wiki/Secure_Remote_Password_protocol\">SRP</a>, which means that server and client prove their identity to each other without transmitting any secrets. This means that users of 1Password do not need to change their Master Passwords.&#8221;</p>\n<h2>Change Your Passwords</h2>\n<p><a href=\"https://twitter.com/thesquashsh\">Nick Sweeting</a> has used a number of web scrapers to compile a list of sites that use Cloudflare. The list is available on <a href=\"https://github.com/pirate/sites-using-cloudflare\">GitHub</a> and currently contains 4,287,625 domains that are possibly affected. Popular domains in the list include:</p>\n<ul>\n<li>authy.com</li>\n<li>coinbase.com</li>\n<li>digitalocean.com</li>\n<li>patreon.com</li>\n<li>bitpay.com</li>\n<li>news.ycombinator.com</li>\n<li>producthunt.com</li>\n<li>medium.com</li>\n<li>4chan.org</li>\n<li>yelp.com</li>\n<li>okcupid.com</li>\n</ul>\n<p>The bug also affects mobile apps as HTTP header data for apps such as Discord, FitBit, and Uber have been discovered in search engine caches. NowSecure <a href=\"https://www.nowsecure.com/blog/2017/02/23/cloudflare-cloudbleed-bugs-impact-mobile-apps/\">published a list</a> that includes 200 iOS apps that use Cloudflare services.</p>\n<p>Users are strongly encouraged to change their passwords regardless if a site uses Cloudflare or not. Those who use Cloudflare should generate new API keys and consider forcing a password change to users.</p>\n<p>Two factor authentication should be enabled where possible so that the password is not the only credential needed to access an account. Mobile users should log out of mobile applications and log back in to create a new active token. To force all users on a WordPress site to logout and re-login, <a href=\"https://wpstudio.com/cloudflare-security-precaution-alert/\">WPStudio recommends</a> changing the salt keys in wp-config.php.</p>\n<p>Although major search engines are actively scrubbing cached pages, the leaks have been occurring for at least four months. There&#8217;s no telling who may have already scraped those pages and archived the data. There&#8217;s also the possibility that someone discovered the vulnerability before Ormandy and has been parsing cached pages for months. This is why it&#8217;s important that at a minimum, you change your passwords.</p>\n<div id=\"epoch-width-sniffer\"></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, 24 Feb 2017 19:03:25 +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:13:\"Jeff Chandler\";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:86:\"WPTavern: Google’s New Perspective Project Filters Online Comments Based on Toxicity\";s: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:29:\"https://wptavern.com/?p=66464\";s: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:\"https://wptavern.com/googles-new-perspective-project-filters-online-comments-based-on-toxicity\";s: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:5970:\"<a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/02/mobile-reading.jpg?ssl=1\"><img /></a>photo credit: <a href=\"https://stocksnap.io/photo/RY5J4XBYJV\">Martino Pietropoli</a>\n<p>Online harassment is a hot topic right now, as Twitter&#8217;s perennial battle with trolls heats up, forcing the company to develop new features to combat abuse. Technology companies are scrambling to create solutions that will make their communities safer for users and now Google is taking on the challenge of online harassment as part of its <a href=\"https://jigsaw.google.com\" target=\"_blank\">Jigsaw</a> technology incubator. Jigsaw&#8217;s engineers and researchers tackle geopolitical problems like attacks on free speech, injustice, corruption, and violent extremism.</p>\n<p><a href=\"https://www.perspectiveapi.com/\" target=\"_blank\">Perspective</a> is Jigsaw&#8217;s latest project aimed at improving the comment sections of websites, which can become hotbeds of harassment when left unmoderated. It turns out that eliminating the darker aspects of human behavior, especially when combatting those operating under the cloak of online anonymity, has proven to be an exquisite challenge best suited to the bots.</p>\n<p>The Perspective project uses machine learning to identify and filter comments for toxicity. Its API scores comments based on &#8220;the perceived impact a comment might have on a conversation.&#8221; Publishers can then use that information to offer real-time feedback to commenters and speed up moderation. The <a href=\"https://www.perspectiveapi.com/\" target=\"_blank\">live demo</a> allows readers to filter the comments based on a sliding scale of toxicity that they are willing to engage.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/02/google-jigsaw-perspective-project.png?ssl=1\"><img /></a></p>\n<p>The Perspective site also includes a Writing Demo that delivers real-time feedback for the toxicity level as you type. The model defines toxic as &#8220;a rude, disrespectful, or unreasonable comment that is likely to make you leave a discussion.&#8221;</p>\n<h3>Developers Can Request Access to the Perspective API and Major Publications are Already Experimenting with It</h3>\n<p>Toxic commenting and trolls are especially rampant on news sites, requiring moderators to be constantly vigilant and ready to neutralize threats to civil discourse. This is why the New York Times employs 14 full-time moderators to manually review the 11,000 comments that come in each day. Despite the efforts of this dedicated team, commenting is only available on 10% of Times articles due to the moderation load.</p>\n<p>As a partner on this project, the New York Times <a href=\"http://www.nytco.com/the-times-is-partnering-with-jigsaw-to-expand-comment-capabilities/\" target=\"_blank\">open sourced 10 years of moderated comment archives</a> to help the Jigsaw team build the machine learning models that will improve conversations on the web. The publication is currently creating an open source moderation tool to expand community discussion to other areas of the Times.</p>\n<p>The Wikimedia Foundation is also <a href=\"https://meta.wikimedia.org/wiki/Research:Detox\" target=\"_blank\">collaborating with Jigsaw</a> to develop tools for automating detection of toxic comments and analyzing their impact in discussions at scale. These tools are aimed at mitigating the personal attacks levied at volunteer editors in an effort to improve overall community health.</p>\n<p>The Perspective project is still in its early days of research and development, but developers can <a href=\"https://groups.google.com/forum/#!forum/perspective-announce/join\" target=\"_blank\">sign up</a> to request an API key. Google will be open sourcing the experiments, models, and research data gained from testing machine learning as a tool for improving online discussion.</p>\n<p>As WordPress powers more than 27% of all websites, a plugin built with the Perspective API could have a major impact on raising the standard of discourse for a large segment of comment-enabled sites. Many publications that might otherwise value thoughtful discussion, have resorted to turning comments off entirely because of the burden of moderation.</p>\n<p>Those who rattle off the tired internet maxim that says &#8220;<em>Never read the comments</em>&#8221; speak to the pervasive toxicity that has invaded online discourse, but they also betray their own fragility in engaging commenters who sabotage discussions with incivility. Readers don&#8217;t always have the emotional energy to deal with rude comments that slipped through moderation. While some may find Reddit-style wild west commenting to be spirited and amusing, there are plenty of others who find it demoralizing.</p>\n<p>One thing I appreciate about the Perspective project&#8217;s demo is that its aim isn&#8217;t to edit or change the comments to be less toxic but rather it offers the reader a way to filter based on the individual&#8217;s comfort level. With clear warnings in place and a default view set on the safer side, the publication is no longer obligated to overly-censor comments for the lowest threshold of offense.</p>\n<p>The Perspective project is experimenting with using machine learning to wrangle the human factor of interacting online. It&#8217;s come to the point that moderating comments and weeding out toxicity has become overwhelming for those trying to run a publication. The most encouraging aspect of this experiment is that Google put engineers, designers, and researchers on this problem because <a href=\"https://wptavern.com/why-comments-still-matter\" target=\"_blank\">comments still matter</a>. This new technology affirms the importance of public discourse on the web and aims to preserve comments as a safe place for conversations. I&#8217;m interested to see what WordPress developers can build with the Perspective API once it is available.</p>\n<div id=\"epoch-width-sniffer\"></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, 24 Feb 2017 04:17: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:13:\"Sarah Gooding\";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:69:\"WPTavern: WordPress Community Summit 2017 Set for June 13-14 in Paris\";s: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:29:\"https://wptavern.com/?p=66439\";s: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:\"https://wptavern.com/wordpress-community-summit-2017-set-for-june-13-14-in-paris\";s: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:3561:\"<p>WordPress contributor teams are getting ready for the next <a href=\"https://make.wordpress.org/core/2017/02/23/planning-for-community-summit-2017/\" target=\"_blank\">Community Summit</a>, which will be held in Paris leading up to WordCamp Europe on June 13-14. This is the first time the event will be held outside the United States, making it more accessible to European community members who may have been unable to attend previous summits.</p>\n<p>The summit provides an opportunity for those who contribute to WordPress and its surrounding community to tackle difficult topics that require in-person discussion or collaboration. This year the organizing team is <a href=\"https://wptavern.com/wordpress-community-team-proposes-new-selection-process-for-2017-summit-attendees\" target=\"_blank\">trying a new selection process for attendees</a>. Instead of the previous invitation-only system, contributor teams are identifying the challenging issues they want to discuss and then nominating attendees who will represent diverse viewpoints on these particular topics.</p>\n<p>For example, a few <a href=\"https://make.wordpress.org/core/2017/02/23/planning-for-community-summit-2017/\" target=\"_blank\">proposed topics for the core team</a> include discussions about the future of JavaScript in core, how to attract more JavaScript-first developers to build on WordPress, and technology version support policies (PHP, MySQL, browsers, etc.) Theme Review Team contributors have <a href=\"https://make.wordpress.org/themes/2017/02/18/community-submit-2017/\" target=\"_blank\">proposed</a> discussion on how to allow for more experimentation and ways to improve the leadership of the team and the theme author and reviewer experiences.</p>\n<p>Each of the 16 contributor teams tagged in the announcement has until March 3rd to create a list of topics and representatives, including contributors who are willing to help organize the event. An <a href=\"https://wceurope.polldaddy.com/s/community-summit-2017-call-for-non-active-contributors\" target=\"_blank\">application form</a> is open for those who represent other interests within the WordPress community but are not part of one of the contributor teams. The summit will be limited to 180 attendees (the capacity for the venue).</p>\n<p>The call for sponsors will be published next week, but promotional activities will not be incorporated into the event. The organizing team is also working on finding sponsors to cover travel expenses for contributors who have financial barriers to attending.</p>\n<p>&#8220;The idea of this event sponsorship is about supporting the project and the community,&#8221; summit organizer Rocio Valdivia said. &#8220;So, there aren’t levels of exposure associated with each price level other than the label that will show up in the make/summit p2 page for it and on the sidebar. We’ll add links to their sites, logos, and a huge thanks at event to all sponsors, regardless how much they’ve sponsored. The sponsorship levels are about the desire and financial ability of the companies to contribute to the summit, not about a marketing thing.&#8221;</p>\n<p>The summit is closed to the public and the press, but there is a decent level of transparency around the topics attendees plan to discuss if you peruse the make.wordpress.org blogs. If contributor teams publish notes from the discussions as they have in previous years, the wider community will be able to follow along to see if the summit precipitates meaningful progress for the project.</p>\n<div id=\"epoch-width-sniffer\"></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, 23 Feb 2017 22:05: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:13:\"Sarah Gooding\";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:51:\"Akismet: Akismet WordPress Plugin 3.3 Now Available\";s: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://blog.akismet.com/?p=1923\";s: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:\"https://blog.akismet.com/2017/02/23/akismet-wordpress-plugin-3-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1366:\"<p>Version 3.3 of <a href=\"http://wordpress.org/plugins/akismet/\">the Akismet plugin for WordPress</a> is available.</p>\n<p><a href=\"https://akismet.files.wordpress.com/2017/02/akismet-3-3-dashboard.png\"><img /></a> In addition to a handful of bug fixes, version 3.3 refreshes the Akismet settings page design and adds an improved first-run experience. Now, when you activate Akismet for the first time, it will offer to check your current Pending queue for spam, and for especially large pending queues, it will show a progress indicator.</p>\n<p>For full details on all of the changes since version 3.2, see <a href=\"https://plugins.trac.wordpress.org/log/akismet/trunk?rev=1602266&stop_rev=1501241&verbose=on\">the changelog</a>.</p>\n<p>To upgrade, visit the Updates page of your WordPress dashboard and follow the instructions. If you need to download the plugin zip file directly, links to all versions are available in <a href=\"http://wordpress.org/plugins/akismet/\">the WordPress plugins directory</a>.</p><br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/akismet.wordpress.com/1923/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/akismet.wordpress.com/1923/\" /></a> <img alt=\"\" border=\"0\" src=\"https://pixel.wp.com/b.gif?host=blog.akismet.com&blog=116920&post=1923&subd=akismet&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, 23 Feb 2017 18:08: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:17:\"Christopher Finke\";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:81:\"WPTavern: WPWeekly Episode 264 – REST API, Disqus, and Happy Birthday Discourse\";s: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:58:\"https://wptavern.com?p=66421&preview=true&preview_id=66421\";s: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:\"https://wptavern.com/wpweekly-episode-264-rest-api-disqus-and-happy-birthday-discourse\";s: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:4422:\"<p>In this episode, Marcus Couch and I discuss the news of the week. We introduce a new segment of the show called &#8220;What&#8217;s on WordPress.tv?&#8221; where we highlight three videos to check out. We also share details of <a href=\"https://central.wordcamp.org/schedule/\">upcoming WordCamps </a>in the month of March.</p>\n<h2>Stories Discussed:</h2>\n<p><a href=\"https://halfelf.org/2017/case-rest-api/\">A Case for REST API</a><br />\n<a href=\"https://wptavern.com/buddypress-2-8-boosts-minimum-php-requirement-adds-twenty-seventeen-companion-stylesheet\">BuddyPress 2.8 Boosts Minimum PHP Requirement, Adds Twenty Seventeen Companion Stylesheet</a><br />\n<a href=\"https://wptavern.com/disqus-hits-sites-with-unwanted-advertising-plans-to-charge-large-publishers-a-monthly-fee-to-remove-ads\">Disqus Hits Sites with Unwanted Advertising, Plans to Charge Large Publishers a Monthly Fee to Remove Ads</a><br />\n<a href=\"https://wptavern.com/how-to-check-if-installed-plugins-are-no-longer-in-the-plugin-directory\">How to Check if Installed Plugins Are No Longer in the Plugin Directory</a><br />\n<a href=\"https://blog.discourse.org/2017/02/discourses-fourth-birthday/\">Happy Fourth Birthday Discourse</a></p>\n<h2>What&#8217;s On WordPress.TV?</h2>\n<h3>WordCamp Manila 2016</h3>\n<p><a href=\"http://wordpress.tv/2017/02/12/andrew-dela-serna-how-we-work-in-automattic/\">Andrew dela Serna: How We Work in Automattic</a></p>\n<p>Learn what it’s like to work at Automattic, the tools they use, our culture, the people, how to apply and what’s next for the company.</p>\n<h3>WordCamp Waukesha 2017</h3>\n<p><a href=\"http://wordpress.tv/2017/02/09/ryan-erwin-digital-marketing-strategy-and-seo/\">Ryan Erwin: Digital Marketing, Strategy and SEO</a></p>\n<p>Ryan Erwin discussed digital marketing strategy for business as it relates to on and off page SEO, content marketing, and conversion optimization. He reviews how to plan, implement, and analyze your strategic initiatives.</p>\n<h3>WordPress Community Interview Series</h3>\n<p><a href=\"http://wordpress.tv/2017/02/20/wordpress-community-interview-with-isabelle-garcia/\">WordPress Community Interview With Isabelle Garcia</a></p>\n<p>Isabelle Garcia is a front-end web developer and social media geek. She is a “Digital Nomad” and travels the world working remotely. She has no fixed base, no office. Isabel likes to frequent local libraries, not to borrow books but to take advantage of the quiet atmosphere.</p>\n<p>While other digital nomads meet at coffee shops or co-working spaces, she likes to spend entire days and even weekends in the common areas and desks of public libraries.</p>\n<h2>Plugins Picked By Marcus:</h2>\n<p><a href=\"https://wordpress.org/plugins/really-simple-click-to-call/\">Really Simple Click To Call Bar</a> adds a customizable click-to-call bar to the bottom of the browser window on mobile devices. It enables users to easily call you from their phone and automatically adds events if you&#8217;re using Google Analytics Universal. Perfect for small businesses like restaurants, retail stores, or any lead generation that relies on phone calls.</p>\n<p><a href=\"https://wordpress.org/plugins/html-table/\">Responsive tables</a> lets you create and display tables easily on your website with shortcodes. HTML tables can be used to display pricing, comparisons, DBMS tables and much more.</p>\n<p><a href=\"https://wordpress.org/plugins/wp-demo-buddy/\">WP Demo Buddy</a> instantly creates a dedicated expiring Demo/Trial instance of WordPress with any WordPress Plugin and Theme to each of your website visitors. Your website visitors can test drive your plugins securely before they buy or test drive the plugins you review/sell on your website.</p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, March 1st 3:00 P.M. Eastern</p>\n<p><strong>Subscribe To WPWeekly Via Itunes: </strong><a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\" target=\"_blank\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via RSS: </strong><a href=\"https://wptavern.com/feed/podcast\" target=\"_blank\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via Stitcher Radio: </strong><a href=\"http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr\" target=\"_blank\">Click here to subscribe</a></p>\n<p><strong>Listen To Episode #264:</strong><br />\n</p>\n<div id=\"epoch-width-sniffer\"></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:\"Wed, 22 Feb 2017 22:29: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:13:\"Jeff Chandler\";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:97:\"WPTavern: Zerif Lite Returns to WordPress.org after 5-Month Suspension and 63% Decline in Revenue\";s: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:29:\"https://wptavern.com/?p=64347\";s: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:107:\"https://wptavern.com/zerif-lite-returns-to-wordpress-org-after-5-month-suspension-and-63-decline-in-revenue\";s: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:7365:\"<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2016/09/zerif-lite.png?ssl=1\"><img /></a></p>\n<p>In October 2016, Zerif Lite was <a href=\"https://wptavern.com/zerif-lite-suspended-from-wordpress-theme-directory-300k-users-left-without-updates\">suspended from the WordPress Themes Directory</a> after failure to comply with the Theme Review Team&#8217;s guidelines. The suspension left 300,000 users (including those using Zerif Lite child themes) without maintenance and security updates.</p>\n<p>After five months of fixes and several rounds of review, <a href=\"https://wordpress.org/themes/zerif-lite/\" target=\"_blank\">Zerif Lite</a> has returned to the directory with the same functionality but a significantly altered user experience. Users are now required to install a plugin for the features that were previously deemed to be &#8220;faux custom post types,&#8221; violations of the content vs. presentation guideline for WordPress.org-hosted themes. These include small custom content blocks that appear on the homepage for things like team info and testimonials.</p>\n<p>&#8220;We will work on making sure it is all clear for people, but I still don’t understand or agree with the requirement,&#8221; ThemeIsle CEO Ionut Neagu said. &#8220;I think <a href=\"http://torstenlandsiedel.de/2017/02/21/questions/\" target=\"_blank\">Torsten phrased it better</a>: &#8216;Why do the guidelines of the Theme Review Team forbid the usage of Shortcodes/CPTs/etc. due to problems when switching themes, if, in the meantime, the Plugin Review Team explicitly allows those plugins which only work for one theme, which brings the entire idea (function remains intact after switching themes) to absurdity?\'&#8221;</p>\n<p>At the time of suspension, Neagu estimated that Zerif Lite&#8217;s unavailability on WordPress.org would diminish the company&#8217;s revenue by 50%.</p>\n<p>&#8220;What was interesting is that revenue continued to decrease for all those months and we are now at around $45k/month instead of $120k,&#8221; Neagu said. &#8220;That revenue won’t be back as the theme is live. A big part of success/sales before was that we had a great demo, a very easy-to-set-up theme, and ‘better’ upsells.&#8221;</p>\n<p>Neagu said the company has seen no significant increase in revenue during the first few days the theme has been back in the directory. His team has considered releasing the theme under a completely different name but is committed to supporting the current version for at least the next two years. Meanwhile, they have built newer themes like <a href=\"https://themeisle.com/themes/hestia/\" target=\"_blank\">Hestia</a> to be capable of importing Zerif content seamlessly into its design to avoid the lock-in effect.</p>\n<p>Neagu said the experience of losing so much revenue has not changed the company&#8217;s strategy for distribution. They will continue to add new themes to WordPress.org but Neagu said they would be lucky to add two per year, given the limitation of one theme per account and a 6-7 month waiting period in the queue.</p>\n<p>Zerif Lite&#8217;s suspension was a controversial decision. Many who commented on our first <a href=\"https://wptavern.com/zerif-lite-suspended-from-wordpress-theme-directory-300k-users-left-without-updates\" target=\"_blank\">post</a> about the issue were pleased to see the Theme Review Team finally throw the book at ThemeIsle after the company had been allowed to skirt the requirements for more than a year without resolving the issues. Others saw the situation as an opportunity to re-examine the directory&#8217;s requirements.</p>\n<p>&#8220;Perhaps the rules surrounding theme submission to the repo should be relaxed for everyone – limited only to security concerns perhaps, let the market sort out the rest,&#8221; <a href=\"https://twitter.com/bradley_kirby\" target=\"_blank\">Bradley Kirby</a>, author of the Wallace theme, said. &#8220;Is it possible that absolute data portability isn’t an expectation or desire from most end users? That they expect to do some manual porting of data when they change themes? That they prize other features like site design and built-in functionality over something like data portability?&#8221;</p>\n<p>Zerif Lite has been at the center of the Theme Review Team&#8217;s discussions regarding data portability for the past two years after the team began <a href=\"https://wptavern.com/wordpress-theme-review-team-is-cracking-down-on-violations-of-the-presentation-vs-functionality-guideline\" target=\"_blank\">cracking down on violations of the Presentation vs. Functionality guideline</a>. The spotlight shined on Zerif Lite during that discussion eventually culminated in its suspension, as Neagu was forced to comply or have his theme removed.</p>\n<p>&#8220;I think our goal should just be to provide the best experience for the users, not just to comply without thinking about what users want,&#8221; Neagu said. &#8220;At least this is my goal &#8211; to build the best products that will help people to build their sites.&#8221;</p>\n<h3>The Risks of Using WordPress.org as a Primary Distribution Channel</h3>\n<p>WordPress.org is arguably the most effective way for a theme company to reach mass quantities of users with a freemium theme. The directory lends a great deal of credibility to its listings because of the stringent guidelines and rigorous review process. Failure to comply with these guidelines ultimately ended up sinking ThemeIsle&#8217;s flagship theme and Neagu is not optimistic that the previous revenue will return.</p>\n<p>&#8220;During this whole time, a thing that caught me off guard was some of people’s comments wondering if it was even safe to use a theme that was removed from the repo in the first place,&#8221; Neagu said. &#8220;I mean, in the user’s mind, and understandably so, there must have been something wrong with the theme since it got removed, right?&#8221; He said this experience caused him to see things differently.</p>\n<p>&#8220;Being listed in the official repository doesn’t only get you downloads and/or sales, but also trust and credibility in the eyes of your potential users,&#8221; Neagu said. &#8220;Unfortunately, most of the users who install themes directly via their WP dashboards are not very experienced, and they have no reason to research the web a bit more to find out what happened to the theme they heard about. In other words, if someone types &#8216;zerif&#8217; into the search field in their dashboard and they find nothing, they just move on.&#8221;</p>\n<p>Neagu said that in spite of differences Themeisle has had with the Theme Review Team, the company will continue to contribute and be part of the community. The theme&#8217;s suspension, re-working, and re-installment is an interesting case of what can happen when a company&#8217;s sales strategy is at odds with WordPress.org&#8217;s requirements.</p>\n<p>&#8220;Our products are focused towards beginners, being super easy to setup with built-in demo content, so they are not niched products that we can distribute in different communities,&#8221; Neagu said.</p>\n<p>&#8220;It is obvious that relying on a third-party marketplace is the worst scenario, but WordPress.org is the default solution: if you want to reach a large mass of people, you need to be there.&#8221;</p>\n<div id=\"epoch-width-sniffer\"></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:\"Wed, 22 Feb 2017 21:47: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:13:\"Sarah Gooding\";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:48:\"BuddyPress: BuddyPress 2.8.1 Maintenance 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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://buddypress.org/?p=264058\";s: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:\"https://buddypress.org/2017/02/buddypress-2-8-1-maintenance-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:536:\"<p>BuddyPress 2.8.1 is now available. This maintenance release fixes four bugs, including two regressions in BuddyPress 2.8.0. See the <a href=\"https://buddypress.trac.wordpress.org/milestone/2.8.1\">Trac milestone</a> or the <a href=\"https://codex.buddypress.org/releases/version-2.8.1/\">official changelog</a> for more details.</p>\n<p>Version 2.8.1 is a recommended update for all BP installations. Update via the WordPress Dashboard, or download manually from <a href=\"https://wordpress.org/plugins/buddypress/\">wordpress.org</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:\"Wed, 22 Feb 2017 19:41: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Boone Gorges\";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:115:\"WPTavern: WordPress Core Editor Team Publishes UI Prototype for “Gutenberg,” an Experimental Block Based Editor\";s: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:29:\"https://wptavern.com/?p=65960\";s: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:119:\"https://wptavern.com/wordpress-core-editor-team-publishes-ui-prototype-for-gutenberg-an-experimental-block-based-editor\";s: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:3690:\"<p>In the past few weeks, the WordPress Core Editor team, <a href=\"https://wptavern.com/matt-mullenweg-announces-tech-and-design-leads-for-new-focus-based-development-cycle\">led by</a> Automattic employees Matías Ventura and Joen Asmussen, have been hard at work creating a new <a href=\"https://make.wordpress.org/core/2017/01/17/editor-technical-overview/\">content creation experience</a>. The team recently <a href=\"https://wordpress.github.io/gutenberg/\">published a UI prototype </a>for Gutenberg, an experimental block based editor. The editor displays content-specific toolbars when an element is selected and provides a way to move blocks up and down.</p>\n<img />Block Based Editor UI Prototype\n<p>While the goal is to reinvent WordPress&#8217; current editor, there&#8217;s no guarantee that the prototype will end up as the final product and is in a high state of flux.</p>\n<p>&#8220;The UI prototype exists mostly to serve as a non-static mockup,&#8221; Asmussen said. &#8220;It&#8217;s like a sandbox we&#8217;re building to test some of our mockups and assumptions, to see if they hold water or not. To that extent, it&#8217;s already been successful in informing us of things that worked well, and not so well.&#8221; The code that powers the editor is made up of about 90% JavaScript.</p>\n<p>One of the concerns in revamping the editor is accessibility. Joe Dolson <a href=\"https://make.wordpress.org/accessibility/2017/02/17/revising-the-wordpress-editor-gutenberg-and-accessibility/\">highlighted this concern</a> in a post on the Make WordPress Accessible site. Dolson notes that the accessibility team will work in tandem with the editor team to make the new editor as accessible as possible.</p>\n<p>&#8220;From an accessibility perspective, this is both an incredible opportunity to build a powerful and flexible experience for all users and an enormous risk that we could end up reducing the effectiveness of the editor for users with disabilities, or require them to use a 2nd-class editor without these enhanced editing capabilities,&#8221; Dolson said.</p>\n<p>&#8220;We in the WordPress accessibility community embrace the challenge of creating a great new experience, and want to assure the community that we are going to do everything we can to make sure that any new editor experience is as accessible as we can possibly make it.&#8221;</p>\n<p>Although the prototype&#8217;s functionality is limited, the team is interested to hear about your experience and expectations with using the editor. Some questions to consider during testing include:</p>\n<ul>\n<li>Talk through each step, what does this do?</li>\n<li>What does this feel like?</li>\n<li>As you use it, what is missing you feel should be there?</li>\n</ul>\n<p>Many users have already <a href=\"https://make.wordpress.org/design/2017/02/09/initial-editor-blocks-prototype-editor-testing/\">shared their experiences</a>, providing valuable insight that is fueling rapid improvements to the <a href=\"https://github.com/WordPress/gutenberg/\">project</a> on<a href=\"https://github.com/WordPress/gutenberg/\"> GitHub</a>.</p>\n<p>The best way to get involved and contribute to this project is to subscribe to the <a href=\"https://make.wordpress.org/design/\">Make WordPress Design</a> blog and provide feedback by commenting on posts. You can also submit pull requests or issues on <a href=\"https://github.com/WordPress/gutenberg/\">GitHub</a>. Weekly meetings dedicated to the Editor component are held on Wednesday at 19:00 CET on <a href=\"https://make.wordpress.org/chat/\">Slack</a> in the <a href=\"https://make.wordpress.org/design/tag/core-editor/\">#core-editor</a> channel.</p>\n<div id=\"epoch-width-sniffer\"></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:\"Wed, 22 Feb 2017 18:31: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:13:\"Jeff Chandler\";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:34:\"HeroPress: A Sense Of True Freedom\";s: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:56:\"https://heropress.com/?post_type=heropress-essays&p=1610\";s: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:48:\"https://heropress.com/essays/sense-true-freedom/\";s: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:9233:\"<img width=\"960\" height=\"480\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/02/022217-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: At any given time, I am who I want to be, & I\'m right where I want to be.\" /><p>It’s 7:30 in the morning in Rio de Janeiro, Brazil. The hostel’s cat just came to say “Good morning” and I just finished my night shift on the WPMU DEV forum. It’s my third day in Rio after spending the last 40 days in Bogota, Colombia. Traveling is in my blood or at least, it is now.</p>\n<p>I’m a full-time digital nomad and I have been for over a year now.</p>\n<blockquote><p>I’m single, I’m female and because of WordPress, I can travel around the world and work at the same time.</p></blockquote>\n<p>I started using WordPress in 2009, but I like to think that everything started in 2011 when I attended my first WordCamp in Poland. I remember I was extremely shy, scared and bit lost on the first day of WordCamp.</p>\n<p>It was a different world to me or at least in contrast to what I had at home – a small city in South East Poland. It was different because for the first time in a long time since college, I felt like I fit in with everyone there. They were a right fit for me and so was that place.</p>\n<p>Since that first WordCamp, I also attended many more in Poland as well as in other countries. Later, I went on to be the lead organizer of WordPress meetups in Wrocław and two WordCamps in Poland. I was also a speaker for many Polish events and for one WordCamp Paris.</p>\n<p>If not for the WordPress community and the friends I met on that very first WordCamp, I wouldn’t have been able to achieve any of those accomplishments.</p>\n<blockquote><p>But how could I have become a full-time digital nomad, you ask?</p></blockquote>\n<p>In 2015, I was stuck. I had a great, steady job in Wrocław. I was working with WordPress and everything was perfect, at least, that’s what I thought at the time.</p>\n<p>I achieved almost everything that society around me was expecting: a partner, apartment, a great job and the next step would have been getting married and having kids. Suddenly, I was sinking.</p>\n<p>For a year, the only moments where I was truly happy was when I was attending WordCamps and WordPress meetups – when I was with my “tribe”, my friends.</p>\n<p>Then, in May of 2015, something incredible happened: one of my friends sent me a link to a list of 70 companies which offered positions working remotely. Three of them were related to WordPress: Automattic, OnTheGoSystems and Incsub.</p>\n<p>That same day, I feverishly filled out an application for a position as a Support Star at Incsub, the parent company to WPMU DEV.</p>\n<p>After a wait full of agonizing anticipation, I finally got the job and six months later, I bought a one-way ticket to Japan, then one to Australia.</p>\n<blockquote><p>This was just the start of my life as a digital nomad.</p></blockquote>\n<p>Working at WPMU DEV remotely with partial dedicated hours and the rest being flexible allowed me to move and work while traveling.</p>\n<p>The people I work with comprise the best team ever. My boss, Tim, is incredibly supportive and is willing to help when something bad happens. I didn’t need to be worried about my job when my plans suddenly made a turn for the worse, which did happen. When I had to fly back to Poland in the middle of the week due to family emergencies, it wasn’t a problem.</p>\n<p>I always felt safe in the WordPress community and now I’m grateful to also feel safe with the people I work with even though we’re spread out across the globe and across many cultures.</p>\n<p>Even though I’m confident in my choice of being a digital nomad now, that wasn’t always the case. This was especially true since I apparently managed to make quite the big scandal in my hometown because “good girls” don’t run away.</p>\n<p>To my dismay, I was constantly told, “Study hard and you will get a nice, steady job in an office with insurance and a guaranteed retirement.”</p>\n<p>How could I not want that? After all, that’s supposed to be the dream of every woman, right? That’s what I was constantly told, anyway.</p>\n<p>Luckily, my best friend (who I had met at a WordCamp!) was there for me and said, “Don’t let them get to you. You are far away and they can’t hurt you.”</p>\n<p>Since then, I stood with my decision to finally be free and happy.</p>\n<p>Growing up in small city and being interested in computers and IT was not easy to say the least. Those aren’t traditionally considered subjects that interest girls. It also became all the more difficult when I realized this was something I wanted to do and nothing else.</p>\n<p>There weren’t many people around me in my hometown who understood what I wanted to do and even fewer people who would support me. Unfortunately, this is still true. It became tougher when I was diagnosed with heavy bipolar disorder.</p>\n<blockquote><p>At that time, everything sucked. I was lost and hopeless.</p></blockquote>\n<p>Compounding my stress, it was around then that I realized I also suffered from the impostor syndrome – the belief that you don’t know enough about the industry you’re in to be capable of doing your job and that you never will despite anything you do.</p>\n<p>There was an ugly feeling that crept in: I wanted to be somewhere else and I want to be different.</p>\n<p>Fortunately, every time I attended a WordCamp or WordPress meetup, these thoughts would melt away because I felt completely supported.</p>\n<p>It didn’t matter that I’m a girl or that I’m delightfully weird. What did matter was that I was knowledgeable about WordPress, my skills were growing quickly and that I could contribute to the community using my organizational skills.</p>\n<p>During these meetings, I don’t ever remember someone assuming that I’m a graphic designer because I’m a girl and “girls know color.” There’s nothing wrong with being a graphic designer, but assuming someone is based solely on their gender – there’s definitely something wrong with that.</p>\n<p>In reality, I’m a theme developer and in the WordPress community, that wasn’t unusual.</p>\n<p>It helped me gain confidence in myself and my skills. With that confidence, I found courage to start a life where I’m no longer wanting to be somewhere else or be someone else.</p>\n<blockquote><p>At any given time, I am who I want to be and I’m right where I want to be.</p></blockquote>\n<p>Solo traveling isn’t always peaches and cream or sunshine, lollipops and rainbows everywhere, especially when I’m sick and inevitably alone. All things considered, I wouldn’t swap it out for what many would consider to be a “normal” life – whatever that is – and instead, I think it&#8217;s important for people to do what makes them happy and not just what others expect of them.</p>\n<p>As a digital nomad, I was able to go to WordCamps in Tokyo, Belgrade, the US, Singapore and Vienna. I have met many new people and I have collected incredible memories along the way.</p>\n<p>This year and in many more to come, while others may doubt my choices, I’ll be happy, traveling to more WordCamps and enjoying a sense of true freedom just because I can.</p>\n<div class=\"rtsocial-container rtsocial-container-align-right rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: A Sense Of True Freedom\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=A%20Sense%20Of%20True%20Freedom&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Fsense-true-freedom%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: A Sense Of True Freedom\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Fsense-true-freedom%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-linkedin-horizontal\"><div class=\"rtsocial-linkedin-horizontal-button\"><a class=\"rtsocial-linkedin-button\" href=\"https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Fessays%2Fsense-true-freedom%2F&title=A+Sense+Of+True+Freedom\" rel=\"nofollow\" target=\"_blank\" title=\"Share: A Sense Of True Freedom\"></a></div></div><div class=\"rtsocial-pinterest-horizontal\"><div class=\"rtsocial-pinterest-horizontal-button\"><a class=\"rtsocial-pinterest-button\" href=\"https://pinterest.com/pin/create/button/?url=https://heropress.com/essays/sense-true-freedom/&media=https://heropress.com/wp-content/uploads/2017/02/022217-150x150.jpg&description=A Sense Of True Freedom\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: A Sense Of True Freedom\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/essays/sense-true-freedom/\" title=\"A Sense Of True Freedom\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/sense-true-freedom/\">A Sense Of True Freedom</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</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:\"Wed, 22 Feb 2017 12:00: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:16:\"Kasia Świderska\";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:66:\"WPTavern: Solving the Mystery of How People Actually Use 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:29:\"https://wptavern.com/?p=65557\";s: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:\"https://wptavern.com/solving-the-mystery-of-how-people-actually-use-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:9727:\"<p>I’m in favor of <a href=\"https://wptavern.com/wordpress-telemetry-proposal-addresses-long-standing-privacy-concerns-as-gdpr-compliance-deadline-looms#comment-208658\">WordPress collecting more anonymized usage data</a> that could help make informed decisions on changes or improvements to core, such as tracking changes to the WordPress user interface, which buttons or settings are used most often, etc.</p>\n<p>A good example of when this data could have come in handy is the recent <a href=\"https://wptavern.com/wordpress-4-7-removes-the-underline-and-justify-buttons-from-the-editor\">removal of the justify and underline buttons</a> from the editor in WordPress 4.7. During <a href=\"https://core.trac.wordpress.org/ticket/27159#comment:82\">the discussion</a> on whether they should be removed or not, a number of people questioned if there was any user data available that would indicate how much they’re used and help gauge the impact of removing them.</p>\n<p>The only data available to help make an informed decision was provided by Mel Choyce. Choyce <a href=\"https://core.trac.wordpress.org/ticket/27159#comment:29\">shared statistics</a> from WordPress.com and its variety of editor interfaces that indicated Bold, Italic, and Links are used the most while Lists and Blockquotes are the second most used buttons.</p>\n<p>The Center and Left alignment buttons are used often, but the data doesn’t determine if people are using them to align text or images. Information on which headings are used most was not available. The team did not have any usage data specific to the WordPress core editor.</p>\n<p>In the ticket, Andrew Ozz, who maintains the TinyMCE component, <a href=\"https://core.trac.wordpress.org/ticket/27159#comment:103\" rel=\"nofollow\">chimed in</a> and agreed that good user data is needed.</p>\n<p>In an effort to obtain usage data before removing the buttons, Ozz <a href=\"https://core.trac.wordpress.org/ticket/27159#comment:104\">created a small plugin</a> to perform testing with five existing and first-time users. Interestingly, he discovered that both types of users clicked on the kitchen sink button to display the second row of buttons and didn&#8217;t click the button to hide them again.</p>\n<p>Ozz also shared other results from his limited testing.</p>\n<blockquote><p>I know these test results are extremely limited and cannot be used when making a decision, but they are an indication of what &#8216;real&#8217; testing may reveal. In this case it shows that moving buttons to the bottom row will have no effect on the usage of these buttons as they will still be visible at all times.</p>\n<p>This super limited testing also indicated another (much bigger) problem: somebody mentioned this some time ago (think it was @mor10), around 20% of the WordPress users don’t even know there is a second editor toolbar, and some feel &#8216;pretty stupid&#8217; after discovering it. I think this is bad UX and something that can be fixed easily by having the second toolbar open by default, and fixing it is more important and will improve the UX for these 20% of users a lot.</p></blockquote>\n<p>Imagine how useful it would be for core developers or others if there was usage data like this on a grander scale that could fuel rapid improvements and help discover and eliminate pain points.</p>\n<p>Matt Mullenweg, co-creator of the WordPress project, has <a href=\"https://core.trac.wordpress.org/ticket/38418\">closed the ticket</a> with the Telemetry Proposal as it&#8217;s not within the <a href=\"https://wptavern.com/state-of-the-word-2016-mullenweg-pushes-calypso-as-future-of-wordpress-interface-proposes-major-changes-to-release-cycle\">three project focus areas</a> for 2017.</p>\n<p>&#8220;There is no part of current or potential WP development that is being held back by the lack of this existing, as there are easy and current ways to answer questions with data to the extent it would inform our decisions,&#8221; Mullenweg said.</p>\n<p>Morten Rand-Hendriksen <a href=\"https://core.trac.wordpress.org/ticket/38418#comment:11\">responded to the closure</a> saying that the quantitative user testing falls squarely within the Customizer focus area.</p>\n<p>&#8220;I would argue since the release of the Customizer some years back, it has gone through a multi-year large-scale quantitative user test with incremental tweaks and improvements,&#8221; Rand-Hendriksen said.</p>\n<p>&#8220;This is in line with standard agile development. At this juncture, the Customizer can be considered mature, and moving a mature solution forward requires hard data on usage, use cases, and user needs. This goes beyond standard user testing to large-scale data collection, which is what this ticket aims at addressing.&#8221;</p>\n<h2>Perspective From a WordPress Release Lead</h2>\n<p>There are WordPress core developers who have shown interest in a similar system. At the start of the WordPress 4.7 development cycle, Drew Jaynes, who led the WordPress 4.2 release cycle, <a href=\"https://make.wordpress.org/core/2016/08/17/wordpress-4-7-whats-on-your-mind/#comment-30573\">expressed interest</a> in creating an opt-in data collection system.</p>\n<p>The idea received positive feedback that included people offering to help. I asked Jaynes what his thoughts are on such a system and how it could benefit core development.</p>\n<p>&#8220;There&#8217;s some discussion about what form that collection should take initially, but I think there&#8217;s consensus that it should be opt-in, and take one of two forms (or a hybrid of the two): active (surveys in the admin) or passive (anonymized usage) data collection,&#8221; Jaynes said.</p>\n<p>&#8220;Either way, I think having this data available would benefit the entire community, regardless of the obvious practicable application within core development.</p>\n<p>&#8220;All of that data can and should be used to inform decision-making in WordPress going forward. The core team really needs to hit the reset button on the concept of the 80/20 rule, including what and whom it represents.</p>\n<p>&#8220;We should be building modern WordPress for the modern WordPress user, and resting on Matt&#8217;s instincts coupled with the core team&#8217;s experience is no longer enough to maintain positive forward momentum.&#8221;</p>\n<p>Jaynes cites the editor as an example of where having the data would be helpful and that without it, pursuing an idealized &#8216;modern editor&#8217; in WordPress is premature. The data could also help provide insight into improving the new user experience.</p>\n<p>&#8220;A common complaint is that the WordPress admin can be really overwhelming to new users,&#8221; Jaynes said. &#8220;Having real data about how frequently the various core screens are used could really inform decisions about maybe paring it down, or hiding some things over time that are used less and less.&#8221;</p>\n<p>While collecting data could help with making informed decisions, he doesn&#8217;t think it should stop the core team from experimentation.</p>\n<p>&#8220;I think having real, citable data could really reduce the amount of backlash we&#8217;ve seen with a few releases in the last couple of years,&#8221; Jaynes said. &#8220;Areas where core team decisions left some group of users feeling jilted.&#8221;</p>\n<p>&#8220;It&#8217;s worth mentioning that there&#8217;s absolutely value in allowing the core team to experiment, as long as we&#8217;re careful not to latch onto something that got merged as the only way we&#8217;ll ever need to solve that problem; that&#8217;s where we get into trouble.&#8221;</p>\n<h2>Who Are The 80/20 Users of WordPress?</h2>\n<p>The most striking statement in Rand-Hendriksen&#8217;s proposal is that WordPress development is occurring without having any idea who the 80% or 20% of users are.</p>\n<p>&#8220;During the development of WordPress 4.7, I was involved in several conversations centered around <em>assumed use</em> of features,&#8221; Rand-Hendriksen said.</p>\n<p>&#8220;The general argument was that based on the 80/20 rule, certain features should be added while others should be removed. I kept bringing up the well-known fact we don’t have a clue what features 80%, or even 20%, of WordPress users actually use so any claim of validity in the 80/20 rule is guesswork at best.&#8221;</p>\n<p>Collecting usage data is standard practice. Microsoft Windows, Mozilla Firefox, Chrome, iOS, and a number of other software projects have opt-in data collection systems that are used to improve the product. They also provide insight into how customers are using their products.</p>\n<p>WordPress development on the other hand relies on the support forums, data collected from WordPress.com, limited user testing, verbal feedback at WordCamps, and other small data points. Collecting usage data from WordPress could show trends and provide evidence for changes related to the <a href=\"https://wordpress.org/about/philosophy/\">decisions not options philosophy</a> of WordPress development.</p>\n<p>Collecting usage data isn&#8217;t going to solve all of WordPress&#8217; woes but having it available to make more informed decisions is better than not having any data at all. Although an opt-in data collection system in WordPress won&#8217;t be a core focus any time soon, it&#8217;s encouraging to see the idea has merit and is something some core developers are interested in seeing become a reality.</p>\n<p>I&#8217;d gladly opt-in and share my usage data with WordPress.org as long as it was anonymized and displayed publicly in aggregate. Would you?</p>\nNote: There is a poll embedded within this post, please visit the site to participate in this post\'s poll.\n<div id=\"epoch-width-sniffer\"></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, 21 Feb 2017 02:07: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:13:\"Jeff Chandler\";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:99:\"WPTavern: BuddyPress 2.8 Boosts Minimum PHP Requirement, Adds Twenty Seventeen Companion Stylesheet\";s: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:29:\"https://wptavern.com/?p=66090\";s: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:109:\"https://wptavern.com/buddypress-2-8-boosts-minimum-php-requirement-adds-twenty-seventeen-companion-stylesheet\";s: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:2774:\"<p><a href=\"https://buddypress.org/2017/02/buddypress-2-8-0-san-matteo/\" target=\"_blank\">BuddyPress 2.8</a> “San Matteo,” was released last week, led by long-time BuddyPress contributor Slava Abakumov. The release was named for <a href=\"http://www.sanmatteopanuozzo.com/\" target=\"_blank\">San Matteo Panuozzo</a>, an NYC pizza restaurant that specializes in panuozzo, a more portable pizza-sandwich hybrid. Following suit with the previous release, 2.8 focuses on improvements for developers and site builders, the project&#8217;s new target audience as of 2016.</p>\n<p>As part of an effort to modernize the plugin&#8217;s codebase and prepare it for better integration with the BP REST API project, this release <a href=\"https://codex.buddypress.org/getting-started/buddypress-2-8-will-require-php-5-3/\" target=\"_blank\">boosts the minimum PHP requirement to 5.3</a>. In BuddyPress versions 2.7+, the plugin will display a notice in the dashboard if it detects that the server doesn&#8217;t meet the minimum requirements for running 2.8. The change is not likely to affect many BuddyPress sites as only a small sliver (5.7%) of WordPress sites are running on PHP 5.2.</p>\n<p>This release also adds a companion stylesheet for <a href=\"https://wordpress.org/themes/twentyseventeen/\" target=\"_blank\">Twenty Seventeen</a>. This stylesheet is important for providing a good first impression of BuddyPress for those who are trying try out the plugin with WordPress&#8217; latest default theme. A <a href=\"https://codex.buddypress.org/themes/bp-theme-compatibility-and-the-wordpress-default-themes/twenty-seventeen-theme/\" target=\"_blank\">new BP codex page</a> gives sample code for changing Twenty Seventeen&#8217;s default two-column layout to be a full-width layout.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/02/buddypress-twenty-seventeen.png?ssl=1\"><img /></a></p>\n<p>The 2.8 release brings improvements to the “Activate Pending Accounts” screen, making it easier for site managers to confirm or reject new registrants. Clicking on the username of a pending account will now display profile data that the user entered at signup.</p>\n<p>Other improvements for developers include the following:</p>\n<ul>\n<li>New filters and actions for the Messages component</li>\n<li>Support for List-Unsubscribe header in emails</li>\n<li>More flexible Group search</li>\n<li>New filter enables choice of which PHPMailer should be used when sending BuddyPress emails</li>\n</ul>\n<p>BuddyPress 2.8 was made possible by 44 volunteer contributors. For a full list of all the changes in this release, check out the official <a href=\"https://codex.buddypress.org/releases/version-2-8-0/\" target=\"_blank\">2.8.0 changelog</a>.</p>\n<div id=\"epoch-width-sniffer\"></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, 21 Feb 2017 00:33: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:13:\"Sarah Gooding\";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:67:\"WPTavern: Composing a WordPress Development Environment with Docker\";s: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:29:\"https://wptavern.com/?p=66335\";s: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:\"https://wptavern.com/composing-a-wordpress-development-environment-with-docker\";s: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:6432:\"<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2015/03/petersuhm.jpeg?ssl=1\"><img /></a>This post was contributed by guest author <a href=\"http://petersuhm.com/\" target=\"_blank\">Peter Suhm</a>. Peter is a web developer from the Land of the Danes. He is the creator of <a href=\"https://wptavern.com/wp-pusher-aims-to-provide-pain-free-deployment-of-wordpress-themes-and-plugins-from-github\" target=\"_blank\">WP Pusher</a> and a huge travel addict, bringing his work along with him as he goes.<br />\n&nbsp;</p>\n<hr />\n<p>In the last few years, a wave of virtualization technologies have swept through our WordPress development environments. The one that&#8217;s sounded the most promising to me has been Docker: lightweight and flexible. Yet, until recently, getting Docker up and running was an overwhelming task &#8211; especially on a non-Linux machine. If you managed to get it up and running in a virtual machine (using Vagrant or similar), getting port-forwarding to work would make you give up and just use Vagrant instead.</p>\n<p>Now it&#8217;s different.</p>\n<p>With (a stable) Docker for Mac and Windows and <a href=\"https://docs.docker.com/compose/\" target=\"_blank\">Docker Compose</a> at hand, getting Docker up and running is easy and pain-free. With Docker Compose you can tell Docker exactly what you want your WordPress development environment to look like and it will take care of it.</p>\n<h3>What is Docker?</h3>\n<p>Docker is a technology that makes it really simple to create isolated containers for your applications and websites to run in. These containers can be combined and modified to fit the needs of your applications. Docker is utilizing the Linux Containers technology (LXC) where multiple isolated environments can share the same Linux kernel &#8211; making it very lightweight compared to something like Vagrant.</p>\n<p>The Docker ecosystem is built around containers. In the Docker Hub, you can find an endless number of containers that other people have built or you can build your own using a Dockerfile. When building your own, you can start from scratch using the base Ubuntu image or extend someone else&#8217;s image.</p>\n<p>You can share local directories with your containers and link the networks, so they can talk to each other &#8211; just like you know it from other virtualization technologies. However, this is where it gets complicated which leads me to Docker Compose:</p>\n<h3>What is Docker Compose?</h3>\n<p>Docker Compose is what makes Docker available to mortals like you and me. As the name implies, Docker Compose is a tool for composing Docker containers. That means defining your services (containers), setting up the network between them, sharing local directories with them, and a few more things.</p>\n<p>With Docker Compose you create a simple file in the root of your project that describes the setup required by your application/website. For a WordPress theme that might mean a container to run WordPress, a container to run MySQL and a container to run Gulp or Grunt. This can very easily be defined in a docker-compose.yml file that can then be shared with your team members. This means that you can now share your WordPress theme, including an isolated WordPress environment to run it in. Hurray for virtualization!</p>\n<h3>Why use Docker?</h3>\n<p>There are a few reasons why Docker is an attractive technology for me. Here are the most important requirements I have for my development environment and how Docker solves them:</p>\n<ul>\n<li><strong>Clean Mac:</strong> In an ideal world, I prefer not to install anything related to my development environment directly on my Mac. I work on so many different projects that this gets unmanageable. When one thing works, another doesn&#8217;t. I also travel a lot and should something happen to my computer, I want to be able to set up a new machine in minutes.</li>\n<li><strong>Shareable:</strong> I often work in teams, so sharing my development environment with teammates is crucial. This is possible with Vagrant, but it&#8217;s still very tricky to keep environments in sync across teams.</li>\n<li><strong>Lightweight:</strong> This is important, especially when on the road. Try running a few Vagrant boxes compared to a few Docker containers and see what I mean.</li>\n<li><strong>Extendable:</strong> Extending Docker is very easy. For example, I could extend the official WordPress container and build it with WP Pusher pre-installed, since I (obviously) always use it.</li>\n<li><strong>Mirror production:</strong> My development environment needs to be as close to production as possible. With Docker this is easy, since Docker can be used in production as well.</li>\n</ul>\n<h3>My Docker development environment</h3>\n<p>This is the very simple Docker setup I use for development of my WP Pusher plugin: A WordPress and a MySQL container. Both of them use the official Docker Hub images, so setting it up is very easy.</p>\n<p>My <code>docker-compose.yml</code> file looks like this:</p>\n<p></p>\n<p>It describes two services: a MySQL 5.7 database and WordPress running on PHP 5.6 and Apache. The database is using a volume on my local machine, so data will be persisted every time I shut off the container. My current directory (in this case a plugin) is mounted into the <code>wp-content/plugins</code> directory. This allows me to work on my plugin in a completely isolated WordPress environment &#8211; without installing anything, besides Docker, on my Mac. The WordPress container forwards port 80 to my local machine, so I can access it as &#8220;localhost&#8221; in my browser.</p>\n<p>If you want to try it for yourself, and have Docker installed on your machine, just add the file to your plugin (or theme) and run:</p>\n<p><code>$ docker-compose up -d</code></p>\n<p>In order to see which containers are running, just run:</p>\n<p><code>$ docker ps</code></p>\n<p>This a very simple setup that is easy to extend and build upon.</p>\n<p>I hope this post made you curious about Docker and WordPress. Thanks for reading along!</p>\n<h3>Links</h3>\n<ul>\n<li><a href=\"https://docs.docker.com/compose/\" target=\"_blank\">Docker Compose</a></li>\n<li><a href=\"https://hub.docker.com/\" target=\"_blank\">Docker Hub</a></li>\n<li><a href=\"https://blog.wppusher.com/the-easiest-way-to-use-docker-for-wordpress-development/\" target=\"_blank\">My Docker setup for WP Pusher</a></li>\n</ul>\n<div id=\"epoch-width-sniffer\"></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, 20 Feb 2017 18:23: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";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:115:\"WPTavern: Disqus Hits Sites with Unwanted Advertising, Plans to Charge Large Publishers a Monthly Fee to Remove Ads\";s: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:29:\"https://wptavern.com/?p=66098\";s: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:125:\"https://wptavern.com/disqus-hits-sites-with-unwanted-advertising-plans-to-charge-large-publishers-a-monthly-fee-to-remove-ads\";s: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:7974:\"<p>When Disqus <a href=\"https://blog.disqus.com/our-plans-for-2017\" target=\"_blank\">announced</a> it would be releasing new, subscription-based versions later this year, users didn&#8217;t expect to have the new advertising model injected into their sites without notice. Disqus CEO Daniel Ha said the company would release finalized pricing and provide more details well in advance of its planned March release, but users are reporting that the advertising has already been forced into their comments without warning.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">Why did <a href=\"https://twitter.com/disqus\">@disqus</a> just add a bunch of ads to my site without my permission? <a href=\"https://t.co/CzXTTuGs67\">https://t.co/CzXTTuGs67</a> <a href=\"https://t.co/y2QbFFzM8U\">pic.twitter.com/y2QbFFzM8U</a></p>\n<p>&mdash; Harry Campbell (@TheRideShareGuy) <a href=\"https://twitter.com/TheRideShareGuy/status/826921387273052160\">February 1, 2017</a></p></blockquote>\n<p></p>\n<p>&#8220;We are one of the lucky 5% who now has to pay if we don&#8217;t want really irrelevant and horribly spammy links just plopped on our site with zero warning,&#8221; BabyCenter Social Media Manager Dina Vernon Freeman said. &#8220;Unless our users (mainly millennial parents) should care about overpaying for dentures! We&#8217;re looking for other platforms ASAP.&#8221;</p>\n<p>Brian O&#8217;Neill, who manages Slugger O&#8217;Toole, a site with more than 70,000 readers, was also hit with unwanted advertising on his site.</p>\n<p>&#8220;Disqus has started to put ads into our comments section of our site without even telling us,&#8221; O&#8217;Neill said in a <a href=\"https://sluggerotoole.com/2017/02/02/bear-with-us-as-we-try-to-remove-those-terrible-disqus-ads-from-the-comments-area/\" target=\"_blank\">post</a> explaining the new ads to the site&#8217;s readers. &#8220;As you can imagine I am extremely annoyed at this – I hate crappy online ads as much as you do. Supposedly we can remove the ads if we pay them $10 a month, but as yet there is no mechanism on their site to do this.&#8221; O&#8217;Neill said he is also exploring alternative commenting systems if he is unable to remove the advertising.</p>\n<p>Disqus responded to user complaints with a post to clarify that <a href=\"https://blog.disqus.com/advertising-will-remain-optional-for-over-95-of-sites-on-disqus\" target=\"_blank\">advertising will remain optional for more than 95% of the sites on Disqus</a>.</p>\n<p>&#8220;Larger, commercial, sites that elect to use the free version of Disqus will be supported by configurable advertising and have the option to earn revenue through the Reveal program,&#8221; Disqus Marketing Manager Mario Paganini said. &#8220;For small, non-commercial sites, advertising will be optional. These sites will be able to use Disqus’ ads-optional subscription, free of charge.&#8221;</p>\n<p>Publishers asked in the comments when the option to pay to remove ads will become available, as an option to pay isn&#8217;t currently in place.</p>\n<p>&#8220;Larger sites will be able to run a paid subscription version of Disqus that includes the ability to remove ads along with additional features,&#8221; Paganini said. &#8220;We are aiming to have this available in the next couple of months. We will be making periodic updates on our blog and talking to publishers in the meantime.&#8221;</p>\n<p>Disqus is moving to focus on its larger publishers but has already attracted angry criticism from publishers that were not properly informed of the changes. Over the years the company has experimented with different ways of monetizing the commenting platform, often frustrating users in the process of making important changes.</p>\n<p>In 2014, Disqus began experimenting with advertising in the form of &#8220;Sponsored Comments&#8221; that users could not turn off without contacting support. This move drew <a href=\"https://ma.tt/2014/11/disqus-spam-ads/\" target=\"_blank\">criticism from WordPress co-founder Matt Mullenweg</a> who essentially called out the ads as little more than comment spam. After a negative reaction from its community, Disqus quietly discontinued the Sponsored Comments and scrubbed the <a href=\"https://blog.disqus.com/heads-up-were-testing-a-new-form-of-advertising\" target=\"_blank\">announcement post</a> from the internet.</p>\n<h3>Disqus Delivers Low-Quality Ads</h3>\n<p>Disqus has struggled to land on an effective advertising model that will convince users to get on board. Its <a href=\"https://help.disqus.com/customer/portal/articles/2069645-reveal-f-a-q-\" target=\"_blank\">Reveal advertising program</a> is notorious for serving low-quality ads and has inspired little confidence in users who have tried it. The following is one of the tamer examples:</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/02/disqus-ads.png?ssl=1\"><img /></a></p>\n<p>&#8220;I think if you had somewhat decent advertising you might convince people that it&#8217;s worth it, but I had to yank it from one of my sites because it was all &#8216;Ron Paul wants you to buy gold!&#8217; and &#8217;22 times the photos showed too much!\'&#8221; Paul King, an author who writes for multiple publications, commented on Disqus&#8217; most recent advertising announcement. &#8220;Just put in a tier of non-spam advertising that&#8217;s actually relevant or charge based on comments or something.&#8221;</p>\n<p>Twitter is filled with complaints from users who are dissatisfied with the questionable quality of Disqus&#8217; advertising. Many are searching for alternatives.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\"><a href=\"https://twitter.com/disqus\">@disqus</a> We\'ve disabled ads straight away (they are literally ALL scams) &#8211; if you force those ads on us, we\'re dropping you like a hot potato</p>\n<p>&mdash; That\'s Nonsense (@thatsnonsense) <a href=\"https://twitter.com/thatsnonsense/status/828739990486208512\">February 6, 2017</a></p></blockquote>\n<p></p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">Why <a href=\"https://twitter.com/disqus\">@disqus</a> think it\'s acceptable to serve disgusting, misogynistic ads (OR ANY ADS) on people\'s blogs without asking is beyond me.</p>\n<p>&mdash; Rosie (@RosieLondoner) <a href=\"https://twitter.com/RosieLondoner/status/828642646478426112\">February 6, 2017</a></p></blockquote>\n<p></p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">I\'m removing <a href=\"https://twitter.com/hashtag/disqus?src=hash\">#disqus</a> from <a href=\"https://t.co/PSlovlA6Tm\">https://t.co/PSlovlA6Tm</a> since they\'ve suddenly turned on (notably creepy) ads with no warning.</p>\n<p>&mdash; James Britt <img src=\"https://s.w.org/images/core/emoji/2.2.1/72x72/1f3a7.png\" alt=\"🎧\" class=\"wp-smiley\" /> (@jamesbritt) <a href=\"https://twitter.com/jamesbritt/status/826922670407172096\">February 1, 2017</a></p></blockquote>\n<p></p>\n<p>This recent move to turn on advertising without publishers&#8217; permission is another communication blunder in the same vein as the previous attempt at Sponsored Comments. Disqus has failed to find a communication strategy that respects users&#8217; content while leading the company towards its goals at the same time. With spam-quality ads deploying network-wide, the company can certainly expect that some users will be willing to pay the $10/month to turn them off. Sadly, the experience of paying to turn off offensive ads feels more like getting mugged on your way to work than upgrading your service.</p>\n<p>The <a href=\"https://wordpress.org/plugins/disqus-comment-system/\" target=\"_blank\">Disqus Comment System</a> plugin has been hovering around 200,000 active sites for the past two years and its ratings continue to plummet on WordPress.org. Unless Disqus is able to dramatically improve its advertising network before its official March release, we may see a mass exodus to other commenting systems.</p>\n<div id=\"epoch-width-sniffer\"></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, 18 Feb 2017 00:16: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:13:\"Sarah Gooding\";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:81:\"WPTavern: How to Check if Installed Plugins Are No Longer in the Plugin Directory\";s: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:29:\"https://wptavern.com/?p=66106\";s: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:\"https://wptavern.com/how-to-check-if-installed-plugins-are-no-longer-in-the-plugin-directory\";s: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:9904:\"<p>When we wrote about <a href=\"https://wptavern.com/why-plugins-sometimes-disappear-from-the-wordpress-plugin-directory\">why plugins sometimes disappear</a> from the WordPress plugin directory, it generated a healthy discussion in the comments. One of the topics of discussion brought up is whether or not <a href=\"https://wptavern.com/why-plugins-sometimes-disappear-from-the-wordpress-plugin-directory#comment-209733\">users should be notified</a> when a plugin disappears and if so, how?</p>\n<p>Currently, when a plugin is hidden on the directory, users are not notified. If it&#8217;s removed due to a security vulnerability and the author chooses not to fix it or move the plugin somewhere else such as <a href=\"https://github.com/\">GitHub</a>, users are left in the dark.</p>\n<p>Donna Cavalier shared a <a href=\"https://wordpress.org/support/topic/plugin-is-missing-on-the-wordpress-org-directory/\">recent example</a> of why users should be notified. Contact Form DB is a popular plugin that saves contact form submissions from many popular Contact Forms plugins to the database. As of <a href=\"https://web.archive.org/web/20161030050515/https://wordpress.org/plugins/contact-form-7-to-database-extension/\">October 30th, 2016</a>, it was actively installed on more than 400K sites.</p>\n<p>Approximately <a href=\"https://wordpress.org/support/topic/plugin-is-missing-on-the-wordpress-org-directory/\">one month ago</a>, the plugin was hidden due to a security vulnerability. Instead of releasing a patch, Michael Simpson, creator of Contact Form DB, moved the plugin <a href=\"https://github.com/mdsimpson/contact-form-7-to-database-extension/releases\">to GitHub</a> and subsequently released a <a href=\"https://github.com/mdsimpson/contact-form-7-to-database-extension/releases/tag/v2.10.30\">new version</a> that patched the vulnerability. Simpson says the person on the plugin review team that he spoke with was condescending, unprofessional, and rubbed him the wrong way.</p>\n<p>&#8220;I’m happy to address any issues and meet any standards, but I’m at the limit of my patience,&#8221; Simpson said.</p>\n<p>&#8220;I try to be a good citizen and give back to the community. I’ve put in countless hours for close to seven years now. When I’m treated like this, it seems WordPress doesn’t value me or my contribution to its community.</p>\n<p>&#8220;Anyway, I put the code on GitHub and I will continue to support it. But at this point I’m not sure I want to deal with people like this to re-list the plugin on this site. I don’t need the frustration.&#8221;</p>\n<p><strong>If you use Contact Form DB, please <a href=\"https://github.com/mdsimpson/contact-form-7-to-database-extension/releases/tag/v2.10.30\">update to 2.10.30</a> as soon as possible as it contains the aforementioned security fix.</strong></p>\n<p>It&#8217;s impossible for Contact Form DB users to automatically install updates from GitHub without installing an <a href=\"https://wptavern.com/github-updater-4-1-to-add-remote-installation-for-wordpress-plugins-and-themes\">updater plugin</a>. This leaves thousands of sites at risk.</p>\n<h2>How to Know When Installed Plugins Are No Longer in the Directory</h2>\n<p>In the comments of <a href=\"https://wptavern.com/why-plugins-sometimes-disappear-from-the-wordpress-plugin-directory\">our article</a>, Tavern reader Central Geek <a href=\"https://wptavern.com/why-plugins-sometimes-disappear-from-the-wordpress-plugin-directory#comment-209776\">shared links</a> to a couple of plugins aimed at providing useful information such as, whether a <a href=\"https://wordpress.org/plugins/vendi-abandoned-plugin-check/\">plugin has been abandoned</a> and <a href=\"https://wordpress.org/plugins/better-plugin-compatibility-control/\">better plugin compatibility information</a>.</p>\n<p>One of the plugins he mentions is called <a href=\"https://wordpress.org/plugins/no-longer-in-directory/\">No Longer in Directory, </a>developed by <a href=\"https://profiles.wordpress.org/whitefirdesign/\">White Fir Design</a>. The plugin adds a page to the WordPress backend that informs users if any of the plugins that are installed are available in the plugin directory. It also separately lists installed plugins that haven&#8217;t been updated in two years or more.</p>\n<p><img /></p>\n<p>The check is performed using the plugin directory&#8217;s folder name. The author notes that this could lead to plugins that have never been in the plugin directory to be flagged if they use the same name as a plugin that was in the directory in the past. If you encounter this situation, you&#8217;re encouraged to create a new thread on the <a href=\"https://wordpress.org/support/plugin/no-longer-in-directory\">plugin&#8217;s support forum</a>.</p>\n<p>So far, No Longer in Directory is actively installed on more than 1K sites. Out of a total of <a href=\"https://wordpress.org/support/plugin/no-longer-in-directory/reviews/\">six reviews</a>, its average rating is 4.8 out of 5 stars. I tested the plugin with WordPress 4.8 alpha and didn&#8217;t encounter any issues.</p>\n<p>If this is a feature you&#8217;d like to see implemented in WordPress, consider <a href=\"https://wordpress.org/ideas/topic/alert-when-installed-plugins-have-been-removed-from-the-plugin-directory\">voting for it</a>. So far, the idea has 43 votes with a five-star average rating. <a href=\"https://profiles.wordpress.org/ipstenu\">Mika Epstein</a>, Plugin Directory Representative, <a href=\"https://wordpress.org/ideas/topic/alert-when-installed-plugins-have-been-removed-from-the-plugin-directory#post-22481\">responded to the idea</a> four years ago noting that it was being worked on.</p>\n<p>As Epstein mentioned in our previous article, explaining WHY a plugin has been closed is complex.</p>\n<p>“Obviously the last thing we want are people getting hacked, but it presents us with a few options and they all have flaws,&#8221; she said.</p>\n<p>&#8220;We’ve not been able to determine a way to tell people ‘This plugin is gone, don’t use it’ and ‘This plugin is gone, but use it if you want.’ without putting users at risk.”</p>\n<h2>If a Plugin Is Permanently Removed From the Directory, Users Should Be Notified</h2>\n<p>I believe users should be informed if a plugin is permanently removed from the directory. It doesn&#8217;t make sense to notify users if it&#8217;s temporarily hidden due to violating a guideline or a security issue. Plus, between upgrade and admin notices, users are receiving enough notifications as it is.</p>\n<p>I&#8217;m unsure if the notification should be an admin notice as we&#8217;ve <a href=\"https://wptavern.com/please-stop-abusing-wordpress-admin-notices\">already documented</a> how plugin authors are using them to advertise. Users are increasingly getting annoyed by them and they&#8217;re usefulness is in decline.</p>\n<p>There&#8217;s also the question as to who is responsible for informing users. This responsibility should fall squarely on the plugin author. If I was a plugin author and not interested in someone <a href=\"https://wptavern.com/adopt-me-plugin-tag-is-now-in-use-on-wordpress-org\">adopting my plugin</a> and wanted it removed from the directory, I&#8217;d do so by pushing out one last update.</p>\n<p>I&#8217;d explain in the plugin&#8217;s description and changelog that support and updates would no longer occur and that users should seek alternatives. I might even suggest a few that come to mind. Then, after about a month, I&#8217;d submit a request to the plugin review team to permanently remove it.</p>\n<p>This would give users a heads up and plenty of time to seek out an alternative. The Post Template plugin is a good example of this idea in action. Here is the notice it displayed on all of its settings pages before it disappeared.</p>\n<blockquote><p><strong>Since version 4.0.0, the plugin has been released under a commercial license. New features such as addition of custom fields to the templates have been added. Furthermore, this version is discontinued, which means that no further bug fixes, new features and compatibility fixes for new WordPress versions will be implemented. If you want to buy the latest version of Post Template, please visit the plugin web page.</strong></p></blockquote>\n<p>By notifying users ahead of time, the responsibility shifts to the user to find an alternative.</p>\n<p><a href=\"https://wordpress.org/support/topic/plugin-is-missing-on-the-wordpress-org-directory/page/2/#post-8726059\">Simpon </a>said he&#8217;ll work to get the plugin re-listed but it may take some time as he&#8217;s swamped with work. At the time of publishing, <a href=\"https://wordpress.org/plugins/contact-form-7-to-database-extension/\">the plugin</a> is not available on WordPress.org.</p>\n<h2>An Unfortunate Situation for Users of Contact Form DB</h2>\n<p>While <a href=\"https://wordpress.org/support/topic/plugin-is-missing-on-the-wordpress-org-directory/page/2/\">users sympathized</a> with Simpson over his decision, I think it&#8217;s partly irresponsible. If a plugin has a security vulnerability, patching it and making it available as soon as possible should take precedence over how one feels about a situation.</p>\n<p>Instead of putting aside differences and pushing out an update to patch a security vulnerability, Simpson chose to move the plugin and the patched version to GitHub. The decision not to work with the plugin review team has put thousands of sites at risk with no easy way for users to update.</p>\n<p>Hopefully, Simpson will work with the team to get a patched version of Contact Form DB back onto the directory as soon as possible. Until then, if you use Contact Form DB, please <a href=\"https://github.com/mdsimpson/contact-form-7-to-database-extension/releases/tag/v2.10.30\">update to 2.10.30</a> manually as it patches the security vulnerability.</p>\n<div id=\"epoch-width-sniffer\"></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, 17 Feb 2017 08:52:15 +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:13:\"Jeff Chandler\";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:87:\"WPTavern: WPWeekly Episode 263 – Plugins Disappearing, WordCamp Miami, and OSTraining\";s: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:58:\"https://wptavern.com?p=66103&preview=true&preview_id=66103\";s: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:\"https://wptavern.com/wpweekly-episode-263-plugins-disappearing-wordcamp-miami-and-ostraining\";s: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:3129:\"<p>In this episode, <a href=\"http://marcuscouch.com/\">Marcus Couch</a> and I discuss the news making headlines including, WordCamp Miami in its 9th year, OSTraining partnering with GoDaddy to release training videos, and why plugins sometimes disappear from the WordPress plugin directory. We also provide an update on the REST API vulnerability that is actively being exploited to deface webpages.</p>\n<h2>Stories Discussed:</h2>\n<p><a href=\"https://wptavern.com/wordpress-rest-api-vulnerability-exploits-continue\">WordPress REST API Vulnerability Exploits Continue</a><br />\n<a href=\"https://wptavern.com/google-changes-the-wording-of-its-wordpress-update-notifications\">Google Webmaster Tools Fixes Confusing Messages About Updating WordPress</a><br />\n<a href=\"https://wptavern.com/wordcamp-miami-2017-to-host-javascript-track-ama-spots-and-2-day-kids-camp\">WordCamp Miami 2017 to Host JavaScript Track, AMA Spots, and 2-Day Kids’ Camp</a><br />\n<a href=\"https://wptavern.com/ostraining-partners-with-godaddy-to-launch-free-wordpress-beginner-course-on-youtube\">OSTraining Partners with GoDaddy to Launch Free WordPress Beginner Course on YouTube</a><br />\n<a href=\"https://wptavern.com/why-plugins-sometimes-disappear-from-the-wordpress-plugin-directory\">Why Plugins Sometimes Disappear From the WordPress Plugin Directory</a></p>\n<h2>Plugins Picked By Marcus:</h2>\n<p><a href=\"https://wordpress.org/plugins/mobile-featured-image/\">Mobile Featured Image</a> allows users to add a featured image specifically for mobile devices. The new image can be a resized version of your featured image or an entirely new image targeted especially at mobile viewers.</p>\n<p><a href=\"https://wordpress.org/plugins/fb-messenger-bot/\">FB Messenger Bot for WooCommerce</a> automatically messages clients from your Facebook page, WooCommerce, or Gravity Forms. The plugin creates a &#8216;send to Facebook&#8217; button at the end of the WooCommerce Sales process or on the Gravity Forms thank you page.</p>\n<p><a href=\"https://wordpress.org/plugins/restrict-new-users-by-domain/\">Restrict New Users by Domain </a>makes it easy to whitelist or blacklist email domains that new users can use when registering. If using the whitelist, only new users who enter an email domain on the whitelist will be allowed to create an account. If using the blacklist, a user who enters an email domain on the blacklist will be unable to register.</p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, February 22nd 3:00 P.M. Eastern</p>\n<p><strong>Subscribe To WPWeekly Via Itunes: </strong><a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\" target=\"_blank\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via RSS: </strong><a href=\"https://wptavern.com/feed/podcast\" target=\"_blank\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via Stitcher Radio: </strong><a href=\"http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr\" target=\"_blank\">Click here to subscribe</a></p>\n<p><strong>Listen To Episode #263:</strong><br />\n</p>\n<div id=\"epoch-width-sniffer\"></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, 16 Feb 2017 23:01: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s: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\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:8:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Fri, 10 Mar 2017 08:24:29 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:13:\"last-modified\";s:29:\"Fri, 10 Mar 2017 08:15:12 GMT\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:11:\"HIT lax 249\";s:16:\"content-encoding\";s:4:\"gzip\";}}s:5:\"build\";s:14:\"20170203093618\";}", "no");
INSERT INTO `wp_options` VALUES("827", "_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9", "1489177469", "no");
INSERT INTO `wp_options` VALUES("828", "_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9", "1489134269", "no");
INSERT INTO `wp_options` VALUES("829", "_transient_timeout_feed_b9388c83948825c1edaef0d856b7b109", "1489177470", "no");
INSERT INTO `wp_options` VALUES("830", "_transient_feed_b9388c83948825c1edaef0d856b7b109", "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:117:\"\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:2:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"WordPress Plugins » View: 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:45:\"https://wordpress.org/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:34:\"WordPress Plugins » View: 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:\"Fri, 10 Mar 2017 07:59: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: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:30:{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: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:60:\"https://wordpress.org/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:36:\"18101@https://wordpress.org/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: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:21:\"Regenerate Thumbnails\";s: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:\"https://wordpress.org/plugins/regenerate-thumbnails/#post-6743\";s: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 Aug 2008 14:38: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:35:\"6743@https://wordpress.org/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:76:\"Allows you to regenerate your thumbnails after changing the thumbnail sizes.\";s: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:25:\"Alex Mills (Viper007Bond)\";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:11:\"WP-PageNavi\";s: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:\"https://wordpress.org/plugins/wp-pagenavi/#post-363\";s: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 23:17: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"363@https://wordpress.org/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:49:\"Adds a more advanced paging navigation interface.\";s: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:\"Lester Chan\";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:26:\"Page Builder by SiteOrigin\";s: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:\"https://wordpress.org/plugins/siteorigin-panels/#post-51888\";s: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, 11 Apr 2013 10:36: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:36:\"51888@https://wordpress.org/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:111:\"Build responsive page layouts using the widgets you know and love using this simple drag and drop page 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:11:\"Greg Priday\";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:21:\"Really Simple CAPTCHA\";s: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:\"https://wordpress.org/plugins/really-simple-captcha/#post-9542\";s: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, 09 Mar 2009 02:17: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:35:\"9542@https://wordpress.org/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:138:\"Really Simple CAPTCHA is a CAPTCHA module intended to be called from other plugins. It is originally created for my Contact Form 7 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: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: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:14:\"Duplicate Post\";s: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:\"https://wordpress.org/plugins/duplicate-post/#post-2646\";s: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, 05 Dec 2007 17:40: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:35:\"2646@https://wordpress.org/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:22:\"Clone posts and 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:4:\"Lopo\";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:22:\"Advanced Custom Fields\";s: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:\"https://wordpress.org/plugins/advanced-custom-fields/#post-25254\";s: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, 17 Mar 2011 04:07: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:36:\"25254@https://wordpress.org/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:68:\"Customise WordPress with powerful, professional and intuitive fields\";s: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:\"elliotcondon\";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:\"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:64:\"https://wordpress.org/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:34:\"132@https://wordpress.org/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:14:\"Arne Brachhold\";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:9:\"Yoast 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:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"https://wordpress.org/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:35:\"8321@https://wordpress.org/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:118:\"Improve your WordPress SEO: Write better content and have a fully optimized WordPress site using the Yoast SEO 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: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: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:16:\"TinyMCE Advanced\";s: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:\"https://wordpress.org/plugins/tinymce-advanced/#post-2082\";s: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 Jun 2007 15:00:26 +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:35:\"2082@https://wordpress.org/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:58:\"Extends and enhances TinyMCE, the WordPress Visual Editor.\";s: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:\"Andrew Ozz\";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:35:\"UpdraftPlus WordPress Backup 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:53:\"https://wordpress.org/plugins/updraftplus/#post-38058\";s: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, 21 May 2012 15:14:11 +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:36:\"38058@https://wordpress.org/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:\"Backup and restoration made easy. Complete backups; manual or scheduled (backup to S3, Dropbox, Google Drive, Rackspace, FTP, SFTP, email + others).\";s: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:\"David Anderson\";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: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:56:\"https://wordpress.org/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:36:\"12073@https://wordpress.org/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:144:\"Search Engine (SEO) &#38; Performance Optimization (WPO) via caching. Integrated caching: CDN, Minify, Page, Object, Fragment, Database 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: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:14:\"WP Super 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:55:\"https://wordpress.org/plugins/wp-super-cache/#post-2572\";s: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, 05 Nov 2007 11:40:04 +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:35:\"2572@https://wordpress.org/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:73:\"A very fast caching engine for WordPress that produces static html files.\";s: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:\"Donncha O Caoimh\";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: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:46:\"https://wordpress.org/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:33:\"15@https://wordpress.org/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:\"Akismet checks your comments and contact form submissions against our global database of spam to protect you and your site from malicious content.\";s: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: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:11:\"Hello Dolly\";s: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:\"https://wordpress.org/plugins/hello-dolly/#post-5790\";s: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 May 2008 22:11: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:35:\"5790@https://wordpress.org/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:150:\"This is not just a plugin, it symbolizes the hope and enthusiasm of an entire generation summed up in two words sung most famously by Louis Armstrong.\";s: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:15;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:49:\"https://wordpress.org/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:36:\"23862@https://wordpress.org/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:\"The one plugin you need for stats, related posts, search engine optimization, social sharing, protection, backups, speed, and email list management.\";s: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:\"Automattic\";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: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:42:\"NextGEN Gallery - WordPress Gallery 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:56:\"https://wordpress.org/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:35:\"1169@https://wordpress.org/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:\"The most popular WordPress gallery plugin and one of the most popular plugins of all time with over 16.5 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:17;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:49:\"Google Analytics for WordPress by MonsterInsights\";s: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:71:\"https://wordpress.org/plugins/google-analytics-for-wordpress/#post-2316\";s: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, 14 Sep 2007 12:15: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"2316@https://wordpress.org/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:125:\"The best Google Analytics plugin for WordPress. See how visitors find and use your website, so you can keep them coming 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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Syed Balkhi\";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: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:\"WooCommerce\";s: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:53:\"https://wordpress.org/plugins/woocommerce/#post-29860\";s: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, 05 Sep 2011 08:13:36 +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:36:\"29860@https://wordpress.org/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:\"WooCommerce is a powerful, extendable eCommerce plugin that helps you sell anything. Beautifully.\";s: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:\"WooThemes\";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: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:\"Wordfence 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:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://wordpress.org/plugins/wordfence/#post-29832\";s: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, 04 Sep 2011 03:13: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:36:\"29832@https://wordpress.org/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:149:\"Secure your website with the most comprehensive WordPress security plugin. Firewall, malware scan, blocking, live traffic, login security &#38; 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:9:\"Wordfence\";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: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:59:\"https://wordpress.org/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:34:\"753@https://wordpress.org/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:\"The original SEO plugin for WordPress, downloaded over 30,000,000 times since 2007.\";s: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:21;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:55:\"https://wordpress.org/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:35:\"2141@https://wordpress.org/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:22;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:33:\"Google Analytics Dashboard for WP\";s: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:\"https://wordpress.org/plugins/google-analytics-dashboard-for-wp/#post-50539\";s: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 Mar 2013 17:07:11 +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:36:\"50539@https://wordpress.org/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:125:\"Displays Google Analytics stats in your WordPress Dashboard. Inserts the latest Google Analytics tracking code in your 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:\"Alin Marcu\";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: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:10:\"Duplicator\";s: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:\"https://wordpress.org/plugins/duplicator/#post-26607\";s: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 May 2011 12:15: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:36:\"26607@https://wordpress.org/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:\"Duplicate, clone, backup, move and transfer an entire site from one location to another.\";s: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:\"Cory Lamle\";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: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:\"Disable 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:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wordpress.org/plugins/disable-comments/#post-26907\";s: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, 27 May 2011 04:42: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:36:\"26907@https://wordpress.org/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:150:\"Allows administrators to globally disable comments on their site. Comments can be disabled according to post type. Multisite friendly. Provides tool t\";s: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:\"Samir Shah\";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: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:\"WP Multibyte Patch\";s: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:\"https://wordpress.org/plugins/wp-multibyte-patch/#post-28395\";s: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, 14 Jul 2011 12:22: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:36:\"28395@https://wordpress.org/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:71:\"Multibyte functionality enhancement for the WordPress Japanese package.\";s: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:\"plugin-master\";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: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:\"Black Studio TinyMCE 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:69:\"https://wordpress.org/plugins/black-studio-tinymce-widget/#post-31973\";s: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, 10 Nov 2011 15:06: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:36:\"31973@https://wordpress.org/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:39:\"The visual editor widget 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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Marco Chiesi\";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: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:25:\"SiteOrigin Widgets Bundle\";s: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:\"https://wordpress.org/plugins/so-widgets-bundle/#post-67824\";s: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, 24 May 2014 14:27: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:36:\"67824@https://wordpress.org/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:128:\"A collection of all widgets, neatly bundled into a single plugin. It&#039;s also a framework to code your own widgets on top of.\";s: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:\"Greg Priday\";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: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:46:\"iThemes Security (formerly Better WP 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:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://wordpress.org/plugins/better-wp-security/#post-21738\";s: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 22:06: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:36:\"21738@https://wordpress.org/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:\"Take the guesswork out of WordPress security. iThemes Security offers 30+ ways to lock down WordPress in an easy-to-use WordPress security 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:7:\"iThemes\";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: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:\"Ninja Forms\";s: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:53:\"https://wordpress.org/plugins/ninja-forms/#post-33147\";s: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, 20 Dec 2011 18:11: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:36:\"33147@https://wordpress.org/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:\"Drag and drop fields in an intuitive UI to create create contact forms, email subscription forms, order forms, payment forms, send emails 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:12:\"Kevin Stover\";s: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:46:\"https://wordpress.org/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\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:12:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Fri, 10 Mar 2017 08:24:30 GMT\";s:12:\"content-type\";s:23:\"text/xml; charset=UTF-8\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:25:\"strict-transport-security\";s:11:\"max-age=360\";s:7:\"expires\";s:29:\"Fri, 10 Mar 2017 08:34:06 GMT\";s:13:\"cache-control\";s:0:\"\";s:6:\"pragma\";s:0:\"\";s:13:\"last-modified\";s:31:\"Fri, 10 Mar 2017 07:59:06 +0000\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:11:\"HIT lax 250\";s:16:\"content-encoding\";s:4:\"gzip\";}}s:5:\"build\";s:14:\"20170203093618\";}", "no");
INSERT INTO `wp_options` VALUES("831", "_transient_timeout_feed_mod_b9388c83948825c1edaef0d856b7b109", "1489177470", "no");
INSERT INTO `wp_options` VALUES("832", "_transient_feed_mod_b9388c83948825c1edaef0d856b7b109", "1489134270", "no");
INSERT INTO `wp_options` VALUES("833", "_transient_timeout_plugin_slugs", "1489220670", "no");
INSERT INTO `wp_options` VALUES("834", "_transient_plugin_slugs", "a:9:{i:0;s:19:\"akismet/akismet.php\";i:1;s:37:\"collapse-content/collapse-content.php\";i:2;s:25:\"duplicator/duplicator.php\";i:3;s:33:\"essential-grid/essential-grid.php\";i:4;s:25:\"form-maker/form-maker.php\";i:5;s:9:\"hello.php\";i:6;s:23:\"post-grid/post-grid.php\";i:7;s:23:\"slider-image/slider.php\";i:8;s:23:\"slider-wd/slider-wd.php\";}", "no");
INSERT INTO `wp_options` VALUES("835", "_transient_timeout_dash_5f25301ca0145abac6dfc3a0899dc43b", "1489177470", "no");
INSERT INTO `wp_options` VALUES("836", "_transient_dash_5f25301ca0145abac6dfc3a0899dc43b", "<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2017/03/wordpress-4-7-3-security-and-maintenance-release/\'>WordPress 4.7.3 Security and Maintenance Release</a> <span class=\"rss-date\">2017-03-06</span><div class=\"rssSummary\">WordPress 4.7.3 is now available. This is a security release for all previous versions and we strongly encourage you to update your sites immediately. WordPress versions 4.7.2 and earlier are affected by six security issues: Cross-site scripting (XSS) via media file metadata.  Reported by Chris Andrè Dale, Yorick Koster, and Simon P. Briggs. Control characters can trick redirect [&hellip;]</div></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wptavern.com/wefoster-launches-hosting-platform-catered-to-online-communities\'>WPTavern: WeFoster Launches Hosting Platform Catered to Online Communities</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/stack-overflow-jobs-data-shows-reactjs-skills-in-high-demand-wordpress-market-oversaturated-with-developers\'>WPTavern: Stack Overflow Jobs Data Shows ReactJS Skills in High Demand, WordPress Market Oversaturated with Developers</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/google-launches-invisible-recaptcha\'>WPTavern: Google Launches Invisible reCAPTCHA</a></li></ul></div><div class=\"rss-widget\"><ul><li class=\"dashboard-news-plugin\"><span>Popular Plugin:</span> Ninja Forms&nbsp;<a href=\"plugin-install.php?tab=plugin-information&amp;plugin=ninja-forms&amp;_wpnonce=ce2aeab15e&amp;TB_iframe=true&amp;width=600&amp;height=800\" class=\"thickbox open-plugin-details-modal\" aria-label=\"Install Ninja Forms\">(Install)</a></li></ul></div>", "no");
INSERT INTO `wp_options` VALUES("837", "_site_transient_update_plugins", "O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1489134361;s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:8:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:7:\"akismet\";s:6:\"plugin\";s:19:\"akismet/akismet.php\";s:11:\"new_version\";s:3:\"3.3\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:54:\"https://downloads.wordpress.org/plugin/akismet.3.3.zip\";}s:37:\"collapse-content/collapse-content.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"76777\";s:4:\"slug\";s:16:\"collapse-content\";s:6:\"plugin\";s:37:\"collapse-content/collapse-content.php\";s:11:\"new_version\";s:5:\"1.1.4\";s:3:\"url\";s:47:\"https://wordpress.org/plugins/collapse-content/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/collapse-content.1.1.4.zip\";}s:25:\"duplicator/duplicator.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"22600\";s:4:\"slug\";s:10:\"duplicator\";s:6:\"plugin\";s:25:\"duplicator/duplicator.php\";s:11:\"new_version\";s:6:\"1.1.34\";s:3:\"url\";s:41:\"https://wordpress.org/plugins/duplicator/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/duplicator.1.1.34.zip\";}s:25:\"form-maker/form-maker.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"30194\";s:4:\"slug\";s:10:\"form-maker\";s:6:\"plugin\";s:25:\"form-maker/form-maker.php\";s:11:\"new_version\";s:6:\"1.10.8\";s:3:\"url\";s:41:\"https://wordpress.org/plugins/form-maker/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/form-maker.1.10.8.zip\";}s:9:\"hello.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:4:\"3564\";s:4:\"slug\";s:11:\"hello-dolly\";s:6:\"plugin\";s:9:\"hello.php\";s:11:\"new_version\";s:3:\"1.6\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/hello-dolly/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/hello-dolly.1.6.zip\";}s:23:\"post-grid/post-grid.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"57538\";s:4:\"slug\";s:9:\"post-grid\";s:6:\"plugin\";s:23:\"post-grid/post-grid.php\";s:11:\"new_version\";s:6:\"2.0.18\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/post-grid/\";s:7:\"package\";s:52:\"https://downloads.wordpress.org/plugin/post-grid.zip\";}s:23:\"slider-image/slider.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"49075\";s:4:\"slug\";s:12:\"slider-image\";s:6:\"plugin\";s:23:\"slider-image/slider.php\";s:11:\"new_version\";s:5:\"3.2.3\";s:3:\"url\";s:43:\"https://wordpress.org/plugins/slider-image/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/slider-image.3.2.3.zip\";}s:23:\"slider-wd/slider-wd.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"54207\";s:4:\"slug\";s:9:\"slider-wd\";s:6:\"plugin\";s:23:\"slider-wd/slider-wd.php\";s:11:\"new_version\";s:6:\"1.1.73\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/slider-wd/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/slider-wd.1.1.73.zip\";}}}", "no");
INSERT INTO `wp_options` VALUES("838", "wpsm_collapse_C_review", "a:2:{s:4:\"time\";i:1489134403;s:9:\"dismissed\";b:0;}", "yes");
INSERT INTO `wp_options` VALUES("839", "duplicator_package_active", "O:11:\"DUP_Package\":23:{s:7:\"Created\";s:19:\"2017-03-10 08:31:59\";s:7:\"Version\";s:6:\"1.1.34\";s:9:\"VersionWP\";s:5:\"4.7.3\";s:9:\"VersionDB\";s:6:\"5.6.33\";s:10:\"VersionPHP\";s:6:\"5.6.29\";s:9:\"VersionOS\";s:5:\"Linux\";s:2:\"ID\";N;s:4:\"Name\";s:23:\"20170310_redatechnology\";s:4:\"Hash\";s:29:\"58c2647f98ce86302170310083159\";s:8:\"NameHash\";s:53:\"20170310_redatechnology_58c2647f98ce86302170310083159\";s:4:\"Type\";i:0;s:5:\"Notes\";s:0:\"\";s:9:\"StorePath\";s:47:\"/home/redahkco/reda.selfip.net/wp-snapshots/tmp\";s:8:\"StoreURL\";s:36:\"http://reda.selfip.net/wp-snapshots/\";s:8:\"ScanFile\";s:63:\"20170310_redatechnology_58c2647f98ce86302170310083159_scan.json\";s:7:\"Runtime\";N;s:7:\"ExeSize\";N;s:7:\"ZipSize\";N;s:6:\"Status\";N;s:6:\"WPUser\";N;s:7:\"Archive\";O:11:\"DUP_Archive\":13:{s:10:\"FilterDirs\";s:0:\"\";s:10:\"FilterExts\";s:0:\"\";s:13:\"FilterDirsAll\";a:0:{}s:13:\"FilterExtsAll\";a:0:{}s:8:\"FilterOn\";i:0;s:4:\"File\";N;s:6:\"Format\";s:3:\"ZIP\";s:7:\"PackDir\";s:30:\"/home/redahkco/reda.selfip.net\";s:4:\"Size\";i:0;s:4:\"Dirs\";a:0:{}s:5:\"Files\";a:0:{}s:10:\"FilterInfo\";O:23:\"DUP_Archive_Filter_Info\":6:{s:4:\"Dirs\";O:34:\"DUP_Archive_Filter_Scope_Directory\":4:{s:7:\"Warning\";a:0:{}s:10:\"Unreadable\";a:0:{}s:4:\"Core\";a:0:{}s:8:\"Instance\";a:0:{}}s:5:\"Files\";O:29:\"DUP_Archive_Filter_Scope_File\":5:{s:4:\"Size\";a:0:{}s:7:\"Warning\";a:0:{}s:10:\"Unreadable\";a:0:{}s:4:\"Core\";a:0:{}s:8:\"Instance\";a:0:{}}s:4:\"Exts\";O:29:\"DUP_Archive_Filter_Scope_Base\":2:{s:4:\"Core\";a:0:{}s:8:\"Instance\";a:0:{}}s:9:\"UDirCount\";i:0;s:10:\"UFileCount\";i:0;s:9:\"UExtCount\";i:0;}s:10:\"\0*\0Package\";O:11:\"DUP_Package\":23:{s:7:\"Created\";s:19:\"2017-03-10 08:31:59\";s:7:\"Version\";s:6:\"1.1.34\";s:9:\"VersionWP\";s:5:\"4.7.3\";s:9:\"VersionDB\";s:6:\"5.6.33\";s:10:\"VersionPHP\";s:6:\"5.6.29\";s:9:\"VersionOS\";s:5:\"Linux\";s:2:\"ID\";N;s:4:\"Name\";s:23:\"20170310_redatechnology\";s:4:\"Hash\";s:29:\"58c2647f98ce86302170310083159\";s:8:\"NameHash\";s:53:\"20170310_redatechnology_58c2647f98ce86302170310083159\";s:4:\"Type\";i:0;s:5:\"Notes\";s:0:\"\";s:9:\"StorePath\";s:47:\"/home/redahkco/reda.selfip.net/wp-snapshots/tmp\";s:8:\"StoreURL\";s:36:\"http://reda.selfip.net/wp-snapshots/\";s:8:\"ScanFile\";N;s:7:\"Runtime\";N;s:7:\"ExeSize\";N;s:7:\"ZipSize\";N;s:6:\"Status\";N;s:6:\"WPUser\";N;s:7:\"Archive\";r:22;s:9:\"Installer\";O:13:\"DUP_Installer\":12:{s:4:\"File\";N;s:4:\"Size\";i:0;s:10:\"OptsDBHost\";s:0:\"\";s:10:\"OptsDBPort\";s:0:\"\";s:10:\"OptsDBName\";s:0:\"\";s:10:\"OptsDBUser\";s:0:\"\";s:12:\"OptsSSLAdmin\";i:0;s:12:\"OptsSSLLogin\";i:0;s:11:\"OptsCacheWP\";i:0;s:13:\"OptsCachePath\";i:0;s:10:\"OptsURLNew\";s:0:\"\";s:10:\"\0*\0Package\";r:52;}s:8:\"Database\";O:12:\"DUP_Database\":13:{s:4:\"Type\";s:5:\"MySQL\";s:4:\"Size\";N;s:4:\"File\";N;s:4:\"Path\";N;s:12:\"FilterTables\";s:0:\"\";s:8:\"FilterOn\";i:0;s:4:\"Name\";N;s:10:\"Compatible\";s:0:\"\";s:8:\"Comments\";s:28:\"MySQL Community Server (GPL)\";s:10:\"\0*\0Package\";r:52;s:25:\"\0DUP_Database\0dbStorePath\";N;s:23:\"\0DUP_Database\0EOFMarker\";s:0:\"\";s:26:\"\0DUP_Database\0networkFlush\";b:0;}}}s:9:\"Installer\";r:74;s:8:\"Database\";r:87;}", "yes");

/* INSERT TABLE DATA: wp_postmeta */
INSERT INTO `wp_postmeta` VALUES("11", "11", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("12", "11", "_edit_lock", "1487935981:1");
INSERT INTO `wp_postmeta` VALUES("15", "15", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("16", "15", "_edit_lock", "1487936861:1");
INSERT INTO `wp_postmeta` VALUES("17", "17", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("18", "17", "_edit_lock", "1488870516:1");
INSERT INTO `wp_postmeta` VALUES("19", "19", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("20", "19", "_edit_lock", "1487343099:1");
INSERT INTO `wp_postmeta` VALUES("21", "21", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("22", "21", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("23", "21", "_menu_item_object_id", "17");
INSERT INTO `wp_postmeta` VALUES("24", "21", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("25", "21", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("26", "21", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("27", "21", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("28", "21", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("48", "24", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("49", "24", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("50", "24", "_menu_item_object_id", "11");
INSERT INTO `wp_postmeta` VALUES("51", "24", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("52", "24", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("53", "24", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("54", "24", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("55", "24", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("85", "29", "_wp_attached_file", "2016/09/gmatrix_nav_bar.png");
INSERT INTO `wp_postmeta` VALUES("86", "29", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1020;s:6:\"height\";i:75;s:4:\"file\";s:27:\"2016/09/gmatrix_nav_bar.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"gmatrix_nav_bar-150x75.png\";s:5:\"width\";i:150;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"gmatrix_nav_bar-300x22.png\";s:5:\"width\";i:300;s:6:\"height\";i:22;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"gmatrix_nav_bar-768x56.png\";s:5:\"width\";i:768;s:6:\"height\";i:56;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{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:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("91", "1", "_edit_lock", "1487343105:1");
INSERT INTO `wp_postmeta` VALUES("92", "1", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("103", "36", "_wp_attached_file", "2016/09/header_350.png");
INSERT INTO `wp_postmeta` VALUES("104", "36", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:351;s:6:\"height\";i:41;s:4:\"file\";s:22:\"2016/09/header_350.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"header_350-150x41.png\";s:5:\"width\";i:150;s:6:\"height\";i:41;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"header_350-300x35.png\";s:5:\"width\";i:300;s:6:\"height\";i:35;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{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:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("113", "41", "_wp_attached_file", "2016/09/header_250.png");
INSERT INTO `wp_postmeta` VALUES("114", "41", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:251;s:6:\"height\";i:42;s:4:\"file\";s:22:\"2016/09/header_250.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"header_250-150x42.png\";s:5:\"width\";i:150;s:6:\"height\";i:42;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{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:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("115", "42", "_wp_attached_file", "2016/09/header_438.png");
INSERT INTO `wp_postmeta` VALUES("116", "42", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:439;s:6:\"height\";i:42;s:4:\"file\";s:22:\"2016/09/header_438.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"header_438-150x42.png\";s:5:\"width\";i:150;s:6:\"height\";i:42;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"header_438-300x29.png\";s:5:\"width\";i:300;s:6:\"height\";i:29;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{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:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("117", "43", "_wp_attached_file", "2016/09/header_500.png");
INSERT INTO `wp_postmeta` VALUES("118", "43", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:501;s:6:\"height\";i:41;s:4:\"file\";s:22:\"2016/09/header_500.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"header_500-150x41.png\";s:5:\"width\";i:150;s:6:\"height\";i:41;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"header_500-300x25.png\";s:5:\"width\";i:300;s:6:\"height\";i:25;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{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:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("119", "44", "_wp_attached_file", "2016/09/header_600.png");
INSERT INTO `wp_postmeta` VALUES("120", "44", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:601;s:6:\"height\";i:42;s:4:\"file\";s:22:\"2016/09/header_600.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"header_600-150x42.png\";s:5:\"width\";i:150;s:6:\"height\";i:42;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"header_600-300x21.png\";s:5:\"width\";i:300;s:6:\"height\";i:21;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{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:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("121", "45", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("122", "45", "_edit_lock", "1487936150:1");
INSERT INTO `wp_postmeta` VALUES("129", "47", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("130", "47", "_edit_lock", "1487343109:1");
INSERT INTO `wp_postmeta` VALUES("135", "49", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("136", "49", "_edit_lock", "1487936133:1");
INSERT INTO `wp_postmeta` VALUES("141", "51", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("142", "51", "_edit_lock", "1487936273:1");
INSERT INTO `wp_postmeta` VALUES("148", "77", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("149", "77", "_edit_lock", "1487935953:1");
INSERT INTO `wp_postmeta` VALUES("150", "77", "_wp_page_template", "products.php");
INSERT INTO `wp_postmeta` VALUES("151", "79", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("152", "79", "_edit_lock", "1487935975:1");
INSERT INTO `wp_postmeta` VALUES("153", "79", "_wp_page_template", "products.php");
INSERT INTO `wp_postmeta` VALUES("154", "81", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("155", "81", "_edit_lock", "1487935980:1");
INSERT INTO `wp_postmeta` VALUES("156", "81", "_wp_page_template", "products.php");
INSERT INTO `wp_postmeta` VALUES("232", "11", "_wp_page_template", "news.php");
INSERT INTO `wp_postmeta` VALUES("247", "105", "_wp_attached_file", "2016/09/about_intro.png");
INSERT INTO `wp_postmeta` VALUES("248", "105", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:900;s:6:\"height\";i:126;s:4:\"file\";s:23:\"2016/09/about_intro.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"about_intro-150x126.png\";s:5:\"width\";i:150;s:6:\"height\";i:126;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"about_intro-300x42.png\";s:5:\"width\";i:300;s:6:\"height\";i:42;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"about_intro-768x108.png\";s:5:\"width\";i:768;s:6:\"height\";i:108;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{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:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("249", "15", "_wp_page_template", "about.php");
INSERT INTO `wp_postmeta` VALUES("250", "110", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("251", "110", "_edit_lock", "1487936145:1");
INSERT INTO `wp_postmeta` VALUES("256", "112", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("257", "112", "_edit_lock", "1487936144:1");
INSERT INTO `wp_postmeta` VALUES("260", "114", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("261", "114", "_edit_lock", "1487936143:1");
INSERT INTO `wp_postmeta` VALUES("264", "116", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("265", "116", "_edit_lock", "1487936141:1");
INSERT INTO `wp_postmeta` VALUES("268", "118", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("271", "118", "_edit_lock", "1487936140:1");
INSERT INTO `wp_postmeta` VALUES("274", "17", "_wp_page_template", "contact.php");
INSERT INTO `wp_postmeta` VALUES("301", "133", "_menu_item_type", "custom");
INSERT INTO `wp_postmeta` VALUES("302", "133", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("303", "133", "_menu_item_object_id", "133");
INSERT INTO `wp_postmeta` VALUES("304", "133", "_menu_item_object", "custom");
INSERT INTO `wp_postmeta` VALUES("305", "133", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("306", "133", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("307", "133", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("308", "133", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("318", "135", "_menu_item_type", "custom");
INSERT INTO `wp_postmeta` VALUES("319", "135", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("320", "135", "_menu_item_object_id", "135");
INSERT INTO `wp_postmeta` VALUES("321", "135", "_menu_item_object", "custom");
INSERT INTO `wp_postmeta` VALUES("322", "135", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("323", "135", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("324", "135", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("325", "135", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("327", "136", "_menu_item_type", "custom");
INSERT INTO `wp_postmeta` VALUES("328", "136", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("329", "136", "_menu_item_object_id", "136");
INSERT INTO `wp_postmeta` VALUES("330", "136", "_menu_item_object", "custom");
INSERT INTO `wp_postmeta` VALUES("331", "136", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("332", "136", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("333", "136", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("334", "136", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("348", "137", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("349", "137", "_edit_lock", "1487935972:1");
INSERT INTO `wp_postmeta` VALUES("350", "137", "_wp_page_template", "all_text_layout.php");
INSERT INTO `wp_postmeta` VALUES("351", "139", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("352", "139", "_wp_page_template", "all_text_layout.php");
INSERT INTO `wp_postmeta` VALUES("353", "139", "_edit_lock", "1487935969:1");
INSERT INTO `wp_postmeta` VALUES("354", "141", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("355", "141", "_edit_lock", "1487935948:1");
INSERT INTO `wp_postmeta` VALUES("356", "141", "_wp_page_template", "all_text_layout.php");
INSERT INTO `wp_postmeta` VALUES("357", "143", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("358", "143", "_edit_lock", "1487935979:1");
INSERT INTO `wp_postmeta` VALUES("359", "143", "_wp_page_template", "all_text_layout.php");
INSERT INTO `wp_postmeta` VALUES("360", "145", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("361", "145", "_edit_lock", "1487935997:1");
INSERT INTO `wp_postmeta` VALUES("362", "145", "_wp_page_template", "all_text_layout.php");
INSERT INTO `wp_postmeta` VALUES("363", "147", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("364", "147", "_wp_page_template", "all_text_layout.php");
INSERT INTO `wp_postmeta` VALUES("365", "147", "_edit_lock", "1487935977:1");
INSERT INTO `wp_postmeta` VALUES("366", "149", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("367", "149", "_menu_item_menu_item_parent", "135");
INSERT INTO `wp_postmeta` VALUES("368", "149", "_menu_item_object_id", "147");
INSERT INTO `wp_postmeta` VALUES("369", "149", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("370", "149", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("371", "149", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("372", "149", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("373", "149", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("375", "150", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("376", "150", "_menu_item_menu_item_parent", "135");
INSERT INTO `wp_postmeta` VALUES("377", "150", "_menu_item_object_id", "145");
INSERT INTO `wp_postmeta` VALUES("378", "150", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("379", "150", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("380", "150", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("381", "150", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("382", "150", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("384", "151", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("385", "151", "_menu_item_menu_item_parent", "135");
INSERT INTO `wp_postmeta` VALUES("386", "151", "_menu_item_object_id", "143");
INSERT INTO `wp_postmeta` VALUES("387", "151", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("388", "151", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("389", "151", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("390", "151", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("391", "151", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("420", "155", "_wp_attached_file", "2016/10/header_900.png");
INSERT INTO `wp_postmeta` VALUES("421", "155", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:900;s:6:\"height\";i:41;s:4:\"file\";s:22:\"2016/10/header_900.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"header_900-150x41.png\";s:5:\"width\";i:150;s:6:\"height\";i:41;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"header_900-300x14.png\";s:5:\"width\";i:300;s:6:\"height\";i:14;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"header_900-768x35.png\";s:5:\"width\";i:768;s:6:\"height\";i:35;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{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:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("422", "168", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("423", "168", "_wp_page_template", "all_text_layout.php");
INSERT INTO `wp_postmeta` VALUES("424", "168", "_edit_lock", "1488870496:1");
INSERT INTO `wp_postmeta` VALUES("425", "170", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("426", "170", "_edit_lock", "1488870866:1");
INSERT INTO `wp_postmeta` VALUES("427", "170", "_wp_page_template", "all_text_layout.php");
INSERT INTO `wp_postmeta` VALUES("428", "172", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("429", "172", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("430", "172", "_menu_item_object_id", "15");
INSERT INTO `wp_postmeta` VALUES("431", "172", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("432", "172", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("433", "172", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("434", "172", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("435", "172", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("436", "172", "_menu_item_orphaned", "1485773674");
INSERT INTO `wp_postmeta` VALUES("437", "173", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("438", "173", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("439", "173", "_menu_item_object_id", "11");
INSERT INTO `wp_postmeta` VALUES("440", "173", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("441", "173", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("442", "173", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("443", "173", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("444", "173", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("445", "173", "_menu_item_orphaned", "1485773674");
INSERT INTO `wp_postmeta` VALUES("446", "174", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("447", "174", "_menu_item_menu_item_parent", "223");
INSERT INTO `wp_postmeta` VALUES("448", "174", "_menu_item_object_id", "168");
INSERT INTO `wp_postmeta` VALUES("449", "174", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("450", "174", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("451", "174", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("452", "174", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("453", "174", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("455", "175", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("456", "175", "_menu_item_menu_item_parent", "223");
INSERT INTO `wp_postmeta` VALUES("457", "175", "_menu_item_object_id", "170");
INSERT INTO `wp_postmeta` VALUES("458", "175", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("459", "175", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("460", "175", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("461", "175", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("462", "175", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("464", "179", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("465", "179", "_wp_page_template", "all_text_layout.php");
INSERT INTO `wp_postmeta` VALUES("466", "179", "_edit_lock", "1487935995:1");
INSERT INTO `wp_postmeta` VALUES("467", "181", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("468", "181", "_wp_page_template", "all_text_layout.php");
INSERT INTO `wp_postmeta` VALUES("469", "181", "_edit_lock", "1487935950:1");
INSERT INTO `wp_postmeta` VALUES("470", "183", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("471", "183", "_wp_page_template", "all_text_layout.php");
INSERT INTO `wp_postmeta` VALUES("472", "183", "_edit_lock", "1487935978:1");
INSERT INTO `wp_postmeta` VALUES("491", "189", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("492", "189", "_menu_item_menu_item_parent", "136");
INSERT INTO `wp_postmeta` VALUES("493", "189", "_menu_item_object_id", "179");
INSERT INTO `wp_postmeta` VALUES("494", "189", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("495", "189", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("496", "189", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("497", "189", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("498", "189", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("500", "190", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("501", "190", "_menu_item_menu_item_parent", "136");
INSERT INTO `wp_postmeta` VALUES("502", "190", "_menu_item_object_id", "141");
INSERT INTO `wp_postmeta` VALUES("503", "190", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("504", "190", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("505", "190", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("506", "190", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("507", "190", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("509", "191", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("510", "191", "_menu_item_menu_item_parent", "136");
INSERT INTO `wp_postmeta` VALUES("511", "191", "_menu_item_object_id", "139");
INSERT INTO `wp_postmeta` VALUES("512", "191", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("513", "191", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("514", "191", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("515", "191", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("516", "191", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("518", "192", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("519", "192", "_menu_item_menu_item_parent", "136");
INSERT INTO `wp_postmeta` VALUES("520", "192", "_menu_item_object_id", "137");
INSERT INTO `wp_postmeta` VALUES("521", "192", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("522", "192", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("523", "192", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("524", "192", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("525", "192", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("528", "223", "_menu_item_type", "custom");
INSERT INTO `wp_postmeta` VALUES("529", "223", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("530", "223", "_menu_item_object_id", "223");
INSERT INTO `wp_postmeta` VALUES("531", "223", "_menu_item_object", "custom");
INSERT INTO `wp_postmeta` VALUES("532", "223", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("533", "223", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("534", "223", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("535", "223", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("537", "229", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("538", "229", "_wp_page_template", "sales-enquiry.php");
INSERT INTO `wp_postmeta` VALUES("539", "229", "_edit_lock", "1487343189:1");
INSERT INTO `wp_postmeta` VALUES("542", "238", "_wp_attached_file", "2017/02/home_slider_01.jpg");
INSERT INTO `wp_postmeta` VALUES("543", "238", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1020;s:6:\"height\";i:500;s:4:\"file\";s:26:\"2017/02/home_slider_01.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"home_slider_01-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"home_slider_01-300x147.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:147;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"home_slider_01-768x376.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:376;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{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:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("544", "239", "_wp_attached_file", "2017/02/home_slider_02.jpg");
INSERT INTO `wp_postmeta` VALUES("545", "239", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1020;s:6:\"height\";i:500;s:4:\"file\";s:26:\"2017/02/home_slider_02.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"home_slider_02-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"home_slider_02-300x147.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:147;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"home_slider_02-768x376.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:376;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{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:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("546", "240", "_wp_attached_file", "2017/02/Job-Description-Technician-R0.pdf");
INSERT INTO `wp_postmeta` VALUES("547", "241", "_wp_attached_file", "2017/02/nav_bar.png");
INSERT INTO `wp_postmeta` VALUES("548", "241", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1020;s:6:\"height\";i:75;s:4:\"file\";s:19:\"2017/02/nav_bar.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"nav_bar-150x75.png\";s:5:\"width\";i:150;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"nav_bar-300x22.png\";s:5:\"width\";i:300;s:6:\"height\";i:22;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"nav_bar-768x56.png\";s:5:\"width\";i:768;s:6:\"height\";i:56;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{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:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("549", "242", "_menu_item_type", "custom");
INSERT INTO `wp_postmeta` VALUES("550", "242", "_menu_item_menu_item_parent", "133");
INSERT INTO `wp_postmeta` VALUES("551", "242", "_menu_item_object_id", "242");
INSERT INTO `wp_postmeta` VALUES("552", "242", "_menu_item_object", "custom");
INSERT INTO `wp_postmeta` VALUES("553", "242", "_menu_item_target", "_blank");
INSERT INTO `wp_postmeta` VALUES("554", "242", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("555", "242", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("556", "242", "_menu_item_url", "https://www.arecontvision.com/categories.php");
INSERT INTO `wp_postmeta` VALUES("558", "243", "_menu_item_type", "custom");
INSERT INTO `wp_postmeta` VALUES("559", "243", "_menu_item_menu_item_parent", "133");
INSERT INTO `wp_postmeta` VALUES("560", "243", "_menu_item_object_id", "243");
INSERT INTO `wp_postmeta` VALUES("561", "243", "_menu_item_object", "custom");
INSERT INTO `wp_postmeta` VALUES("562", "243", "_menu_item_target", "_blank");
INSERT INTO `wp_postmeta` VALUES("563", "243", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("564", "243", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("565", "243", "_menu_item_url", "http://www.flir.com.hk/security/content/?id=67507");
INSERT INTO `wp_postmeta` VALUES("567", "244", "_menu_item_type", "custom");
INSERT INTO `wp_postmeta` VALUES("568", "244", "_menu_item_menu_item_parent", "133");
INSERT INTO `wp_postmeta` VALUES("569", "244", "_menu_item_object_id", "244");
INSERT INTO `wp_postmeta` VALUES("570", "244", "_menu_item_object", "custom");
INSERT INTO `wp_postmeta` VALUES("571", "244", "_menu_item_target", "_blank");
INSERT INTO `wp_postmeta` VALUES("572", "244", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("573", "244", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("574", "244", "_menu_item_url", "http://networkoptix.com");
INSERT INTO `wp_postmeta` VALUES("586", "229", "_wp_trash_meta_status", "publish");
INSERT INTO `wp_postmeta` VALUES("587", "229", "_wp_trash_meta_time", "1487344379");
INSERT INTO `wp_postmeta` VALUES("588", "229", "_wp_desired_post_slug", "sales-enquiry");
INSERT INTO `wp_postmeta` VALUES("597", "262", "_wp_attached_file", "2017/02/access_control.jpg");
INSERT INTO `wp_postmeta` VALUES("598", "262", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:675;s:6:\"height\";i:442;s:4:\"file\";s:26:\"2017/02/access_control.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"access_control-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"access_control-300x196.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:196;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{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:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("599", "263", "_wp_attached_file", "2017/02/burglar_alarm_system.jpg");
INSERT INTO `wp_postmeta` VALUES("600", "263", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:675;s:6:\"height\";i:450;s:4:\"file\";s:32:\"2017/02/burglar_alarm_system.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"burglar_alarm_system-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"burglar_alarm_system-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{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:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("601", "264", "_wp_attached_file", "2017/02/cctv.jpg");
INSERT INTO `wp_postmeta` VALUES("602", "264", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:675;s:6:\"height\";i:439;s:4:\"file\";s:16:\"2017/02/cctv.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"cctv-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"cctv-300x195.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:195;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{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:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("607", "270", "_wp_attached_file", "2017/01/public_access.jpg");
INSERT INTO `wp_postmeta` VALUES("608", "270", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:675;s:6:\"height\";i:506;s:4:\"file\";s:25:\"2017/01/public_access.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"public_access-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"public_access-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{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:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("609", "274", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("610", "274", "_edit_lock", "1487936122:1");
INSERT INTO `wp_postmeta` VALUES("611", "274", "wpsm_collapse_data", "s:2651:\"a:8:{i:0;a:2:{s:15:\"collapsed_title\";s:15:\"Door Controller\";s:14:\"collapsed_desc\";s:320:\"Reda Technology Limited provides wide range of intelligent, standalone and networked controller to manage all the access control devices function in a secure manner. For example, authorize access management, alarm signal management, time schedule automation etc. Our back end system also contains redundant power backup.\";}i:1;a:2:{s:15:\"collapsed_title\";s:11:\"Card Reader\";s:14:\"collapsed_desc\";s:301:\"Reda Technology Limited provides card reader with various credential technologies such as Prox, iCLASS, MIFARE etc. Apart from these popular & secure solutions, we also provide wide range of sophisticated technologies & secure solutions to deliver the most high end & secure products to our customers.\";}i:2;a:2:{s:15:\"collapsed_title\";s:18:\"Electric Door Lock\";s:14:\"collapsed_desc\";s:281:\"Reda Technology Limited provides a high quality of electric lock and installation service, which only triggered by authorized card access and secure side door release. We also provide some specific requirement such as schedule lock / unlock automation to achieve the user’s need.\";}i:3;a:2:{s:15:\"collapsed_title\";s:18:\"Operation Software\";s:14:\"collapsed_desc\";s:179:\"We provide easy to use security software with experienced designs. Enable you to assign & delete the card users, modify the automatic schedule and many high end system operations.\";}i:4;a:2:{s:15:\"collapsed_title\";s:16:\"Pin Entry Keypad\";s:14:\"collapsed_desc\";s:232:\"Reda Technology Limited provides indoor & outdoor readers with high end technology and favorable outlook. Capacity sensing technologies & mechanical switching technologies are available for the users for wide range of flexibilities.\";}i:5;a:2:{s:15:\"collapsed_title\";s:22:\"Barrier and Turnstiles\";s:14:\"collapsed_desc\";s:183:\"Reda Technology Limited provides high quality barrier and turnstiles system with anti-pass back & flow monitoring in advance. Force entering & IN/OUT activities can be monitored also.\";}i:6;a:2:{s:15:\"collapsed_title\";s:37:\"Request to Exit & Breakglass Switches\";s:14:\"collapsed_desc\";s:201:\"Reda Technology Limited provides a high quality emergency access devices. Materials are highly qualified with conformities. Which provide the users to access the doors efficiently in an emergency case.\";}i:7;a:2:{s:15:\"collapsed_title\";s:18:\"Visitor Management\";s:14:\"collapsed_desc\";s:217:\"Reda Technology Limited provides a user friendly visitor management system with easy to understand UI and operation advantage. To print a dedicated visitor badges for visitors to present a good image to your visitors.\";}}\";");
INSERT INTO `wp_postmeta` VALUES("612", "274", "wpsm_collapse_count", "8");
INSERT INTO `wp_postmeta` VALUES("613", "274", "Wpsm_collapsed_Settings", "s:529:\"a:11:{s:10:\"op_cl_icon\";s:2:\"no\";s:13:\"enable_toggle\";s:2:\"no\";s:16:\"enable_ac_border\";s:2:\"no\";s:15:\"acc_op_cl_align\";s:4:\"left\";s:18:\"acc_title_icon_clr\";s:7:\"#333333\";s:17:\"acc_desc_font_clr\";s:7:\"#333333\";s:10:\"title_size\";s:2:\"15\";s:8:\"des_size\";s:2:\"15\";s:11:\"font_family\";s:4:\"Sans\";s:13:\"expand_option\";s:1:\"3\";s:10:\"custom_css\";s:182:\"#wpsm_accordion_274 .ac_title_class {\r\n    font-family: \'Source Sans Pro\' !important;\r\n}\r\n\r\n#wpsm_accordion_274  .wpsm_panel-body {\r\n    font-family: \'Source Sans Pro\' !important;\r\n}\";}\";");
INSERT INTO `wp_postmeta` VALUES("614", "278", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("615", "278", "_edit_lock", "1487936080:1");
INSERT INTO `wp_postmeta` VALUES("616", "278", "wpsm_collapse_data", "s:1020:\"a:3:{i:0;a:2:{s:15:\"collapsed_title\";s:18:\"Entry level system\";s:14:\"collapsed_desc\";s:207:\"A common entry level system include one or several intelligent access reader, or entry level panels including several doors. Usually it will be integrated with burglar alarm system for door alarm triggering.\";}i:1;a:2:{s:15:\"collapsed_title\";s:16:\"Mid-level system\";s:14:\"collapsed_desc\";s:264:\"A common mid-level system include a central server, which connect with several commercial grade control panel to monitor up to hundreds of doors located at several sites. Normally those commercial grade system can manage up to thousands of cards without any issue.\";}i:2;a:2:{s:15:\"collapsed_title\";s:17:\"High level system\";s:14:\"collapsed_desc\";s:276:\"A typical infrastructural grade can monitor thousands of doors and cards of multiple site. Card credential, high end technologies, system integration, high level design of system redundancy, networking will be adopted to achieve the end user’s specifications & requirements.\";}}\";");
INSERT INTO `wp_postmeta` VALUES("617", "278", "wpsm_collapse_count", "3");
INSERT INTO `wp_postmeta` VALUES("618", "278", "Wpsm_collapsed_Settings", "s:532:\"a:11:{s:10:\"op_cl_icon\";s:2:\"no\";s:13:\"enable_toggle\";s:2:\"no\";s:16:\"enable_ac_border\";s:2:\"no\";s:15:\"acc_op_cl_align\";s:4:\"left\";s:18:\"acc_title_icon_clr\";s:7:\"#333333\";s:17:\"acc_desc_font_clr\";s:7:\"#333333\";s:10:\"title_size\";s:2:\"15\";s:8:\"des_size\";s:2:\"15\";s:11:\"font_family\";s:7:\"Verdana\";s:13:\"expand_option\";s:1:\"3\";s:10:\"custom_css\";s:182:\"#wpsm_accordion_278 .ac_title_class {\r\n    font-family: \'Source Sans Pro\' !important;\r\n}\r\n\r\n#wpsm_accordion_278  .wpsm_panel-body {\r\n    font-family: \'Source Sans Pro\' !important;\r\n}\";}\";");
INSERT INTO `wp_postmeta` VALUES("619", "282", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("620", "282", "_edit_lock", "1487936076:1");
INSERT INTO `wp_postmeta` VALUES("621", "282", "wpsm_collapse_data", "s:1933:\"a:5:{i:0;a:2:{s:15:\"collapsed_title\";s:36:\"Digital video recorder with storages\";s:14:\"collapsed_desc\";s:250:\"Reda Technology Limited digital video recorders can easily retrieve the recorded video. Recording of digital video recorder is durable and difficult to be volatile. Up to date video compression achieve a secure data management and high video quality.\";}i:1;a:2:{s:15:\"collapsed_title\";s:12:\"CCTV Cameras\";s:14:\"collapsed_desc\";s:352:\"Reda Technology Limited provide both indoor and outdoor CCTV camera to suite our client’s needs. It can work efficiently in difficult environment such as sun light, rain fall, high density of dust. It also work smoothly in a 24×7 manner by automatic day/night technology, which will obtain color image in day time and monochrome image in night time.\";}i:2;a:2:{s:15:\"collapsed_title\";s:29:\"Remote CCTV system monitoring\";s:14:\"collapsed_desc\";s:270:\"Reda Technology Limited provide a CCTV system monitoring platform for our valuable users, with an option of workstation or mobile monitoring. Which provide user friendly UI for users to access the live & recorded video at real time, notify the alarm triggering by email.\";}i:3;a:2:{s:15:\"collapsed_title\";s:33:\"CCTV system modules & accessories\";s:14:\"collapsed_desc\";s:291:\"Reda Technology Limited can extend, arrange, enhance the system by applying the accessories such as sequencers, multiplexors, surge protection, UPS etc. To make it more efficient to operate, more functions and more smooth to operate under any situation such as lighting surge or power surge.\";}i:4;a:2:{s:15:\"collapsed_title\";s:28:\"CCTV system display monitors\";s:14:\"collapsed_desc\";s:266:\"Reda Technology Limited provide variety of size & specification of CCTV monitor. Whatever you need a color, monochrome, flat-screen, wall mount, rack mount or matrix etc. We will provide you the best fit, best service & quality CCTV monitor for high quality viewing.\";}}\";");
INSERT INTO `wp_postmeta` VALUES("622", "282", "wpsm_collapse_count", "5");
INSERT INTO `wp_postmeta` VALUES("623", "282", "Wpsm_collapsed_Settings", "s:532:\"a:11:{s:10:\"op_cl_icon\";s:2:\"no\";s:13:\"enable_toggle\";s:2:\"no\";s:16:\"enable_ac_border\";s:2:\"no\";s:15:\"acc_op_cl_align\";s:4:\"left\";s:18:\"acc_title_icon_clr\";s:7:\"#333333\";s:17:\"acc_desc_font_clr\";s:7:\"#333333\";s:10:\"title_size\";s:2:\"15\";s:8:\"des_size\";s:2:\"15\";s:11:\"font_family\";s:7:\"Verdana\";s:13:\"expand_option\";s:1:\"3\";s:10:\"custom_css\";s:182:\"#wpsm_accordion_282 .ac_title_class {\r\n    font-family: \'Source Sans Pro\' !important;\r\n}\r\n\r\n#wpsm_accordion_282  .wpsm_panel-body {\r\n    font-family: \'Source Sans Pro\' !important;\r\n}\";}\";");
INSERT INTO `wp_postmeta` VALUES("624", "284", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("625", "284", "_edit_lock", "1487936048:1");
INSERT INTO `wp_postmeta` VALUES("626", "284", "wpsm_collapse_data", "s:1711:\"a:4:{i:0;a:2:{s:15:\"collapsed_title\";s:21:\"IP-based CCTV cameras\";s:14:\"collapsed_desc\";s:252:\"An IP camera is a stand-alone device that everything required for viewing images over the network is built into this unit. The IP camera has its own IP address and built-in software for a web server, RTP (Real Time Protocol) serve and alarm management.\";}i:1;a:2:{s:15:\"collapsed_title\";s:31:\"Video management software (VMS)\";s:14:\"collapsed_desc\";s:395:\"Video management software (VMS) is a software runs on one or more standalone servers. It is feature rich and manages video for live monitoring and recording and provides easy integration with other systems such as access control or building management system. Solution typically range from single PCs to advanced client / server based software that manage functionality for thousands of cameras.\";}i:2;a:2:{s:15:\"collapsed_title\";s:19:\"Servers and Storage\";s:14:\"collapsed_desc\";s:362:\"The ability to use open storage solutions is one of the main benefits with IP CCTV system. The most common is to have the storage attached to the server running the application as in a Network Video Recorder (NVR). The other is a storage solution where the storage is separate from the server running the application, which called Network Attached Storage (NAS).\";}i:3;a:2:{s:15:\"collapsed_title\";s:7:\"Network\";s:14:\"collapsed_desc\";s:331:\"The IP CCTV System intersects with the network infrastructure by connecting endpoints, IP cameras, workstations, servers and storage physically to the network. To properly design and implement the network, it is important to indicate the IP addressing and transport protocols along with bandwidth, scalability and network security.\";}}\";");
INSERT INTO `wp_postmeta` VALUES("627", "284", "wpsm_collapse_count", "4");
INSERT INTO `wp_postmeta` VALUES("628", "284", "Wpsm_collapsed_Settings", "s:532:\"a:11:{s:10:\"op_cl_icon\";s:2:\"no\";s:13:\"enable_toggle\";s:2:\"no\";s:16:\"enable_ac_border\";s:2:\"no\";s:15:\"acc_op_cl_align\";s:4:\"left\";s:18:\"acc_title_icon_clr\";s:7:\"#333333\";s:17:\"acc_desc_font_clr\";s:7:\"#333333\";s:10:\"title_size\";s:2:\"15\";s:8:\"des_size\";s:2:\"15\";s:11:\"font_family\";s:7:\"Verdana\";s:13:\"expand_option\";s:1:\"3\";s:10:\"custom_css\";s:182:\"#wpsm_accordion_284 .ac_title_class {\r\n    font-family: \'Source Sans Pro\' !important;\r\n}\r\n\r\n#wpsm_accordion_284  .wpsm_panel-body {\r\n    font-family: \'Source Sans Pro\' !important;\r\n}\";}\";");
INSERT INTO `wp_postmeta` VALUES("629", "287", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("630", "287", "_edit_lock", "1487936047:1");
INSERT INTO `wp_postmeta` VALUES("631", "287", "wpsm_collapse_data", "s:1139:\"a:3:{i:0;a:2:{s:15:\"collapsed_title\";s:26:\"Basic system level package\";s:14:\"collapsed_desc\";s:200:\"Normally, it provide a 4 to 8 channel recorders which support from 1 to 8 cameras for local recording. It contains the capacity of the function of motion detection, video alarm triggering, microphone.\";}i:1;a:2:{s:15:\"collapsed_title\";s:33:\"Intermediate system level package\";s:14:\"collapsed_desc\";s:332:\"It provide 16 to more than 16 channel video recorders which support more than 16 cameras with multiple site, which are monitored by a workstation app for live viewing, record video retrieving, video back up, remote monitoring through workstation or mobile phone, integrated with access control system to manage systems with one app.\";}i:2;a:2:{s:15:\"collapsed_title\";s:25:\"High system level package\";s:14:\"collapsed_desc\";s:301:\"A very complex CCTV system which normally connected with industrial grade video recorders, with power and server redundancy. Fiber &amp; computer network may included according to the scale of the entire system. With rack mounted back end equipment and provide a high system stability and reliability.\";}}\";");
INSERT INTO `wp_postmeta` VALUES("632", "287", "wpsm_collapse_count", "3");
INSERT INTO `wp_postmeta` VALUES("633", "287", "Wpsm_collapsed_Settings", "s:532:\"a:11:{s:10:\"op_cl_icon\";s:2:\"no\";s:13:\"enable_toggle\";s:2:\"no\";s:16:\"enable_ac_border\";s:2:\"no\";s:15:\"acc_op_cl_align\";s:4:\"left\";s:18:\"acc_title_icon_clr\";s:7:\"#333333\";s:17:\"acc_desc_font_clr\";s:7:\"#333333\";s:10:\"title_size\";s:2:\"15\";s:8:\"des_size\";s:2:\"15\";s:11:\"font_family\";s:7:\"Verdana\";s:13:\"expand_option\";s:1:\"3\";s:10:\"custom_css\";s:182:\"#wpsm_accordion_287 .ac_title_class {\r\n    font-family: \'Source Sans Pro\' !important;\r\n}\r\n\r\n#wpsm_accordion_287  .wpsm_panel-body {\r\n    font-family: \'Source Sans Pro\' !important;\r\n}\";}\";");
INSERT INTO `wp_postmeta` VALUES("634", "289", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("635", "289", "_edit_lock", "1487936038:1");
INSERT INTO `wp_postmeta` VALUES("636", "289", "wpsm_collapse_data", "s:4135:\"a:9:{i:0;a:2:{s:15:\"collapsed_title\";s:7:\"Sensors\";s:14:\"collapsed_desc\";s:249:\"We provide different kinds of security sensors to suite different kinds of detection. For example: Magnetic door contact, tamper switch, emergency panic button, motion detector, Acoustic glass break detectors, vibration sensor, seismic detector etc.\";}i:1;a:2:{s:15:\"collapsed_title\";s:21:\"Magnetic door contact\";s:14:\"collapsed_desc\";s:178:\"Magnetic door contact is used to sense the opening / closing of the doors / windows. Different kinds of doors / windows can be applied with the use of different kinds of sensors.\";}i:2;a:2:{s:15:\"collapsed_title\";s:13:\"Tamper switch\";s:14:\"collapsed_desc\";s:199:\"Tamper switch protect the sensors & panel enclosure to prevent the devices from tampering. Normally, alarm will be triggered once the sensors are dismantled or the system enclosures are force opened.\";}i:3;a:2:{s:15:\"collapsed_title\";s:22:\"Emergency panic button\";s:14:\"collapsed_desc\";s:298:\"Emergency panic button plays an important roles in the alarm system design. Normally, this sensor has a relatively high priority for the alarm signal operators. Once it is triggered, normally the alarm manage operators will call the police directly or dispatch a person to have an on-site checking.\";}i:4;a:2:{s:15:\"collapsed_title\";s:15:\"Motion detector\";s:14:\"collapsed_desc\";s:360:\"Motion detector provide a traditional but effective detection in alarm system. It provide a large area detection for each device. Once a person is detected with the security zone armed, the alarm system will be triggered. Nowadays, various technologies are applied for this. For example, pet immunity, low false alarm rate in outdoor environment, anti-masking.\";}i:5;a:2:{s:15:\"collapsed_title\";s:19:\"Alarm Control Panel\";s:14:\"collapsed_desc\";s:443:\"Reda Technology Limited provides automatic management of the alarm zones. When the system is disarmed, low and middle priority security zones are not triggered. Except the high priority zones (panic button for example). It will be triggered even the system is disarmed. When the system is armed, any security zones can trigger the alarm system and will turn on the alarm sounders and transmit the alarm message to the 24 hours central station.\";}i:6;a:2:{s:15:\"collapsed_title\";s:20:\"Alarm Control Keypad\";s:14:\"collapsed_desc\";s:312:\"<p>Keypad takes an important role to facilitate the user’s daily operation. Make it simpler and more efficient.</p>\r\n\r\n<p>For example, users know whether the doors are open / closed without visiting the doors one by one. Instead, users can access all the door / windows status with the use of alarm keypad.</p>\";}i:7;a:2:{s:15:\"collapsed_title\";s:14:\"Alarm Sounders\";s:14:\"collapsed_desc\";s:186:\"Reda Technology Limited provides different kinds of alarm sounders for the system to work effectively. Outdoor / indoor / chime sounders are available with wired / wireless technologies.\";}i:8;a:2:{s:15:\"collapsed_title\";s:20:\"Alarm Communications\";s:14:\"collapsed_desc\";s:1105:\"<p>We provide wide range of alarm communication technologies to suite the client’s needs. For example, PSTN communication, TCP/IP communication, lease line communication, GSM communication etc.</p>\r\n\r\n<p>PSTN also known as telephone line for everyone, its high availability make it popular even in nowadays. Regular automatic detection is available to regular check the on / off line status.</p>\r\n\r\n<p>TCP/IP revolute the security world and greatly improve the speed &amp; security in communication. Alarm messages are encrypted and transmitted to the alarm management center for further interpreting. It has a remarkable transmission speed so that the signal is almost received immediately.</p>\r\n\r\n<p>Lease line communication provide a specific communication line to the users to act as a transmission media of the alarm system. It is highly reliable and stable. Therefore, it is necessary for most of the high risk environment for the insurance contracts.</p>\r\n\r\n<p>GSM communication provide a simple and fast solution for the users to protect their premises where the wireless network is covered.</p>\";}}\";");
INSERT INTO `wp_postmeta` VALUES("637", "289", "wpsm_collapse_count", "9");
INSERT INTO `wp_postmeta` VALUES("638", "289", "Wpsm_collapsed_Settings", "s:532:\"a:11:{s:10:\"op_cl_icon\";s:2:\"no\";s:13:\"enable_toggle\";s:2:\"no\";s:16:\"enable_ac_border\";s:2:\"no\";s:15:\"acc_op_cl_align\";s:4:\"left\";s:18:\"acc_title_icon_clr\";s:7:\"#333333\";s:17:\"acc_desc_font_clr\";s:7:\"#333333\";s:10:\"title_size\";s:2:\"15\";s:8:\"des_size\";s:2:\"15\";s:11:\"font_family\";s:7:\"Verdana\";s:13:\"expand_option\";s:1:\"3\";s:10:\"custom_css\";s:182:\"#wpsm_accordion_289 .ac_title_class {\r\n    font-family: \'Source Sans Pro\' !important;\r\n}\r\n\r\n#wpsm_accordion_289  .wpsm_panel-body {\r\n    font-family: \'Source Sans Pro\' !important;\r\n}\";}\";");
INSERT INTO `wp_postmeta` VALUES("639", "290", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("640", "290", "_edit_lock", "1487936021:1");
INSERT INTO `wp_postmeta` VALUES("641", "290", "wpsm_collapse_data", "s:1532:\"a:3:{i:0;a:2:{s:15:\"collapsed_title\";s:32:\"Entry Level Burglar Alarm System\";s:14:\"collapsed_desc\";s:329:\"Entry level alarm system target to residential & small commercial scale needs. Normally it is a network alarm system with internal / external sounders and connect to every kinds of security zones. When the alarm is triggered, sounder is triggered and the corresponding alarm signal is sent to the central alarm monitoring center.\";}i:1;a:2:{s:15:\"collapsed_title\";s:33:\"Middle Level Burglar Alarm System\";s:14:\"collapsed_desc\";s:331:\"This level of system normally integrate the door access control system to monitor the door status at the same time. When the alarm is triggered, the alarm message is transmitted to the central station in real time. The alarm operator will design whether police will be dispatched according to the alarm priority and real situation.\";}i:2;a:2:{s:15:\"collapsed_title\";s:31:\"High Level Burglar Alarm System\";s:14:\"collapsed_desc\";s:554:\"This high level system provide a redundancy topologies for the client sites. If the duty system tail accidentally, the standby system will stand out and replace the duty system. Therefore, reliable functioning can be achieved. For example, GSM will be set up as redundant communication path and the PSTN networks belong to the duty communication technologies. Also, we will also provide an alarm signal monitoring station for security guard to monitor the signals on site. So that they can provide the optional alarm response once the alarm is triggered.\";}}\";");
INSERT INTO `wp_postmeta` VALUES("642", "290", "wpsm_collapse_count", "3");
INSERT INTO `wp_postmeta` VALUES("643", "290", "Wpsm_collapsed_Settings", "s:532:\"a:11:{s:10:\"op_cl_icon\";s:2:\"no\";s:13:\"enable_toggle\";s:2:\"no\";s:16:\"enable_ac_border\";s:2:\"no\";s:15:\"acc_op_cl_align\";s:4:\"left\";s:18:\"acc_title_icon_clr\";s:7:\"#333333\";s:17:\"acc_desc_font_clr\";s:7:\"#333333\";s:10:\"title_size\";s:2:\"15\";s:8:\"des_size\";s:2:\"15\";s:11:\"font_family\";s:7:\"Verdana\";s:13:\"expand_option\";s:1:\"3\";s:10:\"custom_css\";s:182:\"#wpsm_accordion_290 .ac_title_class {\r\n    font-family: \'Source Sans Pro\' !important;\r\n}\r\n\r\n#wpsm_accordion_290  .wpsm_panel-body {\r\n    font-family: \'Source Sans Pro\' !important;\r\n}\";}\";");
INSERT INTO `wp_postmeta` VALUES("644", "292", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("645", "292", "_edit_lock", "1487936147:1");
INSERT INTO `wp_postmeta` VALUES("646", "292", "wpsm_collapse_data", "s:2229:\"a:7:{i:0;a:2:{s:15:\"collapsed_title\";s:7:\"Speaker\";s:14:\"collapsed_desc\";s:221:\"The most important role of the system is the PA speaker. We provide indoor/outdoor PA speaker for actual condition of the installation. We also provide speaker with fire proof conformity to fit the project specifications.\";}i:1;a:2:{s:15:\"collapsed_title\";s:17:\"Digital Announcer\";s:14:\"collapsed_desc\";s:298:\"This device is to transmit the digital announcement message: emergency announcement or all-call-messages to the amplifiers. The voice message is uploaded to the central workstation then download to digital announcer. Normally, announcing message is triggered by sensor and other third party system.\";}i:2;a:2:{s:15:\"collapsed_title\";s:12:\"Voice Player\";s:14:\"collapsed_desc\";s:180:\"It can process the predefined sounds and pass to the amplifiers. With the help of the amplifier zones. The sound signal can be managed to be relayed to different group of speakers.\";}i:3;a:2:{s:15:\"collapsed_title\";s:12:\"Call Station\";s:14:\"collapsed_desc\";s:183:\"We provide high quality, robust & stable call station to our clients. To receive a high quality sound, sensitivity, limiter and parametric equalizer can be controlled to achieve this.\";}i:4;a:2:{s:15:\"collapsed_title\";s:16:\"Power Amplifiers\";s:14:\"collapsed_desc\";s:344:\"It provide power for the PA speakers to function. Different loading of amplifiers are available according to the system scale. Also, amplifiers groups PA speakers into several groups called zone. PA zone can monitor the groups of speakers in a manageable way. We provide rack mount/non rack mount device according to our client’s requirement.\";}i:5;a:2:{s:15:\"collapsed_title\";s:25:\"System Network Controller\";s:14:\"collapsed_desc\";s:197:\"Computer network make the traditional system easy to implement and operate. It can adopt the networking system to expend the system coverage and provide a relatively high secure voice transmission.\";}i:6;a:2:{s:15:\"collapsed_title\";s:29:\"PA System Management Platform\";s:14:\"collapsed_desc\";s:179:\"Depend on the system scale level, it can be a server or workstation computer. It response entire system configuration, system diagnosis, database management and system monitoring.\";}}\";");
INSERT INTO `wp_postmeta` VALUES("647", "292", "wpsm_collapse_count", "7");
INSERT INTO `wp_postmeta` VALUES("648", "292", "Wpsm_collapsed_Settings", "s:532:\"a:11:{s:10:\"op_cl_icon\";s:2:\"no\";s:13:\"enable_toggle\";s:2:\"no\";s:16:\"enable_ac_border\";s:2:\"no\";s:15:\"acc_op_cl_align\";s:4:\"left\";s:18:\"acc_title_icon_clr\";s:7:\"#333333\";s:17:\"acc_desc_font_clr\";s:7:\"#333333\";s:10:\"title_size\";s:2:\"15\";s:8:\"des_size\";s:2:\"15\";s:11:\"font_family\";s:7:\"Verdana\";s:13:\"expand_option\";s:1:\"3\";s:10:\"custom_css\";s:182:\"#wpsm_accordion_292 .ac_title_class {\r\n    font-family: \'Source Sans Pro\' !important;\r\n}\r\n\r\n#wpsm_accordion_292  .wpsm_panel-body {\r\n    font-family: \'Source Sans Pro\' !important;\r\n}\";}\";");
INSERT INTO `wp_postmeta` VALUES("649", "293", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("650", "293", "_edit_lock", "1487936014:1");
INSERT INTO `wp_postmeta` VALUES("651", "293", "wpsm_collapse_data", "s:747:\"a:2:{i:0;a:2:{s:15:\"collapsed_title\";s:27:\"Small Public Address System\";s:14:\"collapsed_desc\";s:250:\"Small PA system target to residential & small commercial scale needs. Normally it includes microphones, amplifiers and indoor / outdoor speakers. Sound players often supplied for the client to load the pre-recorded sounds and broadcast to the system.\";}i:1;a:2:{s:15:\"collapsed_title\";s:27:\"Large Public Address System\";s:14:\"collapsed_desc\";s:293:\"Large PA system usually adopted in infrastructure facilities. For example, schools, hospitals, buildings, airports etc. Usually it integrate with the alert system for fire announcement. So that the emergency announcement will be triggered once the fire alarm system receive the sensor signals.\";}}\";");
INSERT INTO `wp_postmeta` VALUES("652", "293", "wpsm_collapse_count", "2");
INSERT INTO `wp_postmeta` VALUES("653", "293", "Wpsm_collapsed_Settings", "s:532:\"a:11:{s:10:\"op_cl_icon\";s:2:\"no\";s:13:\"enable_toggle\";s:2:\"no\";s:16:\"enable_ac_border\";s:2:\"no\";s:15:\"acc_op_cl_align\";s:4:\"left\";s:18:\"acc_title_icon_clr\";s:7:\"#333333\";s:17:\"acc_desc_font_clr\";s:7:\"#333333\";s:10:\"title_size\";s:2:\"15\";s:8:\"des_size\";s:2:\"15\";s:11:\"font_family\";s:7:\"Verdana\";s:13:\"expand_option\";s:1:\"3\";s:10:\"custom_css\";s:182:\"#wpsm_accordion_293 .ac_title_class {\r\n    font-family: \'Source Sans Pro\' !important;\r\n}\r\n\r\n#wpsm_accordion_293  .wpsm_panel-body {\r\n    font-family: \'Source Sans Pro\' !important;\r\n}\";}\";");
INSERT INTO `wp_postmeta` VALUES("654", "224", "_edit_lock", "1487755050:1");
INSERT INTO `wp_postmeta` VALUES("655", "296", "_wp_attached_file", "2017/01/about_reda.jpg");
INSERT INTO `wp_postmeta` VALUES("656", "296", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:675;s:6:\"height\";i:290;s:4:\"file\";s:22:\"2017/01/about_reda.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"about_reda-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"about_reda-300x129.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:129;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{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:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");

/* INSERT TABLE DATA: wp_posts */
INSERT INTO `wp_posts` VALUES("1", "1", "2016-09-18 11:46:47", "2016-09-18 03:46:47", "Welcome to WordPress. This is your first post. Edit or delete it, then start writing!", "Hello world!", "", "publish", "open", "open", "", "hello-world", "", "", "2017-02-17 22:51:45", "2017-02-17 14:51:45", "", "0", "http://reda.selfip.net/?p=1", "0", "post", "", "1");
INSERT INTO `wp_posts` VALUES("11", "1", "2016-09-15 12:10:03", "2016-09-15 11:10:03", "<!-- copy the following for new box -->\r\n<div class=\"news-sidebar-box\">\r\n<div class=\"news-sidebar-box-header\">\r\n<h1>News from Arecont Vision</h1>\r\n</div>\r\n<div class=\"news-sidebar-box-body\"><a href=\"http://www.arecontvision.com\" target=\"_blank\">Read more on Arecont Vision’s website</a></div>\r\n</div>\r\n<!-- copy until above -->\r\n\r\n<!-- copy the following for new box -->\r\n<div class=\"news-sidebar-box\">\r\n<div class=\"news-sidebar-box-header\">\r\n<h1>News from FLIR</h1>\r\n</div>\r\n<div class=\"news-sidebar-box-body\"><a href=\"http://www.flir.com.hk/\" target=\"_blank\">Read more on FLIR’s website</a></div>\r\n</div>\r\n<!-- copy until above -->\r\n\r\n<!-- copy the following for new box -->\r\n<div class=\"news-sidebar-box\">\r\n<div class=\"news-sidebar-box-header\">\r\n<h1>News from Network Optix</h1>\r\n</div>\r\n<div class=\"news-sidebar-box-body\"><a href=\"http://www.networkoptix.com\" target=\"_blank\">Read more on Network Optix’s website</a></div>\r\n</div>\r\n<!-- copy until above -->", "News", "", "publish", "closed", "closed", "", "news", "", "", "2017-02-24 12:52:59", "2017-02-24 04:52:59", "", "0", "http://reda.selfip.net/?page_id=11", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("12", "1", "2016-09-15 12:10:03", "2016-09-15 11:10:03", "", "News", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2016-09-15 12:10:03", "2016-09-15 11:10:03", "", "11", "http://reda.selfip.net/2016/09/15/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15", "1", "2016-09-15 12:10:19", "2016-09-15 11:10:19", "Reda Technology Limited is a licensed security company in Hong Kong. We offer specialize consultancy, design, supply, install and maintenance for integrated security systems.", "About Us", "", "publish", "closed", "closed", "", "about-us", "", "", "2017-02-24 19:33:59", "2017-02-24 11:33:59", "", "0", "http://reda.selfip.net/?page_id=15", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("16", "1", "2016-09-15 12:10:19", "2016-09-15 11:10:19", "", "About Us", "", "inherit", "closed", "closed", "", "15-revision-v1", "", "", "2016-09-15 12:10:19", "2016-09-15 11:10:19", "", "15", "http://reda.selfip.net/2016/09/15/15-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17", "1", "2016-09-15 12:10:29", "2016-09-15 11:10:29", "<div class=\"map-location\"><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3690.3859524553536!2d114.1460300147592!3d22.33905124713267!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3404075416900e45%3A0xdd5206a202fe3d9d!2sGLOBAL+GATEWAY+TOWER!5e0!3m2!1sen!2shk!4v1487331984157\" width=\"570\" height=\"250\" frameborder=\"0\"></iframe></div>\r\n<div class=\"contact-details\">Office Address: Unit 7, 30/F, Global Gateway Tower, 63 Wing Hong Street, Cheung Sha Wan, Kowloon, Hong Kong\r\nTel: + 852 2307 0742\r\nFax: + 852 2307 0948</div>", "Contact", "", "publish", "closed", "closed", "", "contact", "", "", "2017-03-07 15:10:54", "2017-03-07 07:10:54", "", "0", "http://reda.selfip.net/?page_id=17", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("18", "1", "2016-09-15 12:10:29", "2016-09-15 11:10:29", "", "Contact", "", "inherit", "closed", "closed", "", "17-revision-v1", "", "", "2016-09-15 12:10:29", "2016-09-15 11:10:29", "", "17", "http://reda.selfip.net/2016/09/15/17-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("19", "1", "2016-09-15 19:21:42", "2016-09-15 11:21:42", "Mei sanctus eleifend partiendo ne, laboramus repudiandae eos cu, ex eam timeam praesent expetendis. Viris referrentur ne duo. Erat salutatus ne mea, ut eos nisl atomorum scripserit, et diam sensibus his. No tamquam constituam has. Per vidisse qualisque an, vel homero fabulas placerat at, ius eleifend mandamus mnesarchum at.\r\n\r\nTe solet electram ius. Ne mucius liberavisse sit, ex libris insolens cum, at ius sale debitis. Scaevola vivendum ne vis, usu novum tacimates gubergren ea. Justo mucius officiis ei mei, te pro detraxit efficiendi. Vix autem tractatos ne, partem nemore ei duo, ex clita efficiantur ius. Eos et tritani iracundia necessitatibus.", "Hello Again", "", "publish", "open", "open", "", "hello-again", "", "", "2017-02-17 22:51:39", "2017-02-17 14:51:39", "", "0", "http://reda.selfip.net/?p=19", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("20", "1", "2016-09-15 19:21:42", "2016-09-15 11:21:42", "Mei sanctus eleifend partiendo ne, laboramus repudiandae eos cu, ex eam timeam praesent expetendis. Viris referrentur ne duo. Erat salutatus ne mea, ut eos nisl atomorum scripserit, et diam sensibus his. No tamquam constituam has. Per vidisse qualisque an, vel homero fabulas placerat at, ius eleifend mandamus mnesarchum at.\r\n\r\nTe solet electram ius. Ne mucius liberavisse sit, ex libris insolens cum, at ius sale debitis. Scaevola vivendum ne vis, usu novum tacimates gubergren ea. Justo mucius officiis ei mei, te pro detraxit efficiendi. Vix autem tractatos ne, partem nemore ei duo, ex clita efficiantur ius. Eos et tritani iracundia necessitatibus.", "Hello Again", "", "inherit", "closed", "closed", "", "19-revision-v1", "", "", "2016-09-15 19:21:42", "2016-09-15 11:21:42", "", "19", "http://reda.selfip.net/2016/09/15/19-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("21", "1", "2016-09-19 01:06:27", "2016-09-18 17:06:27", " ", "", "", "publish", "closed", "closed", "", "21", "", "", "2017-02-17 23:09:50", "2017-02-17 15:09:50", "", "0", "http://reda.selfip.net/?p=21", "1", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("24", "1", "2016-09-19 01:06:27", "2016-09-18 17:06:27", " ", "", "", "publish", "closed", "closed", "", "24", "", "", "2017-02-17 23:09:50", "2017-02-17 15:09:50", "", "0", "http://reda.selfip.net/?p=24", "5", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("29", "1", "2016-09-21 01:24:47", "2016-09-20 17:24:47", "", "gmatrix_nav_bar", "", "inherit", "open", "closed", "", "gmatrix_nav_bar", "", "", "2016-09-21 01:24:47", "2016-09-20 17:24:47", "", "0", "http://reda.selfip.net/wp-content/uploads/2016/09/gmatrix_nav_bar.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("31", "1", "2016-09-21 19:07:45", "2016-09-21 11:07:45", "Welcome to WordPress. This is your first post. Edit or delete it, then start writing!", "Hello world!", "", "inherit", "closed", "closed", "", "1-revision-v1", "", "", "2016-09-21 19:07:45", "2016-09-21 11:07:45", "", "1", "http://reda.selfip.net/2016/09/21/1-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("36", "1", "2016-09-21 20:41:21", "2016-09-21 12:41:21", "", "header_350", "", "inherit", "open", "closed", "", "header_350", "", "", "2016-09-21 20:41:21", "2016-09-21 12:41:21", "", "0", "http://reda.selfip.net/wp-content/uploads/2016/09/header_350.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("41", "1", "2016-09-21 21:02:24", "2016-09-21 13:02:24", "", "header_250", "", "inherit", "open", "closed", "", "header_250", "", "", "2016-09-21 21:02:24", "2016-09-21 13:02:24", "", "0", "http://reda.selfip.net/wp-content/uploads/2016/09/header_250.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("42", "1", "2016-09-21 21:02:25", "2016-09-21 13:02:25", "", "header_438", "", "inherit", "open", "closed", "", "header_438", "", "", "2016-09-21 21:02:25", "2016-09-21 13:02:25", "", "0", "http://reda.selfip.net/wp-content/uploads/2016/09/header_438.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("43", "1", "2016-09-21 21:02:25", "2016-09-21 13:02:25", "", "header_500", "", "inherit", "open", "closed", "", "header_500", "", "", "2016-09-21 21:02:25", "2016-09-21 13:02:25", "", "0", "http://reda.selfip.net/wp-content/uploads/2016/09/header_500.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("44", "1", "2016-09-21 21:02:26", "2016-09-21 13:02:26", "", "header_600", "", "inherit", "open", "closed", "", "header_600", "", "", "2016-09-21 21:02:26", "2016-09-21 13:02:26", "", "0", "http://reda.selfip.net/wp-content/uploads/2016/09/header_600.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("45", "1", "2016-09-21 21:56:57", "2016-09-21 13:56:57", "IP Video is the most innovative system solution in the security industry that allow massive digital video recording at designated storage devices as well as deliver multi-screen video (live and / or playback) to multiple operators for monitoring.\r\n<ul>\r\n 	<li>We offer a complete range of IP Cameras from Arecont Vision to meet any environmental surveillance challenges.</li>\r\n 	<li>And for video management, we offer the Latitude NVMS from DVTEL and the HD Witness from Network Optix for different operation requirements.</li>\r\n</ul>", "About", "", "publish", "open", "open", "", "about", "", "", "2016-09-22 00:45:06", "2016-09-21 16:45:06", "", "0", "http://reda.selfip.net/?p=45", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("46", "1", "2016-09-21 21:56:57", "2016-09-21 13:56:57", "IP Video is the most innovative system solution in the security industry that allow massive digital video recording at designated storage devices as well as deliver multi-screen video (live and / or playback) to multiple operators for monitoring.\r\n\r\n-	We offer a complete range of IP Cameras from Arecont Vision to meet any environmental surveillance challenges.\r\n-	And for video management, we offer the Latitude NVMS from DVTEL and the HD Witness from Network Optix for different operation requirements.\r\n", "About", "", "inherit", "closed", "closed", "", "45-revision-v1", "", "", "2016-09-21 21:56:57", "2016-09-21 13:56:57", "", "45", "http://reda.selfip.net/2016/09/21/45-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("47", "1", "2016-09-21 22:43:52", "2016-09-21 14:43:52", "Mei sanctus eleifend partiendo ne, laboramus repudiandae eos cu, ex eam timeam praesent expetendis. Viris referrentur ne duo. Erat salutatus ne mea, ut eos nisl atomorum scripserit, et diam sensibus his. No tamquam constituam has. Per vidisse qualisque an, vel homero fabulas placerat at, ius eleifend mandamus mnesarchum at.", "Bye", "", "publish", "open", "open", "", "bye", "", "", "2017-02-17 22:51:49", "2017-02-17 14:51:49", "", "0", "http://reda.selfip.net/?p=47", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("48", "1", "2016-09-21 22:43:52", "2016-09-21 14:43:52", "Mei sanctus eleifend partiendo ne, laboramus repudiandae eos cu, ex eam timeam praesent expetendis. Viris referrentur ne duo. Erat salutatus ne mea, ut eos nisl atomorum scripserit, et diam sensibus his. No tamquam constituam has. Per vidisse qualisque an, vel homero fabulas placerat at, ius eleifend mandamus mnesarchum at.", "Bye", "", "inherit", "closed", "closed", "", "47-revision-v1", "", "", "2016-09-21 22:43:52", "2016-09-21 14:43:52", "", "47", "http://reda.selfip.net/2016/09/21/47-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("49", "1", "2016-09-21 22:45:06", "2016-09-21 14:45:06", "Te solet electram ius. Ne mucius liberavisse sit, ex libris insolens cum, at ius sale debitis. Scaevola vivendum ne vis, usu novum tacimates gubergren ea. Justo mucius officiis ei mei, te pro detraxit efficiendi.Te solet electram ius. Ne mucius liberavisse sit, ex libris insolens cum, at ius sale debitis.\r\n\r\nScaevola vivendum ne vis, usu novum tacimates gubergren ea. Justo mucius officiis ei mei, te pro detraxit efficiendi.Te solet electram ius. Ne mucius liberavisse sit, ex libris insolens cum, at ius sale debitis. Scaevola vivendum ne vis, usu novum tacimates gubergren ea. Justo mucius officiis ei mei, te pro detraxit efficiendi.\r\nTe solet electram ius. Ne mucius liberavisse sit, ex libris insolens cum, at ius sale debitis. Scaevola vivendum ne vis, usu novum tacimates gubergren ea. Justo mucius officiis ei mei, te pro detraxit efficiendi.Te solet electram ius. Ne mucius liberavisse sit, ex libris insolens cum, at ius sale debitis. Scaevola vivendum ne vis, usu novum tacimates gubergren ea. Justo mucius officiis ei mei, te pro detraxit efficiendi.", "Yo", "", "publish", "open", "open", "", "yo", "", "", "2017-02-17 22:51:13", "2017-02-17 14:51:13", "", "0", "http://reda.selfip.net/?p=49", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("50", "1", "2016-09-21 22:45:06", "2016-09-21 14:45:06", "Te solet electram ius. Ne mucius liberavisse sit, ex libris insolens cum, at ius sale debitis. Scaevola vivendum ne vis, usu novum tacimates gubergren ea. Justo mucius officiis ei mei, te pro detraxit efficiendi.", "Yo", "", "inherit", "closed", "closed", "", "49-revision-v1", "", "", "2016-09-21 22:45:06", "2016-09-21 14:45:06", "", "49", "http://reda.selfip.net/2016/09/21/49-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("51", "1", "2016-09-21 23:42:54", "2016-09-21 15:42:54", "Vix autem tractatos ne, partem nemore ei duo, ex clita efficiantur ius. Eos et tritani iracundia necessitatibus.\r\n\r\nEos et tritani iracundia necessitatibus. Vix autem tractatos ne, partem nemore ei duo, ex clita efficiantur ius. Eos et tritani iracundia necessitatibus. Eos et tritani iracundia necessitatibus. Vix autem tractatos ne, partem nemore ei duo, ex clita efficiantur ius. Eos et tritani iracundia necessitatibus. Eos et tritani iracundia necessitatibus. Vix autem tractatos ne, partem nemore ei duo, ex clita efficiantur ius. Eos et tritani iracundia necessitatibus.", "Yolo", "", "publish", "open", "open", "", "yolo", "", "", "2017-02-17 22:51:19", "2017-02-17 14:51:19", "", "0", "http://reda.selfip.net/?p=51", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("52", "1", "2016-09-21 23:42:54", "2016-09-21 15:42:54", "Vix autem tractatos ne, partem nemore ei duo, ex clita efficiantur ius. Eos et tritani iracundia necessitatibus.", "Yolo", "", "inherit", "closed", "closed", "", "51-revision-v1", "", "", "2016-09-21 23:42:54", "2016-09-21 15:42:54", "", "51", "http://reda.selfip.net/2016/09/21/51-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("53", "1", "2016-09-22 00:45:01", "2016-09-21 16:45:01", "IP Video is the most innovative system solution in the security industry that allow massive digital video recording at designated storage devices as well as deliver multi-screen video (live and / or playback) to multiple operators for monitoring.\n<ul>\n 	<li>We offer a complete range of IP Cameras from Arecont Vision to meet any environmental surveillance challenges.</li>\n 	<li>And for video management, we offer the Latitude NVMS from DVTEL and the HD Witness from Network Optix for different operation requirements.</li>\n</ul>", "About", "", "inherit", "closed", "closed", "", "45-autosave-v1", "", "", "2016-09-22 00:45:01", "2016-09-21 16:45:01", "", "45", "http://reda.selfip.net/2016/09/22/45-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("54", "1", "2016-09-22 00:38:38", "2016-09-21 16:38:38", "IP Video is the most innovative system solution in the security industry that allow massive digital video recording at designated storage devices as well as deliver multi-screen video (live and / or playback) to multiple operators for monitoring.\r\n\r\n&nbsp;\r\n<ul>\r\n 	<li>We offer a complete range of IP Cameras from Arecont Vision to meet any environmental surveillance challenges.</li>\r\n 	<li>And for video management, we offer the Latitude NVMS from DVTEL and the HD Witness from Network Optix for different operation requirements.</li>\r\n</ul>", "About", "", "inherit", "closed", "closed", "", "45-revision-v1", "", "", "2016-09-22 00:38:38", "2016-09-21 16:38:38", "", "45", "http://reda.selfip.net/2016/09/22/45-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("55", "1", "2016-09-22 00:45:06", "2016-09-21 16:45:06", "IP Video is the most innovative system solution in the security industry that allow massive digital video recording at designated storage devices as well as deliver multi-screen video (live and / or playback) to multiple operators for monitoring.\r\n<ul>\r\n 	<li>We offer a complete range of IP Cameras from Arecont Vision to meet any environmental surveillance challenges.</li>\r\n 	<li>And for video management, we offer the Latitude NVMS from DVTEL and the HD Witness from Network Optix for different operation requirements.</li>\r\n</ul>", "About", "", "inherit", "closed", "closed", "", "45-revision-v1", "", "", "2016-09-22 00:45:06", "2016-09-21 16:45:06", "", "45", "http://reda.selfip.net/2016/09/22/45-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("77", "1", "2016-09-26 01:24:25", "2016-09-25 17:24:25", "<object class=\"external-links\" type=\"text/html\" data=\"http://www.arecontvision.com\">\r\n</object>", "Arecont Vision", "", "publish", "closed", "closed", "", "arecont-vision", "", "", "2016-09-26 03:07:07", "2016-09-25 19:07:07", "", "0", "http://reda.selfip.net/?page_id=77", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("78", "1", "2016-09-26 01:24:25", "2016-09-25 17:24:25", "<object class=\"external-links\" type=\"text/html\" data=\"http://www.arecontvision.com\">\r\n</object>", "Arecont Vision", "", "inherit", "closed", "closed", "", "77-revision-v1", "", "", "2016-09-26 01:24:25", "2016-09-25 17:24:25", "", "77", "http://reda.selfip.net/2016/09/26/77-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("79", "1", "2016-09-26 01:25:17", "2016-09-25 17:25:17", "<object class=\"external-links\" type=\"text/html\" data=\"http://www.flir.com/dvtel/\">\r\n</object>", "DvTel", "", "publish", "closed", "closed", "", "dvtel", "", "", "2016-09-26 01:25:17", "2016-09-25 17:25:17", "", "0", "http://reda.selfip.net/?page_id=79", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("80", "1", "2016-09-26 01:25:17", "2016-09-25 17:25:17", "<object class=\"external-links\" type=\"text/html\" data=\"http://www.flir.com/dvtel/\">\r\n</object>", "DvTel", "", "inherit", "closed", "closed", "", "79-revision-v1", "", "", "2016-09-26 01:25:17", "2016-09-25 17:25:17", "", "79", "http://reda.selfip.net/2016/09/26/79-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("81", "1", "2016-09-26 01:25:43", "2016-09-25 17:25:43", "<object class=\"external-links\" type=\"text/html\" data=\"http://www.networkoptix.com\">\r\n</object>", "Network Optix", "", "publish", "closed", "closed", "", "network-optix", "", "", "2016-09-26 01:25:43", "2016-09-25 17:25:43", "", "0", "http://reda.selfip.net/?page_id=81", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("82", "1", "2016-09-26 01:25:43", "2016-09-25 17:25:43", "<object class=\"external-links\" type=\"text/html\" data=\"http://www.networkoptix.com\">\r\n</object>", "Network Optix", "", "inherit", "closed", "closed", "", "81-revision-v1", "", "", "2016-09-26 01:25:43", "2016-09-25 17:25:43", "", "81", "http://reda.selfip.net/2016/09/26/81-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("93", "1", "2016-09-26 02:50:54", "2016-09-25 18:50:54", "<object class=\"external-links\" type=\"text/html\" data=\"http://www.arecontvision.com\">\r\n</object>", "Arecont Vision Arecont Vision Arecont Vision Arecont Vision Arecont Vision", "", "inherit", "closed", "closed", "", "77-revision-v1", "", "", "2016-09-26 02:50:54", "2016-09-25 18:50:54", "", "77", "http://reda.selfip.net/2016/09/26/77-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("94", "1", "2016-09-26 03:07:07", "2016-09-25 19:07:07", "<object class=\"external-links\" type=\"text/html\" data=\"http://www.arecontvision.com\">\r\n</object>", "Arecont Vision", "", "inherit", "closed", "closed", "", "77-revision-v1", "", "", "2016-09-26 03:07:07", "2016-09-25 19:07:07", "", "77", "http://reda.selfip.net/2016/09/26/77-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("96", "1", "2016-09-26 17:36:59", "2016-09-26 09:36:59", "<div class=\"av-box\">\r\n		\r\n	<div class=\"av-box-header\">\r\n		<h1>News from Arecont Vision</h1>\r\n	</div>\r\n\r\n	<div class=\"about-box-body\">\r\n		<a href=\"http://www.arecontvision.com\">Read more on Arecont Vision’s website</a>\r\n	</div>\r\n\r\n</div>\r\n\r\n<div class=\"no-box\">\r\n		\r\n	<div class=\"no-box-header\">\r\n		<h1>News from Networkoptix</h1>\r\n	</div>\r\n\r\n	<div class=\"about-box-body\">\r\n		<a href=\"http://www.networkoptix.com\" >Read more on Networkoptix’s website</a>\r\n	</div>\r\n\r\n</div>", "News", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2016-09-26 17:36:59", "2016-09-26 09:36:59", "", "11", "http://reda.selfip.net/2016/09/26/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("97", "1", "2016-09-26 17:45:36", "2016-09-26 09:45:36", "<div class=\"news-sidebar-box\">\r\n		\r\n	<div class=\"news-sidebar-box-header\">\r\n		<h1>News from Arecont Vision</h1>\r\n	</div>\r\n\r\n	<div class=\"news-sidebar-box-body\">\r\n		<a href=\"http://www.arecontvision.com\">Read more on Arecont Vision’s website</a>\r\n	</div>\r\n\r\n</div>\r\n\r\n<div class=\"news-sidebar-box\">\r\n		\r\n	<div class=\"news-sidebar-box-header\">\r\n		<h1>News from Networkoptix</h1>\r\n	</div>\r\n\r\n	<div class=\"news-sidebar-box-body\">\r\n		<a href=\"http://www.networkoptix.com\" >Read more on Networkoptix’s website</a>\r\n	</div>\r\n\r\n</div>", "News", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2016-09-26 17:45:36", "2016-09-26 09:45:36", "", "11", "http://reda.selfip.net/2016/09/26/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("98", "1", "2016-09-26 17:53:09", "2016-09-26 09:53:09", "<div class=\"news-sidebar-box\">\r\n		\r\n	<div class=\"news-sidebar-box-header\">\r\n		<h1>News from Arecont Vision</h1>\r\n	</div>\r\n\r\n	<div class=\"news-sidebar-box-body\">\r\n		<a href=\"http://www.arecontvision.com\" target=\'_blank\'>Read more on Arecont Vision’s website</a>\r\n	</div>\r\n\r\n</div>\r\n\r\n<div class=\"news-sidebar-box\">\r\n		\r\n	<div class=\"news-sidebar-box-header\">\r\n		<h1>News from Networkoptix</h1>\r\n	</div>\r\n\r\n	<div class=\"news-sidebar-box-body\">\r\n		<a href=\"http://www.networkoptix.com\" target=\'_blank\'>Read more on Networkoptix’s website</a>\r\n	</div>\r\n\r\n</div>", "News", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2016-09-26 17:53:09", "2016-09-26 09:53:09", "", "11", "http://reda.selfip.net/2016/09/26/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("99", "1", "2016-09-26 18:13:33", "2016-09-26 10:13:33", "<!-- copy the following for new box -->\r\n<div class=\"news-sidebar-box\">\r\n		\r\n	<div class=\"news-sidebar-box-header\">\r\n		<h1>News from Arecont Vision</h1>\r\n	</div>\r\n\r\n	<div class=\"news-sidebar-box-body\">\r\n		<a href=\"http://www.arecontvision.com\" target=\'_blank\'>Read more on Arecont Vision’s website</a>\r\n	</div>\r\n\r\n</div>\r\n<!-- copy until above -->\r\n\r\n<div class=\"news-sidebar-box\">\r\n		\r\n	<div class=\"news-sidebar-box-header\">\r\n		<h1>News from Networkoptix</h1>\r\n	</div>\r\n\r\n	<div class=\"news-sidebar-box-body\">\r\n		<a href=\"http://www.networkoptix.com\" target=\'_blank\'>Read more on Networkoptix’s website</a>\r\n	</div>\r\n\r\n</div>", "News", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2016-09-26 18:13:33", "2016-09-26 10:13:33", "", "11", "http://reda.selfip.net/2016/09/26/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("100", "1", "2016-09-26 18:15:16", "2016-09-26 10:15:16", "Te solet electram ius. Ne mucius liberavisse sit, ex libris insolens cum, at ius sale debitis. Scaevola vivendum ne vis, usu novum tacimates gubergren ea. Justo mucius officiis ei mei, te pro detraxit efficiendi.Te solet electram ius. Ne mucius liberavisse sit, ex libris insolens cum, at ius sale debitis. Scaevola vivendum ne vis, usu novum tacimates gubergren ea. Justo mucius officiis ei mei, te pro detraxit efficiendi.Te solet electram ius. Ne mucius liberavisse sit, ex libris insolens cum, at ius sale debitis. Scaevola vivendum ne vis, usu novum tacimates gubergren ea. Justo mucius officiis ei mei, te pro detraxit efficiendi.\r\nTe solet electram ius. Ne mucius liberavisse sit, ex libris insolens cum, at ius sale debitis. Scaevola vivendum ne vis, usu novum tacimates gubergren ea. Justo mucius officiis ei mei, te pro detraxit efficiendi.Te solet electram ius. Ne mucius liberavisse sit, ex libris insolens cum, at ius sale debitis. Scaevola vivendum ne vis, usu novum tacimates gubergren ea. Justo mucius officiis ei mei, te pro detraxit efficiendi.", "Yo", "", "inherit", "closed", "closed", "", "49-revision-v1", "", "", "2016-09-26 18:15:16", "2016-09-26 10:15:16", "", "49", "http://reda.selfip.net/2016/09/26/49-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("101", "1", "2016-09-26 18:15:34", "2016-09-26 10:15:34", "Vix autem tractatos ne, partem nemore ei duo, ex clita efficiantur ius. Eos et tritani iracundia necessitatibus.\r\n\r\nEos et tritani iracundia necessitatibus. Vix autem tractatos ne, partem nemore ei duo, ex clita efficiantur ius. Eos et tritani iracundia necessitatibus. Eos et tritani iracundia necessitatibus. Vix autem tractatos ne, partem nemore ei duo, ex clita efficiantur ius. Eos et tritani iracundia necessitatibus. Eos et tritani iracundia necessitatibus. Vix autem tractatos ne, partem nemore ei duo, ex clita efficiantur ius. Eos et tritani iracundia necessitatibus.", "Yolo", "", "inherit", "closed", "closed", "", "51-revision-v1", "", "", "2016-09-26 18:15:34", "2016-09-26 10:15:34", "", "51", "http://reda.selfip.net/2016/09/26/51-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("102", "1", "2016-09-26 18:23:09", "2016-09-26 10:23:09", "<p>Vix autem tractatos ne, partem nemore ei duo, ex clita efficiantur ius. Eos et tritani iracundia necessitatibus.</p>\r\n\r\n<p>Eos et tritani iracundia necessitatibus. Vix autem tractatos ne, partem nemore ei duo, ex clita efficiantur ius. Eos et tritani iracundia necessitatibus. Eos et tritani iracundia necessitatibus. Vix autem tractatos ne, partem nemore ei duo, ex clita efficiantur ius. Eos et tritani iracundia necessitatibus. Eos et tritani iracundia necessitatibus. Vix autem tractatos ne, partem nemore ei duo, ex clita efficiantur ius. Eos et tritani iracundia necessitatibus.</p>", "Yolo", "", "inherit", "closed", "closed", "", "51-revision-v1", "", "", "2016-09-26 18:23:09", "2016-09-26 10:23:09", "", "51", "http://reda.selfip.net/2016/09/26/51-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("103", "1", "2016-09-26 18:24:14", "2016-09-26 10:24:14", "Te solet electram ius. Ne mucius liberavisse sit, ex libris insolens cum, at ius sale debitis. Scaevola vivendum ne vis, usu novum tacimates gubergren ea. Justo mucius officiis ei mei, te pro detraxit efficiendi.Te solet electram ius. Ne mucius liberavisse sit, ex libris insolens cum, at ius sale debitis.\r\n\r\nScaevola vivendum ne vis, usu novum tacimates gubergren ea. Justo mucius officiis ei mei, te pro detraxit efficiendi.Te solet electram ius. Ne mucius liberavisse sit, ex libris insolens cum, at ius sale debitis. Scaevola vivendum ne vis, usu novum tacimates gubergren ea. Justo mucius officiis ei mei, te pro detraxit efficiendi.\r\nTe solet electram ius. Ne mucius liberavisse sit, ex libris insolens cum, at ius sale debitis. Scaevola vivendum ne vis, usu novum tacimates gubergren ea. Justo mucius officiis ei mei, te pro detraxit efficiendi.Te solet electram ius. Ne mucius liberavisse sit, ex libris insolens cum, at ius sale debitis. Scaevola vivendum ne vis, usu novum tacimates gubergren ea. Justo mucius officiis ei mei, te pro detraxit efficiendi.", "Yo", "", "inherit", "closed", "closed", "", "49-revision-v1", "", "", "2016-09-26 18:24:14", "2016-09-26 10:24:14", "", "49", "http://reda.selfip.net/2016/09/26/49-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("104", "1", "2016-09-26 18:27:15", "2016-09-26 10:27:15", "Vix autem tractatos ne, partem nemore ei duo, ex clita efficiantur ius. Eos et tritani iracundia necessitatibus.\r\n\r\nEos et tritani iracundia necessitatibus. Vix autem tractatos ne, partem nemore ei duo, ex clita efficiantur ius. Eos et tritani iracundia necessitatibus. Eos et tritani iracundia necessitatibus. Vix autem tractatos ne, partem nemore ei duo, ex clita efficiantur ius. Eos et tritani iracundia necessitatibus. Eos et tritani iracundia necessitatibus. Vix autem tractatos ne, partem nemore ei duo, ex clita efficiantur ius. Eos et tritani iracundia necessitatibus.", "Yolo", "", "inherit", "closed", "closed", "", "51-revision-v1", "", "", "2016-09-26 18:27:15", "2016-09-26 10:27:15", "", "51", "http://reda.selfip.net/2016/09/26/51-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("105", "1", "2016-09-26 19:02:20", "2016-09-26 11:02:20", "", "about_intro", "", "inherit", "open", "closed", "", "about_intro", "", "", "2016-09-26 19:02:20", "2016-09-26 11:02:20", "", "0", "http://reda.selfip.net/wp-content/uploads/2016/09/about_intro.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("106", "1", "2016-09-26 19:17:38", "2016-09-26 11:17:38", "G-Matrix is a licensed security company in Hong Kong.\r\nWe offer specialize consultancy, design, supply, install and maintenance for integrated security systems.", "About Us", "", "inherit", "closed", "closed", "", "15-revision-v1", "", "", "2016-09-26 19:17:38", "2016-09-26 11:17:38", "", "15", "http://reda.selfip.net/2016/09/26/15-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("107", "1", "2016-09-26 19:23:35", "2016-09-26 11:23:35", "G-Matrix is a licensed security company in Hong Kong.\r\nWe offer specialize consultancy, design, supply, install\r\nand maintenance for integrated security systems.", "About Us", "", "inherit", "closed", "closed", "", "15-revision-v1", "", "", "2016-09-26 19:23:35", "2016-09-26 11:23:35", "", "15", "http://reda.selfip.net/2016/09/26/15-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("108", "1", "2016-09-26 19:25:56", "2016-09-26 11:25:56", "G-Matrix is a licensed security company in Hong Kong. We offer specialize consultancy, design, supply, install and maintenance for integrated security systems.", "About Us", "", "inherit", "closed", "closed", "", "15-autosave-v1", "", "", "2016-09-26 19:25:56", "2016-09-26 11:25:56", "", "15", "http://reda.selfip.net/2016/09/26/15-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("109", "1", "2016-09-26 19:25:57", "2016-09-26 11:25:57", "G-Matrix is a licensed security company in Hong Kong. We offer specialize consultancy, design, supply, install and maintenance for integrated security systems.", "About Us", "", "inherit", "closed", "closed", "", "15-revision-v1", "", "", "2016-09-26 19:25:57", "2016-09-26 11:25:57", "", "15", "http://reda.selfip.net/2016/09/26/15-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("110", "1", "2016-09-26 19:30:05", "2016-09-26 11:30:05", "<ul>\r\n 	<li>Intrusion / Burglar Alarm</li>\r\n 	<li>CCTV (IP-Video)</li>\r\n 	<li>Access Control</li>\r\n 	<li>Public Address</li>\r\n 	<li>Door-phone/Intercom</li>\r\n 	<li>Barrier / Electric Gate</li>\r\n 	<li>Building Management Integration</li>\r\n</ul>", "We specialize in", "", "publish", "open", "open", "", "we-specialize-in", "", "", "2016-09-26 19:30:34", "2016-09-26 11:30:34", "", "0", "http://reda.selfip.net/?p=110", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("111", "1", "2016-09-26 19:30:05", "2016-09-26 11:30:05", "<ul>\r\n 	<li>Intrusion / Burglar Alarm</li>\r\n 	<li>CCTV (IP-Video)</li>\r\n 	<li>Access Control</li>\r\n 	<li>Public Address</li>\r\n 	<li>Door-phone/Intercom</li>\r\n 	<li>Barrier / Electric Gate</li>\r\n 	<li>Building Management Integration</li>\r\n</ul>", "We specialize in", "", "inherit", "closed", "closed", "", "110-revision-v1", "", "", "2016-09-26 19:30:05", "2016-09-26 11:30:05", "", "110", "http://reda.selfip.net/2016/09/26/110-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("112", "1", "2016-09-26 19:31:26", "2016-09-26 11:31:26", "<ul>\r\n 	<li>Consultancy</li>\r\n 	<li>Customized system design</li>\r\n 	<li>System demonstration</li>\r\n 	<li>System Drawing Preparation</li>\r\n 	<li>System Cabling</li>\r\n 	<li>Equipment supply</li>\r\n 	<li>Equipment Installation</li>\r\n 	<li>Testing &amp; Commissioning</li>\r\n 	<li>End user operation training</li>\r\n</ul>", "Our services", "", "publish", "open", "open", "", "our-services", "", "", "2016-09-26 19:31:26", "2016-09-26 11:31:26", "", "0", "http://reda.selfip.net/?p=112", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("113", "1", "2016-09-26 19:31:26", "2016-09-26 11:31:26", "<ul>\r\n 	<li>Consultancy</li>\r\n 	<li>Customized system design</li>\r\n 	<li>System demonstration</li>\r\n 	<li>System Drawing Preparation</li>\r\n 	<li>System Cabling</li>\r\n 	<li>Equipment supply</li>\r\n 	<li>Equipment Installation</li>\r\n 	<li>Testing &amp; Commissioning</li>\r\n 	<li>End user operation training</li>\r\n</ul>", "Our services", "", "inherit", "closed", "closed", "", "112-revision-v1", "", "", "2016-09-26 19:31:26", "2016-09-26 11:31:26", "", "112", "http://reda.selfip.net/2016/09/26/112-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("114", "1", "2016-09-26 19:31:57", "2016-09-26 11:31:57", "<ul>\r\n 	<li>Arecont Vision</li>\r\n 	<li>DvTel</li>\r\n 	<li>Nx Witness</li>\r\n 	<li>Interlogix</li>\r\n 	<li>Software House</li>\r\n</ul>", "Product dealership", "", "publish", "open", "open", "", "product-dealership", "", "", "2016-09-26 19:31:57", "2016-09-26 11:31:57", "", "0", "http://reda.selfip.net/?p=114", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("115", "1", "2016-09-26 19:31:57", "2016-09-26 11:31:57", "<ul>\r\n 	<li>Arecont Vision</li>\r\n 	<li>DvTel</li>\r\n 	<li>Nx Witness</li>\r\n 	<li>Interlogix</li>\r\n 	<li>Software House</li>\r\n</ul>", "Product dealership", "", "inherit", "closed", "closed", "", "114-revision-v1", "", "", "2016-09-26 19:31:57", "2016-09-26 11:31:57", "", "114", "http://reda.selfip.net/2016/09/26/114-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("116", "1", "2016-09-26 19:32:18", "2016-09-26 11:32:18", "We commit to deliver our services on time and meeting customer requirements.", "Quality Statement", "", "publish", "open", "open", "", "quality-statement", "", "", "2016-09-26 19:32:18", "2016-09-26 11:32:18", "", "0", "http://reda.selfip.net/?p=116", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("117", "1", "2016-09-26 19:32:18", "2016-09-26 11:32:18", "We commit to deliver our services on time and meeting customer requirements.", "Quality Statement", "", "inherit", "closed", "closed", "", "116-revision-v1", "", "", "2016-09-26 19:32:18", "2016-09-26 11:32:18", "", "116", "http://reda.selfip.net/2016/09/26/116-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("118", "1", "2016-09-26 19:59:08", "2016-09-26 11:59:08", "Wilkins Wong\r\nSales Manager\r\n+852 9011 0448\r\n<a href=\"mailto:wilkins@redahk.com\">wilkins@redahk.com</a>\r\n\r\nPolly Yiu Sales\r\nManager\r\n+852 6307 0917\r\n<a href=\"mailto:polly@redahk.com\">polly@redahk.com</a>\r\n\r\nIsaac Choi\r\nSales Manager\r\n+852 5134 3765\r\n<a href=\"mailto:isaac@redahk.com\">isaac@redahk.com</a>", "Personnel", "", "publish", "open", "open", "", "personnel", "", "", "2017-02-01 01:50:11", "2017-01-31 17:50:11", "", "0", "http://reda.selfip.net/?p=118", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("119", "1", "2016-09-26 19:59:08", "2016-09-26 11:59:08", "Wilkins Wong\r\n\r\nSales Manager\r\n+852 9011 0448\r\nwilkins@redahk.com\r\n\r\nPolly Yiu Sales\r\nManager\r\n+852 6307 0917\r\npolly@redahk.com\r\n\r\nIsaac Choi\r\nSales Manager\r\n+852 5134 3765\r\nisaac@redahk.com", "Personnel", "", "inherit", "closed", "closed", "", "118-revision-v1", "", "", "2016-09-26 19:59:08", "2016-09-26 11:59:08", "", "118", "http://reda.selfip.net/2016/09/26/118-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("120", "1", "2016-10-03 18:06:31", "2016-10-03 10:06:31", "<div class=\"map-location\"><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3690.3714682558643!2d114.14701145040368!3d22.33959848523098!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3404075404d94e65%3A0xf142584848b2ab0!2sCeo+Tower%2C+77+Wing+Hong+St%2C+Cheung+Sha+Wan!5e0!3m2!1sen!2shk!4v1474893799117\" width=\"570\" height=\"250\" frameborder=\"0\"></iframe></div>\n\n\n<div class=\"contact-details\">Office Address: Unit 08–10, 20/F, CEO Tower, 77 Wing Hong Street, Cheung Sha Wan, Kowloon, Hong Kong\nTel: + 852 2307 0742\nFax: + 852 2310 0948</div>", "Contact", "", "inherit", "closed", "closed", "", "17-autosave-v1", "", "", "2016-10-03 18:06:31", "2016-10-03 10:06:31", "", "17", "http://reda.selfip.net/2016/09/26/17-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("121", "1", "2016-09-26 20:02:01", "2016-09-26 12:02:01", "<object class=\"external-links\" data=\"http://www.arecontvision.com\" type=\"text/html\" width=\"300\" height=\"150\"></object>\r\n\r\nOffice Address:	Unit 08–10, 20/F, CEO Tower,77 Wing Hong Street,Cheung Sha Wan,Kowloon, Hong Kong\r\nTel:	+ 852 2307 0742\r\nFax:	+852 2310 0948", "Contact", "", "inherit", "closed", "closed", "", "17-revision-v1", "", "", "2016-09-26 20:02:01", "2016-09-26 12:02:01", "", "17", "http://reda.selfip.net/2016/09/26/17-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("122", "1", "2016-09-26 20:15:11", "2016-09-26 12:15:11", "<iframe \r\n\r\nsrc=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3690.3714682558643!2d114.14701145040368!3d22.33959848523098!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3404075404d94e65%3A0x1440b8603b981cbe!2s08a%E2%82%AC%2C+Ceo+Tower%2C+77+Wing+Hong+St%2C+Cheung+Sha+Wan!5e0!3m2!1sen!2shk!4v1474892030484\"\r\n\r\nwidth=\"570\" \r\nheight=\"250\" \r\nframeborder=\"0\" \r\nstyle=\"border:0\" allowfullscreen>\r\n</iframe>\r\n\r\n<div>\r\nOffice Address:	Unit 08–10, 20/F, CEO Tower,77 Wing Hong Street,Cheung Sha Wan,Kowloon, Hong Kong\r\nTel:	+ 852 2307 0742\r\nFax:	+852 2310 0948", "Contact", "", "inherit", "closed", "closed", "", "17-revision-v1", "", "", "2016-09-26 20:15:11", "2016-09-26 12:15:11", "", "17", "http://reda.selfip.net/2016/09/26/17-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("123", "1", "2016-09-26 20:16:08", "2016-09-26 12:16:08", "<div class=\"location-map\">\r\n<iframe \r\n\r\nsrc=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3690.3714682558643!2d114.14701145040368!3d22.33959848523098!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3404075404d94e65%3A0x1440b8603b981cbe!2s08a%E2%82%AC%2C+Ceo+Tower%2C+77+Wing+Hong+St%2C+Cheung+Sha+Wan!5e0!3m2!1sen!2shk!4v1474892030484\"\r\n\r\nwidth=\"570\" \r\nheight=\"250\" \r\nframeborder=\"0\" \r\nstyle=\"border:0\" allowfullscreen>\r\n</iframe>\r\n</div>\r\n\r\n<div class=\"contact-details\">\r\nOffice Address:	Unit 08–10, 20/F, CEO Tower,77 Wing Hong Street,Cheung Sha Wan,Kowloon, Hong Kong\r\nTel:	+ 852 2307 0742\r\nFax:	+852 2310 0948\r\n</div>", "Contact", "", "inherit", "closed", "closed", "", "17-revision-v1", "", "", "2016-09-26 20:16:08", "2016-09-26 12:16:08", "", "17", "http://reda.selfip.net/2016/09/26/17-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("124", "1", "2016-09-26 20:27:01", "2016-09-26 12:27:01", "<div class=\"map-location\">\r\n<iframe \r\n\r\nsrc=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3690.3714682558643!2d114.14701145040368!3d22.33959848523098!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3404075404d94e65%3A0x1440b8603b981cbe!2s08a%E2%82%AC%2C+Ceo+Tower%2C+77+Wing+Hong+St%2C+Cheung+Sha+Wan!5e0!3m2!1sen!2shk!4v1474892030484\"\r\n\r\nwidth=\"570\" \r\nheight=\"250\" \r\nframeborder=\"0\" \r\nstyle=\"border:0\" allowfullscreen>\r\n</iframe>\r\n</div>\r\n\r\n<div class=\"contact-details\">\r\nOffice Address:	Unit 08–10, 20/F, CEO Tower,77 Wing Hong Street,Cheung Sha Wan,Kowloon, Hong Kong\r\nTel:	+ 852 2307 0742\r\nFax:	+852 2310 0948\r\n</div>", "Contact", "", "inherit", "closed", "closed", "", "17-revision-v1", "", "", "2016-09-26 20:27:01", "2016-09-26 12:27:01", "", "17", "http://reda.selfip.net/2016/09/26/17-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("125", "1", "2016-09-26 20:47:26", "2016-09-26 12:47:26", "<div class=\"map-location\">\r\n<iframe \r\nsrc=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3690.3714682558643!2d114.14701145040368!3d22.33959848523098!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3404075404d94e65%3A0xf142584848b2ab0!2sCeo+Tower%2C+77+Wing+Hong+St%2C+Cheung+Sha+Wan!5e0!3m2!1sen!2shk!4v1474893799117\" \r\nwidth=\"570\" \r\nheight=\"250\" \r\nframeborder=\"0\" \r\nstyle=\"border:0\"></iframe>\r\n</div>\r\n\r\n<div class=\"contact-details\">\r\nOffice Address:	Unit 08–10, 20/F, CEO Tower,77 Wing Hong Street,Cheung Sha Wan,Kowloon, Hong Kong\r\nTel:	+ 852 2307 0742\r\nFax:	+852 2310 0948\r\n</div>", "Contact", "", "inherit", "closed", "closed", "", "17-revision-v1", "", "", "2016-09-26 20:47:26", "2016-09-26 12:47:26", "", "17", "http://reda.selfip.net/2016/09/26/17-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("126", "1", "2016-09-26 20:48:08", "2016-09-26 12:48:08", "<div class=\"map-location\">\r\n<iframe \r\nsrc=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3690.3714682558643!2d114.14701145040368!3d22.33959848523098!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3404075404d94e65%3A0xf142584848b2ab0!2sCeo+Tower%2C+77+Wing+Hong+St%2C+Cheung+Sha+Wan!5e0!3m2!1sen!2shk!4v1474893799117\" \r\nwidth=\"570\" \r\nheight=\"250\" \r\nframeborder=\"0\" \r\nstyle=\"border:0\"></iframe>\r\n</div>\r\n\r\n<div class=\"contact-details\">\r\nOffice Address:	Unit 08–10, 20/F, CEO Tower, 77 Wing Hong Street, Cheung Sha Wan, Kowloon, Hong Kong\r\nTel:	+ 852 2307 0742\r\nFax:	+852 2310 0948\r\n</div>", "Contact", "", "inherit", "closed", "closed", "", "17-revision-v1", "", "", "2016-09-26 20:48:08", "2016-09-26 12:48:08", "", "17", "http://reda.selfip.net/2016/09/26/17-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("127", "1", "2016-09-26 20:48:23", "2016-09-26 12:48:23", "<div class=\"map-location\">\r\n<iframe \r\nsrc=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3690.3714682558643!2d114.14701145040368!3d22.33959848523098!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3404075404d94e65%3A0xf142584848b2ab0!2sCeo+Tower%2C+77+Wing+Hong+St%2C+Cheung+Sha+Wan!5e0!3m2!1sen!2shk!4v1474893799117\" \r\nwidth=\"570\" \r\nheight=\"250\" \r\nframeborder=\"0\" \r\nstyle=\"border:0\"></iframe>\r\n</div>\r\n\r\n<div class=\"contact-details\">\r\nOffice Address:	Unit 08–10, 20/F, CEO Tower, 77 Wing Hong Street, Cheung Sha Wan, Kowloon, Hong Kong\r\nTel:	+ 852 2307 0742\r\nFax:	+852 2310 0948\r\n</div>", "Contact", "", "inherit", "closed", "closed", "", "17-revision-v1", "", "", "2016-09-26 20:48:23", "2016-09-26 12:48:23", "", "17", "http://reda.selfip.net/2016/09/26/17-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("128", "1", "2016-09-26 20:48:32", "2016-09-26 12:48:32", "<div class=\"map-location\">\r\n<iframe \r\nsrc=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3690.3714682558643!2d114.14701145040368!3d22.33959848523098!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3404075404d94e65%3A0xf142584848b2ab0!2sCeo+Tower%2C+77+Wing+Hong+St%2C+Cheung+Sha+Wan!5e0!3m2!1sen!2shk!4v1474893799117\" \r\nwidth=\"570\" \r\nheight=\"250\" \r\nframeborder=\"0\" \r\nstyle=\"border:0\"></iframe>\r\n</div>\r\n\r\n<div class=\"contact-details\">\r\nOffice Address:	Unit 08–10, 20/F, CEO Tower, 77 Wing Hong Street, Cheung Sha Wan, Kowloon, Hong Kong\r\nTel:	+ 852 2307 0742\r\nFax:	+852 2310 0948\r\n</div>", "Contact", "", "inherit", "closed", "closed", "", "17-revision-v1", "", "", "2016-09-26 20:48:32", "2016-09-26 12:48:32", "", "17", "http://reda.selfip.net/2016/09/26/17-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("129", "1", "2016-09-26 20:48:50", "2016-09-26 12:48:50", "<div class=\"map-location\">\r\n<iframe \r\nsrc=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3690.3714682558643!2d114.14701145040368!3d22.33959848523098!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3404075404d94e65%3A0xf142584848b2ab0!2sCeo+Tower%2C+77+Wing+Hong+St%2C+Cheung+Sha+Wan!5e0!3m2!1sen!2shk!4v1474893799117\" \r\nwidth=\"570\" \r\nheight=\"250\" \r\nframeborder=\"0\" \r\nstyle=\"border:0\"></iframe>\r\n</div>\r\n\r\n<div class=\"contact-details\">\r\nOffice Address:	Unit 08–10, 20/F, CEO Tower, 77 Wing Hong Street, Cheung Sha Wan, Kowloon, Hong Kong\r\nTel:	+ 852 2307 0742\r\nFax:	+ 852 2310 0948\r\n</div>", "Contact", "", "inherit", "closed", "closed", "", "17-revision-v1", "", "", "2016-09-26 20:48:50", "2016-09-26 12:48:50", "", "17", "http://reda.selfip.net/2016/09/26/17-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("133", "1", "2016-09-30 16:06:03", "2016-09-30 08:06:03", "", "Products", "", "publish", "closed", "closed", "", "products", "", "", "2017-02-17 23:09:50", "2017-02-17 15:09:50", "", "0", "http://reda.selfip.net/?p=133", "15", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("135", "1", "2016-10-03 17:17:15", "2016-10-03 09:17:15", "", "Vertical", "", "publish", "closed", "closed", "", "vertical-focus", "", "", "2017-02-17 23:09:50", "2017-02-17 15:09:50", "", "0", "http://reda.selfip.net/?p=135", "6", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("136", "1", "2016-10-03 17:17:15", "2016-10-03 09:17:15", "", "Solutions", "", "publish", "closed", "closed", "", "solutions", "", "", "2017-02-17 23:09:50", "2017-02-17 15:09:50", "", "0", "http://reda.selfip.net/?p=136", "10", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("137", "1", "2016-10-03 17:21:54", "2016-10-03 09:21:54", "<img class=\"solution-image aligncenter wp-image-264 size-full\" src=\"http://reda.selfip.net/wp-content/uploads/2017/02/cctv.jpg\" width=\"675\" height=\"439\" />\r\n\r\nClosed-circuit Television (CCTV) System is primarily designed for surveillance purposes which is used in a wide variety of applications which include security, disaster prevention, manpower saving, industrial measurement and military fields. In security application, the CCTV system help crime prevention by let criminals know the risks of crime and function as a deterrent of crime or keep constant watch over potential criminal acts. It also help identify criminals after crimes are perpetrated by reviewing recorded images resulting from the installed CCTV system.\r\n\r\nFor the past ten years, CCTV system with differ in type, quality and technology has moved on significantly. There are two main types of systems:\r\n<ul>\r\n 	<li><a href=\"http://reda.selfip.net/analogue-cctv-system/\">Analogue CCTV System</a></li>\r\n 	<li><a href=\"http://reda.selfip.net/ip-cctv-system/\">IP CCTV System</a></li>\r\n</ul>", "CCTV System", "", "publish", "closed", "closed", "", "cctv-system", "", "", "2017-02-22 03:17:15", "2017-02-21 19:17:15", "", "0", "http://reda.selfip.net/?page_id=137", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("138", "1", "2016-10-03 17:21:54", "2016-10-03 09:21:54", "", "Mega Pixel Cameras", "", "inherit", "closed", "closed", "", "137-revision-v1", "", "", "2016-10-03 17:21:54", "2016-10-03 09:21:54", "", "137", "http://reda.selfip.net/2016/10/03/137-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("139", "1", "2016-10-03 17:21:59", "2016-10-03 09:21:59", "<img class=\"solution-image aligncenter wp-image-263 size-full\" src=\"http://reda.selfip.net/wp-content/uploads/2017/02/burglar_alarm_system.jpg\" width=\"675\" height=\"450\" />\r\n\r\nReda Technology Limited alarm system provide a remote &amp; local protection in an efficient way. In situation of personal break in, force entry, and attacks, we provide a tailor make and professional design to provide a safety environment for our clients.\r\n\r\n<hr />\r\n\r\n<h1 id=\"1\">Key Components</h1>\r\nReda Technology Limited provide various kind of products to suit different user’s needs.\r\n\r\n[WPSM_CC id=289]\r\n<h1 id=\"2\">Typical Applications</h1>\r\nWe classified different scales of the alarm system into different scale levels to efficiently design the solution which is the best fit to our client’s requirements.\r\n\r\nDifferent scale level and complexity of the burglar alarm system cover different kinds of needs of the client’s real situation.\r\n\r\n[WPSM_CC id=290]\r\n\r\n<hr />", "Burglar Alarm System", "", "publish", "closed", "closed", "", "burglar-alarm-system", "", "", "2017-02-24 19:35:10", "2017-02-24 11:35:10", "", "0", "http://reda.selfip.net/?page_id=139", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("140", "1", "2016-10-03 17:21:59", "2016-10-03 09:21:59", "", "VMS", "", "inherit", "closed", "closed", "", "139-revision-v1", "", "", "2016-10-03 17:21:59", "2016-10-03 09:21:59", "", "139", "http://reda.selfip.net/2016/10/03/139-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("141", "1", "2016-10-03 17:22:10", "2016-10-03 09:22:10", "<img class=\"solution-image aligncenter wp-image-262 size-full\" src=\"http://reda.selfip.net/wp-content/uploads/2017/02/access_control.jpg\" width=\"675\" height=\"442\" />\r\n\r\nAccess control system has become increasingly important for organizations to keep their employees and buildings secure. Whether you need to manage access through the authorization or revocation of rights to physical or logical assets within an organization, or regulate the flow of people across a site. Reda Technology Limited with partnerships of the world’s leading access control manufacturers offers a variety of stand-alone and network access control systems to help you get the best performance.\r\n\r\nOur access control systems can incorporate a comprehensive staff database to grant or revoke access to designated areas by status, time of day, or day of the year. It control entry to your business or facility and secures your building or sensitive area with specialized credentials, advance readers, alarm systems and reporting software.\r\n\r\nThe system design takes in a number of particular factors:\r\n<ul>\r\n 	<li>The level of security required</li>\r\n 	<li>The number of total users in the system</li>\r\n 	<li>The number of total doors in the system</li>\r\n 	<li>The method of access and exit</li>\r\n 	<li>The forms of authentication</li>\r\n 	<li>The level of management control required</li>\r\n 	<li>Aesthetics and user friendliness</li>\r\n</ul>\r\n\r\n<hr />\r\n\r\n<h1 id=\"1\">Key Components</h1>\r\nA list of key products that combine to provide a complete access control system. Technical details are in here as well.\r\n\r\n[WPSM_CC id=274]\r\n<h1 id=\"2\">Typical Applications</h1>\r\nClick here to have a look on the entry level, mid-level &amp; high level access control system. To see which levels suite your needs.\r\n\r\n[WPSM_CC id=278]\r\n\r\n<hr />", "Access Control System", "", "publish", "closed", "closed", "", "access-control-system", "", "", "2017-02-24 19:34:26", "2017-02-24 11:34:26", "", "0", "http://reda.selfip.net/?page_id=141", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("142", "1", "2016-10-03 17:22:10", "2016-10-03 09:22:10", "", "Access Control", "", "inherit", "closed", "closed", "", "141-revision-v1", "", "", "2016-10-03 17:22:10", "2016-10-03 09:22:10", "", "141", "http://reda.selfip.net/2016/10/03/141-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("143", "1", "2016-10-03 17:22:16", "2016-10-03 09:22:16", "<p style=\"text-align: center;\">Coming soon…</p>", "Logistics", "", "publish", "closed", "closed", "", "logitic", "", "", "2017-02-24 19:32:01", "2017-02-24 11:32:01", "", "0", "http://reda.selfip.net/?page_id=143", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("144", "1", "2016-10-03 17:22:16", "2016-10-03 09:22:16", "", "Logitic", "", "inherit", "closed", "closed", "", "143-revision-v1", "", "", "2016-10-03 17:22:16", "2016-10-03 09:22:16", "", "143", "http://reda.selfip.net/2016/10/03/143-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("145", "1", "2016-10-03 17:22:21", "2016-10-03 09:22:21", "<p style=\"text-align: center;\">Coming soon…</p>", "Retail", "", "publish", "closed", "closed", "", "retail", "", "", "2017-02-17 23:06:41", "2017-02-17 15:06:41", "", "0", "http://reda.selfip.net/?page_id=145", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("146", "1", "2016-10-03 17:22:21", "2016-10-03 09:22:21", "", "Retail", "", "inherit", "closed", "closed", "", "145-revision-v1", "", "", "2016-10-03 17:22:21", "2016-10-03 09:22:21", "", "145", "http://reda.selfip.net/2016/10/03/145-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("147", "1", "2016-10-03 17:22:25", "2016-10-03 09:22:25", "<p style=\"text-align: center;\">Coming soon…</p>", "Hotels", "", "publish", "closed", "closed", "", "hotels", "", "", "2017-02-17 23:06:43", "2017-02-17 15:06:43", "", "0", "http://reda.selfip.net/?page_id=147", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("148", "1", "2016-10-03 17:22:25", "2016-10-03 09:22:25", "", "Hotels", "", "inherit", "closed", "closed", "", "147-revision-v1", "", "", "2016-10-03 17:22:25", "2016-10-03 09:22:25", "", "147", "http://reda.selfip.net/2016/10/03/147-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("149", "1", "2016-10-03 17:23:15", "2016-10-03 09:23:15", " ", "", "", "publish", "closed", "closed", "", "149", "", "", "2017-02-17 23:09:50", "2017-02-17 15:09:50", "", "0", "http://reda.selfip.net/?p=149", "9", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("150", "1", "2016-10-03 17:23:15", "2016-10-03 09:23:15", " ", "", "", "publish", "closed", "closed", "", "150", "", "", "2017-02-17 23:09:50", "2017-02-17 15:09:50", "", "0", "http://reda.selfip.net/?p=150", "8", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("151", "1", "2016-10-03 17:23:15", "2016-10-03 09:23:15", " ", "", "", "publish", "closed", "closed", "", "151", "", "", "2017-02-17 23:09:50", "2017-02-17 15:09:50", "", "0", "http://reda.selfip.net/?p=151", "7", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("155", "1", "2016-10-03 17:36:18", "2016-10-03 09:36:18", "", "header_900", "", "inherit", "open", "closed", "", "header_900", "", "", "2016-10-03 17:36:18", "2016-10-03 09:36:18", "", "0", "http://reda.selfip.net/wp-content/uploads/2016/10/header_900.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("156", "1", "2016-10-03 17:47:31", "2016-10-03 09:47:31", "Mei sanctus eleifend partiendo ne, laboramus repudiandae eos cu, ex eam timeam praesent expetendis. Viris referrentur ne duo. Erat salutatus ne mea, ut eos nisl atomorum scripserit, et diam sensibus his. No tamquam constituam has. Per vidisse qualisque an, vel homero fabulas placerat at, ius eleifend mandamus mnesarchum at.\r\n\r\nTe solet electram ius. Ne mucius liberavisse sit, ex libris insolens cum, at ius sale debitis. Scaevola vivendum ne vis, usu novum tacimates gubergren ea. Justo mucius officiis ei mei, te pro detraxit efficiendi. Vix autem tractatos ne, partem nemore ei duo, ex clita efficiantur ius. Eos et tritani iracundia necessitatibus.\r\n\r\nEi usu oblique perpetua accommodare. Nam at saepe dicam, ea sit enim conceptam, tempor accusam reprimique ut eos. Iriure aperiri suscipit vim ut, id soluta nominati ius. Iisque conclusionemque per ut, vis no tibique oporteat imperdiet, soleat deserunt eos id. Ei mel justo detraxit accusamus, ne vim maiestatis vituperata, choro maiestatis eam an.\r\n\r\nFugit menandri voluptatibus eos ea. Voluptua postulant adolescens ut has, ius no dicat fierent pertinax. Pri petentium iracundia liberavisse an. Has no mutat feugiat, in ius tation appareat. Ne partem democritum eam, purto ubique gloriatur mei te, debet partiendo vel et. Ut nec saepe partem civibus.", "Hotels", "", "inherit", "closed", "closed", "", "147-revision-v1", "", "", "2016-10-03 17:47:31", "2016-10-03 09:47:31", "", "147", "http://reda.selfip.net/2016/10/03/147-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("157", "1", "2016-10-03 17:47:59", "2016-10-03 09:47:59", "Mei sanctus eleifend partiendo ne, laboramus repudiandae eos cu, ex eam timeam praesent expetendis. Viris referrentur ne duo. Erat salutatus ne mea, ut eos nisl atomorum scripserit, et diam sensibus his. No tamquam constituam has. Per vidisse qualisque an, vel homero fabulas placerat at, ius eleifend mandamus mnesarchum at.\r\n\r\nTe solet electram ius. Ne mucius liberavisse sit, ex libris insolens cum, at ius sale debitis. Scaevola vivendum ne vis, usu novum tacimates gubergren ea. Justo mucius officiis ei mei, te pro detraxit efficiendi. Vix autem tractatos ne, partem nemore ei duo, ex clita efficiantur ius. Eos et tritani iracundia necessitatibus.\r\n\r\nEi usu oblique perpetua accommodare. Nam at saepe dicam, ea sit enim conceptam, tempor accusam reprimique ut eos. Iriure aperiri suscipit vim ut, id soluta nominati ius. Iisque conclusionemque per ut, vis no tibique oporteat imperdiet, soleat deserunt eos id. Ei mel justo detraxit accusamus, ne vim maiestatis vituperata, choro maiestatis eam an.\r\n\r\nFugit menandri voluptatibus eos ea. Voluptua postulant adolescens ut has, ius no dicat fierent pertinax. Pri petentium iracundia liberavisse an. Has no mutat feugiat, in ius tation appareat. Ne partem democritum eam, purto ubique gloriatur mei te, debet partiendo vel et. Ut nec saepe partem civibus.", "Retail", "", "inherit", "closed", "closed", "", "145-revision-v1", "", "", "2016-10-03 17:47:59", "2016-10-03 09:47:59", "", "145", "http://reda.selfip.net/2016/10/03/145-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("158", "1", "2016-10-03 17:49:00", "2016-10-03 09:49:00", "<h1>About Retail</h1>\r\nMei sanctus eleifend partiendo ne, laboramus repudiandae eos cu, ex eam timeam praesent expetendis. Viris referrentur ne duo. Erat salutatus ne mea, ut eos nisl atomorum scripserit, et diam sensibus his. No tamquam constituam has. Per vidisse qualisque an, vel homero fabulas placerat at, ius eleifend mandamus mnesarchum at.\r\n\r\nTe solet electram ius. Ne mucius liberavisse sit, ex libris insolens cum, at ius sale debitis. Scaevola vivendum ne vis, usu novum tacimates gubergren ea. Justo mucius officiis ei mei, te pro detraxit efficiendi. Vix autem tractatos ne, partem nemore ei duo, ex clita efficiantur ius. Eos et tritani iracundia necessitatibus.\r\n\r\nEi usu oblique perpetua accommodare. Nam at saepe dicam, ea sit enim conceptam, tempor accusam reprimique ut eos. Iriure aperiri suscipit vim ut, id soluta nominati ius. Iisque conclusionemque per ut, vis no tibique oporteat imperdiet, soleat deserunt eos id. Ei mel justo detraxit accusamus, ne vim maiestatis vituperata, choro maiestatis eam an.\r\n\r\nFugit menandri voluptatibus eos ea. Voluptua postulant adolescens ut has, ius no dicat fierent pertinax. Pri petentium iracundia liberavisse an. Has no mutat feugiat, in ius tation appareat. Ne partem democritum eam, purto ubique gloriatur mei te, debet partiendo vel et. Ut nec saepe partem civibus.", "Retail", "", "inherit", "closed", "closed", "", "145-revision-v1", "", "", "2016-10-03 17:49:00", "2016-10-03 09:49:00", "", "145", "http://reda.selfip.net/2016/10/03/145-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("159", "1", "2016-10-03 17:51:53", "2016-10-03 09:51:53", "<h1>About Retail</h1>\nMei sanctus eleifend partiendo ne, laboramus repudiandae eos cu, ex eam timeam praesent expetendis. Viris referrentur ne duo. Erat salutatus ne mea, ut eos nisl atomorum scripserit, et diam sensibus his. No tamquam constituam has. Per vidisse qualisque an, vel homero fabulas placerat at, ius eleifend mandamus mnesarchum at.\n<h2>Retail 01</h2>\nTe solet electram ius. Ne mucius liberavisse sit, ex libris insolens cum, at ius sale debitis. Scaevola vivendum ne vis, usu novum tacimates gubergren ea. Justo mucius officiis ei mei, te pro detraxit efficiendi. Vix autem tractatos ne, partem nemore ei duo, ex clita efficiantur ius. Eos et tritani iracundia necessitatibus.\n\nEi usu oblique perpetua accommodare. Nam at saepe dicam, ea sit enim conceptam, tempor accusam reprimique ut eos. Iriure aperiri suscipit vim ut, id soluta nominati ius. Iisque conclusionemque per ut, vis no tibique oporteat imperdiet, soleat deserunt eos id. Ei mel justo detraxit accusamus, ne vim maiestatis vituperata, choro maiestatis eam an.\n<h2>Retail 02</h2>\nFugit menandri voluptatibus eos ea. Voluptua postulant adolescens ut has, ius no dicat fierent pertinax. Pri petentium iracundia liberavisse an. Has no mutat feugiat, in ius tation appareat. Ne partem democritum eam, purto ubique gloriatur mei te, debet partiendo vel et. Ut nec saepe partem civibus.", "Retail", "", "inherit", "closed", "closed", "", "145-autosave-v1", "", "", "2016-10-03 17:51:53", "2016-10-03 09:51:53", "", "145", "http://reda.selfip.net/2016/10/03/145-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("160", "1", "2016-10-03 17:51:59", "2016-10-03 09:51:59", "<h1>About Retail</h1>\r\nMei sanctus eleifend partiendo ne, laboramus repudiandae eos cu, ex eam timeam praesent expetendis. Viris referrentur ne duo. Erat salutatus ne mea, ut eos nisl atomorum scripserit, et diam sensibus his. No tamquam constituam has. Per vidisse qualisque an, vel homero fabulas placerat at, ius eleifend mandamus mnesarchum at.\r\n<h2>Retail 01</h2>\r\nTe solet electram ius. Ne mucius liberavisse sit, ex libris insolens cum, at ius sale debitis. Scaevola vivendum ne vis, usu novum tacimates gubergren ea. Justo mucius officiis ei mei, te pro detraxit efficiendi. Vix autem tractatos ne, partem nemore ei duo, ex clita efficiantur ius. Eos et tritani iracundia necessitatibus.\r\n\r\nEi usu oblique perpetua accommodare. Nam at saepe dicam, ea sit enim conceptam, tempor accusam reprimique ut eos. Iriure aperiri suscipit vim ut, id soluta nominati ius. Iisque conclusionemque per ut, vis no tibique oporteat imperdiet, soleat deserunt eos id. Ei mel justo detraxit accusamus, ne vim maiestatis vituperata, choro maiestatis eam an.\r\n<h2>Retail 02</h2>\r\nFugit menandri voluptatibus eos ea. Voluptua postulant adolescens ut has, ius no dicat fierent pertinax. Pri petentium iracundia liberavisse an. Has no mutat feugiat, in ius tation appareat. Ne partem democritum eam, purto ubique gloriatur mei te, debet partiendo vel et. Ut nec saepe partem civibus.", "Retail", "", "inherit", "closed", "closed", "", "145-revision-v1", "", "", "2016-10-03 17:51:59", "2016-10-03 09:51:59", "", "145", "http://reda.selfip.net/2016/10/03/145-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("161", "1", "2016-10-03 18:02:35", "2016-10-03 10:02:35", "<h1>About Logitic</h1>\r\nMei sanctus eleifend partiendo ne, laboramus repudiandae eos cu, ex eam timeam praesent expetendis. Viris referrentur ne duo. Erat salutatus ne mea, ut eos nisl atomorum scripserit, et diam sensibus his. No tamquam constituam has. Per vidisse qualisque an, vel homero fabulas placerat at, ius eleifend mandamus mnesarchum at.\r\n<h2>Logitic 01</h2>\r\nTe solet electram ius. Ne mucius liberavisse sit, ex libris insolens cum, at ius sale debitis. Scaevola vivendum ne vis, usu novum tacimates gubergren ea. Justo mucius officiis ei mei, te pro detraxit efficiendi. Vix autem tractatos ne, partem nemore ei duo, ex clita efficiantur ius. Eos et tritani iracundia necessitatibus.\r\n\r\nEi usu oblique perpetua accommodare. Nam at saepe dicam, ea sit enim conceptam, tempor accusam reprimique ut eos. Iriure aperiri suscipit vim ut, id soluta nominati ius. Iisque conclusionemque per ut, vis no tibique oporteat imperdiet, soleat deserunt eos id. Ei mel justo detraxit accusamus, ne vim maiestatis vituperata, choro maiestatis eam an.\r\n<h2>Logitic 02</h2>\r\nFugit menandri voluptatibus eos ea. Voluptua postulant adolescens ut has, ius no dicat fierent pertinax. Pri petentium iracundia liberavisse an. Has no mutat feugiat, in ius tation appareat. Ne partem democritum eam, purto ubique gloriatur mei te, debet partiendo vel et. Ut nec saepe partem civibus.", "Logitic", "", "inherit", "closed", "closed", "", "143-revision-v1", "", "", "2016-10-03 18:02:35", "2016-10-03 10:02:35", "", "143", "http://reda.selfip.net/2016/10/03/143-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("162", "1", "2016-10-03 18:02:57", "2016-10-03 10:02:57", "<h1>About Hotels</h1>\r\nMei sanctus eleifend partiendo ne, laboramus repudiandae eos cu, ex eam timeam praesent expetendis. Viris referrentur ne duo. Erat salutatus ne mea, ut eos nisl atomorum scripserit, et diam sensibus his. No tamquam constituam has. Per vidisse qualisque an, vel homero fabulas placerat at, ius eleifend mandamus mnesarchum at.\r\n<h2>Hotels 01</h2>\r\nTe solet electram ius. Ne mucius liberavisse sit, ex libris insolens cum, at ius sale debitis. Scaevola vivendum ne vis, usu novum tacimates gubergren ea. Justo mucius officiis ei mei, te pro detraxit efficiendi. Vix autem tractatos ne, partem nemore ei duo, ex clita efficiantur ius. Eos et tritani iracundia necessitatibus.\r\n\r\nEi usu oblique perpetua accommodare. Nam at saepe dicam, ea sit enim conceptam, tempor accusam reprimique ut eos. Iriure aperiri suscipit vim ut, id soluta nominati ius. Iisque conclusionemque per ut, vis no tibique oporteat imperdiet, soleat deserunt eos id. Ei mel justo detraxit accusamus, ne vim maiestatis vituperata, choro maiestatis eam an.\r\n<h2>Hotels 02</h2>\r\nFugit menandri voluptatibus eos ea. Voluptua postulant adolescens ut has, ius no dicat fierent pertinax. Pri petentium iracundia liberavisse an. Has no mutat feugiat, in ius tation appareat. Ne partem democritum eam, purto ubique gloriatur mei te, debet partiendo vel et. Ut nec saepe partem civibus.", "Hotels", "", "inherit", "closed", "closed", "", "147-revision-v1", "", "", "2016-10-03 18:02:57", "2016-10-03 10:02:57", "", "147", "http://reda.selfip.net/2016/10/03/147-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("163", "1", "2016-10-03 18:03:07", "2016-10-03 10:03:07", "<h1>About Access Control</h1>\r\nMei sanctus eleifend partiendo ne, laboramus repudiandae eos cu, ex eam timeam praesent expetendis. Viris referrentur ne duo. Erat salutatus ne mea, ut eos nisl atomorum scripserit, et diam sensibus his. No tamquam constituam has. Per vidisse qualisque an, vel homero fabulas placerat at, ius eleifend mandamus mnesarchum at.\r\n<h2>Access Control 01</h2>\r\nTe solet electram ius. Ne mucius liberavisse sit, ex libris insolens cum, at ius sale debitis. Scaevola vivendum ne vis, usu novum tacimates gubergren ea. Justo mucius officiis ei mei, te pro detraxit efficiendi. Vix autem tractatos ne, partem nemore ei duo, ex clita efficiantur ius. Eos et tritani iracundia necessitatibus.\r\n\r\nEi usu oblique perpetua accommodare. Nam at saepe dicam, ea sit enim conceptam, tempor accusam reprimique ut eos. Iriure aperiri suscipit vim ut, id soluta nominati ius. Iisque conclusionemque per ut, vis no tibique oporteat imperdiet, soleat deserunt eos id. Ei mel justo detraxit accusamus, ne vim maiestatis vituperata, choro maiestatis eam an.\r\n<h2>Access Control 02</h2>\r\nFugit menandri voluptatibus eos ea. Voluptua postulant adolescens ut has, ius no dicat fierent pertinax. Pri petentium iracundia liberavisse an. Has no mutat feugiat, in ius tation appareat. Ne partem democritum eam, purto ubique gloriatur mei te, debet partiendo vel et. Ut nec saepe partem civibus.", "Access Control", "", "inherit", "closed", "closed", "", "141-revision-v1", "", "", "2016-10-03 18:03:07", "2016-10-03 10:03:07", "", "141", "http://reda.selfip.net/2016/10/03/141-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("164", "1", "2017-02-22 13:29:20", "2017-02-22 05:29:20", "<img class=\"solution-image aligncenter wp-image-263 size-full\" src=\"http://reda.selfip.net/wp-content/uploads/2017/02/burglar_alarm_system.jpg\" width=\"675\" height=\"450\" />\n\nG-matrix alarm system provide a remote &amp; local protection in an efficient way. In situation of personal break in, force entry, and attacks, we provide a tailor make and professional design to provide a safety environment for our clients.\n\n<hr />\n\n<h1 id=\"1\">Key Components</h1>\nG-matrix provide various kind of products to suit different user’s needs.\n\n[WPSM_CC id=289]\n\n<h1 id=\"2\">Typical Applications</h1>\nWe classified different scales of the alarm system into different scale levels to efficiently design the solution which is the best fit to our client’s requirements.\n\nDifferent scale level and complexity of the burglar alarm system cover different kinds of needs of the client’s real situation.\n\n\n\n<hr />", "Burglar Alarm System", "", "inherit", "closed", "closed", "", "139-autosave-v1", "", "", "2017-02-22 13:29:20", "2017-02-22 05:29:20", "", "139", "http://reda.selfip.net/2016/10/03/139-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("166", "1", "2016-10-03 18:03:21", "2016-10-03 10:03:21", "<h1>About Mega Pixel Cameras</h1>\r\nMei sanctus eleifend partiendo ne, laboramus repudiandae eos cu, ex eam timeam praesent expetendis. Viris referrentur ne duo. Erat salutatus ne mea, ut eos nisl atomorum scripserit, et diam sensibus his. No tamquam constituam has. Per vidisse qualisque an, vel homero fabulas placerat at, ius eleifend mandamus mnesarchum at.\r\n<h2>Mega Pixel Cameras 01</h2>\r\nTe solet electram ius. Ne mucius liberavisse sit, ex libris insolens cum, at ius sale debitis. Scaevola vivendum ne vis, usu novum tacimates gubergren ea. Justo mucius officiis ei mei, te pro detraxit efficiendi. Vix autem tractatos ne, partem nemore ei duo, ex clita efficiantur ius. Eos et tritani iracundia necessitatibus.\r\n\r\nEi usu oblique perpetua accommodare. Nam at saepe dicam, ea sit enim conceptam, tempor accusam reprimique ut eos. Iriure aperiri suscipit vim ut, id soluta nominati ius. Iisque conclusionemque per ut, vis no tibique oporteat imperdiet, soleat deserunt eos id. Ei mel justo detraxit accusamus, ne vim maiestatis vituperata, choro maiestatis eam an.\r\n<h2>Mega Pixel Cameras 02</h2>\r\nFugit menandri voluptatibus eos ea. Voluptua postulant adolescens ut has, ius no dicat fierent pertinax. Pri petentium iracundia liberavisse an. Has no mutat feugiat, in ius tation appareat. Ne partem democritum eam, purto ubique gloriatur mei te, debet partiendo vel et. Ut nec saepe partem civibus.", "Mega Pixel Cameras", "", "inherit", "closed", "closed", "", "137-revision-v1", "", "", "2016-10-03 18:03:21", "2016-10-03 10:03:21", "", "137", "http://reda.selfip.net/2016/10/03/137-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("167", "1", "2016-10-03 18:03:28", "2016-10-03 10:03:28", "<h1>About VMS</h1>\r\nMei sanctus eleifend partiendo ne, laboramus repudiandae eos cu, ex eam timeam praesent expetendis. Viris referrentur ne duo. Erat salutatus ne mea, ut eos nisl atomorum scripserit, et diam sensibus his. No tamquam constituam has. Per vidisse qualisque an, vel homero fabulas placerat at, ius eleifend mandamus mnesarchum at.\r\n<h2>VMS 01</h2>\r\nTe solet electram ius. Ne mucius liberavisse sit, ex libris insolens cum, at ius sale debitis. Scaevola vivendum ne vis, usu novum tacimates gubergren ea. Justo mucius officiis ei mei, te pro detraxit efficiendi. Vix autem tractatos ne, partem nemore ei duo, ex clita efficiantur ius. Eos et tritani iracundia necessitatibus.\r\n\r\nEi usu oblique perpetua accommodare. Nam at saepe dicam, ea sit enim conceptam, tempor accusam reprimique ut eos. Iriure aperiri suscipit vim ut, id soluta nominati ius. Iisque conclusionemque per ut, vis no tibique oporteat imperdiet, soleat deserunt eos id. Ei mel justo detraxit accusamus, ne vim maiestatis vituperata, choro maiestatis eam an.\r\n<h2>VMS 02</h2>\r\nFugit menandri voluptatibus eos ea. Voluptua postulant adolescens ut has, ius no dicat fierent pertinax. Pri petentium iracundia liberavisse an. Has no mutat feugiat, in ius tation appareat. Ne partem democritum eam, purto ubique gloriatur mei te, debet partiendo vel et. Ut nec saepe partem civibus.", "VMS", "", "inherit", "closed", "closed", "", "139-revision-v1", "", "", "2016-10-03 18:03:28", "2016-10-03 10:03:28", "", "139", "http://reda.selfip.net/2016/10/03/139-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("168", "1", "2017-01-30 18:53:57", "2017-01-30 10:53:57", "Reda Technology Limited was established in Hong Kong in 1998 who plays a key role in the provision of professional Electronic Security System. With over 15-years strong skill-sets in the area of System Design, Installation and Maintenance Support, our operation reaches wide range of clients and spans across Greater China.\r\n\r\nTo be the leading solution provider, we are passionate to serve any special need of clients and deliver innovative and custom-built solutions. In 2007, we expanded vertically and Securitech Systems Ltd was established for security products distribution.\r\n\r\n<img class=\"solution-image aligncenter wp-image-296 size-full\" src=\"http://reda.selfip.net/wp-content/uploads/2017/01/about_reda.jpg\" width=\"675\" height=\"290\" />", "About Reda", "", "publish", "closed", "closed", "", "about-reda", "", "", "2017-02-24 20:47:41", "2017-02-24 12:47:41", "", "0", "http://reda.selfip.net/?page_id=168", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("169", "1", "2017-01-30 18:53:57", "2017-01-30 10:53:57", "", "About Reda", "", "inherit", "closed", "closed", "", "168-revision-v1", "", "", "2017-01-30 18:53:57", "2017-01-30 10:53:57", "", "168", "http://reda.selfip.net/2017/01/30/168-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("170", "1", "2017-01-30 18:54:11", "2017-01-30 10:54:11", "<h2>Why Work for Reda?</h2>\r\nWe believe that “People is the greatest asset”. The foster collaboration between employees sustains our business growth. We provide skill-building program to support your career development at every stage. We offer an equal employment opportunity and all qualified applicants will receive consideration for employment.\r\n\r\nWant to become a member in Reda, you can submit an application either by:\r\n<ol>\r\n 	<li>Sending an e-mail with your C.V and expected salary to <a href=\"mailto:hr@redahk.com\">hr@redahk.com</a></li>\r\n 	<li>By Post : Unit 7, 30/F, Global Gateway Tower, 63 Wing Hong Street, Cheung Sha Wan, Kowloon, Hong Kong</li>\r\n 	<li>By Fax: +852 2307 0948</li>\r\n</ol>\r\nAll personal data provided will only be used for recruitment purposes. Applicants who are not invited to an interview within six weeks should consider their applications unsuccessful.\r\n<h2>Latest Work from Reda</h2>\r\n<ol>\r\n 	<li><a href=\"http://reda.selfip.net/wp-content/uploads/2017/02/Job-Description-Technician-R0.pdf\" target=\"_blank\">Technician (Ref.: G1701)</a></li>\r\n</ol>", "Careers", "", "publish", "closed", "closed", "", "careers", "", "", "2017-03-07 15:09:25", "2017-03-07 07:09:25", "", "0", "http://reda.selfip.net/?page_id=170", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("171", "1", "2017-01-30 18:54:11", "2017-01-30 10:54:11", "", "Careers", "", "inherit", "closed", "closed", "", "170-revision-v1", "", "", "2017-01-30 18:54:11", "2017-01-30 10:54:11", "", "170", "http://reda.selfip.net/2017/01/30/170-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("172", "1", "2017-01-30 18:54:34", "0000-00-00 00:00:00", " ", "", "", "draft", "closed", "closed", "", "", "", "", "2017-01-30 18:54:34", "0000-00-00 00:00:00", "", "0", "http://reda.selfip.net/?p=172", "1", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("173", "1", "2017-01-30 18:54:34", "0000-00-00 00:00:00", " ", "", "", "draft", "closed", "closed", "", "", "", "", "2017-01-30 18:54:34", "0000-00-00 00:00:00", "", "0", "http://reda.selfip.net/?p=173", "1", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("174", "1", "2017-01-30 18:55:14", "2017-01-30 10:55:14", " ", "", "", "publish", "closed", "closed", "", "174", "", "", "2017-02-17 23:09:50", "2017-02-17 15:09:50", "", "0", "http://reda.selfip.net/?p=174", "3", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("175", "1", "2017-01-30 18:55:14", "2017-01-30 10:55:14", " ", "", "", "publish", "closed", "closed", "", "175", "", "", "2017-02-17 23:09:50", "2017-02-17 15:09:50", "", "0", "http://reda.selfip.net/?p=175", "4", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("176", "1", "2017-01-30 18:56:24", "2017-01-30 10:56:24", "<h1>About Access Control</h1>\r\nMei sanctus eleifend partiendo ne, laboramus repudiandae eos cu, ex eam timeam praesent expetendis. Viris referrentur ne duo. Erat salutatus ne mea, ut eos nisl atomorum scripserit, et diam sensibus his. No tamquam constituam has. Per vidisse qualisque an, vel homero fabulas placerat at, ius eleifend mandamus mnesarchum at.\r\n<h2>Access Control 01</h2>\r\nTe solet electram ius. Ne mucius liberavisse sit, ex libris insolens cum, at ius sale debitis. Scaevola vivendum ne vis, usu novum tacimates gubergren ea. Justo mucius officiis ei mei, te pro detraxit efficiendi. Vix autem tractatos ne, partem nemore ei duo, ex clita efficiantur ius. Eos et tritani iracundia necessitatibus.\r\n\r\nEi usu oblique perpetua accommodare. Nam at saepe dicam, ea sit enim conceptam, tempor accusam reprimique ut eos. Iriure aperiri suscipit vim ut, id soluta nominati ius. Iisque conclusionemque per ut, vis no tibique oporteat imperdiet, soleat deserunt eos id. Ei mel justo detraxit accusamus, ne vim maiestatis vituperata, choro maiestatis eam an.\r\n<h2>Access Control 02</h2>\r\nFugit menandri voluptatibus eos ea. Voluptua postulant adolescens ut has, ius no dicat fierent pertinax. Pri petentium iracundia liberavisse an. Has no mutat feugiat, in ius tation appareat. Ne partem democritum eam, purto ubique gloriatur mei te, debet partiendo vel et. Ut nec saepe partem civibus.", "Access Control System", "", "inherit", "closed", "closed", "", "141-revision-v1", "", "", "2017-01-30 18:56:24", "2017-01-30 10:56:24", "", "141", "http://reda.selfip.net/2017/01/30/141-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("177", "1", "2017-01-30 18:56:53", "2017-01-30 10:56:53", "<h1>About Mega Pixel Cameras</h1>\r\nMei sanctus eleifend partiendo ne, laboramus repudiandae eos cu, ex eam timeam praesent expetendis. Viris referrentur ne duo. Erat salutatus ne mea, ut eos nisl atomorum scripserit, et diam sensibus his. No tamquam constituam has. Per vidisse qualisque an, vel homero fabulas placerat at, ius eleifend mandamus mnesarchum at.\r\n<h2>Mega Pixel Cameras 01</h2>\r\nTe solet electram ius. Ne mucius liberavisse sit, ex libris insolens cum, at ius sale debitis. Scaevola vivendum ne vis, usu novum tacimates gubergren ea. Justo mucius officiis ei mei, te pro detraxit efficiendi. Vix autem tractatos ne, partem nemore ei duo, ex clita efficiantur ius. Eos et tritani iracundia necessitatibus.\r\n\r\nEi usu oblique perpetua accommodare. Nam at saepe dicam, ea sit enim conceptam, tempor accusam reprimique ut eos. Iriure aperiri suscipit vim ut, id soluta nominati ius. Iisque conclusionemque per ut, vis no tibique oporteat imperdiet, soleat deserunt eos id. Ei mel justo detraxit accusamus, ne vim maiestatis vituperata, choro maiestatis eam an.\r\n<h2>Mega Pixel Cameras 02</h2>\r\nFugit menandri voluptatibus eos ea. Voluptua postulant adolescens ut has, ius no dicat fierent pertinax. Pri petentium iracundia liberavisse an. Has no mutat feugiat, in ius tation appareat. Ne partem democritum eam, purto ubique gloriatur mei te, debet partiendo vel et. Ut nec saepe partem civibus.", "CCTV System", "", "inherit", "closed", "closed", "", "137-revision-v1", "", "", "2017-01-30 18:56:53", "2017-01-30 10:56:53", "", "137", "http://reda.selfip.net/2017/01/30/137-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("178", "1", "2017-01-30 18:57:01", "2017-01-30 10:57:01", "<h1>About VMS</h1>\r\nMei sanctus eleifend partiendo ne, laboramus repudiandae eos cu, ex eam timeam praesent expetendis. Viris referrentur ne duo. Erat salutatus ne mea, ut eos nisl atomorum scripserit, et diam sensibus his. No tamquam constituam has. Per vidisse qualisque an, vel homero fabulas placerat at, ius eleifend mandamus mnesarchum at.\r\n<h2>VMS 01</h2>\r\nTe solet electram ius. Ne mucius liberavisse sit, ex libris insolens cum, at ius sale debitis. Scaevola vivendum ne vis, usu novum tacimates gubergren ea. Justo mucius officiis ei mei, te pro detraxit efficiendi. Vix autem tractatos ne, partem nemore ei duo, ex clita efficiantur ius. Eos et tritani iracundia necessitatibus.\r\n\r\nEi usu oblique perpetua accommodare. Nam at saepe dicam, ea sit enim conceptam, tempor accusam reprimique ut eos. Iriure aperiri suscipit vim ut, id soluta nominati ius. Iisque conclusionemque per ut, vis no tibique oporteat imperdiet, soleat deserunt eos id. Ei mel justo detraxit accusamus, ne vim maiestatis vituperata, choro maiestatis eam an.\r\n<h2>VMS 02</h2>\r\nFugit menandri voluptatibus eos ea. Voluptua postulant adolescens ut has, ius no dicat fierent pertinax. Pri petentium iracundia liberavisse an. Has no mutat feugiat, in ius tation appareat. Ne partem democritum eam, purto ubique gloriatur mei te, debet partiendo vel et. Ut nec saepe partem civibus.", "Burglar Alarm System", "", "inherit", "closed", "closed", "", "139-revision-v1", "", "", "2017-01-30 18:57:01", "2017-01-30 10:57:01", "", "139", "http://reda.selfip.net/2017/01/30/139-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("179", "1", "2017-01-30 18:57:10", "2017-01-30 10:57:10", "<img class=\"solution-image aligncenter wp-image-270 size-full\" src=\"http://reda.selfip.net/wp-content/uploads/2017/01/public_access.jpg\" width=\"675\" height=\"506\" />\r\n\r\nPublic address system (PA system in short) provide background music, pre-recorded messages broadcast and microphone broadcast. Service area including public areas, office lobby, lift lobbies, lift car, toilets, car park, perimeter, airport etc.\r\n\r\n<hr />\r\n\r\n<h1 id=\"1\">Key Components</h1>\r\nReda Technology Limited provide the highest quality product brand and installation service to provide a high quality system delivery.\r\n\r\n[WPSM_CC id=292]\r\n<h1 id=\"2\">Typical Applications</h1>\r\nWe classified different scales of the public address system into different scale levels to efficiently design the solution which is the best fit to our client’s requirements.\r\n\r\n[WPSM_CC id=293]\r\n\r\n<hr />", "Public Address System", "", "publish", "closed", "closed", "", "public-address-system", "", "", "2017-02-24 19:35:33", "2017-02-24 11:35:33", "", "0", "http://reda.selfip.net/?page_id=179", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("180", "1", "2017-01-30 18:57:10", "2017-01-30 10:57:10", "", "Public Address System", "", "inherit", "closed", "closed", "", "179-revision-v1", "", "", "2017-01-30 18:57:10", "2017-01-30 10:57:10", "", "179", "http://reda.selfip.net/2017/01/30/179-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("181", "1", "2017-01-30 18:57:33", "2017-01-30 10:57:33", "Analogue CCTV system has been on the market for many years and is the most utilized type of system for the residential and commercial market. Any number of fixed or pan-tilt-zoom analogue cameras can be installed and wired back to the recording and viewing equipment. Images can be viewed directly at the property or remotely viewing the images from outside when you are temporarily away from the property. Users can take immediate respond action for the system area and remote area to make the users operate their systems in a more flexible way.\r\n\r\n<hr />\r\n\r\n<h1 id=\"1\">Key Components</h1>\r\nPlease access here to get familiar about the components of the analogue CCTV system. Product brochures and specifications can be found at here as well.\r\n\r\n[WPSM_CC id=282]\r\n\r\n<hr />", "Analogue CCTV System", "", "publish", "closed", "closed", "", "analogue-cctv-system", "", "", "2017-02-22 13:11:57", "2017-02-22 05:11:57", "", "0", "http://reda.selfip.net/?page_id=181", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("182", "1", "2017-01-30 18:57:33", "2017-01-30 10:57:33", "", "Analogue CCTV system", "", "inherit", "closed", "closed", "", "181-revision-v1", "", "", "2017-01-30 18:57:33", "2017-01-30 10:57:33", "", "181", "http://reda.selfip.net/2017/01/30/181-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("183", "1", "2017-01-30 18:57:49", "2017-01-30 10:57:49", "IP CCTV system is quickly becoming the most flexible and future-proof option for security surveillance. Different from traditional analogue system, IP CCTV system adopt computer network technologies instead of coaxial cable to connect the entire CCTV system. With the help of the computer networking, the system can deliver significant advantages over traditional analogue system. Not just the improvement of image quality, the system benefit from networking security, redundancy, function and system scale. Therefore, IP system obtains a real benefits over the traditional topologies in the new centuries.\r\n\r\n<hr />\r\n\r\n<h1 id=\"1\">Key Components</h1>\r\nThere are four key components of IP CCTV system. Product brochures and specifications can be found at here as well.\r\n\r\n[WPSM_CC id=284]\r\n\r\nProducts details and specification\r\nPlease click here to have a look on different kinds of our products. To know the functions and characteristics of the systems and the products. Product and specifications are included as well.\r\n\r\n<h1 id=\"2\">Typical Applications</h1>\r\nClick here to access the different scales of CCTV system to find out which levels of the scales suite your needs.\r\n\r\n[WPSM_CC id=287]\r\n\r\n<hr />", "IP CCTV System", "", "publish", "closed", "closed", "", "ip-cctv-system", "", "", "2017-02-22 13:21:35", "2017-02-22 05:21:35", "", "0", "http://reda.selfip.net/?page_id=183", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("184", "1", "2017-01-30 18:57:49", "2017-01-30 10:57:49", "", "IP CCTV system", "", "inherit", "closed", "closed", "", "183-revision-v1", "", "", "2017-01-30 18:57:49", "2017-01-30 10:57:49", "", "183", "http://reda.selfip.net/2017/01/30/183-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("185", "1", "2017-01-30 18:57:53", "2017-01-30 10:57:53", "", "IP CCTV System", "", "inherit", "closed", "closed", "", "183-revision-v1", "", "", "2017-01-30 18:57:53", "2017-01-30 10:57:53", "", "183", "http://reda.selfip.net/2017/01/30/183-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("186", "1", "2017-01-30 18:58:05", "2017-01-30 10:58:05", "", "Analogue CCTV System", "", "inherit", "closed", "closed", "", "181-revision-v1", "", "", "2017-01-30 18:58:05", "2017-01-30 10:58:05", "", "181", "http://reda.selfip.net/2017/01/30/181-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("189", "1", "2017-01-30 19:00:20", "2017-01-30 11:00:20", " ", "", "", "publish", "closed", "closed", "", "189", "", "", "2017-02-17 23:09:50", "2017-02-17 15:09:50", "", "0", "http://reda.selfip.net/?p=189", "14", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("190", "1", "2017-01-30 19:00:20", "2017-01-30 11:00:20", " ", "", "", "publish", "closed", "closed", "", "190", "", "", "2017-02-17 23:09:50", "2017-02-17 15:09:50", "", "0", "http://reda.selfip.net/?p=190", "11", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("191", "1", "2017-01-30 19:00:20", "2017-01-30 11:00:20", " ", "", "", "publish", "closed", "closed", "", "191", "", "", "2017-02-17 23:09:50", "2017-02-17 15:09:50", "", "0", "http://reda.selfip.net/?p=191", "13", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("192", "1", "2017-01-30 19:00:20", "2017-01-30 11:00:20", " ", "", "", "publish", "closed", "closed", "", "192", "", "", "2017-02-17 23:09:50", "2017-02-17 15:09:50", "", "0", "http://reda.selfip.net/?p=192", "12", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("194", "1", "2017-01-31 19:15:25", "2017-01-31 11:15:25", "<h1>Access Control System</h1>\r\nAccess control system has become increasingly important for organizations to keep their employees and buildings secure. Whether you need to manage access through the authorization or revocation of rights to physical or logical assets within an organization, or regulate the flow of people across a site. G-matrix with partnerships of the world’s leading access control manufacturers offers a variety of stand-alone and network access control systems to help you get the best performance. \r\n\r\nOur access control systems can incorporate a comprehensive staff database to grant or revoke access to designated areas by status, time of day, or day of the year. It control entry to your business or facility and secures your building or sensitive area with specialized credentials, advance readers, alarm systems and reporting software. \r\n\r\nThe system design takes in a number of particular factors;\r\nThe level of security required\r\nThe number of total users in the system\r\nThe number of total doors in the system\r\nThe method of access and exit\r\nThe forms of authentication\r\nThe level of management control required\r\nAesthetics and user friendliness\r\n\r\n<h2>Access Control 01</h2>\r\nTe solet electram ius. Ne mucius liberavisse sit, ex libris insolens cum, at ius sale debitis. Scaevola vivendum ne vis, usu novum tacimates gubergren ea. Justo mucius officiis ei mei, te pro detraxit efficiendi. Vix autem tractatos ne, partem nemore ei duo, ex clita efficiantur ius. Eos et tritani iracundia necessitatibus.\r\n\r\nEi usu oblique perpetua accommodare. Nam at saepe dicam, ea sit enim conceptam, tempor accusam reprimique ut eos. Iriure aperiri suscipit vim ut, id soluta nominati ius. Iisque conclusionemque per ut, vis no tibique oporteat imperdiet, soleat deserunt eos id. Ei mel justo detraxit accusamus, ne vim maiestatis vituperata, choro maiestatis eam an.\r\n<h2>Access Control 02</h2>\r\nFugit menandri voluptatibus eos ea. Voluptua postulant adolescens ut has, ius no dicat fierent pertinax. Pri petentium iracundia liberavisse an. Has no mutat feugiat, in ius tation appareat. Ne partem democritum eam, purto ubique gloriatur mei te, debet partiendo vel et. Ut nec saepe partem civibus.", "Access Control System", "", "inherit", "closed", "closed", "", "141-revision-v1", "", "", "2017-01-31 19:15:25", "2017-01-31 11:15:25", "", "141", "http://reda.selfip.net/2017/01/31/141-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("195", "1", "2017-01-31 19:16:44", "2017-01-31 11:16:44", "<h1>Access Control System</h1>\r\nAccess control system has become increasingly important for organizations to keep their employees and buildings secure. Whether you need to manage access through the authorization or revocation of rights to physical or logical assets within an organization, or regulate the flow of people across a site. G-matrix with partnerships of the world’s leading access control manufacturers offers a variety of stand-alone and network access control systems to help you get the best performance. \r\n\r\nOur access control systems can incorporate a comprehensive staff database to grant or revoke access to designated areas by status, time of day, or day of the year. It control entry to your business or facility and secures your building or sensitive area with specialized credentials, advance readers, alarm systems and reporting software. \r\n\r\nThe system design takes in a number of particular factors:\r\n<ul>\r\n	<li>The level of security required</li>\r\n	<li>The number of total users in the system</li>\r\n	<li>The number of total doors in the system</li>\r\n	<li>The method of access and exit</li>\r\n	<li>The forms of authentication</li>\r\n	<li>The level of management control required</li>\r\n	<li>Aesthetics and user friendliness</li>\r\n</ul>\r\n\r\n\r\n\r\n\r\n<h2>Access Control 01</h2>\r\nTe solet electram ius. Ne mucius liberavisse sit, ex libris insolens cum, at ius sale debitis. Scaevola vivendum ne vis, usu novum tacimates gubergren ea. Justo mucius officiis ei mei, te pro detraxit efficiendi. Vix autem tractatos ne, partem nemore ei duo, ex clita efficiantur ius. Eos et tritani iracundia necessitatibus.\r\n\r\nEi usu oblique perpetua accommodare. Nam at saepe dicam, ea sit enim conceptam, tempor accusam reprimique ut eos. Iriure aperiri suscipit vim ut, id soluta nominati ius. Iisque conclusionemque per ut, vis no tibique oporteat imperdiet, soleat deserunt eos id. Ei mel justo detraxit accusamus, ne vim maiestatis vituperata, choro maiestatis eam an.\r\n<h2>Access Control 02</h2>\r\nFugit menandri voluptatibus eos ea. Voluptua postulant adolescens ut has, ius no dicat fierent pertinax. Pri petentium iracundia liberavisse an. Has no mutat feugiat, in ius tation appareat. Ne partem democritum eam, purto ubique gloriatur mei te, debet partiendo vel et. Ut nec saepe partem civibus.", "Access Control System", "", "inherit", "closed", "closed", "", "141-revision-v1", "", "", "2017-01-31 19:16:44", "2017-01-31 11:16:44", "", "141", "http://reda.selfip.net/2017/01/31/141-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("196", "1", "2017-01-31 19:39:03", "2017-01-31 11:39:03", "Access control system has become increasingly important for organizations to keep their employees and buildings secure. Whether you need to manage access through the authorization or revocation of rights to physical or logical assets within an organization, or regulate the flow of people across a site. G-matrix with partnerships of the world’s leading access control manufacturers offers a variety of stand-alone and network access control systems to help you get the best performance. \r\n\r\nOur access control systems can incorporate a comprehensive staff database to grant or revoke access to designated areas by status, time of day, or day of the year. It control entry to your business or facility and secures your building or sensitive area with specialized credentials, advance readers, alarm systems and reporting software. \r\n\r\nThe system design takes in a number of particular factors:\r\n<ul>\r\n	<li>The level of security required</li>\r\n	<li>The number of total users in the system</li>\r\n	<li>The number of total doors in the system</li>\r\n	<li>The method of access and exit</li>\r\n	<li>The forms of authentication</li>\r\n	<li>The level of management control required</li>\r\n	<li>Aesthetics and user friendliness</li>\r\n</ul>\r\n\r\n\r\n\r\n\r\n<h2>Access Control 01</h2>\r\nTe solet electram ius. Ne mucius liberavisse sit, ex libris insolens cum, at ius sale debitis. Scaevola vivendum ne vis, usu novum tacimates gubergren ea. Justo mucius officiis ei mei, te pro detraxit efficiendi. Vix autem tractatos ne, partem nemore ei duo, ex clita efficiantur ius. Eos et tritani iracundia necessitatibus.\r\n\r\nEi usu oblique perpetua accommodare. Nam at saepe dicam, ea sit enim conceptam, tempor accusam reprimique ut eos. Iriure aperiri suscipit vim ut, id soluta nominati ius. Iisque conclusionemque per ut, vis no tibique oporteat imperdiet, soleat deserunt eos id. Ei mel justo detraxit accusamus, ne vim maiestatis vituperata, choro maiestatis eam an.\r\n<h2>Access Control 02</h2>\r\nFugit menandri voluptatibus eos ea. Voluptua postulant adolescens ut has, ius no dicat fierent pertinax. Pri petentium iracundia liberavisse an. Has no mutat feugiat, in ius tation appareat. Ne partem democritum eam, purto ubique gloriatur mei te, debet partiendo vel et. Ut nec saepe partem civibus.", "Access Control System", "", "inherit", "closed", "closed", "", "141-revision-v1", "", "", "2017-01-31 19:39:03", "2017-01-31 11:39:03", "", "141", "http://reda.selfip.net/2017/01/31/141-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("197", "1", "2017-01-31 19:40:49", "2017-01-31 11:40:49", "Access control system has become increasingly important for organizations to keep their employees and buildings secure. Whether you need to manage access through the authorization or revocation of rights to physical or logical assets within an organization, or regulate the flow of people across a site. G-matrix with partnerships of the world’s leading access control manufacturers offers a variety of stand-alone and network access control systems to help you get the best performance. \r\n\r\nOur access control systems can incorporate a comprehensive staff database to grant or revoke access to designated areas by status, time of day, or day of the year. It control entry to your business or facility and secures your building or sensitive area with specialized credentials, advance readers, alarm systems and reporting software. \r\n\r\nThe system design takes in a number of particular factors:\r\n<ul>\r\n	<li>The level of security required</li>\r\n	<li>The number of total users in the system</li>\r\n	<li>The number of total doors in the system</li>\r\n	<li>The method of access and exit</li>\r\n	<li>The forms of authentication</li>\r\n	<li>The level of management control required</li>\r\n	<li>Aesthetics and user friendliness</li>\r\n</ul>\r\n\r\n<h2>Key Components</h2>\r\nA list of key products that combine to provide a complete access control system. Technical details are in here as well.\r\n\r\n<ul>\r\n	<li>Door Controller\r\nG-matrix provide wide range of intelligent, standalone and networked controller to manage all the access control devices function in a secure manner. For example, authorize access management, alarm signal management, time schedule automation etc. Our back end system also contains redundant power backup.\r\n</li>\r\n	<li>The number of total users in the system</li>\r\n	<li>The number of total doors in the system</li>\r\n	<li>The method of access and exit</li>\r\n	<li>The forms of authentication</li>\r\n	<li>The level of management control required</li>\r\n	<li>Aesthetics and user friendliness</li>\r\n</ul>", "Access Control System", "", "inherit", "closed", "closed", "", "141-revision-v1", "", "", "2017-01-31 19:40:49", "2017-01-31 11:40:49", "", "141", "http://reda.selfip.net/2017/01/31/141-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("198", "1", "2017-01-31 19:44:22", "2017-01-31 11:44:22", "Access control system has become increasingly important for organizations to keep their employees and buildings secure. Whether you need to manage access through the authorization or revocation of rights to physical or logical assets within an organization, or regulate the flow of people across a site. G-matrix with partnerships of the world’s leading access control manufacturers offers a variety of stand-alone and network access control systems to help you get the best performance. \r\n\r\nOur access control systems can incorporate a comprehensive staff database to grant or revoke access to designated areas by status, time of day, or day of the year. It control entry to your business or facility and secures your building or sensitive area with specialized credentials, advance readers, alarm systems and reporting software. \r\n\r\nThe system design takes in a number of particular factors:\r\n<ul>\r\n	<li>The level of security required</li>\r\n	<li>The number of total users in the system</li>\r\n	<li>The number of total doors in the system</li>\r\n	<li>The method of access and exit</li>\r\n	<li>The forms of authentication</li>\r\n	<li>The level of management control required</li>\r\n	<li>Aesthetics and user friendliness</li>\r\n</ul>\r\n\r\n<h1>Key Components</h1>\r\nA list of key products that combine to provide a complete access control system. Technical details are in here as well.\r\n\r\n<ul>\r\n	<li>Door Controller\r\nG-matrix provide wide range of intelligent, standalone and networked controller to manage all the access control devices function in a secure manner. For example, authorize access management, alarm signal management, time schedule automation etc. Our back end system also contains redundant power backup.\r\n</li>\r\n	<li>The number of total users in the system</li>\r\n	<li>The number of total doors in the system</li>\r\n	<li>The method of access and exit</li>\r\n	<li>The forms of authentication</li>\r\n	<li>The level of management control required</li>\r\n	<li>Aesthetics and user friendliness</li>\r\n</ul>", "Access Control System", "", "inherit", "closed", "closed", "", "141-revision-v1", "", "", "2017-01-31 19:44:22", "2017-01-31 11:44:22", "", "141", "http://reda.selfip.net/2017/01/31/141-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("199", "1", "2017-01-31 19:55:20", "2017-01-31 11:55:20", "Access control system has become increasingly important for organizations to keep their employees and buildings secure. Whether you need to manage access through the authorization or revocation of rights to physical or logical assets within an organization, or regulate the flow of people across a site. G-matrix with partnerships of the world’s leading access control manufacturers offers a variety of stand-alone and network access control systems to help you get the best performance. \r\n\r\nOur access control systems can incorporate a comprehensive staff database to grant or revoke access to designated areas by status, time of day, or day of the year. It control entry to your business or facility and secures your building or sensitive area with specialized credentials, advance readers, alarm systems and reporting software. \r\n\r\nThe system design takes in a number of particular factors:\r\n<ul>\r\n<li>The level of security required</li>\r\n<li>The number of total users in the system</li>\r\n<li>The number of total doors in the system</li>\r\n<li>The method of access and exit</li>\r\n<li>The forms of authentication</li>\r\n<li>The level of management control required</li>\r\n<li>Aesthetics and user friendliness</li>\r\n</ul>\r\n\r\n<h1>Key Components</h1>\r\nA list of key products that combine to provide a complete access control system. Technical details are in here as well.\r\n\r\n<ul>\r\n	<li>Door Controller\r\nG-matrix provide wide range of intelligent, standalone and networked controller to manage all the access control devices function in a secure manner. For example, authorize access management, alarm signal management, time schedule automation etc. Our back end system also contains redundant power backup.\r\n</li>\r\n	<li>The number of total users in the system</li>\r\n	<li>The number of total doors in the system</li>\r\n	<li>The method of access and exit</li>\r\n	<li>The forms of authentication</li>\r\n	<li>The level of management control required</li>\r\n	<li>Aesthetics and user friendliness</li>\r\n</ul>", "Access Control System", "", "inherit", "closed", "closed", "", "141-revision-v1", "", "", "2017-01-31 19:55:20", "2017-01-31 11:55:20", "", "141", "http://reda.selfip.net/2017/01/31/141-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("200", "1", "2017-01-31 19:57:36", "2017-01-31 11:57:36", "Access control system has become increasingly important for organizations to keep their employees and buildings secure. Whether you need to manage access through the authorization or revocation of rights to physical or logical assets within an organization, or regulate the flow of people across a site. G-matrix with partnerships of the world’s leading access control manufacturers offers a variety of stand-alone and network access control systems to help you get the best performance. \r\n\r\nOur access control systems can incorporate a comprehensive staff database to grant or revoke access to designated areas by status, time of day, or day of the year. It control entry to your business or facility and secures your building or sensitive area with specialized credentials, advance readers, alarm systems and reporting software. \r\n\r\nThe system design takes in a number of particular factors:\r\n<ul>\r\n<li>The level of security required</li>\r\n<li>The number of total users in the system</li>\r\n<li>The number of total doors in the system</li>\r\n<li>The method of access and exit</li>\r\n<li>The forms of authentication</li>\r\n<li>The level of management control required</li>\r\n<li>Aesthetics and user friendliness</li>\r\n</ul>\r\n\r\n<h1>Key Components</h1>\r\nA list of key products that combine to provide a complete access control system. Technical details are in here as well.\r\n\r\n<h2>Door Controller</h2>\r\nG-matrix provide wide range of intelligent, standalone and networked controller to manage all the access control devices function in a secure manner. For example, authorize access management, alarm signal management, time schedule automation etc. Our back end system also contains redundant power backup.\r\n", "Access Control System", "", "inherit", "closed", "closed", "", "141-revision-v1", "", "", "2017-01-31 19:57:36", "2017-01-31 11:57:36", "", "141", "http://reda.selfip.net/2017/01/31/141-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("201", "1", "2017-01-31 20:04:52", "2017-01-31 12:04:52", "Access control system has become increasingly important for organizations to keep their employees and buildings secure. Whether you need to manage access through the authorization or revocation of rights to physical or logical assets within an organization, or regulate the flow of people across a site. G-matrix with partnerships of the world’s leading access control manufacturers offers a variety of stand-alone and network access control systems to help you get the best performance.\r\n\r\nOur access control systems can incorporate a comprehensive staff database to grant or revoke access to designated areas by status, time of day, or day of the year. It control entry to your business or facility and secures your building or sensitive area with specialized credentials, advance readers, alarm systems and reporting software.\r\n\r\nThe system design takes in a number of particular factors:\r\n<ul>\r\n 	<li>The level of security required</li>\r\n 	<li>The number of total users in the system</li>\r\n 	<li>The number of total doors in the system</li>\r\n 	<li>The method of access and exit</li>\r\n 	<li>The forms of authentication</li>\r\n 	<li>The level of management control required</li>\r\n 	<li>Aesthetics and user friendliness</li>\r\n</ul>\r\n<h1>Key Components</h1>\r\nA list of key products that combine to provide a complete access control system. Technical details are in here as well.\r\n<h2>Door Controller</h2>\r\nG-matrix provide wide range of intelligent, standalone and networked controller to manage all the access control devices function in a secure manner. For example, authorize access management, alarm signal management, time schedule automation etc. Our back end system also contains redundant power backup.\r\n<h2>Card Reader</h2>\r\nG-matrix provide card reader with various credential technologies such as Prox, iCLASS, MIFARE etc. Apart from these popular &amp; secure solutions, we also provide wide range of sophisticated technologies &amp; secure solutions to deliver the most high end &amp; secure products to our customers.\r\n<h2>Electric Door Lock</h2>\r\nG-matrix provide a high quality of electric lock and installation service, which only triggered by authorized card access and secure side door release. We also provide some specific requirement such as schedule lock / unlock automation to achieve the user’s need.\r\n<h2>Operation Software</h2>\r\nWe provide easy to use security software with experienced designs. Enable you to assign &amp; delete the card users, modify the automatic schedule and many high end system operations.\r\n<h2>Pin Entry Keypad</h2>\r\nG-matrix provide indoor &amp; outdoor readers with high end technology and favorable outlook. Capacity sensing technologies &amp; mechanical switching technologies are available for the users for wide range of flexibilities.\r\n<h2>Barrier and Turnstiles</h2>\r\nG-matrix provide high quality barrier and turnstiles system with anti-pass back &amp; flow monitoring in advance. Force entering &amp; IN/OUT activities can be monitored also.\r\n<h2>Request to Exit &amp; Breakglass Switches</h2>\r\nG-matrix provide a high quality emergency access devices. Materials are highly qualified with conformities. Which provide the users to access the doors efficiently in an emergency case.\r\n<h2>Visitor Management</h2>\r\nG-matrix provide a user friendly visitor management system with easy to understand UI and operation advantage. To print a dedicated visitor badges for visitors to present a good image to your visitors.", "Access Control System", "", "inherit", "closed", "closed", "", "141-revision-v1", "", "", "2017-01-31 20:04:52", "2017-01-31 12:04:52", "", "141", "http://reda.selfip.net/2017/01/31/141-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("202", "1", "2017-01-31 20:07:05", "2017-01-31 12:07:05", "Access control system has become increasingly important for organizations to keep their employees and buildings secure. Whether you need to manage access through the authorization or revocation of rights to physical or logical assets within an organization, or regulate the flow of people across a site. G-matrix with partnerships of the world’s leading access control manufacturers offers a variety of stand-alone and network access control systems to help you get the best performance.\r\n\r\nOur access control systems can incorporate a comprehensive staff database to grant or revoke access to designated areas by status, time of day, or day of the year. It control entry to your business or facility and secures your building or sensitive area with specialized credentials, advance readers, alarm systems and reporting software.\r\n\r\nThe system design takes in a number of particular factors:\r\n<ul>\r\n 	<li>The level of security required</li>\r\n 	<li>The number of total users in the system</li>\r\n 	<li>The number of total doors in the system</li>\r\n 	<li>The method of access and exit</li>\r\n 	<li>The forms of authentication</li>\r\n 	<li>The level of management control required</li>\r\n 	<li>Aesthetics and user friendliness</li>\r\n</ul>\r\n<h1>Key Components</h1>\r\nA list of key products that combine to provide a complete access control system. Technical details are in here as well.\r\n<h2>Door Controller</h2>\r\nG-matrix provide wide range of intelligent, standalone and networked controller to manage all the access control devices function in a secure manner. For example, authorize access management, alarm signal management, time schedule automation etc. Our back end system also contains redundant power backup.\r\n<h2>Card Reader</h2>\r\nG-matrix provide card reader with various credential technologies such as Prox, iCLASS, MIFARE etc. Apart from these popular &amp; secure solutions, we also provide wide range of sophisticated technologies &amp; secure solutions to deliver the most high end &amp; secure products to our customers.\r\n<h2>Electric Door Lock</h2>\r\nG-matrix provide a high quality of electric lock and installation service, which only triggered by authorized card access and secure side door release. We also provide some specific requirement such as schedule lock / unlock automation to achieve the user’s need.\r\n<h2>Operation Software</h2>\r\nWe provide easy to use security software with experienced designs. Enable you to assign &amp; delete the card users, modify the automatic schedule and many high end system operations.\r\n<h2>Pin Entry Keypad</h2>\r\nG-matrix provide indoor &amp; outdoor readers with high end technology and favorable outlook. Capacity sensing technologies &amp; mechanical switching technologies are available for the users for wide range of flexibilities.\r\n<h2>Barrier and Turnstiles</h2>\r\nG-matrix provide high quality barrier and turnstiles system with anti-pass back &amp; flow monitoring in advance. Force entering &amp; IN/OUT activities can be monitored also.\r\n<h2>Request to Exit &amp; Breakglass Switches</h2>\r\nG-matrix provide a high quality emergency access devices. Materials are highly qualified with conformities. Which provide the users to access the doors efficiently in an emergency case.\r\n<h2>Visitor Management</h2>\r\nG-matrix provide a user friendly visitor management system with easy to understand UI and operation advantage. To print a dedicated visitor badges for visitors to present a good image to your visitors.\r\n<h1>Typical Applications</h1>\r\nClick here to have a look on the entry level, mid-level &amp; high level access control system. To see which levels suite your needs.\r\n<h2>Entry level system</h2>\r\nA common entry level system include one or several intelligent access reader, or entry level panels including several doors. Usually it will be integrated with burglar alarm system for door alarm triggering.\r\n<h2>Mid-level system</h2>\r\nA common mid-level system include a central server, which connect with several commercial grade control panel to monitor up to hundreds of doors located at several sites. Normally those commercial grade system can manage up to thousands of cards without any issue.\r\n<h2>High level system</h2>\r\nA typical infrastructural grade can monitor thousands of doors and cards of multiple site. Card credential, high end technologies, system integration, high level design of system redundancy, networking will be adopted to achieve the end user’s specifications &amp; requirements.\r\n\r\n&nbsp;", "Access Control System", "", "inherit", "closed", "closed", "", "141-revision-v1", "", "", "2017-01-31 20:07:05", "2017-01-31 12:07:05", "", "141", "http://reda.selfip.net/2017/01/31/141-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("203", "1", "2017-01-31 21:10:12", "2017-01-31 13:10:12", "<h1>About Mega Pixel Cameras</h1>\r\nMei sanctus eleifend partiendo ne, laboramus repudiandae eos cu, ex eam timeam praesent expetendis. Viris referrentur ne duo. Erat salutatus ne mea, ut eos nisl atomorum scripserit, et diam sensibus his. No tamquam constituam has. Per vidisse qualisque an, vel homero fabulas placerat at, ius eleifend mandamus mnesarchum at.\r\n<h2>Mega Pixel Cameras 01</h2>\r\nTe solet electram ius. Ne mucius liberavisse sit, ex libris insolens cum, at ius sale debitis. Scaevola vivendum ne vis, usu novum tacimates gubergren ea. Justo mucius officiis ei mei, te pro detraxit efficiendi. Vix autem tractatos ne, partem nemore ei duo, ex clita efficiantur ius. Eos et tritani iracundia necessitatibus.\r\n\r\nEi usu oblique perpetua accommodare. Nam at saepe dicam, ea sit enim conceptam, tempor accusam reprimique ut eos. Iriure aperiri suscipit vim ut, id soluta nominati ius. Iisque conclusionemque per ut, vis no tibique oporteat imperdiet, soleat deserunt eos id. Ei mel justo detraxit accusamus, ne vim maiestatis vituperata, choro maiestatis eam an.\r\n<h2>Mega Pixel Cameras 02</h2>\r\nFugit menandri voluptatibus eos ea. Voluptua postulant adolescens ut has, ius no dicat fierent pertinax. Pri petentium iracundia liberavisse an. Has no mutat feugiat, in ius tation appareat. Ne partem democritum eam, purto ubique gloriatur mei te, debet partiendo vel et. Ut nec saepe partem civibus.", "Closed-circuit Television (CCTV) System", "", "inherit", "closed", "closed", "", "137-revision-v1", "", "", "2017-01-31 21:10:12", "2017-01-31 13:10:12", "", "137", "http://reda.selfip.net/2017/01/31/137-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("204", "1", "2017-01-31 21:10:41", "2017-01-31 13:10:41", "", "CCTV System", "", "inherit", "closed", "closed", "", "137-revision-v1", "", "", "2017-01-31 21:10:41", "2017-01-31 13:10:41", "", "137", "http://reda.selfip.net/2017/01/31/137-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("205", "1", "2017-01-31 21:11:23", "2017-01-31 13:11:23", "Closed-circuit Television (CCTV) System is primarily designed for surveillance purposes which is used in a wide variety of applications which include security, disaster prevention, manpower saving, industrial measurement and military fields. In security application, the CCTV system help crime prevention by let criminals know the risks of crime and function as a deterrent of crime or keep constant watch over potential criminal acts. It also help identify criminals after crimes are perpetrated by reviewing recorded images resulting from the installed CCTV system.\r\n\r\nFor the past ten years, CCTV system with differ in type, quality and technology has moved on significantly. There are two main types of systems:", "CCTV System", "", "inherit", "closed", "closed", "", "137-revision-v1", "", "", "2017-01-31 21:11:23", "2017-01-31 13:11:23", "", "137", "http://reda.selfip.net/2017/01/31/137-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("206", "1", "2017-02-22 03:17:03", "2017-02-21 19:17:03", "&nbsp;\n\nClosed-circuit Television (CCTV) System is primarily designed for surveillance purposes which is used in a wide variety of applications which include security, disaster prevention, manpower saving, industrial measurement and military fields. In security application, the CCTV system help crime prevention by let criminals know the risks of crime and function as a deterrent of crime or keep constant watch over potential criminal acts. It also help identify criminals after crimes are perpetrated by reviewing recorded images resulting from the installed CCTV system.\n\nFor the past ten years, CCTV system with differ in type, quality and technology has moved on significantly. There are two main types of systems:\n<ul>\n 	<li><a href=\"http://reda.selfip.net/analogue-cctv-system/\">Analogue CCTV System</a></li>\n 	<li><a href=\"http://reda.selfip.net/ip-cctv-system/\">IP CCTV System</a></li>\n</ul>", "CCTV System", "", "inherit", "closed", "closed", "", "137-autosave-v1", "", "", "2017-02-22 03:17:03", "2017-02-21 19:17:03", "", "137", "http://reda.selfip.net/2017/01/31/137-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("207", "1", "2017-01-31 21:14:22", "2017-01-31 13:14:22", "Closed-circuit Television (CCTV) System is primarily designed for surveillance purposes which is used in a wide variety of applications which include security, disaster prevention, manpower saving, industrial measurement and military fields. In security application, the CCTV system help crime prevention by let criminals know the risks of crime and function as a deterrent of crime or keep constant watch over potential criminal acts. It also help identify criminals after crimes are perpetrated by reviewing recorded images resulting from the installed CCTV system.\r\n\r\nFor the past ten years, CCTV system with differ in type, quality and technology has moved on significantly. There are two main types of systems:\r\n<ul>\r\n 	<li>Analogue CCTV System</li>\r\n 	<li>IP CCTV System</li>\r\n</ul>", "CCTV System", "", "inherit", "closed", "closed", "", "137-revision-v1", "", "", "2017-01-31 21:14:22", "2017-01-31 13:14:22", "", "137", "http://reda.selfip.net/2017/01/31/137-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("208", "1", "2017-02-22 13:11:08", "2017-02-22 05:11:08", "Analogue CCTV system has been on the market for many years and is the most utilized type of system for the residential and commercial market. Any number of fixed or pan-tilt-zoom analogue cameras can be installed and wired back to the recording and viewing equipment. Images can be viewed directly at the property or remotely viewing the images from outside when you are temporarily away from the property. Users can take immediate respond action for the system area and remote area to make the users operate their systems in a more flexible way.\r\n\r\n<hr />\r\n\r\n<h1 id=\"1\">Key Components</h1>\r\nPlease access here to get familiar about the components of the analogue CCTV system. Product brochures and specifications can be found at here as well.\r\n\r\n[WPSM_CC id=282]", "Analogue CCTV System", "", "inherit", "closed", "closed", "", "181-autosave-v1", "", "", "2017-02-22 13:11:08", "2017-02-22 05:11:08", "", "181", "http://reda.selfip.net/2017/01/31/181-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("209", "1", "2017-01-31 21:15:53", "2017-01-31 13:15:53", "Analogue CCTV system has been on the market for many years and is the most utilized type of system for the residential and commercial market. Any number of fixed or pan-tilt-zoom analogue cameras can be installed and wired back to the recording and viewing equipment. Images can be viewed directly at the property or remotely viewing the images from outside when you are temporarily away from the property. Users can take immediate respond action for the system area and remote area to make the users operate their systems in a more flexible way.\r\n<h1>Key Components</h1>\r\nPlease access here to get familiar about the components of the analogue CCTV system. Product brochures and specifications can be found at here as well.\r\n\r\n&nbsp;\r\n<h2>Digital video recorder with storages</h2>\r\nG-matrix digital video recorders can easily retrieve the recorded video. Recording of digital video recorder is durable and difficult to be volatile. Up to date video compression achieve a secure data management and high video quality.\r\n<h2>CCTV Cameras</h2>\r\nG-matrix provide both indoor and outdoor CCTV camera to suite our client’s needs. It can work efficiently in difficult environment such as sun light, rain fall, high density of dust. It also work smoothly in a 24x7 manner by automatic day/night technology, which will obtain color image in day time and monochrome image in night time.\r\n<h2>Remote CCTV system monitoring</h2>\r\nG-matrix provide a CCTV system monitoring platform for our valuable users, with an option of workstation or mobile monitoring. Which provide user friendly UI for users to access the live &amp; recorded video at real time, notify the alarm triggering by email.\r\n<h2>CCTV system modules &amp; accessories</h2>\r\nG-matrix can extend, arrange, enhance the system by applying the accessories such as sequencers, multiplexors, surge protection, UPS etc. To make it more efficient to operate, more functions and more smooth to operate under any situation such as lighting surge or power surge.\r\n<h2>CCTV system display monitors</h2>\r\nG-matrix provide variety of size &amp; specification of CCTV monitor. Whatever you need a color, monochrome, flat-screen, wall mount, rack mount or matrix etc. We will provide you the best fit, best service &amp; quality CCTV monitor for high quality viewing.", "Analogue CCTV System", "", "inherit", "closed", "closed", "", "181-revision-v1", "", "", "2017-01-31 21:15:53", "2017-01-31 13:15:53", "", "181", "http://reda.selfip.net/2017/01/31/181-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("210", "1", "2017-01-31 21:16:04", "2017-01-31 13:16:04", "Analogue CCTV system has been on the market for many years and is the most utilized type of system for the residential and commercial market. Any number of fixed or pan-tilt-zoom analogue cameras can be installed and wired back to the recording and viewing equipment. Images can be viewed directly at the property or remotely viewing the images from outside when you are temporarily away from the property. Users can take immediate respond action for the system area and remote area to make the users operate their systems in a more flexible way.\r\n<h1>Key Components</h1>\r\nPlease access here to get familiar about the components of the analogue CCTV system. Product brochures and specifications can be found at here as well.\r\n<h2>Digital video recorder with storages</h2>\r\nG-matrix digital video recorders can easily retrieve the recorded video. Recording of digital video recorder is durable and difficult to be volatile. Up to date video compression achieve a secure data management and high video quality.\r\n<h2>CCTV Cameras</h2>\r\nG-matrix provide both indoor and outdoor CCTV camera to suite our client’s needs. It can work efficiently in difficult environment such as sun light, rain fall, high density of dust. It also work smoothly in a 24x7 manner by automatic day/night technology, which will obtain color image in day time and monochrome image in night time.\r\n<h2>Remote CCTV system monitoring</h2>\r\nG-matrix provide a CCTV system monitoring platform for our valuable users, with an option of workstation or mobile monitoring. Which provide user friendly UI for users to access the live &amp; recorded video at real time, notify the alarm triggering by email.\r\n<h2>CCTV system modules &amp; accessories</h2>\r\nG-matrix can extend, arrange, enhance the system by applying the accessories such as sequencers, multiplexors, surge protection, UPS etc. To make it more efficient to operate, more functions and more smooth to operate under any situation such as lighting surge or power surge.\r\n<h2>CCTV system display monitors</h2>\r\nG-matrix provide variety of size &amp; specification of CCTV monitor. Whatever you need a color, monochrome, flat-screen, wall mount, rack mount or matrix etc. We will provide you the best fit, best service &amp; quality CCTV monitor for high quality viewing.", "Analogue CCTV System", "", "inherit", "closed", "closed", "", "181-revision-v1", "", "", "2017-01-31 21:16:04", "2017-01-31 13:16:04", "", "181", "http://reda.selfip.net/2017/01/31/181-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("211", "1", "2017-02-22 13:13:10", "2017-02-22 05:13:10", "IP CCTV system is quickly becoming the most flexible and future-proof option for security surveillance. Different from traditional analogue system, IP CCTV system adopt computer network technologies instead of coaxial cable to connect the entire CCTV system. With the help of the computer networking, the system can deliver significant advantages over traditional analogue system. Not just the improvement of image quality, the system benefit from networking security, redundancy, function and system scale. Therefore, IP system obtains a real benefits over the traditional topologies in the new centuries.\n\n<hr />\n\n<h1 id=\"1\">Key Components</h1>\nThere are four key components of IP CCTV system. Product brochures and specifications can be found at here as well.\n\n\n\n<h1 id=\"2\">Typical Applications</h1>\nClick here to access the different scales of CCTV system to find out which levels of the scales suite your needs.\n\n\n\n<hr />", "IP CCTV System", "", "inherit", "closed", "closed", "", "183-autosave-v1", "", "", "2017-02-22 13:13:10", "2017-02-22 05:13:10", "", "183", "http://reda.selfip.net/2017/01/31/183-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("212", "1", "2017-01-31 21:17:37", "2017-01-31 13:17:37", "IP CCTV system is quickly becoming the most flexible and future-proof option for security surveillance. Different from traditional analogue system, IP CCTV system adopt computer network technologies instead of coaxial cable to connect the entire CCTV system. With the help of the computer networking, the system can deliver significant advantages over traditional analogue system. Not just the improvement of image quality, the system benefit from networking security, redundancy, function and system scale. Therefore, IP system obtains a real benefits over the traditional topologies in the new centuries.\r\n<h1>Key Components</h1>\r\nThere are four key components of IP CCTV system. Product brochures and specifications can be found at here as well.\r\n<h2>IP-based CCTV cameras</h2>\r\nAn IP camera is a stand-alone device that everything required for viewing images over the network is built into this unit. The IP camera has its own IP address and built-in software for a web server, RTP (Real Time Protocol) serve and alarm management.\r\n<h2>Video management software (VMS)</h2>\r\nVideo management software (VMS) is a software runs on one or more standalone servers. It is feature rich and manages video for live monitoring and recording and provides easy integration with other systems such as access control or building management system. Solution typically range from single PCs to advanced client / server based software that manage functionality for thousands of cameras.\r\n<h2>Servers and Storage</h2>\r\nThe ability to use open storage solutions is one of the main benefits with IP CCTV system. The most common is to have the storage attached to the server running the application as in a Network Video Recorder (NVR). The other is a storage solution where the storage is separate from the server running the application, which called Network Attached Storage (NAS).\r\n<h2>Network</h2>\r\nThe IP CCTV System intersects with the network infrastructure by connecting endpoints, IP cameras, workstations, servers and storage physically to the network. To properly design and implement the network, it is important to indicate the IP addressing and transport protocols along with bandwidth, scalability and network security.\r\n\r\nProducts details and specification\r\nPlease click here to have a look on different kinds of our products. To know the functions and characteristics of the systems and the products. Product and specifications are included as well.\r\n<h1>Typical Applications</h1>\r\nClick here to access the different scales of CCTV system to find out which levels of the scales suite your needs.\r\n<h2>Basic system level package</h2>\r\nNormally, it provide a 4 to 8 channel recorders which support from 1 to 8 cameras for local recording. It contains the capacity of the function of motion detection, video alarm triggering, microphone.\r\n<h2>Intermediate system level package</h2>\r\nIt provide 16 to more than 16 channel video recorders which support more than 16 cameras with multiple site, which are monitored by a workstation app for live viewing, record video retrieving, video back up, remote monitoring through workstation or mobile phone, integrated with access control system to manage systems with one app.\r\n<h2>High system level package</h2>\r\nA very complex CCTV system which normally connected with industrial grade video recorders, with power and server redundancy. Fiber &amp; computer network may included according to the scale of the entire system. With rack mounted back end equipment and provide a high system stability and reliability.", "IP CCTV System", "", "inherit", "closed", "closed", "", "183-revision-v1", "", "", "2017-01-31 21:17:37", "2017-01-31 13:17:37", "", "183", "http://reda.selfip.net/2017/01/31/183-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("213", "1", "2017-01-31 21:19:20", "2017-01-31 13:19:20", "G-matrix alarm system provide a remote &amp; local protection in an efficient way. In situation of personal break in, force entry, and attacks, we provide a tailor make and professional design to provide a safety environment for our clients.\r\n<h1>Key Components</h1>\r\nG-matrix provide various kind of products to suit different user’s needs.\r\n<h2>Sensors</h2>\r\nWe provide different kinds of security sensors to suite different kinds of detection. For example: Magnetic door contact, tamper switch, emergency panic button, motion detector, Acoustic glass break detectors, vibration sensor, seismic detector etc.\r\n<h2>Magnetic door contact</h2>\r\nMagnetic door contact is used to sense the opening / closing of the doors / windows. Different kinds of doors / windows can be applied with the use of different kinds of sensors.\r\n<h2>Tamper switch</h2>\r\nTamper switch protect the sensors &amp; panel enclosure to prevent the devices from tampering. Normally, alarm will be triggered once the sensors are dismantled or the system enclosures are force opened.\r\n<h2>Emergency panic button</h2>\r\nEmergency panic button plays an important roles in the alarm system design. Normally, this sensor has a relatively high priority for the alarm signal operators. Once it is triggered, normally the alarm manage operators will call the police directly or dispatch a person to have an on-site checking.\r\n<h2>Motion detector</h2>\r\nMotion detector provide a traditional but effective detection in alarm system. It provide a large area detection for each device. Once a person is detected with the security zone armed, the alarm system will be triggered. Nowadays, various technologies are applied for this. For example, pet immunity, low false alarm rate in outdoor environment, anti-masking.\r\n<h2>Alarm Control Panel</h2>\r\nG-matrix provide automatic management of the alarm zones. When the system is disarmed, low and middle priority security zones are not triggered. Except the high priority zones (panic button for example). It will be triggered even the system is disarmed. When the system is armed, any security zones can trigger the alarm system and will turn on the alarm sounders and transmit the alarm message to the 24 hours central station.\r\n<h2>Alarm Control Keypad</h2>\r\nKeypad takes an important role to facilitate the user’s daily operation. Make it simpler and more efficient.\r\n\r\nFor example, users know whether the doors are open / closed without visiting the doors one by one. Instead, users can access all the door / windows status with the use of alarm keypad.\r\n<h2>Alarm Sounders</h2>\r\nG-matrix provide different kinds of alarm sounders for the system to work effectively. Outdoor / indoor / chime sounders are available with wired / wireless technologies.\r\n<h2>Alarm Communications</h2>\r\nWe provide wide range of alarm communication technologies to suite the client’s needs. For example, PSTN communication, TCP/IP communication, lease line communication, GSM communication etc.\r\n\r\nPSTN also known as telephone line for everyone, its high availability make it popular even in nowadays. Regular automatic detection is available to regular check the on / off line status.\r\n\r\nTCP/IP revolute the security world and greatly improve the speed &amp; security in communication. Alarm messages are encrypted and transmitted to the alarm management center for further interpreting. It has a remarkable transmission speed so that the signal is almost received immediately.\r\n\r\nLease line communication provide a specific communication line to the users to act as a transmission media of the alarm system. It is highly reliable and stable. Therefore, it is necessary for most of the high risk environment for the insurance contracts.\r\n\r\nGSM communication provide a simple and fast solution for the users to protect their premises where the wireless network is covered.\r\n<h1>Typical Applications</h1>\r\nWe classified different scales of the alarm system into different scale levels to efficiently design the solution which is the best fit to our client’s requirements.\r\n\r\nDifferent scale level and complexity of the burglar alarm system cover different kinds of needs of the client’s real situation.\r\n<h2>Entry Level Burglar Alarm System</h2>\r\nEntry level alarm system target to residential &amp; small commercial scale needs. Normally it is a network alarm system with internal / external sounders and connect to every kinds of security zones. When the alarm is triggered, sounder is triggered and the corresponding alarm signal is sent to the central alarm monitoring center.\r\n<h2>Middle Level Burglar Alarm System</h2>\r\nThis level of system normally integrate the door access control system to monitor the door status at the same time. When the alarm is triggered, the alarm message is transmitted to the central station in real time. The alarm operator will design whether police will be dispatched according to the alarm priority and real situation.\r\n<h2>High Level Burglar Alarm System</h2>\r\nThis high level system provide a redundancy topologies for the client sites. If the duty system tail accidentally, the standby system will stand out and replace the duty system. Therefore, reliable functioning can be achieved. For example, GSM will be set up as redundant communication path and the PSTN networks belong to the duty communication technologies. Also, we will also provide an alarm signal monitoring station for security guard to monitor the signals on site. So that they can provide the optional alarm response once the alarm is triggered.", "Burglar Alarm System", "", "inherit", "closed", "closed", "", "139-revision-v1", "", "", "2017-01-31 21:19:20", "2017-01-31 13:19:20", "", "139", "http://reda.selfip.net/2017/01/31/139-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("214", "1", "2017-01-31 21:22:07", "2017-01-31 13:22:07", "Closed-circuit Television (CCTV) System is primarily designed for surveillance purposes which is used in a wide variety of applications which include security, disaster prevention, manpower saving, industrial measurement and military fields. In security application, the CCTV system help crime prevention by let criminals know the risks of crime and function as a deterrent of crime or keep constant watch over potential criminal acts. It also help identify criminals after crimes are perpetrated by reviewing recorded images resulting from the installed CCTV system.\r\n\r\nFor the past ten years, CCTV system with differ in type, quality and technology has moved on significantly. There are two main types of systems:\r\n<ul>\r\n 	<li><a href=\"http://reda.selfip.net/analogue-cctv-system/\">Analogue CCTV System</a></li>\r\n 	<li><a href=\"http://reda.selfip.net/ip-cctv-system/\">IP CCTV System</a></li>\r\n</ul>", "CCTV System", "", "inherit", "closed", "closed", "", "137-revision-v1", "", "", "2017-01-31 21:22:07", "2017-01-31 13:22:07", "", "137", "http://reda.selfip.net/2017/01/31/137-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("215", "1", "2017-01-31 21:28:58", "2017-01-31 13:28:58", "Closed-circuit Television (CCTV) System is primarily designed for surveillance purposes which is used in a wide variety of applications which include security, disaster prevention, manpower saving, industrial measurement and military fields. In security application, the CCTV system help crime prevention by let criminals know the risks of crime and function as a deterrent of crime or keep constant watch over potential criminal acts. It also help identify criminals after crimes are perpetrated by reviewing recorded images resulting from the installed CCTV system.\r\n\r\nFor the past ten years, CCTV system with differ in type, quality and technology has moved on significantly. There are two main types of systems:\r\n\r\n<h2><a href=\"http://reda.selfip.net/analogue-cctv-system/\">Analogue CCTV System</a></h2>\r\n\r\n<h2><a href=\"http://reda.selfip.net/ip-cctv-system/\">IP CCTV System</a></h2>", "CCTV System", "", "inherit", "closed", "closed", "", "137-revision-v1", "", "", "2017-01-31 21:28:58", "2017-01-31 13:28:58", "", "137", "http://reda.selfip.net/2017/01/31/137-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("216", "1", "2017-01-31 21:31:01", "2017-01-31 13:31:01", "Closed-circuit Television (CCTV) System is primarily designed for surveillance purposes which is used in a wide variety of applications which include security, disaster prevention, manpower saving, industrial measurement and military fields. In security application, the CCTV system help crime prevention by let criminals know the risks of crime and function as a deterrent of crime or keep constant watch over potential criminal acts. It also help identify criminals after crimes are perpetrated by reviewing recorded images resulting from the installed CCTV system.\r\n\r\nFor the past ten years, CCTV system with differ in type, quality and technology has moved on significantly. There are two main types of systems:\r\n<h1><a href=\"http://reda.selfip.net/analogue-cctv-system/\">Analogue CCTV System</a></h1>\r\n<h1><a href=\"http://reda.selfip.net/ip-cctv-system/\">IP CCTV System</a></h1>", "CCTV System", "", "inherit", "closed", "closed", "", "137-revision-v1", "", "", "2017-01-31 21:31:01", "2017-01-31 13:31:01", "", "137", "http://reda.selfip.net/2017/01/31/137-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("217", "1", "2017-01-31 21:31:13", "2017-01-31 13:31:13", "Closed-circuit Television (CCTV) System is primarily designed for surveillance purposes which is used in a wide variety of applications which include security, disaster prevention, manpower saving, industrial measurement and military fields. In security application, the CCTV system help crime prevention by let criminals know the risks of crime and function as a deterrent of crime or keep constant watch over potential criminal acts. It also help identify criminals after crimes are perpetrated by reviewing recorded images resulting from the installed CCTV system.\r\n\r\nFor the past ten years, CCTV system with differ in type, quality and technology has moved on significantly. There are two main types of systems:\r\n<h1><a href=\"http://reda.selfip.net/analogue-cctv-system/\">Analogue CCTV System</a></h1>\r\n&nbsp;\r\n<h1><a href=\"http://reda.selfip.net/ip-cctv-system/\">IP CCTV System</a></h1>", "CCTV System", "", "inherit", "closed", "closed", "", "137-revision-v1", "", "", "2017-01-31 21:31:13", "2017-01-31 13:31:13", "", "137", "http://reda.selfip.net/2017/01/31/137-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("218", "1", "2017-01-31 21:31:20", "2017-01-31 13:31:20", "Closed-circuit Television (CCTV) System is primarily designed for surveillance purposes which is used in a wide variety of applications which include security, disaster prevention, manpower saving, industrial measurement and military fields. In security application, the CCTV system help crime prevention by let criminals know the risks of crime and function as a deterrent of crime or keep constant watch over potential criminal acts. It also help identify criminals after crimes are perpetrated by reviewing recorded images resulting from the installed CCTV system.\r\n\r\nFor the past ten years, CCTV system with differ in type, quality and technology has moved on significantly. There are two main types of systems:\r\n<h1><a href=\"http://reda.selfip.net/analogue-cctv-system/\">Analogue CCTV System</a></h1>\r\n<h1><a href=\"http://reda.selfip.net/ip-cctv-system/\">IP CCTV System</a></h1>", "CCTV System", "", "inherit", "closed", "closed", "", "137-revision-v1", "", "", "2017-01-31 21:31:20", "2017-01-31 13:31:20", "", "137", "http://reda.selfip.net/2017/01/31/137-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("219", "1", "2017-01-31 21:32:27", "2017-01-31 13:32:27", "Closed-circuit Television (CCTV) System is primarily designed for surveillance purposes which is used in a wide variety of applications which include security, disaster prevention, manpower saving, industrial measurement and military fields. In security application, the CCTV system help crime prevention by let criminals know the risks of crime and function as a deterrent of crime or keep constant watch over potential criminal acts. It also help identify criminals after crimes are perpetrated by reviewing recorded images resulting from the installed CCTV system.\r\n\r\nFor the past ten years, CCTV system with differ in type, quality and technology has moved on significantly. There are two main types of systems:\r\n<h1><a href=\"http://reda.selfip.net/analogue-cctv-system/\">Analogue CCTV System</a></h1>\r\n</br>\r\n<h1><a href=\"http://reda.selfip.net/ip-cctv-system/\">IP CCTV System</a></h1>", "CCTV System", "", "inherit", "closed", "closed", "", "137-revision-v1", "", "", "2017-01-31 21:32:27", "2017-01-31 13:32:27", "", "137", "http://reda.selfip.net/2017/01/31/137-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("220", "1", "2017-01-31 21:32:36", "2017-01-31 13:32:36", "Closed-circuit Television (CCTV) System is primarily designed for surveillance purposes which is used in a wide variety of applications which include security, disaster prevention, manpower saving, industrial measurement and military fields. In security application, the CCTV system help crime prevention by let criminals know the risks of crime and function as a deterrent of crime or keep constant watch over potential criminal acts. It also help identify criminals after crimes are perpetrated by reviewing recorded images resulting from the installed CCTV system.\r\n\r\nFor the past ten years, CCTV system with differ in type, quality and technology has moved on significantly. There are two main types of systems:\r\n<ul>\r\n 	<li><a href=\"http://reda.selfip.net/analogue-cctv-system/\">Analogue CCTV System</a></li>\r\n 	<li><a href=\"http://reda.selfip.net/ip-cctv-system/\">IP CCTV System</a></li>\r\n</ul>", "CCTV System", "", "inherit", "closed", "closed", "", "137-revision-v1", "", "", "2017-01-31 21:32:36", "2017-01-31 13:32:36", "", "137", "http://reda.selfip.net/2017/01/31/137-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("221", "1", "2017-02-22 13:39:29", "2017-02-22 05:39:29", "<img class=\"solution-image aligncenter wp-image-270 size-full\" src=\"http://reda.selfip.net/wp-content/uploads/2017/01/public_access.jpg\" width=\"675\" height=\"506\" />\n\nPublic address system (PA system in short) provide background music, pre-recorded messages broadcast and microphone broadcast. Service area including public areas, office lobby, lift lobbies, lift car, toilets, car park, perimeter, airport etc.\n\n<hr />\n\n<h1 id=\"1\">Key Components</h1>\nG-matrix provide the highest quality product brand and installation service to provide a high quality system delivery.\n\n[WPSM_CC id=292]\n\n<h1 id=\"2\">Typical Applications</h1>\nWe classified different scales of the public address system into different scale levels to efficiently design the solution which is the best fit to our client’s requirements.\n\n\n\n<hr />", "Public Address System", "", "inherit", "closed", "closed", "", "179-autosave-v1", "", "", "2017-02-22 13:39:29", "2017-02-22 05:39:29", "", "179", "http://reda.selfip.net/2017/01/31/179-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("222", "1", "2017-01-31 21:34:41", "2017-01-31 13:34:41", "Public address system (PA system in short) provide background music, pre-recorded messages broadcast and microphone broadcast. Service area including public areas, office lobby, lift lobbies, lift car, toilets, car park, perimeter, airport etc.\r\n<h1>Key Components</h1>\r\nG-matrix provide the highest quality product brand and installation service to provide a high quality system delivery.\r\n<h2>Speaker</h2>\r\nThe most important role of the system is the PA speaker. We provide indoor/outdoor PA speaker for actual condition of the installation. We also provide speaker with fire proof conformity to fit the project specifications.\r\n<h2>Digital Announcer</h2>\r\nThis device is to transmit the digital announcement message: emergency announcement or all-call-messages to the amplifiers. The voice message is uploaded to the central workstation then download to digital announcer. Normally, announcing message is triggered by sensor and other third party system.\r\n<h2>Voice Player</h2>\r\nIt can process the predefined sounds and pass to the amplifiers. With the help of the amplifier zones. The sound signal can be managed to be relayed to different group of speakers.\r\n<h2>Call Station</h2>\r\nWe provide high quality, robust &amp; stable call station to our clients. To receive a high quality sound, sensitivity, limiter and parametric equalizer can be controlled to achieve this.\r\n<h2>Power Amplifiers</h2>\r\nIt provide power for the PA speakers to function. Different loading of amplifiers are available according to the system scale. Also, amplifiers groups PA speakers into several groups called zone. PA zone can monitor the groups of speakers in a manageable way. We provide rack mount/non rack mount device according to our client’s requirement.\r\n<h2>System Network Controller</h2>\r\nComputer network make the traditional system easy to implement and operate. It can adopt the networking system to expend the system coverage and provide a relatively high secure voice transmission.\r\n<h2>PA System Management Platform</h2>\r\nDepend on the system scale level, it can be a server or workstation computer. It response entire system configuration, system diagnosis, database management and system monitoring.\r\n<h1>Typical Applications</h1>\r\nWe classified different scales of the public address system into different scale levels to efficiently design the solution which is the best fit to our client’s requirements.\r\n<h2>Small Public Address System</h2>\r\nSmall PA system target to residential &amp; small commercial scale needs. Normally it includes microphones, amplifiers and indoor / outdoor speakers. Sound players often supplied for the client to load the pre-recorded sounds and broadcast to the system.\r\n<h2>Large Public Address System</h2>\r\nLarge PA system usually adopted in infrastructure facilities. For example, schools, hospitals, buildings, airports etc. Usually it integrate with the alert system for fire announcement. So that the emergency announcement will be triggered once the fire alarm system receive the sensor signals.", "Public Address System", "", "inherit", "closed", "closed", "", "179-revision-v1", "", "", "2017-01-31 21:34:41", "2017-01-31 13:34:41", "", "179", "http://reda.selfip.net/2017/01/31/179-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("223", "1", "2017-01-31 22:21:43", "2017-01-31 14:21:43", "", "About Us", "", "publish", "closed", "closed", "", "about-us", "", "", "2017-02-17 23:09:50", "2017-02-17 15:09:50", "", "0", "http://reda.selfip.net/?p=223", "2", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("224", "1", "2017-01-31 22:30:40", "2017-01-31 14:30:40", "[email_verification]", "Email Verification", "", "publish", "closed", "closed", "", "email-verification", "", "", "2017-03-10 16:26:43", "2017-03-10 08:26:43", "", "0", "http://reda.selfip.net/2017/01/31/email-verification/", "0", "fmemailverification", "", "0");
INSERT INTO `wp_posts` VALUES("225", "1", "2017-01-31 22:31:21", "2017-01-31 14:31:21", "Reda Technology Limited was established in Hong Kong in 1998 who plays a key role in the provision of professional ELV System. With over 15-years strong skill-sets in the area of System Design, Installation and Maintenance Support, our operation reaches wide range of clients and spans across Greater China.\r\n\r\nTo be the leading solution provider, we are passionate to serve any special need of clients and deliver innovative and custom-built solutions. In 2007, we expanded vertically and Securitech Systems Ltd was established for security products.", "About Reda", "", "inherit", "closed", "closed", "", "168-revision-v1", "", "", "2017-01-31 22:31:21", "2017-01-31 14:31:21", "", "168", "http://reda.selfip.net/2017/01/31/168-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("227", "1", "2017-01-31 23:32:01", "2017-01-31 15:32:01", "<h2>Why Work for Reda?</h2>\r\nWe believe that “People is the greatest assest”. The foster collaboration between employees sustains our business growth. We provide skill-building program to support your career development at every stage. We offer an equal employment opportunity and all qualified applicants will receive consideration for employment.\r\n\r\nWant to become a member in Reda, you can submit an application either by:\r\n<ol>\r\n 	<li>Sending an e-mail with your C.V and expected salary to <a href=\"mailto:hr@redahk.com\">hr@redahk.com</a></li>\r\n 	<li>By Post : Unit 7, 30/F, Global Gateway Tower, 63 Wing Hong Street, Cheung Sha Wan, Kowloon, Hong Kong</li>\r\n 	<li>By Fax: +852 2307-0948</li>\r\n</ol>\r\nAll personal data provided will only be used for recruitment purposes. Applicants who are not invited to an interview within six weeks should consider their applications unsuccessful.", "Careers", "", "inherit", "closed", "closed", "", "170-revision-v1", "", "", "2017-01-31 23:32:01", "2017-01-31 15:32:01", "", "170", "http://reda.selfip.net/2017/01/31/170-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("228", "1", "2017-01-31 23:39:46", "2017-01-31 15:39:46", "<h2>Why Work for Reda?</h2>\r\nWe believe that “People is the greatest assest”. The foster collaboration between employees sustains our business growth. We provide skill-building program to support your career development at every stage. We offer an equal employment opportunity and all qualified applicants will receive consideration for employment.\r\n\r\nWant to become a member in Reda, you can submit an application either by:\r\n<ol>\r\n 	<li>Sending an e-mail with your C.V and expected salary to <a href=\"mailto:hr@redahk.com\">hr@redahk.com</a></li>\r\n 	<li>By Post : Unit 7, 30/F, Global Gateway Tower, 63 Wing Hong Street, Cheung Sha Wan, Kowloon, Hong Kong</li>\r\n 	<li>By Fax: +852 2307 0948</li>\r\n</ol>\r\nAll personal data provided will only be used for recruitment purposes. Applicants who are not invited to an interview within six weeks should consider their applications unsuccessful.", "Careers", "", "inherit", "closed", "closed", "", "170-revision-v1", "", "", "2017-01-31 23:39:46", "2017-01-31 15:39:46", "", "170", "http://reda.selfip.net/2017/01/31/170-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("229", "1", "2017-01-31 23:42:28", "2017-01-31 15:42:28", "[Form id=\"1\"]", "Sales Enquiry", "", "trash", "closed", "closed", "", "sales-enquiry__trashed", "", "", "2017-02-17 23:12:59", "2017-02-17 15:12:59", "", "0", "http://reda.selfip.net/?page_id=229", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("230", "1", "2017-01-31 23:42:28", "2017-01-31 15:42:28", "", "Sales Enquiry", "", "inherit", "closed", "closed", "", "229-revision-v1", "", "", "2017-01-31 23:42:28", "2017-01-31 15:42:28", "", "229", "http://reda.selfip.net/2017/01/31/229-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("231", "1", "2017-01-31 23:42:50", "2017-01-31 15:42:50", "[Form id=\"1\"]", "Sales Enquiry", "", "inherit", "closed", "closed", "", "229-revision-v1", "", "", "2017-01-31 23:42:50", "2017-01-31 15:42:50", "", "229", "http://reda.selfip.net/2017/01/31/229-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("233", "1", "2017-02-01 01:49:23", "2017-01-31 17:49:23", "Wilkins Wong\nSales Manager\n+852 9011 0448\n<a href= \"mailto:wilkins@redahk.com\">wilkins@redahk.com</a>\n\nPolly Yiu Sales\nManager\n+852 6307 0917\npolly@redahk.com\n\nIsaac Choi\nSales Manager\n+852 5134 3765\nisaac@redahk.com", "Personnel", "", "inherit", "closed", "closed", "", "118-autosave-v1", "", "", "2017-02-01 01:49:23", "2017-01-31 17:49:23", "", "118", "http://reda.selfip.net/2017/02/01/118-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("234", "1", "2017-02-01 01:49:36", "2017-01-31 17:49:36", "Wilkins Wong\r\nSales Manager\r\n+852 9011 0448\r\n<a href=\"mailto:wilkins@redahk.com\">wilkins@redahk.com</a>\r\n\r\nPolly Yiu Sales\r\nManager\r\n+852 6307 0917\r\npolly@redahk.com\r\n\r\nIsaac Choi\r\nSales Manager\r\n+852 5134 3765\r\nisaac@redahk.com", "Personnel", "", "inherit", "closed", "closed", "", "118-revision-v1", "", "", "2017-02-01 01:49:36", "2017-01-31 17:49:36", "", "118", "http://reda.selfip.net/2017/02/01/118-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("235", "1", "2017-02-01 01:50:11", "2017-01-31 17:50:11", "Wilkins Wong\r\nSales Manager\r\n+852 9011 0448\r\n<a href=\"mailto:wilkins@redahk.com\">wilkins@redahk.com</a>\r\n\r\nPolly Yiu Sales\r\nManager\r\n+852 6307 0917\r\n<a href=\"mailto:polly@redahk.com\">polly@redahk.com</a>\r\n\r\nIsaac Choi\r\nSales Manager\r\n+852 5134 3765\r\n<a href=\"mailto:isaac@redahk.com\">isaac@redahk.com</a>", "Personnel", "", "inherit", "closed", "closed", "", "118-revision-v1", "", "", "2017-02-01 01:50:11", "2017-01-31 17:50:11", "", "118", "http://reda.selfip.net/2017/02/01/118-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("238", "1", "2017-02-17 22:47:31", "2017-02-17 14:47:31", "", "home_slider_01", "", "inherit", "open", "closed", "", "home_slider_01", "", "", "2017-02-17 22:47:31", "2017-02-17 14:47:31", "", "0", "http://reda.selfip.net/wp-content/uploads/2017/02/home_slider_01.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("239", "1", "2017-02-17 22:47:33", "2017-02-17 14:47:33", "", "home_slider_02", "", "inherit", "open", "closed", "", "home_slider_02", "", "", "2017-02-17 22:47:33", "2017-02-17 14:47:33", "", "0", "http://reda.selfip.net/wp-content/uploads/2017/02/home_slider_02.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("240", "1", "2017-02-17 22:47:36", "2017-02-17 14:47:36", "", "Job-Description-Technician-R0", "", "inherit", "open", "closed", "", "job-description-technician-r0", "", "", "2017-02-17 22:47:36", "2017-02-17 14:47:36", "", "0", "http://reda.selfip.net/wp-content/uploads/2017/02/Job-Description-Technician-R0.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("241", "1", "2017-02-17 22:47:36", "2017-02-17 14:47:36", "", "nav_bar", "", "inherit", "open", "closed", "", "nav_bar", "", "", "2017-02-17 22:47:36", "2017-02-17 14:47:36", "", "0", "http://reda.selfip.net/wp-content/uploads/2017/02/nav_bar.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("242", "1", "2017-02-17 22:50:27", "2017-02-17 14:50:27", "", "Arecont Vision", "", "publish", "closed", "closed", "", "arecont-vision-2", "", "", "2017-02-17 23:09:50", "2017-02-17 15:09:50", "", "0", "http://reda.selfip.net/?p=242", "16", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("243", "1", "2017-02-17 22:50:27", "2017-02-17 14:50:27", "", "FLIR", "", "publish", "closed", "closed", "", "flir", "", "", "2017-02-17 23:09:50", "2017-02-17 15:09:50", "", "0", "http://reda.selfip.net/?p=243", "17", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("244", "1", "2017-02-17 22:50:27", "2017-02-17 14:50:27", "", "Network Optix", "", "publish", "closed", "closed", "", "network-optix-2", "", "", "2017-02-17 23:09:50", "2017-02-17 15:09:50", "", "0", "http://reda.selfip.net/?p=244", "18", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("245", "1", "2017-02-17 22:53:22", "2017-02-17 14:53:22", "<h2>Why Work for Reda?</h2>\r\nWe believe that “People is the greatest asset”. The foster collaboration between employees sustains our business growth. We provide skill-building program to support your career development at every stage. We offer an equal employment opportunity and all qualified applicants will receive consideration for employment.\r\n\r\nWant to become a member in Reda, you can submit an application either by:\r\n<ol>\r\n 	<li>Sending an e-mail with your C.V and expected salary to <a href=\"mailto:hr@redahk.com\">hr@redahk.com</a></li>\r\n 	<li>By Post : Unit 7, 30/F, Global Gateway Tower, 63 Wing Hong Street, Cheung Sha Wan, Kowloon, Hong Kong</li>\r\n 	<li>By Fax: +852 2307 0948</li>\r\n</ol>\r\nAll personal data provided will only be used for recruitment purposes. Applicants who are not invited to an interview within six weeks should consider their applications unsuccessful.\r\n<h2>Latest Work from Reda</h2>\r\n<ol>\r\n 	<li><a href=\"http://localhost:8888/wordpress/wp-content/uploads/2017/02/Job-Description-Technician-R0.pdf\" target=\"_blank\">Technician (Ref.: G1701)</a></li>\r\n</ol>", "Careers", "", "inherit", "closed", "closed", "", "170-revision-v1", "", "", "2017-02-17 22:53:22", "2017-02-17 14:53:22", "", "170", "http://reda.selfip.net/2017/02/17/170-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("246", "1", "2017-02-17 23:03:00", "2017-02-17 15:03:00", "<div class=\"map-location\"><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3690.3859524553536!2d114.1460300147592!3d22.33905124713267!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3404075416900e45%3A0xdd5206a202fe3d9d!2sGLOBAL+GATEWAY+TOWER!5e0!3m2!1sen!2shk!4v1487331984157\" width=\"570\" height=\"250\" frameborder=\"0\"></iframe></div>\r\n<div class=\"contact-details\">Office Address: Unit 7, 30/F, Global Gateway Tower, 63 Wing Hong Street, Cheung She Wan, Kowloon, Hong Kong\r\nTel: + 852 2307 0742\r\nFax: + 852 2310 0948</div>", "Contact", "", "inherit", "closed", "closed", "", "17-revision-v1", "", "", "2017-02-17 23:03:00", "2017-02-17 15:03:00", "", "17", "http://reda.selfip.net/2017/02/17/17-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("247", "1", "2017-02-17 23:05:24", "2017-02-17 15:05:24", "<!-- copy the following for new box -->\r\n<div class=\"news-sidebar-box\">\r\n<div class=\"news-sidebar-box-header\">\r\n<h1>News from Arecont Vision</h1>\r\n</div>\r\n<div class=\"news-sidebar-box-body\"><a href=\"http://www.arecontvision.com\" target=\"_blank\">Read more on Arecont Vision’s website</a></div>\r\n</div>\r\n<!-- copy until above -->\r\n\r\n<!-- copy the following for new box -->\r\n<div class=\"news-sidebar-box\">\r\n<div class=\"news-sidebar-box-header\">\r\n<h1>News from FLIR</h1>\r\n</div>\r\n<div class=\"news-sidebar-box-body\"><a href=\"http://www.flir.com.hk/\" target=\"_blank\">Read more on FLIR’s website</a></div>\r\n</div>\r\n<!-- copy until above -->\r\n\r\n<!-- copy the following for new box -->\r\n<div class=\"news-sidebar-box\">\r\n<div class=\"news-sidebar-box-header\">\r\n<h1>News from Networkoptix</h1>\r\n</div>\r\n<div class=\"news-sidebar-box-body\"><a href=\"http://www.networkoptix.com\" target=\"_blank\">Read more on Networkoptix’s website</a></div>\r\n</div>\r\n<!-- copy until above -->", "News", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2017-02-17 23:05:24", "2017-02-17 15:05:24", "", "11", "http://reda.selfip.net/2017/02/17/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("248", "1", "2017-02-17 23:06:25", "2017-02-17 15:06:25", "<p style=\"text-align: center;\">Coming soon…</p>", "Logitic", "", "inherit", "closed", "closed", "", "143-revision-v1", "", "", "2017-02-17 23:06:25", "2017-02-17 15:06:25", "", "143", "http://reda.selfip.net/2017/02/17/143-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("249", "1", "2017-02-17 23:06:41", "2017-02-17 15:06:41", "<p style=\"text-align: center;\">Coming soon…</p>", "Retail", "", "inherit", "closed", "closed", "", "145-revision-v1", "", "", "2017-02-17 23:06:41", "2017-02-17 15:06:41", "", "145", "http://reda.selfip.net/2017/02/17/145-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("250", "1", "2017-02-17 23:06:43", "2017-02-17 15:06:43", "<p style=\"text-align: center;\">Coming soon…</p>", "Hotels", "", "inherit", "closed", "closed", "", "147-revision-v1", "", "", "2017-02-17 23:06:43", "2017-02-17 15:06:43", "", "147", "http://reda.selfip.net/2017/02/17/147-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("251", "1", "2017-02-20 12:22:08", "2017-02-20 04:22:08", "<h2>Why Work for Reda?</h2>\r\nWe believe that “People is the greatest asset”. The foster collaboration between employees sustains our business growth. We provide skill-building program to support your career development at every stage. We offer an equal employment opportunity and all qualified applicants will receive consideration for employment.\r\n\r\nWant to become a member in Reda, you can submit an application either by:\r\n<ol>\r\n 	<li>Sending an e-mail with your C.V and expected salary to <a href=\"mailto:hr@redahk.com\">hr@redahk.com</a></li>\r\n 	<li>By Post : Unit 7, 30/F, Global Gateway Tower, 63 Wing Hong Street, Cheung Sha Wan, Kowloon, Hong Kong</li>\r\n 	<li>By Fax: +852 2307 0948</li>\r\n</ol>\r\nAll personal data provided will only be used for recruitment purposes. Applicants who are not invited to an interview within six weeks should consider their applications unsuccessful.\r\n<h2>Latest Work from Reda</h2>\r\n<ol>\r\n 	<li><a href=\"http://reda.selfip.net/wp-content/uploads/2017/02/Job-Description-Technician-R0.pdf\" target=\"_blank\">Technician (Ref.: G1701)</a></li>\r\n</ol>", "Careers", "", "inherit", "closed", "closed", "", "170-revision-v1", "", "", "2017-02-20 12:22:08", "2017-02-20 04:22:08", "", "170", "http://reda.selfip.net/2017/02/20/170-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("252", "1", "2017-02-20 13:27:44", "2017-02-20 05:27:44", "Access control system has become increasingly important for organizations to keep their employees and buildings secure. Whether you need to manage access through the authorization or revocation of rights to physical or logical assets within an organization, or regulate the flow of people across a site. G-matrix with partnerships of the world’s leading access control manufacturers offers a variety of stand-alone and network access control systems to help you get the best performance.\r\n\r\nOur access control systems can incorporate a comprehensive staff database to grant or revoke access to designated areas by status, time of day, or day of the year. It control entry to your business or facility and secures your building or sensitive area with specialized credentials, advance readers, alarm systems and reporting software.\r\n\r\nThe system design takes in a number of particular factors:\r\n<ul>\r\n 	<li>The level of security required</li>\r\n 	<li>The number of total users in the system</li>\r\n 	<li>The number of total doors in the system</li>\r\n 	<li>The method of access and exit</li>\r\n 	<li>The forms of authentication</li>\r\n 	<li>The level of management control required</li>\r\n 	<li>Aesthetics and user friendliness</li>\r\n</ul>\r\n\r\n<hr />\r\n\r\n<h1><a href=\"#1\">Key Components</a></h1>\r\n<h2><a href=\"#1a\">Door Controller</a></h2>\r\n<h2><a href=\"#1b\">Card Reader</a></h2>\r\n<h2><a href=\"#1c\">Electric Door Lock</a></h2>\r\n<h2><a href=\"#1d\">Operation Software</a></h2>\r\n<h2><a href=\"#1e\">Pin Entry Keypad</a></h2>\r\n<h2><a href=\"#1f\">Barrier and Turnstiles</a></h2>\r\n<h2><a href=\"#1g\">Request to Exit &amp; Breakglass Switches</a></h2>\r\n<h2><a href=\"#1h\">Visitor Management</a></h2>\r\n<h1><a href=\"#2\">Typical Applications</a></h1>\r\n<h2><a href=\"#2a\">Entry level system</a></h2>\r\n<h2><a href=\"#2b\">Mid-level system</a></h2>\r\n<h2><a href=\"#2c\">High level system</a></h2>\r\n\r\n<hr />\r\n\r\n<h1 id=\"1\">Key Components</h1>\r\nA list of key products that combine to provide a complete access control system. Technical details are in here as well.\r\n\r\n<h2 id=\"1a\">Door Controller</h2>\r\nG-matrix provide wide range of intelligent, standalone and networked controller to manage all the access control devices function in a secure manner. For example, authorize access management, alarm signal management, time schedule automation etc. Our back end system also contains redundant power backup.\r\n\r\n\r\n<h2 id=\"1b\">Card Reader</h2>\r\nG-matrix provide card reader with various credential technologies such as Prox, iCLASS, MIFARE etc. Apart from these popular &amp; secure solutions, we also provide wide range of sophisticated technologies &amp; secure solutions to deliver the most high end &amp; secure products to our customers.\r\n\r\n<h2 id=\"1c\">Electric Door Lock</h2>\r\nG-matrix provide a high quality of electric lock and installation service, which only triggered by authorized card access and secure side door release. We also provide some specific requirement such as schedule lock / unlock automation to achieve the user’s need.\r\n\r\n<h2 id=\"1d\">Operation Software</h2>\r\nWe provide easy to use security software with experienced designs. Enable you to assign &amp; delete the card users, modify the automatic schedule and many high end system operations.\r\n\r\n<h2 id=\"1e\">Pin Entry Keypad</h2>\r\nG-matrix provide indoor &amp; outdoor readers with high end technology and favorable outlook. Capacity sensing technologies &amp; mechanical switching technologies are available for the users for wide range of flexibilities.\r\n\r\n<h2 id=\"1f\">Barrier and Turnstiles</h2>\r\nG-matrix provide high quality barrier and turnstiles system with anti-pass back &amp; flow monitoring in advance. Force entering &amp; IN/OUT activities can be monitored also.\r\n\r\n<h2 id=\"1g\">Request to Exit &amp; Breakglass Switches</h2>\r\nG-matrix provide a high quality emergency access devices. Materials are highly qualified with conformities. Which provide the users to access the doors efficiently in an emergency case.\r\n\r\n<h2 id=\"1h\">Visitor Management</h2>\r\nG-matrix provide a user friendly visitor management system with easy to understand UI and operation advantage. To print a dedicated visitor badges for visitors to present a good image to your visitors.\r\n\r\n<h1 id=\"2\">Typical Applications</h1>\r\nClick here to have a look on the entry level, mid-level &amp; high level access control system. To see which levels suite your needs.\r\n\r\n<h2 id=\"2a\">Entry level system</h2>\r\nA common entry level system include one or several intelligent access reader, or entry level panels including several doors. Usually it will be integrated with burglar alarm system for door alarm triggering.\r\n\r\n<h2 id=\"2b\">Mid-level system</h2>\r\nA common mid-level system include a central server, which connect with several commercial grade control panel to monitor up to hundreds of doors located at several sites. Normally those commercial grade system can manage up to thousands of cards without any issue.\r\n\r\n<h2 id=\"2c\">High level system</h2>\r\nA typical infrastructural grade can monitor thousands of doors and cards of multiple site. Card credential, high end technologies, system integration, high level design of system redundancy, networking will be adopted to achieve the end user’s specifications &amp; requirements.\r\n\r\n&nbsp;", "Access Control System", "", "inherit", "closed", "closed", "", "141-revision-v1", "", "", "2017-02-20 13:27:44", "2017-02-20 05:27:44", "", "141", "http://reda.selfip.net/2017/02/20/141-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("253", "1", "2017-02-20 13:27:58", "2017-02-20 05:27:58", "Analogue CCTV system has been on the market for many years and is the most utilized type of system for the residential and commercial market. Any number of fixed or pan-tilt-zoom analogue cameras can be installed and wired back to the recording and viewing equipment. Images can be viewed directly at the property or remotely viewing the images from outside when you are temporarily away from the property. Users can take immediate respond action for the system area and remote area to make the users operate their systems in a more flexible way.\r\n\r\n<hr />\r\n\r\n<h1><a href=\"#1\">Key Components</a></h1>\r\n<h2><a href=\"#1a\">Digital video recorder with storages</a></h2>\r\n<h2><a href=\"#1b\">CCTV Cameras</a></h2>\r\n<h2><a href=\"#1c\">Remote CCTV system monitoring</a></h2>\r\n<h2><a href=\"#1d\">CCTV system modules &amp; accessories</a></h2>\r\n<h2><a href=\"#1e\">CCTV system display monitors</a></h2>\r\n\r\n<hr />\r\n\r\n<h1 id=\"1\">Key Components</h1>\r\nPlease access here to get familiar about the components of the analogue CCTV system. Product brochures and specifications can be found at here as well.\r\n<h2 id=\"1a\">Digital video recorder with storages</h2>\r\nG-matrix digital video recorders can easily retrieve the recorded video. Recording of digital video recorder is durable and difficult to be volatile. Up to date video compression achieve a secure data management and high video quality.\r\n<h2 id=\"1b\">CCTV Cameras</h2>\r\nG-matrix provide both indoor and outdoor CCTV camera to suite our client’s needs. It can work efficiently in difficult environment such as sun light, rain fall, high density of dust. It also work smoothly in a 24x7 manner by automatic day/night technology, which will obtain color image in day time and monochrome image in night time.\r\n<h2 id=\"1c\">Remote CCTV system monitoring</h2>\r\nG-matrix provide a CCTV system monitoring platform for our valuable users, with an option of workstation or mobile monitoring. Which provide user friendly UI for users to access the live &amp; recorded video at real time, notify the alarm triggering by email.\r\n<h2 id=\"1d\">CCTV system modules &amp; accessories</h2>\r\nG-matrix can extend, arrange, enhance the system by applying the accessories such as sequencers, multiplexors, surge protection, UPS etc. To make it more efficient to operate, more functions and more smooth to operate under any situation such as lighting surge or power surge.\r\n<h2 id=\"1e\">CCTV system display monitors</h2>\r\nG-matrix provide variety of size &amp; specification of CCTV monitor. Whatever you need a color, monochrome, flat-screen, wall mount, rack mount or matrix etc. We will provide you the best fit, best service &amp; quality CCTV monitor for high quality viewing.", "Analogue CCTV System", "", "inherit", "closed", "closed", "", "181-revision-v1", "", "", "2017-02-20 13:27:58", "2017-02-20 05:27:58", "", "181", "http://reda.selfip.net/2017/02/20/181-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("254", "1", "2017-02-20 13:28:07", "2017-02-20 05:28:07", "IP CCTV system is quickly becoming the most flexible and future-proof option for security surveillance. Different from traditional analogue system, IP CCTV system adopt computer network technologies instead of coaxial cable to connect the entire CCTV system. With the help of the computer networking, the system can deliver significant advantages over traditional analogue system. Not just the improvement of image quality, the system benefit from networking security, redundancy, function and system scale. Therefore, IP system obtains a real benefits over the traditional topologies in the new centuries.\r\n\r\n<hr />\r\n\r\n<h1><a href=\"#1\">Key Components</a></h1>\r\n<h2><a href=\"#1a\">Video management software (VMS)</a></h2>\r\n<h2><a href=\"#1b\">Servers and Storage</a></h2>\r\n<h2><a href=\"#1c\">Network</a></h2>\r\n<h1><a href=\"#2\">Typical Applications</a></h1>\r\n<h2><a href=\"#2a\">Basic system level package</a></h2>\r\n<h2><a href=\"#2b\">Intermediate system level package</a></h2>\r\n<h2><a href=\"#2c\">High system level package</a></h2>\r\n\r\n<hr />\r\n\r\n<h1 id=\"1\">Key Components</h1>\r\nThere are four key components of IP CCTV system. Product brochures and specifications can be found at here as well.\r\n<h2 id=\"1a\">IP-based CCTV cameras</h2>\r\nAn IP camera is a stand-alone device that everything required for viewing images over the network is built into this unit. The IP camera has its own IP address and built-in software for a web server, RTP (Real Time Protocol) serve and alarm management.\r\n<h2 id=\"1b\">Video management software (VMS)</h2>\r\nVideo management software (VMS) is a software runs on one or more standalone servers. It is feature rich and manages video for live monitoring and recording and provides easy integration with other systems such as access control or building management system. Solution typically range from single PCs to advanced client / server based software that manage functionality for thousands of cameras.\r\n<h2 id=\"1c\">Servers and Storage</h2>\r\nThe ability to use open storage solutions is one of the main benefits with IP CCTV system. The most common is to have the storage attached to the server running the application as in a Network Video Recorder (NVR). The other is a storage solution where the storage is separate from the server running the application, which called Network Attached Storage (NAS).\r\n<h2 id=\"1d\">Network</h2>\r\nThe IP CCTV System intersects with the network infrastructure by connecting endpoints, IP cameras, workstations, servers and storage physically to the network. To properly design and implement the network, it is important to indicate the IP addressing and transport protocols along with bandwidth, scalability and network security.\r\n\r\nProducts details and specification\r\nPlease click here to have a look on different kinds of our products. To know the functions and characteristics of the systems and the products. Product and specifications are included as well.\r\n<h1 id=\"2\">Typical Applications</h1>\r\nClick here to access the different scales of CCTV system to find out which levels of the scales suite your needs.\r\n<h2 id=\"2a\">Basic system level package</h2>\r\nNormally, it provide a 4 to 8 channel recorders which support from 1 to 8 cameras for local recording. It contains the capacity of the function of motion detection, video alarm triggering, microphone.\r\n<h2 id=\"2b\">Intermediate system level package</h2>\r\nIt provide 16 to more than 16 channel video recorders which support more than 16 cameras with multiple site, which are monitored by a workstation app for live viewing, record video retrieving, video back up, remote monitoring through workstation or mobile phone, integrated with access control system to manage systems with one app.\r\n<h2 id=\"2c\">High system level package</h2>\r\nA very complex CCTV system which normally connected with industrial grade video recorders, with power and server redundancy. Fiber &amp; computer network may included according to the scale of the entire system. With rack mounted back end equipment and provide a high system stability and reliability.", "IP CCTV System", "", "inherit", "closed", "closed", "", "183-revision-v1", "", "", "2017-02-20 13:28:07", "2017-02-20 05:28:07", "", "183", "http://reda.selfip.net/2017/02/20/183-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("255", "1", "2017-02-20 13:28:20", "2017-02-20 05:28:20", "G-matrix alarm system provide a remote &amp; local protection in an efficient way. In situation of personal break in, force entry, and attacks, we provide a tailor make and professional design to provide a safety environment for our clients.\r\n\r\n<hr />\r\n\r\n<h1><a href=\"#1\">Key Components</a></h1>\r\n<h2><a href=\"#1a\">Sensors</a></h2>\r\n<h2><a href=\"#1b\">Magnetic door contact</a></h2>\r\n<h2><a href=\"#1c\">Tamper switch</a></h2>\r\n<h2><a href=\"#1d\">Emergency panic button</a></h2>\r\n<h2><a href=\"#1e\">Motion detector</a></h2>\r\n<h2><a href=\"#1f\">Alarm Control Panel</a></h2>\r\n<h2><a href=\"#1g\">Alarm Control Keypad</a></h2>\r\n<h2><a href=\"#1h\">Alarm Sounders</a></h2>\r\n<h2><a href=\"#1i\">Alarm Communications</a></h2>\r\n<h1><a href=\"#2\">Typical Applications</a></h1>\r\n<h2><a href=\"#2a\">Entry Level Burglar Alarm System</a></h2>\r\n<h2><a href=\"#2b\">Middle Level Burglar Alarm System</a></h2>\r\n<h2><a href=\"#2c\">High Level Burglar Alarm System</a></h2>\r\n\r\n<hr />\r\n\r\n<h1 id=\"1\">Key Components</h1>\r\nG-matrix provide various kind of products to suit different user’s needs.\r\n\r\n<h2 id=\"1a\">Sensors</h2>\r\nWe provide different kinds of security sensors to suite different kinds of detection. For example: Magnetic door contact, tamper switch, emergency panic button, motion detector, Acoustic glass break detectors, vibration sensor, seismic detector etc.\r\n\r\n<h2 id=\"1b\">Magnetic door contact</h2>\r\nMagnetic door contact is used to sense the opening / closing of the doors / windows. Different kinds of doors / windows can be applied with the use of different kinds of sensors.\r\n\r\n<h2 id=\"1c\">Tamper switch</h2>\r\nTamper switch protect the sensors &amp; panel enclosure to prevent the devices from tampering. Normally, alarm will be triggered once the sensors are dismantled or the system enclosures are force opened.\r\n\r\n<h2 id=\"1d\">Emergency panic button</h2>\r\nEmergency panic button plays an important roles in the alarm system design. Normally, this sensor has a relatively high priority for the alarm signal operators. Once it is triggered, normally the alarm manage operators will call the police directly or dispatch a person to have an on-site checking.\r\n\r\n<h2 id=\"1e\">Motion detector</h2>\r\nMotion detector provide a traditional but effective detection in alarm system. It provide a large area detection for each device. Once a person is detected with the security zone armed, the alarm system will be triggered. Nowadays, various technologies are applied for this. For example, pet immunity, low false alarm rate in outdoor environment, anti-masking.\r\n\r\n<h2 id=\"1f\">Alarm Control Panel</h2>\r\nG-matrix provide automatic management of the alarm zones. When the system is disarmed, low and middle priority security zones are not triggered. Except the high priority zones (panic button for example). It will be triggered even the system is disarmed. When the system is armed, any security zones can trigger the alarm system and will turn on the alarm sounders and transmit the alarm message to the 24 hours central station.\r\n\r\n<h2 id=\"1g\">Alarm Control Keypad</h2>\r\nKeypad takes an important role to facilitate the user’s daily operation. Make it simpler and more efficient.\r\n\r\nFor example, users know whether the doors are open / closed without visiting the doors one by one. Instead, users can access all the door / windows status with the use of alarm keypad.\r\n\r\n<h2 id=\"1h\">Alarm Sounders</h2>\r\nG-matrix provide different kinds of alarm sounders for the system to work effectively. Outdoor / indoor / chime sounders are available with wired / wireless technologies.\r\n\r\n<h2 id=\"1i\">Alarm Communications</h2>\r\nWe provide wide range of alarm communication technologies to suite the client’s needs. For example, PSTN communication, TCP/IP communication, lease line communication, GSM communication etc.\r\n\r\nPSTN also known as telephone line for everyone, its high availability make it popular even in nowadays. Regular automatic detection is available to regular check the on / off line status.\r\n\r\nTCP/IP revolute the security world and greatly improve the speed &amp; security in communication. Alarm messages are encrypted and transmitted to the alarm management center for further interpreting. It has a remarkable transmission speed so that the signal is almost received immediately.\r\n\r\nLease line communication provide a specific communication line to the users to act as a transmission media of the alarm system. It is highly reliable and stable. Therefore, it is necessary for most of the high risk environment for the insurance contracts.\r\n\r\nGSM communication provide a simple and fast solution for the users to protect their premises where the wireless network is covered.\r\n\r\n<h1 id=\"2\">Typical Applications</h1>\r\nWe classified different scales of the alarm system into different scale levels to efficiently design the solution which is the best fit to our client’s requirements.\r\n\r\nDifferent scale level and complexity of the burglar alarm system cover different kinds of needs of the client’s real situation.\r\n\r\n<h2 id=\"2a\">Entry Level Burglar Alarm System</h2>\r\nEntry level alarm system target to residential &amp; small commercial scale needs. Normally it is a network alarm system with internal / external sounders and connect to every kinds of security zones. When the alarm is triggered, sounder is triggered and the corresponding alarm signal is sent to the central alarm monitoring center.\r\n\r\n<h2 id=\"2b\">Middle Level Burglar Alarm System</h2>\r\nThis level of system normally integrate the door access control system to monitor the door status at the same time. When the alarm is triggered, the alarm message is transmitted to the central station in real time. The alarm operator will design whether police will be dispatched according to the alarm priority and real situation.\r\n\r\n<h2 id=\"2c\">High Level Burglar Alarm System</h2>\r\nThis high level system provide a redundancy topologies for the client sites. If the duty system tail accidentally, the standby system will stand out and replace the duty system. Therefore, reliable functioning can be achieved. For example, GSM will be set up as redundant communication path and the PSTN networks belong to the duty communication technologies. Also, we will also provide an alarm signal monitoring station for security guard to monitor the signals on site. So that they can provide the optional alarm response once the alarm is triggered.", "Burglar Alarm System", "", "inherit", "closed", "closed", "", "139-revision-v1", "", "", "2017-02-20 13:28:20", "2017-02-20 05:28:20", "", "139", "http://reda.selfip.net/2017/02/20/139-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("256", "1", "2017-02-20 13:28:38", "2017-02-20 05:28:38", "Public address system (PA system in short) provide background music, pre-recorded messages broadcast and microphone broadcast. Service area including public areas, office lobby, lift lobbies, lift car, toilets, car park, perimeter, airport etc.\r\n\r\n<hr />\r\n\r\n<h1><a href=\"#1\">Key Components</a></h1>\r\n<h2><a href=\"#1a\">Speaker</a></h2>\r\n<h2><a href=\"#1b\">Digital Announcer</a></h2>\r\n<h2><a href=\"#1c\">Voice Player</a></h2>\r\n<h2><a href=\"#1d\">Call Station</a></h2>\r\n<h2><a href=\"#1e\">Power Amplifiers</a></h2>\r\n<h2><a href=\"#1f\">System Network Controller</a></h2>\r\n<h2><a href=\"#1g\">PA System Management Platform</a></h2>\r\n<h1><a href=\"#2\">Typical Applications</a></h1>\r\n<h2><a href=\"#2a\">Small Public Address System</a></h2>\r\n<h2><a href=\"#2b\">Large Public Address System</a></h2>\r\n\r\n<hr />\r\n\r\n<h1 id=\"1\">Key Components</h1>\r\nG-matrix provide the highest quality product brand and installation service to provide a high quality system delivery.\r\n<h2 id=\"1a\">Speaker</h2>\r\nThe most important role of the system is the PA speaker. We provide indoor/outdoor PA speaker for actual condition of the installation. We also provide speaker with fire proof conformity to fit the project specifications.\r\n<h2 id=\"1b\">Digital Announcer</h2>\r\nThis device is to transmit the digital announcement message: emergency announcement or all-call-messages to the amplifiers. The voice message is uploaded to the central workstation then download to digital announcer. Normally, announcing message is triggered by sensor and other third party system.\r\n<h2 id=\"1c\">Voice Player</h2>\r\nIt can process the predefined sounds and pass to the amplifiers. With the help of the amplifier zones. The sound signal can be managed to be relayed to different group of speakers.\r\n<h2 id=\"1d\">Call Station</h2>\r\nWe provide high quality, robust &amp; stable call station to our clients. To receive a high quality sound, sensitivity, limiter and parametric equalizer can be controlled to achieve this.\r\n<h2 id=\"1e\">Power Amplifiers</h2>\r\nIt provide power for the PA speakers to function. Different loading of amplifiers are available according to the system scale. Also, amplifiers groups PA speakers into several groups called zone. PA zone can monitor the groups of speakers in a manageable way. We provide rack mount/non rack mount device according to our client’s requirement.\r\n<h2 id=\"1f\">System Network Controller</h2>\r\nComputer network make the traditional system easy to implement and operate. It can adopt the networking system to expend the system coverage and provide a relatively high secure voice transmission.\r\n<h2 id=\"1g\">PA System Management Platform</h2>\r\nDepend on the system scale level, it can be a server or workstation computer. It response entire system configuration, system diagnosis, database management and system monitoring.\r\n<h1 id=\"2\">Typical Applications</h1>\r\nWe classified different scales of the public address system into different scale levels to efficiently design the solution which is the best fit to our client’s requirements.\r\n<h2 id=\"2a\">Small Public Address System</h2>\r\nSmall PA system target to residential &amp; small commercial scale needs. Normally it includes microphones, amplifiers and indoor / outdoor speakers. Sound players often supplied for the client to load the pre-recorded sounds and broadcast to the system.\r\n<h2 id=\"2b\">Large Public Address System</h2>\r\nLarge PA system usually adopted in infrastructure facilities. For example, schools, hospitals, buildings, airports etc. Usually it integrate with the alert system for fire announcement. So that the emergency announcement will be triggered once the fire alarm system receive the sensor signals.", "Public Address System", "", "inherit", "closed", "closed", "", "179-revision-v1", "", "", "2017-02-20 13:28:38", "2017-02-20 05:28:38", "", "179", "http://reda.selfip.net/2017/02/20/179-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("258", "1", "2017-02-20 13:48:51", "2017-02-20 05:48:51", "<img class=\"solution-image aligncenter wp-image-257 size-full\" src=\"http://reda.selfip.net/wp-content/uploads/2016/10/Screen-Shot-2017-02-20-at-13.39.09.png\" width=\"2880\" height=\"1800\" />\r\n\r\nAccess control system has become increasingly important for organizations to keep their employees and buildings secure. Whether you need to manage access through the authorization or revocation of rights to physical or logical assets within an organization, or regulate the flow of people across a site. G-matrix with partnerships of the world’s leading access control manufacturers offers a variety of stand-alone and network access control systems to help you get the best performance.\r\n\r\nOur access control systems can incorporate a comprehensive staff database to grant or revoke access to designated areas by status, time of day, or day of the year. It control entry to your business or facility and secures your building or sensitive area with specialized credentials, advance readers, alarm systems and reporting software.\r\n\r\nThe system design takes in a number of particular factors:\r\n<ul>\r\n 	<li>The level of security required</li>\r\n 	<li>The number of total users in the system</li>\r\n 	<li>The number of total doors in the system</li>\r\n 	<li>The method of access and exit</li>\r\n 	<li>The forms of authentication</li>\r\n 	<li>The level of management control required</li>\r\n 	<li>Aesthetics and user friendliness</li>\r\n</ul>\r\n\r\n<hr />\r\n\r\n<h1><a href=\"#1\">Key Components</a></h1>\r\n<h2><a href=\"#1a\">Door Controller</a></h2>\r\n<h2><a href=\"#1b\">Card Reader</a></h2>\r\n<h2><a href=\"#1c\">Electric Door Lock</a></h2>\r\n<h2><a href=\"#1d\">Operation Software</a></h2>\r\n<h2><a href=\"#1e\">Pin Entry Keypad</a></h2>\r\n<h2><a href=\"#1f\">Barrier and Turnstiles</a></h2>\r\n<h2><a href=\"#1g\">Request to Exit &amp; Breakglass Switches</a></h2>\r\n<h2><a href=\"#1h\">Visitor Management</a></h2>\r\n<h1><a href=\"#2\">Typical Applications</a></h1>\r\n<h2><a href=\"#2a\">Entry level system</a></h2>\r\n<h2><a href=\"#2b\">Mid-level system</a></h2>\r\n<h2><a href=\"#2c\">High level system</a></h2>\r\n\r\n<hr />\r\n\r\n<h1 id=\"1\">Key Components</h1>\r\nA list of key products that combine to provide a complete access control system. Technical details are in here as well.\r\n<h2 id=\"1a\">Door Controller</h2>\r\nG-matrix provide wide range of intelligent, standalone and networked controller to manage all the access control devices function in a secure manner. For example, authorize access management, alarm signal management, time schedule automation etc. Our back end system also contains redundant power backup.\r\n<h2 id=\"1b\">Card Reader</h2>\r\nG-matrix provide card reader with various credential technologies such as Prox, iCLASS, MIFARE etc. Apart from these popular &amp; secure solutions, we also provide wide range of sophisticated technologies &amp; secure solutions to deliver the most high end &amp; secure products to our customers.\r\n<h2 id=\"1c\">Electric Door Lock</h2>\r\nG-matrix provide a high quality of electric lock and installation service, which only triggered by authorized card access and secure side door release. We also provide some specific requirement such as schedule lock / unlock automation to achieve the user’s need.\r\n<h2 id=\"1d\">Operation Software</h2>\r\nWe provide easy to use security software with experienced designs. Enable you to assign &amp; delete the card users, modify the automatic schedule and many high end system operations.\r\n<h2 id=\"1e\">Pin Entry Keypad</h2>\r\nG-matrix provide indoor &amp; outdoor readers with high end technology and favorable outlook. Capacity sensing technologies &amp; mechanical switching technologies are available for the users for wide range of flexibilities.\r\n<h2 id=\"1f\">Barrier and Turnstiles</h2>\r\nG-matrix provide high quality barrier and turnstiles system with anti-pass back &amp; flow monitoring in advance. Force entering &amp; IN/OUT activities can be monitored also.\r\n<h2 id=\"1g\">Request to Exit &amp; Breakglass Switches</h2>\r\nG-matrix provide a high quality emergency access devices. Materials are highly qualified with conformities. Which provide the users to access the doors efficiently in an emergency case.\r\n<h2 id=\"1h\">Visitor Management</h2>\r\nG-matrix provide a user friendly visitor management system with easy to understand UI and operation advantage. To print a dedicated visitor badges for visitors to present a good image to your visitors.\r\n<h1 id=\"2\">Typical Applications</h1>\r\nClick here to have a look on the entry level, mid-level &amp; high level access control system. To see which levels suite your needs.\r\n<h2 id=\"2a\">Entry level system</h2>\r\nA common entry level system include one or several intelligent access reader, or entry level panels including several doors. Usually it will be integrated with burglar alarm system for door alarm triggering.\r\n<h2 id=\"2b\">Mid-level system</h2>\r\nA common mid-level system include a central server, which connect with several commercial grade control panel to monitor up to hundreds of doors located at several sites. Normally those commercial grade system can manage up to thousands of cards without any issue.\r\n<h2 id=\"2c\">High level system</h2>\r\nA typical infrastructural grade can monitor thousands of doors and cards of multiple site. Card credential, high end technologies, system integration, high level design of system redundancy, networking will be adopted to achieve the end user’s specifications &amp; requirements.\r\n\r\n&nbsp;", "Access Control System", "", "inherit", "closed", "closed", "", "141-revision-v1", "", "", "2017-02-20 13:48:51", "2017-02-20 05:48:51", "", "141", "http://reda.selfip.net/2017/02/20/141-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("262", "1", "2017-02-22 03:14:34", "2017-02-21 19:14:34", "", "access_control", "", "inherit", "open", "closed", "", "access_control", "", "", "2017-02-22 03:15:26", "2017-02-21 19:15:26", "", "141", "http://reda.selfip.net/wp-content/uploads/2017/02/access_control.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("263", "1", "2017-02-22 03:14:38", "2017-02-21 19:14:38", "", "burglar_alarm_system", "", "inherit", "open", "closed", "", "burglar_alarm_system", "", "", "2017-02-22 03:16:42", "2017-02-21 19:16:42", "", "139", "http://reda.selfip.net/wp-content/uploads/2017/02/burglar_alarm_system.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("264", "1", "2017-02-22 03:14:42", "2017-02-21 19:14:42", "", "cctv", "", "inherit", "open", "closed", "", "cctv", "", "", "2017-02-22 03:17:08", "2017-02-21 19:17:08", "", "137", "http://reda.selfip.net/wp-content/uploads/2017/02/cctv.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("266", "1", "2017-02-22 03:15:35", "2017-02-21 19:15:35", "&nbsp;\r\n\r\n<img class=\"solution-image aligncenter wp-image-262 size-full\" src=\"http://reda.selfip.net/wp-content/uploads/2017/02/access_control.jpg\" width=\"675\" height=\"442\" />\r\n\r\nAccess control system has become increasingly important for organizations to keep their employees and buildings secure. Whether you need to manage access through the authorization or revocation of rights to physical or logical assets within an organization, or regulate the flow of people across a site. G-matrix with partnerships of the world’s leading access control manufacturers offers a variety of stand-alone and network access control systems to help you get the best performance.\r\n\r\nOur access control systems can incorporate a comprehensive staff database to grant or revoke access to designated areas by status, time of day, or day of the year. It control entry to your business or facility and secures your building or sensitive area with specialized credentials, advance readers, alarm systems and reporting software.\r\n\r\nThe system design takes in a number of particular factors:\r\n<ul>\r\n 	<li>The level of security required</li>\r\n 	<li>The number of total users in the system</li>\r\n 	<li>The number of total doors in the system</li>\r\n 	<li>The method of access and exit</li>\r\n 	<li>The forms of authentication</li>\r\n 	<li>The level of management control required</li>\r\n 	<li>Aesthetics and user friendliness</li>\r\n</ul>\r\n\r\n<hr />\r\n\r\n<h1><a href=\"#1\">Key Components</a></h1>\r\n<h2><a href=\"#1a\">Door Controller</a></h2>\r\n<h2><a href=\"#1b\">Card Reader</a></h2>\r\n<h2><a href=\"#1c\">Electric Door Lock</a></h2>\r\n<h2><a href=\"#1d\">Operation Software</a></h2>\r\n<h2><a href=\"#1e\">Pin Entry Keypad</a></h2>\r\n<h2><a href=\"#1f\">Barrier and Turnstiles</a></h2>\r\n<h2><a href=\"#1g\">Request to Exit &amp; Breakglass Switches</a></h2>\r\n<h2><a href=\"#1h\">Visitor Management</a></h2>\r\n<h1><a href=\"#2\">Typical Applications</a></h1>\r\n<h2><a href=\"#2a\">Entry level system</a></h2>\r\n<h2><a href=\"#2b\">Mid-level system</a></h2>\r\n<h2><a href=\"#2c\">High level system</a></h2>\r\n\r\n<hr />\r\n\r\n<h1 id=\"1\">Key Components</h1>\r\nA list of key products that combine to provide a complete access control system. Technical details are in here as well.\r\n<h2 id=\"1a\">Door Controller</h2>\r\nG-matrix provide wide range of intelligent, standalone and networked controller to manage all the access control devices function in a secure manner. For example, authorize access management, alarm signal management, time schedule automation etc. Our back end system also contains redundant power backup.\r\n<h2 id=\"1b\">Card Reader</h2>\r\nG-matrix provide card reader with various credential technologies such as Prox, iCLASS, MIFARE etc. Apart from these popular &amp; secure solutions, we also provide wide range of sophisticated technologies &amp; secure solutions to deliver the most high end &amp; secure products to our customers.\r\n<h2 id=\"1c\">Electric Door Lock</h2>\r\nG-matrix provide a high quality of electric lock and installation service, which only triggered by authorized card access and secure side door release. We also provide some specific requirement such as schedule lock / unlock automation to achieve the user’s need.\r\n<h2 id=\"1d\">Operation Software</h2>\r\nWe provide easy to use security software with experienced designs. Enable you to assign &amp; delete the card users, modify the automatic schedule and many high end system operations.\r\n<h2 id=\"1e\">Pin Entry Keypad</h2>\r\nG-matrix provide indoor &amp; outdoor readers with high end technology and favorable outlook. Capacity sensing technologies &amp; mechanical switching technologies are available for the users for wide range of flexibilities.\r\n<h2 id=\"1f\">Barrier and Turnstiles</h2>\r\nG-matrix provide high quality barrier and turnstiles system with anti-pass back &amp; flow monitoring in advance. Force entering &amp; IN/OUT activities can be monitored also.\r\n<h2 id=\"1g\">Request to Exit &amp; Breakglass Switches</h2>\r\nG-matrix provide a high quality emergency access devices. Materials are highly qualified with conformities. Which provide the users to access the doors efficiently in an emergency case.\r\n<h2 id=\"1h\">Visitor Management</h2>\r\nG-matrix provide a user friendly visitor management system with easy to understand UI and operation advantage. To print a dedicated visitor badges for visitors to present a good image to your visitors.\r\n<h1 id=\"2\">Typical Applications</h1>\r\nClick here to have a look on the entry level, mid-level &amp; high level access control system. To see which levels suite your needs.\r\n<h2 id=\"2a\">Entry level system</h2>\r\nA common entry level system include one or several intelligent access reader, or entry level panels including several doors. Usually it will be integrated with burglar alarm system for door alarm triggering.\r\n<h2 id=\"2b\">Mid-level system</h2>\r\nA common mid-level system include a central server, which connect with several commercial grade control panel to monitor up to hundreds of doors located at several sites. Normally those commercial grade system can manage up to thousands of cards without any issue.\r\n<h2 id=\"2c\">High level system</h2>\r\nA typical infrastructural grade can monitor thousands of doors and cards of multiple site. Card credential, high end technologies, system integration, high level design of system redundancy, networking will be adopted to achieve the end user’s specifications &amp; requirements.\r\n\r\n&nbsp;", "Access Control System", "", "inherit", "closed", "closed", "", "141-revision-v1", "", "", "2017-02-22 03:15:35", "2017-02-21 19:15:35", "", "141", "http://reda.selfip.net/2017/02/22/141-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("267", "1", "2017-02-22 03:16:51", "2017-02-21 19:16:51", "<img class=\"solution-image aligncenter wp-image-263 size-full\" src=\"http://reda.selfip.net/wp-content/uploads/2017/02/burglar_alarm_system.jpg\" width=\"675\" height=\"450\" />\r\n\r\nG-matrix alarm system provide a remote &amp; local protection in an efficient way. In situation of personal break in, force entry, and attacks, we provide a tailor make and professional design to provide a safety environment for our clients.\r\n\r\n<hr />\r\n\r\n<h1><a href=\"#1\">Key Components</a></h1>\r\n<h2><a href=\"#1a\">Sensors</a></h2>\r\n<h2><a href=\"#1b\">Magnetic door contact</a></h2>\r\n<h2><a href=\"#1c\">Tamper switch</a></h2>\r\n<h2><a href=\"#1d\">Emergency panic button</a></h2>\r\n<h2><a href=\"#1e\">Motion detector</a></h2>\r\n<h2><a href=\"#1f\">Alarm Control Panel</a></h2>\r\n<h2><a href=\"#1g\">Alarm Control Keypad</a></h2>\r\n<h2><a href=\"#1h\">Alarm Sounders</a></h2>\r\n<h2><a href=\"#1i\">Alarm Communications</a></h2>\r\n<h1><a href=\"#2\">Typical Applications</a></h1>\r\n<h2><a href=\"#2a\">Entry Level Burglar Alarm System</a></h2>\r\n<h2><a href=\"#2b\">Middle Level Burglar Alarm System</a></h2>\r\n<h2><a href=\"#2c\">High Level Burglar Alarm System</a></h2>\r\n\r\n<hr />\r\n\r\n<h1 id=\"1\">Key Components</h1>\r\nG-matrix provide various kind of products to suit different user’s needs.\r\n<h2 id=\"1a\">Sensors</h2>\r\nWe provide different kinds of security sensors to suite different kinds of detection. For example: Magnetic door contact, tamper switch, emergency panic button, motion detector, Acoustic glass break detectors, vibration sensor, seismic detector etc.\r\n<h2 id=\"1b\">Magnetic door contact</h2>\r\nMagnetic door contact is used to sense the opening / closing of the doors / windows. Different kinds of doors / windows can be applied with the use of different kinds of sensors.\r\n<h2 id=\"1c\">Tamper switch</h2>\r\nTamper switch protect the sensors &amp; panel enclosure to prevent the devices from tampering. Normally, alarm will be triggered once the sensors are dismantled or the system enclosures are force opened.\r\n<h2 id=\"1d\">Emergency panic button</h2>\r\nEmergency panic button plays an important roles in the alarm system design. Normally, this sensor has a relatively high priority for the alarm signal operators. Once it is triggered, normally the alarm manage operators will call the police directly or dispatch a person to have an on-site checking.\r\n<h2 id=\"1e\">Motion detector</h2>\r\nMotion detector provide a traditional but effective detection in alarm system. It provide a large area detection for each device. Once a person is detected with the security zone armed, the alarm system will be triggered. Nowadays, various technologies are applied for this. For example, pet immunity, low false alarm rate in outdoor environment, anti-masking.\r\n<h2 id=\"1f\">Alarm Control Panel</h2>\r\nG-matrix provide automatic management of the alarm zones. When the system is disarmed, low and middle priority security zones are not triggered. Except the high priority zones (panic button for example). It will be triggered even the system is disarmed. When the system is armed, any security zones can trigger the alarm system and will turn on the alarm sounders and transmit the alarm message to the 24 hours central station.\r\n<h2 id=\"1g\">Alarm Control Keypad</h2>\r\nKeypad takes an important role to facilitate the user’s daily operation. Make it simpler and more efficient.\r\n\r\nFor example, users know whether the doors are open / closed without visiting the doors one by one. Instead, users can access all the door / windows status with the use of alarm keypad.\r\n<h2 id=\"1h\">Alarm Sounders</h2>\r\nG-matrix provide different kinds of alarm sounders for the system to work effectively. Outdoor / indoor / chime sounders are available with wired / wireless technologies.\r\n<h2 id=\"1i\">Alarm Communications</h2>\r\nWe provide wide range of alarm communication technologies to suite the client’s needs. For example, PSTN communication, TCP/IP communication, lease line communication, GSM communication etc.\r\n\r\nPSTN also known as telephone line for everyone, its high availability make it popular even in nowadays. Regular automatic detection is available to regular check the on / off line status.\r\n\r\nTCP/IP revolute the security world and greatly improve the speed &amp; security in communication. Alarm messages are encrypted and transmitted to the alarm management center for further interpreting. It has a remarkable transmission speed so that the signal is almost received immediately.\r\n\r\nLease line communication provide a specific communication line to the users to act as a transmission media of the alarm system. It is highly reliable and stable. Therefore, it is necessary for most of the high risk environment for the insurance contracts.\r\n\r\nGSM communication provide a simple and fast solution for the users to protect their premises where the wireless network is covered.\r\n<h1 id=\"2\">Typical Applications</h1>\r\nWe classified different scales of the alarm system into different scale levels to efficiently design the solution which is the best fit to our client’s requirements.\r\n\r\nDifferent scale level and complexity of the burglar alarm system cover different kinds of needs of the client’s real situation.\r\n<h2 id=\"2a\">Entry Level Burglar Alarm System</h2>\r\nEntry level alarm system target to residential &amp; small commercial scale needs. Normally it is a network alarm system with internal / external sounders and connect to every kinds of security zones. When the alarm is triggered, sounder is triggered and the corresponding alarm signal is sent to the central alarm monitoring center.\r\n<h2 id=\"2b\">Middle Level Burglar Alarm System</h2>\r\nThis level of system normally integrate the door access control system to monitor the door status at the same time. When the alarm is triggered, the alarm message is transmitted to the central station in real time. The alarm operator will design whether police will be dispatched according to the alarm priority and real situation.\r\n<h2 id=\"2c\">High Level Burglar Alarm System</h2>\r\nThis high level system provide a redundancy topologies for the client sites. If the duty system tail accidentally, the standby system will stand out and replace the duty system. Therefore, reliable functioning can be achieved. For example, GSM will be set up as redundant communication path and the PSTN networks belong to the duty communication technologies. Also, we will also provide an alarm signal monitoring station for security guard to monitor the signals on site. So that they can provide the optional alarm response once the alarm is triggered.", "Burglar Alarm System", "", "inherit", "closed", "closed", "", "139-revision-v1", "", "", "2017-02-22 03:16:51", "2017-02-21 19:16:51", "", "139", "http://reda.selfip.net/2017/02/22/139-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("268", "1", "2017-02-22 03:17:15", "2017-02-21 19:17:15", "<img class=\"solution-image aligncenter wp-image-264 size-full\" src=\"http://reda.selfip.net/wp-content/uploads/2017/02/cctv.jpg\" width=\"675\" height=\"439\" />\r\n\r\nClosed-circuit Television (CCTV) System is primarily designed for surveillance purposes which is used in a wide variety of applications which include security, disaster prevention, manpower saving, industrial measurement and military fields. In security application, the CCTV system help crime prevention by let criminals know the risks of crime and function as a deterrent of crime or keep constant watch over potential criminal acts. It also help identify criminals after crimes are perpetrated by reviewing recorded images resulting from the installed CCTV system.\r\n\r\nFor the past ten years, CCTV system with differ in type, quality and technology has moved on significantly. There are two main types of systems:\r\n<ul>\r\n 	<li><a href=\"http://reda.selfip.net/analogue-cctv-system/\">Analogue CCTV System</a></li>\r\n 	<li><a href=\"http://reda.selfip.net/ip-cctv-system/\">IP CCTV System</a></li>\r\n</ul>", "CCTV System", "", "inherit", "closed", "closed", "", "137-revision-v1", "", "", "2017-02-22 03:17:15", "2017-02-21 19:17:15", "", "137", "http://reda.selfip.net/2017/02/22/137-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("269", "1", "2017-02-22 03:17:38", "2017-02-21 19:17:38", "<img class=\"solution-image aligncenter wp-image-265 size-full\" src=\"http://reda.selfip.net/wp-content/uploads/2017/02/public_address.jpg\" width=\"675\" height=\"536\" />\r\n\r\nPublic address system (PA system in short) provide background music, pre-recorded messages broadcast and microphone broadcast. Service area including public areas, office lobby, lift lobbies, lift car, toilets, car park, perimeter, airport etc.\r\n\r\n<hr />\r\n\r\n<h1><a href=\"#1\">Key Components</a></h1>\r\n<h2><a href=\"#1a\">Speaker</a></h2>\r\n<h2><a href=\"#1b\">Digital Announcer</a></h2>\r\n<h2><a href=\"#1c\">Voice Player</a></h2>\r\n<h2><a href=\"#1d\">Call Station</a></h2>\r\n<h2><a href=\"#1e\">Power Amplifiers</a></h2>\r\n<h2><a href=\"#1f\">System Network Controller</a></h2>\r\n<h2><a href=\"#1g\">PA System Management Platform</a></h2>\r\n<h1><a href=\"#2\">Typical Applications</a></h1>\r\n<h2><a href=\"#2a\">Small Public Address System</a></h2>\r\n<h2><a href=\"#2b\">Large Public Address System</a></h2>\r\n\r\n<hr />\r\n\r\n<h1 id=\"1\">Key Components</h1>\r\nG-matrix provide the highest quality product brand and installation service to provide a high quality system delivery.\r\n<h2 id=\"1a\">Speaker</h2>\r\nThe most important role of the system is the PA speaker. We provide indoor/outdoor PA speaker for actual condition of the installation. We also provide speaker with fire proof conformity to fit the project specifications.\r\n<h2 id=\"1b\">Digital Announcer</h2>\r\nThis device is to transmit the digital announcement message: emergency announcement or all-call-messages to the amplifiers. The voice message is uploaded to the central workstation then download to digital announcer. Normally, announcing message is triggered by sensor and other third party system.\r\n<h2 id=\"1c\">Voice Player</h2>\r\nIt can process the predefined sounds and pass to the amplifiers. With the help of the amplifier zones. The sound signal can be managed to be relayed to different group of speakers.\r\n<h2 id=\"1d\">Call Station</h2>\r\nWe provide high quality, robust &amp; stable call station to our clients. To receive a high quality sound, sensitivity, limiter and parametric equalizer can be controlled to achieve this.\r\n<h2 id=\"1e\">Power Amplifiers</h2>\r\nIt provide power for the PA speakers to function. Different loading of amplifiers are available according to the system scale. Also, amplifiers groups PA speakers into several groups called zone. PA zone can monitor the groups of speakers in a manageable way. We provide rack mount/non rack mount device according to our client’s requirement.\r\n<h2 id=\"1f\">System Network Controller</h2>\r\nComputer network make the traditional system easy to implement and operate. It can adopt the networking system to expend the system coverage and provide a relatively high secure voice transmission.\r\n<h2 id=\"1g\">PA System Management Platform</h2>\r\nDepend on the system scale level, it can be a server or workstation computer. It response entire system configuration, system diagnosis, database management and system monitoring.\r\n<h1 id=\"2\">Typical Applications</h1>\r\nWe classified different scales of the public address system into different scale levels to efficiently design the solution which is the best fit to our client’s requirements.\r\n<h2 id=\"2a\">Small Public Address System</h2>\r\nSmall PA system target to residential &amp; small commercial scale needs. Normally it includes microphones, amplifiers and indoor / outdoor speakers. Sound players often supplied for the client to load the pre-recorded sounds and broadcast to the system.\r\n<h2 id=\"2b\">Large Public Address System</h2>\r\nLarge PA system usually adopted in infrastructure facilities. For example, schools, hospitals, buildings, airports etc. Usually it integrate with the alert system for fire announcement. So that the emergency announcement will be triggered once the fire alarm system receive the sensor signals.", "Public Address System", "", "inherit", "closed", "closed", "", "179-revision-v1", "", "", "2017-02-22 03:17:38", "2017-02-21 19:17:38", "", "179", "http://reda.selfip.net/2017/02/22/179-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("270", "1", "2017-02-22 03:20:44", "2017-02-21 19:20:44", "", "public_access", "", "inherit", "open", "closed", "", "public_access", "", "", "2017-02-22 03:20:44", "2017-02-21 19:20:44", "", "179", "http://reda.selfip.net/wp-content/uploads/2017/01/public_access.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("271", "1", "2017-02-22 03:20:57", "2017-02-21 19:20:57", "&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-270 size-full\" src=\"http://reda.selfip.net/wp-content/uploads/2017/01/public_access.jpg\" width=\"675\" height=\"506\" />\r\n\r\nPublic address system (PA system in short) provide background music, pre-recorded messages broadcast and microphone broadcast. Service area including public areas, office lobby, lift lobbies, lift car, toilets, car park, perimeter, airport etc.\r\n\r\n<hr />\r\n\r\n<h1><a href=\"#1\">Key Components</a></h1>\r\n<h2><a href=\"#1a\">Speaker</a></h2>\r\n<h2><a href=\"#1b\">Digital Announcer</a></h2>\r\n<h2><a href=\"#1c\">Voice Player</a></h2>\r\n<h2><a href=\"#1d\">Call Station</a></h2>\r\n<h2><a href=\"#1e\">Power Amplifiers</a></h2>\r\n<h2><a href=\"#1f\">System Network Controller</a></h2>\r\n<h2><a href=\"#1g\">PA System Management Platform</a></h2>\r\n<h1><a href=\"#2\">Typical Applications</a></h1>\r\n<h2><a href=\"#2a\">Small Public Address System</a></h2>\r\n<h2><a href=\"#2b\">Large Public Address System</a></h2>\r\n\r\n<hr />\r\n\r\n<h1 id=\"1\">Key Components</h1>\r\nG-matrix provide the highest quality product brand and installation service to provide a high quality system delivery.\r\n<h2 id=\"1a\">Speaker</h2>\r\nThe most important role of the system is the PA speaker. We provide indoor/outdoor PA speaker for actual condition of the installation. We also provide speaker with fire proof conformity to fit the project specifications.\r\n<h2 id=\"1b\">Digital Announcer</h2>\r\nThis device is to transmit the digital announcement message: emergency announcement or all-call-messages to the amplifiers. The voice message is uploaded to the central workstation then download to digital announcer. Normally, announcing message is triggered by sensor and other third party system.\r\n<h2 id=\"1c\">Voice Player</h2>\r\nIt can process the predefined sounds and pass to the amplifiers. With the help of the amplifier zones. The sound signal can be managed to be relayed to different group of speakers.\r\n<h2 id=\"1d\">Call Station</h2>\r\nWe provide high quality, robust &amp; stable call station to our clients. To receive a high quality sound, sensitivity, limiter and parametric equalizer can be controlled to achieve this.\r\n<h2 id=\"1e\">Power Amplifiers</h2>\r\nIt provide power for the PA speakers to function. Different loading of amplifiers are available according to the system scale. Also, amplifiers groups PA speakers into several groups called zone. PA zone can monitor the groups of speakers in a manageable way. We provide rack mount/non rack mount device according to our client’s requirement.\r\n<h2 id=\"1f\">System Network Controller</h2>\r\nComputer network make the traditional system easy to implement and operate. It can adopt the networking system to expend the system coverage and provide a relatively high secure voice transmission.\r\n<h2 id=\"1g\">PA System Management Platform</h2>\r\nDepend on the system scale level, it can be a server or workstation computer. It response entire system configuration, system diagnosis, database management and system monitoring.\r\n<h1 id=\"2\">Typical Applications</h1>\r\nWe classified different scales of the public address system into different scale levels to efficiently design the solution which is the best fit to our client’s requirements.\r\n<h2 id=\"2a\">Small Public Address System</h2>\r\nSmall PA system target to residential &amp; small commercial scale needs. Normally it includes microphones, amplifiers and indoor / outdoor speakers. Sound players often supplied for the client to load the pre-recorded sounds and broadcast to the system.\r\n<h2 id=\"2b\">Large Public Address System</h2>\r\nLarge PA system usually adopted in infrastructure facilities. For example, schools, hospitals, buildings, airports etc. Usually it integrate with the alert system for fire announcement. So that the emergency announcement will be triggered once the fire alarm system receive the sensor signals.", "Public Address System", "", "inherit", "closed", "closed", "", "179-revision-v1", "", "", "2017-02-22 03:20:57", "2017-02-21 19:20:57", "", "179", "http://reda.selfip.net/2017/02/22/179-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("272", "1", "2017-02-22 03:21:15", "2017-02-21 19:21:15", "<img class=\"solution-image aligncenter wp-image-262 size-full\" src=\"http://reda.selfip.net/wp-content/uploads/2017/02/access_control.jpg\" width=\"675\" height=\"442\" />\r\n\r\nAccess control system has become increasingly important for organizations to keep their employees and buildings secure. Whether you need to manage access through the authorization or revocation of rights to physical or logical assets within an organization, or regulate the flow of people across a site. G-matrix with partnerships of the world’s leading access control manufacturers offers a variety of stand-alone and network access control systems to help you get the best performance.\r\n\r\nOur access control systems can incorporate a comprehensive staff database to grant or revoke access to designated areas by status, time of day, or day of the year. It control entry to your business or facility and secures your building or sensitive area with specialized credentials, advance readers, alarm systems and reporting software.\r\n\r\nThe system design takes in a number of particular factors:\r\n<ul>\r\n 	<li>The level of security required</li>\r\n 	<li>The number of total users in the system</li>\r\n 	<li>The number of total doors in the system</li>\r\n 	<li>The method of access and exit</li>\r\n 	<li>The forms of authentication</li>\r\n 	<li>The level of management control required</li>\r\n 	<li>Aesthetics and user friendliness</li>\r\n</ul>\r\n\r\n<hr />\r\n\r\n<h1><a href=\"#1\">Key Components</a></h1>\r\n<h2><a href=\"#1a\">Door Controller</a></h2>\r\n<h2><a href=\"#1b\">Card Reader</a></h2>\r\n<h2><a href=\"#1c\">Electric Door Lock</a></h2>\r\n<h2><a href=\"#1d\">Operation Software</a></h2>\r\n<h2><a href=\"#1e\">Pin Entry Keypad</a></h2>\r\n<h2><a href=\"#1f\">Barrier and Turnstiles</a></h2>\r\n<h2><a href=\"#1g\">Request to Exit &amp; Breakglass Switches</a></h2>\r\n<h2><a href=\"#1h\">Visitor Management</a></h2>\r\n<h1><a href=\"#2\">Typical Applications</a></h1>\r\n<h2><a href=\"#2a\">Entry level system</a></h2>\r\n<h2><a href=\"#2b\">Mid-level system</a></h2>\r\n<h2><a href=\"#2c\">High level system</a></h2>\r\n\r\n<hr />\r\n\r\n<h1 id=\"1\">Key Components</h1>\r\nA list of key products that combine to provide a complete access control system. Technical details are in here as well.\r\n<h2 id=\"1a\">Door Controller</h2>\r\nG-matrix provide wide range of intelligent, standalone and networked controller to manage all the access control devices function in a secure manner. For example, authorize access management, alarm signal management, time schedule automation etc. Our back end system also contains redundant power backup.\r\n<h2 id=\"1b\">Card Reader</h2>\r\nG-matrix provide card reader with various credential technologies such as Prox, iCLASS, MIFARE etc. Apart from these popular &amp; secure solutions, we also provide wide range of sophisticated technologies &amp; secure solutions to deliver the most high end &amp; secure products to our customers.\r\n<h2 id=\"1c\">Electric Door Lock</h2>\r\nG-matrix provide a high quality of electric lock and installation service, which only triggered by authorized card access and secure side door release. We also provide some specific requirement such as schedule lock / unlock automation to achieve the user’s need.\r\n<h2 id=\"1d\">Operation Software</h2>\r\nWe provide easy to use security software with experienced designs. Enable you to assign &amp; delete the card users, modify the automatic schedule and many high end system operations.\r\n<h2 id=\"1e\">Pin Entry Keypad</h2>\r\nG-matrix provide indoor &amp; outdoor readers with high end technology and favorable outlook. Capacity sensing technologies &amp; mechanical switching technologies are available for the users for wide range of flexibilities.\r\n<h2 id=\"1f\">Barrier and Turnstiles</h2>\r\nG-matrix provide high quality barrier and turnstiles system with anti-pass back &amp; flow monitoring in advance. Force entering &amp; IN/OUT activities can be monitored also.\r\n<h2 id=\"1g\">Request to Exit &amp; Breakglass Switches</h2>\r\nG-matrix provide a high quality emergency access devices. Materials are highly qualified with conformities. Which provide the users to access the doors efficiently in an emergency case.\r\n<h2 id=\"1h\">Visitor Management</h2>\r\nG-matrix provide a user friendly visitor management system with easy to understand UI and operation advantage. To print a dedicated visitor badges for visitors to present a good image to your visitors.\r\n<h1 id=\"2\">Typical Applications</h1>\r\nClick here to have a look on the entry level, mid-level &amp; high level access control system. To see which levels suite your needs.\r\n<h2 id=\"2a\">Entry level system</h2>\r\nA common entry level system include one or several intelligent access reader, or entry level panels including several doors. Usually it will be integrated with burglar alarm system for door alarm triggering.\r\n<h2 id=\"2b\">Mid-level system</h2>\r\nA common mid-level system include a central server, which connect with several commercial grade control panel to monitor up to hundreds of doors located at several sites. Normally those commercial grade system can manage up to thousands of cards without any issue.\r\n<h2 id=\"2c\">High level system</h2>\r\nA typical infrastructural grade can monitor thousands of doors and cards of multiple site. Card credential, high end technologies, system integration, high level design of system redundancy, networking will be adopted to achieve the end user’s specifications &amp; requirements.\r\n\r\n&nbsp;", "Access Control System", "", "inherit", "closed", "closed", "", "141-revision-v1", "", "", "2017-02-22 03:21:15", "2017-02-21 19:21:15", "", "141", "http://reda.selfip.net/2017/02/22/141-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("273", "1", "2017-02-22 03:21:23", "2017-02-21 19:21:23", "&nbsp;\r\n\r\n<img class=\"solution-image aligncenter wp-image-270 size-full\" src=\"http://reda.selfip.net/wp-content/uploads/2017/01/public_access.jpg\" width=\"675\" height=\"506\" />\r\n\r\nPublic address system (PA system in short) provide background music, pre-recorded messages broadcast and microphone broadcast. Service area including public areas, office lobby, lift lobbies, lift car, toilets, car park, perimeter, airport etc.\r\n\r\n<hr />\r\n\r\n<h1><a href=\"#1\">Key Components</a></h1>\r\n<h2><a href=\"#1a\">Speaker</a></h2>\r\n<h2><a href=\"#1b\">Digital Announcer</a></h2>\r\n<h2><a href=\"#1c\">Voice Player</a></h2>\r\n<h2><a href=\"#1d\">Call Station</a></h2>\r\n<h2><a href=\"#1e\">Power Amplifiers</a></h2>\r\n<h2><a href=\"#1f\">System Network Controller</a></h2>\r\n<h2><a href=\"#1g\">PA System Management Platform</a></h2>\r\n<h1><a href=\"#2\">Typical Applications</a></h1>\r\n<h2><a href=\"#2a\">Small Public Address System</a></h2>\r\n<h2><a href=\"#2b\">Large Public Address System</a></h2>\r\n\r\n<hr />\r\n\r\n<h1 id=\"1\">Key Components</h1>\r\nG-matrix provide the highest quality product brand and installation service to provide a high quality system delivery.\r\n<h2 id=\"1a\">Speaker</h2>\r\nThe most important role of the system is the PA speaker. We provide indoor/outdoor PA speaker for actual condition of the installation. We also provide speaker with fire proof conformity to fit the project specifications.\r\n<h2 id=\"1b\">Digital Announcer</h2>\r\nThis device is to transmit the digital announcement message: emergency announcement or all-call-messages to the amplifiers. The voice message is uploaded to the central workstation then download to digital announcer. Normally, announcing message is triggered by sensor and other third party system.\r\n<h2 id=\"1c\">Voice Player</h2>\r\nIt can process the predefined sounds and pass to the amplifiers. With the help of the amplifier zones. The sound signal can be managed to be relayed to different group of speakers.\r\n<h2 id=\"1d\">Call Station</h2>\r\nWe provide high quality, robust &amp; stable call station to our clients. To receive a high quality sound, sensitivity, limiter and parametric equalizer can be controlled to achieve this.\r\n<h2 id=\"1e\">Power Amplifiers</h2>\r\nIt provide power for the PA speakers to function. Different loading of amplifiers are available according to the system scale. Also, amplifiers groups PA speakers into several groups called zone. PA zone can monitor the groups of speakers in a manageable way. We provide rack mount/non rack mount device according to our client’s requirement.\r\n<h2 id=\"1f\">System Network Controller</h2>\r\nComputer network make the traditional system easy to implement and operate. It can adopt the networking system to expend the system coverage and provide a relatively high secure voice transmission.\r\n<h2 id=\"1g\">PA System Management Platform</h2>\r\nDepend on the system scale level, it can be a server or workstation computer. It response entire system configuration, system diagnosis, database management and system monitoring.\r\n<h1 id=\"2\">Typical Applications</h1>\r\nWe classified different scales of the public address system into different scale levels to efficiently design the solution which is the best fit to our client’s requirements.\r\n<h2 id=\"2a\">Small Public Address System</h2>\r\nSmall PA system target to residential &amp; small commercial scale needs. Normally it includes microphones, amplifiers and indoor / outdoor speakers. Sound players often supplied for the client to load the pre-recorded sounds and broadcast to the system.\r\n<h2 id=\"2b\">Large Public Address System</h2>\r\nLarge PA system usually adopted in infrastructure facilities. For example, schools, hospitals, buildings, airports etc. Usually it integrate with the alert system for fire announcement. So that the emergency announcement will be triggered once the fire alarm system receive the sensor signals.", "Public Address System", "", "inherit", "closed", "closed", "", "179-revision-v1", "", "", "2017-02-22 03:21:23", "2017-02-21 19:21:23", "", "179", "http://reda.selfip.net/2017/02/22/179-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("274", "1", "2017-02-22 03:26:06", "2017-02-21 19:26:06", "", "Access Control System—Key Components", "", "publish", "closed", "closed", "", "access-control-system-key-components", "", "", "2017-02-24 19:37:43", "2017-02-24 11:37:43", "", "0", "http://reda.selfip.net/?post_type=collapsed_content&#038;p=274", "0", "collapsed_content", "", "0");
INSERT INTO `wp_posts` VALUES("275", "1", "2017-02-24 19:34:07", "2017-02-24 11:34:07", "<img class=\"solution-image aligncenter wp-image-262 size-full\" src=\"http://reda.selfip.net/wp-content/uploads/2017/02/access_control.jpg\" width=\"675\" height=\"442\" />\n\nAccess control system has become increasingly important for organizations to keep their employees and buildings secure. Whether you need to manage access through the authorization or revocation of rights to physical or logical assets within an organization, or regulate the flow of people across a site. Reda Technology Limited with partnerships of the world’s leading access control manufacturers offers a variety of stand-alone and network access control systems to help you get the best performance.\n\nOur access control systems can incorporate a comprehensive staff database to grant or revoke access to designated areas by status, time of day, or day of the year. It control entry to your business or facility and secures your building or sensitive area with specialized credentials, advance readers, alarm systems and reporting software.\n\nThe system design takes in a number of particular factors:\n<ul>\n 	<li>The level of security required</li>\n 	<li>The number of total users in the system</li>\n 	<li>The number of total doors in the system</li>\n 	<li>The method of access and exit</li>\n 	<li>The forms of authentication</li>\n 	<li>The level of management control required</li>\n 	<li>Aesthetics and user friendliness</li>\n</ul>\n\n<hr />\n\n<h1 id=\"1\">Key Components</h1>\nA list of key products that combine to provide a complete access control system. Technical details are in here as well.\n\n[WPSM_CC id=274]\n<h1 id=\"2\">Typical Applications</h1>\nClick here to have a look on the entry level, mid-level &amp; high level access control system. To see which levels suite your needs.\n\n[WPSM_CC id=278]\n\n<hr />", "Access Control System", "", "inherit", "closed", "closed", "", "141-autosave-v1", "", "", "2017-02-24 19:34:07", "2017-02-24 11:34:07", "", "141", "http://reda.selfip.net/2017/02/22/141-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("276", "1", "2017-02-22 03:28:13", "2017-02-21 19:28:13", "<img class=\"solution-image aligncenter wp-image-262 size-full\" src=\"http://reda.selfip.net/wp-content/uploads/2017/02/access_control.jpg\" width=\"675\" height=\"442\" />\r\n\r\nAccess control system has become increasingly important for organizations to keep their employees and buildings secure. Whether you need to manage access through the authorization or revocation of rights to physical or logical assets within an organization, or regulate the flow of people across a site. G-matrix with partnerships of the world’s leading access control manufacturers offers a variety of stand-alone and network access control systems to help you get the best performance.\r\n\r\nOur access control systems can incorporate a comprehensive staff database to grant or revoke access to designated areas by status, time of day, or day of the year. It control entry to your business or facility and secures your building or sensitive area with specialized credentials, advance readers, alarm systems and reporting software.\r\n\r\nThe system design takes in a number of particular factors:\r\n<ul>\r\n 	<li>The level of security required</li>\r\n 	<li>The number of total users in the system</li>\r\n 	<li>The number of total doors in the system</li>\r\n 	<li>The method of access and exit</li>\r\n 	<li>The forms of authentication</li>\r\n 	<li>The level of management control required</li>\r\n 	<li>Aesthetics and user friendliness</li>\r\n</ul>\r\n\r\n<hr />\r\n\r\n<h1 id=\"1\">Key Components</h1>\r\nA list of key products that combine to provide a complete access control system. Technical details are in here as well.\r\n\r\n[WPSM_CC id=274]\r\n\r\n<h1 id=\"2\">Typical Applications</h1>\r\nClick here to have a look on the entry level, mid-level &amp; high level access control system. To see which levels suite your needs.\r\n<h2 id=\"2a\">Entry level system</h2>\r\nA common entry level system include one or several intelligent access reader, or entry level panels including several doors. Usually it will be integrated with burglar alarm system for door alarm triggering.\r\n<h2 id=\"2b\">Mid-level system</h2>\r\nA common mid-level system include a central server, which connect with several commercial grade control panel to monitor up to hundreds of doors located at several sites. Normally those commercial grade system can manage up to thousands of cards without any issue.\r\n<h2 id=\"2c\">High level system</h2>\r\nA typical infrastructural grade can monitor thousands of doors and cards of multiple site. Card credential, high end technologies, system integration, high level design of system redundancy, networking will be adopted to achieve the end user’s specifications &amp; requirements.\r\n\r\n&nbsp;", "Access Control System", "", "inherit", "closed", "closed", "", "141-revision-v1", "", "", "2017-02-22 03:28:13", "2017-02-21 19:28:13", "", "141", "http://reda.selfip.net/2017/02/22/141-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("278", "1", "2017-02-22 03:31:01", "2017-02-21 19:31:01", "", "Access Control System—Typical Applications", "", "publish", "closed", "closed", "", "access-control-system-typical-applications", "", "", "2017-02-22 03:33:17", "2017-02-21 19:33:17", "", "0", "http://reda.selfip.net/?post_type=collapsed_content&#038;p=278", "0", "collapsed_content", "", "0");
INSERT INTO `wp_posts` VALUES("280", "1", "2017-02-22 03:31:53", "2017-02-21 19:31:53", "<img class=\"solution-image aligncenter wp-image-262 size-full\" src=\"http://reda.selfip.net/wp-content/uploads/2017/02/access_control.jpg\" width=\"675\" height=\"442\" />\r\n\r\nAccess control system has become increasingly important for organizations to keep their employees and buildings secure. Whether you need to manage access through the authorization or revocation of rights to physical or logical assets within an organization, or regulate the flow of people across a site. G-matrix with partnerships of the world’s leading access control manufacturers offers a variety of stand-alone and network access control systems to help you get the best performance.\r\n\r\nOur access control systems can incorporate a comprehensive staff database to grant or revoke access to designated areas by status, time of day, or day of the year. It control entry to your business or facility and secures your building or sensitive area with specialized credentials, advance readers, alarm systems and reporting software.\r\n\r\nThe system design takes in a number of particular factors:\r\n<ul>\r\n 	<li>The level of security required</li>\r\n 	<li>The number of total users in the system</li>\r\n 	<li>The number of total doors in the system</li>\r\n 	<li>The method of access and exit</li>\r\n 	<li>The forms of authentication</li>\r\n 	<li>The level of management control required</li>\r\n 	<li>Aesthetics and user friendliness</li>\r\n</ul>\r\n\r\n<hr />\r\n\r\n<h1 id=\"1\">Key Components</h1>\r\nA list of key products that combine to provide a complete access control system. Technical details are in here as well.\r\n\r\n[WPSM_CC id=274]\r\n\r\n<h1 id=\"2\">Typical Applications</h1>\r\nClick here to have a look on the entry level, mid-level &amp; high level access control system. To see which levels suite your needs.\r\n\r\n[WPSM_CC id=278]", "Access Control System", "", "inherit", "closed", "closed", "", "141-revision-v1", "", "", "2017-02-22 03:31:53", "2017-02-21 19:31:53", "", "141", "http://reda.selfip.net/2017/02/22/141-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("281", "1", "2017-02-22 03:32:27", "2017-02-21 19:32:27", "<img class=\"solution-image aligncenter wp-image-262 size-full\" src=\"http://reda.selfip.net/wp-content/uploads/2017/02/access_control.jpg\" width=\"675\" height=\"442\" />\r\n\r\nAccess control system has become increasingly important for organizations to keep their employees and buildings secure. Whether you need to manage access through the authorization or revocation of rights to physical or logical assets within an organization, or regulate the flow of people across a site. G-matrix with partnerships of the world’s leading access control manufacturers offers a variety of stand-alone and network access control systems to help you get the best performance.\r\n\r\nOur access control systems can incorporate a comprehensive staff database to grant or revoke access to designated areas by status, time of day, or day of the year. It control entry to your business or facility and secures your building or sensitive area with specialized credentials, advance readers, alarm systems and reporting software.\r\n\r\nThe system design takes in a number of particular factors:\r\n<ul>\r\n 	<li>The level of security required</li>\r\n 	<li>The number of total users in the system</li>\r\n 	<li>The number of total doors in the system</li>\r\n 	<li>The method of access and exit</li>\r\n 	<li>The forms of authentication</li>\r\n 	<li>The level of management control required</li>\r\n 	<li>Aesthetics and user friendliness</li>\r\n</ul>\r\n\r\n<hr />\r\n\r\n<h1 id=\"1\">Key Components</h1>\r\nA list of key products that combine to provide a complete access control system. Technical details are in here as well.\r\n\r\n[WPSM_CC id=274]\r\n\r\n<h1 id=\"2\">Typical Applications</h1>\r\nClick here to have a look on the entry level, mid-level &amp; high level access control system. To see which levels suite your needs.\r\n\r\n[WPSM_CC id=278]\r\n\r\n<hr />", "Access Control System", "", "inherit", "closed", "closed", "", "141-revision-v1", "", "", "2017-02-22 03:32:27", "2017-02-21 19:32:27", "", "141", "http://reda.selfip.net/2017/02/22/141-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("282", "1", "2017-02-22 13:08:55", "2017-02-22 05:08:55", "", "Analogue CCTV System—Key Components", "", "publish", "closed", "closed", "", "analogue-cctv-system-key-components", "", "", "2017-02-24 19:36:52", "2017-02-24 11:36:52", "", "0", "http://reda.selfip.net/?post_type=collapsed_content&#038;p=282", "0", "collapsed_content", "", "0");
INSERT INTO `wp_posts` VALUES("283", "1", "2017-02-22 13:10:19", "2017-02-22 05:10:19", "Analogue CCTV system has been on the market for many years and is the most utilized type of system for the residential and commercial market. Any number of fixed or pan-tilt-zoom analogue cameras can be installed and wired back to the recording and viewing equipment. Images can be viewed directly at the property or remotely viewing the images from outside when you are temporarily away from the property. Users can take immediate respond action for the system area and remote area to make the users operate their systems in a more flexible way.\r\n\r\n<hr />\r\n\r\n<h1 id=\"1\">Key Components</h1>\r\nPlease access here to get familiar about the components of the analogue CCTV system. Product brochures and specifications can be found at here as well.\r\n\r\n[WPSM_CC id=282]\r\n\r\n<hr />", "Analogue CCTV System", "", "inherit", "closed", "closed", "", "181-revision-v1", "", "", "2017-02-22 13:10:19", "2017-02-22 05:10:19", "", "181", "http://reda.selfip.net/2017/02/22/181-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("284", "1", "2017-02-22 13:15:16", "2017-02-22 05:15:16", "", "IP CCTV System—Key Components", "", "publish", "closed", "closed", "", "ip-cctv-system-key-components", "", "", "2017-02-22 13:19:01", "2017-02-22 05:19:01", "", "0", "http://reda.selfip.net/?post_type=collapsed_content&#038;p=284", "0", "collapsed_content", "", "0");
INSERT INTO `wp_posts` VALUES("285", "1", "2017-02-22 13:15:29", "2017-02-22 05:15:29", "IP CCTV system is quickly becoming the most flexible and future-proof option for security surveillance. Different from traditional analogue system, IP CCTV system adopt computer network technologies instead of coaxial cable to connect the entire CCTV system. With the help of the computer networking, the system can deliver significant advantages over traditional analogue system. Not just the improvement of image quality, the system benefit from networking security, redundancy, function and system scale. Therefore, IP system obtains a real benefits over the traditional topologies in the new centuries.\r\n\r\n<hr />\r\n\r\n<h1 id=\"1\">Key Components</h1>\r\nThere are four key components of IP CCTV system. Product brochures and specifications can be found at here as well.\r\n\r\n[WPSM_CC id=284]\r\n\r\n<h1 id=\"2\">Typical Applications</h1>\r\nClick here to access the different scales of CCTV system to find out which levels of the scales suite your needs.\r\n\r\n\r\n\r\n<hr />", "IP CCTV System", "", "inherit", "closed", "closed", "", "183-revision-v1", "", "", "2017-02-22 13:15:29", "2017-02-22 05:15:29", "", "183", "http://reda.selfip.net/2017/02/22/183-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("286", "1", "2017-02-22 13:18:22", "2017-02-22 05:18:22", "IP CCTV system is quickly becoming the most flexible and future-proof option for security surveillance. Different from traditional analogue system, IP CCTV system adopt computer network technologies instead of coaxial cable to connect the entire CCTV system. With the help of the computer networking, the system can deliver significant advantages over traditional analogue system. Not just the improvement of image quality, the system benefit from networking security, redundancy, function and system scale. Therefore, IP system obtains a real benefits over the traditional topologies in the new centuries.\r\n\r\n<hr />\r\n\r\n<h1 id=\"1\">Key Components</h1>\r\nThere are four key components of IP CCTV system. Product brochures and specifications can be found at here as well.\r\n\r\n[WPSM_CC id=284]\r\n\r\nProducts details and specification\r\nPlease click here to have a look on different kinds of our products. To know the functions and characteristics of the systems and the products. Product and specifications are included as well.\r\n\r\n<h1 id=\"2\">Typical Applications</h1>\r\nClick here to access the different scales of CCTV system to find out which levels of the scales suite your needs.\r\n\r\n\r\n\r\n<hr />", "IP CCTV System", "", "inherit", "closed", "closed", "", "183-revision-v1", "", "", "2017-02-22 13:18:22", "2017-02-22 05:18:22", "", "183", "http://reda.selfip.net/2017/02/22/183-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("287", "1", "2017-02-22 13:21:18", "2017-02-22 05:21:18", "", "IP CCTV System—Typical Applications", "", "publish", "closed", "closed", "", "ip-cctv-system-typical-applications", "", "", "2017-02-22 13:21:18", "2017-02-22 05:21:18", "", "0", "http://reda.selfip.net/?post_type=collapsed_content&#038;p=287", "0", "collapsed_content", "", "0");
INSERT INTO `wp_posts` VALUES("288", "1", "2017-02-22 13:21:35", "2017-02-22 05:21:35", "IP CCTV system is quickly becoming the most flexible and future-proof option for security surveillance. Different from traditional analogue system, IP CCTV system adopt computer network technologies instead of coaxial cable to connect the entire CCTV system. With the help of the computer networking, the system can deliver significant advantages over traditional analogue system. Not just the improvement of image quality, the system benefit from networking security, redundancy, function and system scale. Therefore, IP system obtains a real benefits over the traditional topologies in the new centuries.\r\n\r\n<hr />\r\n\r\n<h1 id=\"1\">Key Components</h1>\r\nThere are four key components of IP CCTV system. Product brochures and specifications can be found at here as well.\r\n\r\n[WPSM_CC id=284]\r\n\r\nProducts details and specification\r\nPlease click here to have a look on different kinds of our products. To know the functions and characteristics of the systems and the products. Product and specifications are included as well.\r\n\r\n<h1 id=\"2\">Typical Applications</h1>\r\nClick here to access the different scales of CCTV system to find out which levels of the scales suite your needs.\r\n\r\n[WPSM_CC id=287]\r\n\r\n<hr />", "IP CCTV System", "", "inherit", "closed", "closed", "", "183-revision-v1", "", "", "2017-02-22 13:21:35", "2017-02-22 05:21:35", "", "183", "http://reda.selfip.net/2017/02/22/183-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("289", "1", "2017-02-22 13:26:41", "2017-02-22 05:26:41", "", "Burglar Alarm System—Key Components", "", "publish", "closed", "closed", "", "burglar-alarm-system-key-components", "", "", "2017-02-24 19:36:20", "2017-02-24 11:36:20", "", "0", "http://reda.selfip.net/?post_type=collapsed_content&#038;p=289", "0", "collapsed_content", "", "0");
INSERT INTO `wp_posts` VALUES("290", "1", "2017-02-22 13:33:58", "2017-02-22 05:33:58", "", "Burglar Alarm System—Typical Applications", "", "publish", "closed", "closed", "", "burglar-alarm-system-typical-applications", "", "", "2017-02-22 13:34:20", "2017-02-22 05:34:20", "", "0", "http://reda.selfip.net/?post_type=collapsed_content&#038;p=290", "0", "collapsed_content", "", "0");
INSERT INTO `wp_posts` VALUES("291", "1", "2017-02-22 13:34:06", "2017-02-22 05:34:06", "<img class=\"solution-image aligncenter wp-image-263 size-full\" src=\"http://reda.selfip.net/wp-content/uploads/2017/02/burglar_alarm_system.jpg\" width=\"675\" height=\"450\" />\r\n\r\nG-matrix alarm system provide a remote &amp; local protection in an efficient way. In situation of personal break in, force entry, and attacks, we provide a tailor make and professional design to provide a safety environment for our clients.\r\n\r\n<hr />\r\n\r\n<h1 id=\"1\">Key Components</h1>\r\nG-matrix provide various kind of products to suit different user’s needs.\r\n\r\n[WPSM_CC id=289]\r\n\r\n<h1 id=\"2\">Typical Applications</h1>\r\nWe classified different scales of the alarm system into different scale levels to efficiently design the solution which is the best fit to our client’s requirements.\r\n\r\nDifferent scale level and complexity of the burglar alarm system cover different kinds of needs of the client’s real situation.\r\n\r\n[WPSM_CC id=290]\r\n\r\n<hr />", "Burglar Alarm System", "", "inherit", "closed", "closed", "", "139-revision-v1", "", "", "2017-02-22 13:34:06", "2017-02-22 05:34:06", "", "139", "http://reda.selfip.net/2017/02/22/139-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("292", "1", "2017-02-22 13:38:29", "2017-02-22 05:38:29", "", "Public Address System—Key Components", "", "publish", "closed", "closed", "", "public-address-system-key-components", "", "", "2017-02-22 13:38:29", "2017-02-22 05:38:29", "", "0", "http://reda.selfip.net/?post_type=collapsed_content&#038;p=292", "0", "collapsed_content", "", "0");
INSERT INTO `wp_posts` VALUES("293", "1", "2017-02-22 13:39:58", "2017-02-22 05:39:58", "", "Public Address System—Typical Applications", "", "publish", "closed", "closed", "", "public-address-system-typical-applications", "", "", "2017-02-22 13:39:58", "2017-02-22 05:39:58", "", "0", "http://reda.selfip.net/?post_type=collapsed_content&#038;p=293", "0", "collapsed_content", "", "0");
INSERT INTO `wp_posts` VALUES("294", "1", "2017-02-22 13:40:07", "2017-02-22 05:40:07", "<img class=\"solution-image aligncenter wp-image-270 size-full\" src=\"http://reda.selfip.net/wp-content/uploads/2017/01/public_access.jpg\" width=\"675\" height=\"506\" />\r\n\r\nPublic address system (PA system in short) provide background music, pre-recorded messages broadcast and microphone broadcast. Service area including public areas, office lobby, lift lobbies, lift car, toilets, car park, perimeter, airport etc.\r\n\r\n<hr />\r\n\r\n<h1 id=\"1\">Key Components</h1>\r\nG-matrix provide the highest quality product brand and installation service to provide a high quality system delivery.\r\n\r\n[WPSM_CC id=292]\r\n\r\n<h1 id=\"2\">Typical Applications</h1>\r\nWe classified different scales of the public address system into different scale levels to efficiently design the solution which is the best fit to our client’s requirements.\r\n\r\n[WPSM_CC id=293]\r\n\r\n<hr />", "Public Address System", "", "inherit", "closed", "closed", "", "179-revision-v1", "", "", "2017-02-22 13:40:07", "2017-02-22 05:40:07", "", "179", "http://reda.selfip.net/2017/02/22/179-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("295", "1", "2017-02-22 17:15:06", "2017-02-22 09:15:06", "<div class=\"map-location\"><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3690.3859524553536!2d114.1460300147592!3d22.33905124713267!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3404075416900e45%3A0xdd5206a202fe3d9d!2sGLOBAL+GATEWAY+TOWER!5e0!3m2!1sen!2shk!4v1487331984157\" width=\"570\" height=\"250\" frameborder=\"0\"></iframe></div>\r\n<div class=\"contact-details\">Office Address: Unit 7, 30/F, Global Gateway Tower, 63 Wing Hong Street, Cheung Sha Wan, Kowloon, Hong Kong\r\nTel: + 852 2307 0742\r\nFax: + 852 2310 0948</div>", "Contact", "", "inherit", "closed", "closed", "", "17-revision-v1", "", "", "2017-02-22 17:15:06", "2017-02-22 09:15:06", "", "17", "http://reda.selfip.net/2017/02/22/17-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("296", "1", "2017-02-24 12:52:01", "2017-02-24 04:52:01", "", "about_reda", "", "inherit", "open", "closed", "", "about_reda", "", "", "2017-02-24 12:52:01", "2017-02-24 04:52:01", "", "168", "http://reda.selfip.net/wp-content/uploads/2017/01/about_reda.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("297", "1", "2017-02-24 19:47:59", "2017-02-24 11:47:59", "Reda Technology Limited was established in Hong Kong in 1998 who plays a key role in the provision of professional Electronic Security System. With over 15-years strong skill-sets in the area of System Design, Installation and Maintenance Support, our operation reaches wide range of clients and spans across Greater China.\r\n\r\nTo be the leading solution provider, we are passionate to serve any special need of clients and deliver innovative and custom-built solutions. In 2007, we expanded vertically and Securitech Systems Ltd was established for security products distribution.\r\n\r\n<img class=\"solution-image aligncenter wp-image-296 size-full\" src=\"http://reda.selfip.net/wp-content/uploads/2017/01/about_reda.jpg\" width=\"675\" height=\"290\" />", "About Reda", "", "inherit", "closed", "closed", "", "168-autosave-v1", "", "", "2017-02-24 19:47:59", "2017-02-24 11:47:59", "", "168", "http://reda.selfip.net/2017/02/24/168-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("298", "1", "2017-02-24 12:52:33", "2017-02-24 04:52:33", "<img class=\"solution-image aligncenter wp-image-296 size-full\" src=\"http://reda.selfip.net/wp-content/uploads/2017/01/about_reda.jpg\" width=\"675\" height=\"290\" />\r\n\r\nReda Technology Limited was established in Hong Kong in 1998 who plays a key role in the provision of professional ELV System. With over 15-years strong skill-sets in the area of System Design, Installation and Maintenance Support, our operation reaches wide range of clients and spans across Greater China.\r\n\r\nTo be the leading solution provider, we are passionate to serve any special need of clients and deliver innovative and custom-built solutions. In 2007, we expanded vertically and Securitech Systems Ltd was established for security products.", "About Reda", "", "inherit", "closed", "closed", "", "168-revision-v1", "", "", "2017-02-24 12:52:33", "2017-02-24 04:52:33", "", "168", "http://reda.selfip.net/2017/02/24/168-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("299", "1", "2017-02-24 12:52:59", "2017-02-24 04:52:59", "<!-- copy the following for new box -->\r\n<div class=\"news-sidebar-box\">\r\n<div class=\"news-sidebar-box-header\">\r\n<h1>News from Arecont Vision</h1>\r\n</div>\r\n<div class=\"news-sidebar-box-body\"><a href=\"http://www.arecontvision.com\" target=\"_blank\">Read more on Arecont Vision’s website</a></div>\r\n</div>\r\n<!-- copy until above -->\r\n\r\n<!-- copy the following for new box -->\r\n<div class=\"news-sidebar-box\">\r\n<div class=\"news-sidebar-box-header\">\r\n<h1>News from FLIR</h1>\r\n</div>\r\n<div class=\"news-sidebar-box-body\"><a href=\"http://www.flir.com.hk/\" target=\"_blank\">Read more on FLIR’s website</a></div>\r\n</div>\r\n<!-- copy until above -->\r\n\r\n<!-- copy the following for new box -->\r\n<div class=\"news-sidebar-box\">\r\n<div class=\"news-sidebar-box-header\">\r\n<h1>News from Network Optix</h1>\r\n</div>\r\n<div class=\"news-sidebar-box-body\"><a href=\"http://www.networkoptix.com\" target=\"_blank\">Read more on Network Optix’s website</a></div>\r\n</div>\r\n<!-- copy until above -->", "News", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2017-02-24 12:52:59", "2017-02-24 04:52:59", "", "11", "http://reda.selfip.net/2017/02/24/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("300", "1", "2017-02-24 19:31:34", "2017-02-24 11:31:34", "<img class=\"solution-image aligncenter wp-image-296 size-full\" src=\"http://reda.selfip.net/wp-content/uploads/2017/01/about_reda.jpg\" width=\"675\" height=\"290\" />\r\n\r\nReda Technology Limited was established in Hong Kong in 1998 who plays a key role in the provision of professional Electronic Security System. With over 15-years strong skill-sets in the area of System Design, Installation and Maintenance Support, our operation reaches wide range of clients and spans across Greater China.\r\n\r\nTo be the leading solution provider, we are passionate to serve any special need of clients and deliver innovative and custom-built solutions. In 2007, we expanded vertically and Securitech Systems Ltd was established for security products distribution.", "About Reda", "", "inherit", "closed", "closed", "", "168-revision-v1", "", "", "2017-02-24 19:31:34", "2017-02-24 11:31:34", "", "168", "http://reda.selfip.net/2017/02/24/168-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("301", "1", "2017-02-24 19:32:01", "2017-02-24 11:32:01", "<p style=\"text-align: center;\">Coming soon…</p>", "Logistics", "", "inherit", "closed", "closed", "", "143-revision-v1", "", "", "2017-02-24 19:32:01", "2017-02-24 11:32:01", "", "143", "http://reda.selfip.net/2017/02/24/143-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("302", "1", "2017-02-24 19:33:59", "2017-02-24 11:33:59", "Reda Technology Limited is a licensed security company in Hong Kong. We offer specialize consultancy, design, supply, install and maintenance for integrated security systems.", "About Us", "", "inherit", "closed", "closed", "", "15-revision-v1", "", "", "2017-02-24 19:33:59", "2017-02-24 11:33:59", "", "15", "http://reda.selfip.net/2017/02/24/15-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("303", "1", "2017-02-24 19:34:26", "2017-02-24 11:34:26", "<img class=\"solution-image aligncenter wp-image-262 size-full\" src=\"http://reda.selfip.net/wp-content/uploads/2017/02/access_control.jpg\" width=\"675\" height=\"442\" />\r\n\r\nAccess control system has become increasingly important for organizations to keep their employees and buildings secure. Whether you need to manage access through the authorization or revocation of rights to physical or logical assets within an organization, or regulate the flow of people across a site. Reda Technology Limited with partnerships of the world’s leading access control manufacturers offers a variety of stand-alone and network access control systems to help you get the best performance.\r\n\r\nOur access control systems can incorporate a comprehensive staff database to grant or revoke access to designated areas by status, time of day, or day of the year. It control entry to your business or facility and secures your building or sensitive area with specialized credentials, advance readers, alarm systems and reporting software.\r\n\r\nThe system design takes in a number of particular factors:\r\n<ul>\r\n 	<li>The level of security required</li>\r\n 	<li>The number of total users in the system</li>\r\n 	<li>The number of total doors in the system</li>\r\n 	<li>The method of access and exit</li>\r\n 	<li>The forms of authentication</li>\r\n 	<li>The level of management control required</li>\r\n 	<li>Aesthetics and user friendliness</li>\r\n</ul>\r\n\r\n<hr />\r\n\r\n<h1 id=\"1\">Key Components</h1>\r\nA list of key products that combine to provide a complete access control system. Technical details are in here as well.\r\n\r\n[WPSM_CC id=274]\r\n<h1 id=\"2\">Typical Applications</h1>\r\nClick here to have a look on the entry level, mid-level &amp; high level access control system. To see which levels suite your needs.\r\n\r\n[WPSM_CC id=278]\r\n\r\n<hr />", "Access Control System", "", "inherit", "closed", "closed", "", "141-revision-v1", "", "", "2017-02-24 19:34:26", "2017-02-24 11:34:26", "", "141", "http://reda.selfip.net/2017/02/24/141-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("304", "1", "2017-02-24 19:35:10", "2017-02-24 11:35:10", "<img class=\"solution-image aligncenter wp-image-263 size-full\" src=\"http://reda.selfip.net/wp-content/uploads/2017/02/burglar_alarm_system.jpg\" width=\"675\" height=\"450\" />\r\n\r\nReda Technology Limited alarm system provide a remote &amp; local protection in an efficient way. In situation of personal break in, force entry, and attacks, we provide a tailor make and professional design to provide a safety environment for our clients.\r\n\r\n<hr />\r\n\r\n<h1 id=\"1\">Key Components</h1>\r\nReda Technology Limited provide various kind of products to suit different user’s needs.\r\n\r\n[WPSM_CC id=289]\r\n<h1 id=\"2\">Typical Applications</h1>\r\nWe classified different scales of the alarm system into different scale levels to efficiently design the solution which is the best fit to our client’s requirements.\r\n\r\nDifferent scale level and complexity of the burglar alarm system cover different kinds of needs of the client’s real situation.\r\n\r\n[WPSM_CC id=290]\r\n\r\n<hr />", "Burglar Alarm System", "", "inherit", "closed", "closed", "", "139-revision-v1", "", "", "2017-02-24 19:35:10", "2017-02-24 11:35:10", "", "139", "http://reda.selfip.net/2017/02/24/139-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("305", "1", "2017-02-24 19:35:33", "2017-02-24 11:35:33", "<img class=\"solution-image aligncenter wp-image-270 size-full\" src=\"http://reda.selfip.net/wp-content/uploads/2017/01/public_access.jpg\" width=\"675\" height=\"506\" />\r\n\r\nPublic address system (PA system in short) provide background music, pre-recorded messages broadcast and microphone broadcast. Service area including public areas, office lobby, lift lobbies, lift car, toilets, car park, perimeter, airport etc.\r\n\r\n<hr />\r\n\r\n<h1 id=\"1\">Key Components</h1>\r\nReda Technology Limited provide the highest quality product brand and installation service to provide a high quality system delivery.\r\n\r\n[WPSM_CC id=292]\r\n<h1 id=\"2\">Typical Applications</h1>\r\nWe classified different scales of the public address system into different scale levels to efficiently design the solution which is the best fit to our client’s requirements.\r\n\r\n[WPSM_CC id=293]\r\n\r\n<hr />", "Public Address System", "", "inherit", "closed", "closed", "", "179-revision-v1", "", "", "2017-02-24 19:35:33", "2017-02-24 11:35:33", "", "179", "http://reda.selfip.net/2017/02/24/179-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("306", "1", "2017-02-24 19:48:06", "2017-02-24 11:48:06", "Reda Technology Limited was established in Hong Kong in 1998 who plays a key role in the provision of professional Electronic Security System. With over 15-years strong skill-sets in the area of System Design, Installation and Maintenance Support, our operation reaches wide range of clients and spans across Greater China.\r\n\r\nTo be the leading solution provider, we are passionate to serve any special need of clients and deliver innovative and custom-built solutions. In 2007, we expanded vertically and Securitech Systems Ltd was established for security products distribution.\r\n\r\n<img class=\"solution-image aligncenter wp-image-296 size-full\" src=\"http://reda.selfip.net/wp-content/uploads/2017/01/about_reda.jpg\" width=\"675\" height=\"290\" />", "About Reda", "", "inherit", "closed", "closed", "", "168-revision-v1", "", "", "2017-02-24 19:48:06", "2017-02-24 11:48:06", "", "168", "http://reda.selfip.net/2017/02/24/168-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("307", "1", "2017-03-07 15:07:44", "0000-00-00 00:00:00", "", "Auto Draft", "", "auto-draft", "open", "open", "", "", "", "", "2017-03-07 15:07:44", "0000-00-00 00:00:00", "", "0", "http://reda.selfip.net/?p=307", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("308", "1", "2017-03-07 15:10:01", "2017-03-07 07:10:01", "<div class=\"map-location\"><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3690.3859524553536!2d114.1460300147592!3d22.33905124713267!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3404075416900e45%3A0xdd5206a202fe3d9d!2sGLOBAL+GATEWAY+TOWER!5e0!3m2!1sen!2shk!4v1487331984157\" width=\"570\" height=\"250\" frameborder=\"0\"></iframe></div>\r\n<div class=\"contact-details\">Office Address: Unit 7, 30/F, Global Gateway Tower, 63 Wing Hong Street, Cheung Sha Wan, Kowloon, Hong Kong\r\nTel: + 852 2307 0948\r\nFax: + 852 2310 0948</div>", "Contact", "", "inherit", "closed", "closed", "", "17-revision-v1", "", "", "2017-03-07 15:10:01", "2017-03-07 07:10:01", "", "17", "http://reda.selfip.net/2017/03/07/17-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("309", "1", "2017-03-07 15:10:40", "2017-03-07 07:10:40", "<div class=\"map-location\"><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3690.3859524553536!2d114.1460300147592!3d22.33905124713267!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3404075416900e45%3A0xdd5206a202fe3d9d!2sGLOBAL+GATEWAY+TOWER!5e0!3m2!1sen!2shk!4v1487331984157\" width=\"570\" height=\"250\" frameborder=\"0\"></iframe></div>\r\n<div class=\"contact-details\">Office Address: Unit 7, 30/F, Global Gateway Tower, 63 Wing Hong Street, Cheung Sha Wan, Kowloon, Hong Kong\r\nTel: + 852 2307 0742\r\nFax: + 852 2310 0948</div>", "Contact", "", "inherit", "closed", "closed", "", "17-revision-v1", "", "", "2017-03-07 15:10:40", "2017-03-07 07:10:40", "", "17", "http://reda.selfip.net/2017/03/07/17-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("310", "1", "2017-03-07 15:10:54", "2017-03-07 07:10:54", "<div class=\"map-location\"><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3690.3859524553536!2d114.1460300147592!3d22.33905124713267!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3404075416900e45%3A0xdd5206a202fe3d9d!2sGLOBAL+GATEWAY+TOWER!5e0!3m2!1sen!2shk!4v1487331984157\" width=\"570\" height=\"250\" frameborder=\"0\"></iframe></div>\r\n<div class=\"contact-details\">Office Address: Unit 7, 30/F, Global Gateway Tower, 63 Wing Hong Street, Cheung Sha Wan, Kowloon, Hong Kong\r\nTel: + 852 2307 0742\r\nFax: + 852 2307 0948</div>", "Contact", "", "inherit", "closed", "closed", "", "17-revision-v1", "", "", "2017-03-07 15:10:54", "2017-03-07 07:10:54", "", "17", "http://reda.selfip.net/2017/03/07/17-revision-v1/", "0", "revision", "", "0");

/* INSERT TABLE DATA: wp_term_relationships */
INSERT INTO `wp_term_relationships` VALUES("1", "1", "0");
INSERT INTO `wp_term_relationships` VALUES("19", "1", "0");
INSERT INTO `wp_term_relationships` VALUES("21", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("24", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("45", "4", "0");
INSERT INTO `wp_term_relationships` VALUES("47", "1", "0");
INSERT INTO `wp_term_relationships` VALUES("49", "1", "0");
INSERT INTO `wp_term_relationships` VALUES("51", "1", "0");
INSERT INTO `wp_term_relationships` VALUES("110", "5", "0");
INSERT INTO `wp_term_relationships` VALUES("112", "6", "0");
INSERT INTO `wp_term_relationships` VALUES("114", "7", "0");
INSERT INTO `wp_term_relationships` VALUES("116", "8", "0");
INSERT INTO `wp_term_relationships` VALUES("118", "9", "0");
INSERT INTO `wp_term_relationships` VALUES("133", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("135", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("136", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("149", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("150", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("151", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("174", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("175", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("189", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("190", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("191", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("192", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("223", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("242", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("243", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("244", "2", "0");

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

/* INSERT TABLE DATA: wp_terms */
INSERT INTO `wp_terms` VALUES("1", "Uncategorised", "uncategorised", "0");
INSERT INTO `wp_terms` VALUES("2", "Primary Menu Links", "primary-menu-links", "0");
INSERT INTO `wp_terms` VALUES("3", "Updates", "updates", "0");
INSERT INTO `wp_terms` VALUES("4", "About", "about", "0");
INSERT INTO `wp_terms` VALUES("5", "We specialize in", "we-specialize-in", "0");
INSERT INTO `wp_terms` VALUES("6", "Our services", "our-services", "0");
INSERT INTO `wp_terms` VALUES("7", "Product dealership", "product-dealership", "0");
INSERT INTO `wp_terms` VALUES("8", "Quality Statement", "quality-statement", "0");
INSERT INTO `wp_terms` VALUES("9", "Personnel", "personnel", "0");

/* INSERT TABLE DATA: wp_usermeta */
INSERT INTO `wp_usermeta` VALUES("1", "1", "nickname", "admin");
INSERT INTO `wp_usermeta` VALUES("2", "1", "first_name", "");
INSERT INTO `wp_usermeta` VALUES("3", "1", "last_name", "");
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\";b:1;}");
INSERT INTO `wp_usermeta` VALUES("11", "1", "wp_user_level", "10");
INSERT INTO `wp_usermeta` VALUES("12", "1", "dismissed_wp_pointers", "");
INSERT INTO `wp_usermeta` VALUES("13", "1", "show_welcome_panel", "1");
INSERT INTO `wp_usermeta` VALUES("15", "1", "wp_user-settings", "hidetb=1&editor=tinymce&libraryContent=browse&mfold=o&align=center&imgsize=full&advImgDetails=show");
INSERT INTO `wp_usermeta` VALUES("16", "1", "wp_user-settings-time", "1487911948");
INSERT INTO `wp_usermeta` VALUES("17", "1", "wp_dashboard_quick_press_last_post_id", "307");
INSERT INTO `wp_usermeta` VALUES("18", "1", "managenav-menuscolumnshidden", "a:3:{i:0;s:15:\"title-attribute\";i:1;s:3:\"xfn\";i:2;s:11:\"description\";}");
INSERT INTO `wp_usermeta` VALUES("19", "1", "metaboxhidden_nav-menus", "a:1:{i:0;s:12:\"add-post_tag\";}");
INSERT INTO `wp_usermeta` VALUES("20", "1", "nav_menu_recently_edited", "2");
INSERT INTO `wp_usermeta` VALUES("21", "1", "closedpostboxes_page", "a:0:{}");
INSERT INTO `wp_usermeta` VALUES("22", "1", "metaboxhidden_page", "a:4:{i:0;s:16:\"commentstatusdiv\";i:1;s:11:\"commentsdiv\";i:2;s:7:\"slugdiv\";i:3;s:9:\"authordiv\";}");
INSERT INTO `wp_usermeta` VALUES("23", "1", "meta-box-order_page", "a:3:{s:4:\"side\";s:23:\"submitdiv,pageparentdiv\";s:6:\"normal\";s:57:\"postcustom,commentstatusdiv,commentsdiv,slugdiv,authordiv\";s:8:\"advanced\";s:0:\"\";}");
INSERT INTO `wp_usermeta` VALUES("24", "1", "screen_layout_page", "2");
INSERT INTO `wp_usermeta` VALUES("25", "1", "closedpostboxes_post", "a:0:{}");
INSERT INTO `wp_usermeta` VALUES("26", "1", "metaboxhidden_post", "a:5:{i:0;s:13:\"trackbacksdiv\";i:1;s:16:\"commentstatusdiv\";i:2;s:11:\"commentsdiv\";i:3;s:7:\"slugdiv\";i:4;s:9:\"authordiv\";}");
INSERT INTO `wp_usermeta` VALUES("27", "1", "closedpostboxes_nav-menus", "a:0:{}");
INSERT INTO `wp_usermeta` VALUES("28", "1", "session_tokens", "a:1:{s:64:\"425074b9a7a440aa241237bbef793b4ee3883d6632e573739c0973ac6ddd4cf0\";a:4:{s:10:\"expiration\";i:1489307063;s:2:\"ip\";s:13:\"218.103.0.106\";s:2:\"ua\";s:117:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_3) AppleWebKit/602.4.8 (KHTML, like Gecko) Version/10.0.3 Safari/602.4.8\";s:5:\"login\";i:1489134263;}}");
INSERT INTO `wp_usermeta` VALUES("29", "1", "closedpostboxes_collapsed_content", "a:0:{}");
INSERT INTO `wp_usermeta` VALUES("30", "1", "metaboxhidden_collapsed_content", "a:1:{i:0;s:7:\"slugdiv\";}");

/* INSERT TABLE DATA: wp_users */
INSERT INTO `wp_users` VALUES("1", "admin", "$P$BXzArHcsrvPqSqtFYy6XW3edt9Nq.q.", "admin", "tsae.ualxela@gmail.com", "", "2016-09-15 10:46:47", "", "0", "admin");

/* INSERT TABLE DATA: wp_wdsslide */
INSERT INTO `wp_wdsslide` VALUES("1", "1", "Slide 1", "image", "{site_url}/wp-content/plugins/slider-wd/demo/1.jpg", "{site_url}/wp-content/plugins/slider-wd/demo/1-150x150.jpg", "1", "", "1", "0", "0", "0");
INSERT INTO `wp_wdsslide` VALUES("2", "1", "Slide 2", "image", "{site_url}/wp-content/plugins/slider-wd/demo/2.jpg", "{site_url}/wp-content/plugins/slider-wd/demo/2-150x150.jpg", "1", "", "2", "0", "0", "0");
INSERT INTO `wp_wdsslide` VALUES("3", "1", "Slide 3", "image", "{site_url}/wp-content/plugins/slider-wd/demo/3.jpg", "{site_url}/wp-content/plugins/slider-wd/demo/3-150x150.jpg", "1", "", "3", "0", "0", "0");

/* INSERT TABLE DATA: wp_wdsslider */
INSERT INTO `wp_wdsslider` VALUES("1", "home-slider", "1", "0", "900", "400", "cover", "center", "fade", "3", "1", "0", "0", "", "1", "FFFFFF", "100", "0", "none", "FFFFFF", "border-top-radius: 25px;", "0", "", "0", "1", "1", "0", "hover", "fa-angle", "40", "40", "FFFFFF", "100", "CCCCCC", "0", "none", "FFFFFF", "20px", "FFFFFF", "bottom", "fa-square-o", "20", "FFFFFF", "FFFFFF", "3", "none", "100", "50", "000000", "0", "0", "none", "FFFFFF", "50", "none", "middle-center", "15", "{site_url}/wp-content/plugins/slider-wd/images/watermark.png", "web-dorado.com", "20", "arial.ttf", "FFFFFF", "70", "", "none", "5", "FFFFFF", "50", "0", "1", "{site_url}/wp-content/plugins/slider-wd/images/arrow/arrow11/1/2.png", "{site_url}/wp-content/plugins/slider-wd/images/arrow/arrow11/1/1.png", "{site_url}/wp-content/plugins/slider-wd/images/arrow/arrow11/1/4.png", "{site_url}/wp-content/plugins/slider-wd/images/arrow/arrow11/1/3.png", "style", "{site_url}/wp-content/plugins/slider-wd/images/bullet/bullet4/1/1.png", "{site_url}/wp-content/plugins/slider-wd/images/bullet/bullet4/1/2.png", "our", "style", "{site_url}/wp-content/plugins/slider-wd/images/button/button4/1/1.png", "{site_url}/wp-content/plugins/slider-wd/images/button/button4/1/2.png", "{site_url}/wp-content/plugins/slider-wd/images/button/button4/1/3.png", "{site_url}/wp-content/plugins/slider-wd/images/button/button4/1/4.png", "1", "800", "0", "7", "0.85", "0", "1000", "0", "0", "0", "1", "0", "0", "", "0", "0.2", "0", "0", "center center", "{}", "0", "0", "0", "000000", "CCCCCC", "20px", "0", "", "1", "0", "0", "0", "asc");

SET FOREIGN_KEY_CHECKS = 1; 

/* Duplicator WordPress Timestamp: 2017-03-10 08:32:09*/
/* DUPLICATOR_MYSQLDUMP_EOF */
